Sun, 16 Oct 2016 14:42:46 +0200
Added a dialog to select from a list and extended the plug-in archive build process.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Documentation/Source/eric6.E5Gui.E5ListSelectionDialog.html Sun Oct 16 14:42:46 2016 +0200 @@ -0,0 +1,119 @@ +<!DOCTYPE html> +<html><head> +<title>eric6.E5Gui.E5ListSelectionDialog</title> +<meta charset="UTF-8"> +<style> +body { + background: #EDECE6; + margin: 0em 1em 10em 1em; + color: black; +} + +h1 { color: white; background: #85774A; } +h2 { color: white; background: #85774A; } +h3 { color: white; background: #9D936E; } +h4 { color: white; background: #9D936E; } + +a { color: #BA6D36; } + +</style> +</head> +<body><a NAME="top" ID="top"></a> +<h1>eric6.E5Gui.E5ListSelectionDialog</h1> +<p> +Module implementing a dialog to select from a list of strings. +</p> +<h3>Global Attributes</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Classes</h3> +<table> +<tr> +<td><a href="#E5ListSelectionDialog">E5ListSelectionDialog</a></td> +<td>Class implementing a dialog to select from a list of strings.</td> +</tr> +</table> +<h3>Functions</h3> +<table> +<tr><td>None</td></tr> +</table> +<hr /><hr /> +<a NAME="E5ListSelectionDialog" ID="E5ListSelectionDialog"></a> +<h2>E5ListSelectionDialog</h2> +<p> + Class implementing a dialog to select from a list of strings. +</p> +<h3>Derived from</h3> +QDialog, Ui_E5ListSelectionDialog +<h3>Class Attributes</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Class Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<h3>Methods</h3> +<table> +<tr> +<td><a href="#E5ListSelectionDialog.__init__">E5ListSelectionDialog</a></td> +<td>Constructor</td> +</tr><tr> +<td><a href="#E5ListSelectionDialog.getSelection">getSelection</a></td> +<td>Public method to retrieve the selected items.</td> +</tr><tr> +<td><a href="#E5ListSelectionDialog.on_selectionList_itemSelectionChanged">on_selectionList_itemSelectionChanged</a></td> +<td>Private slot handling a change of the selection.</td> +</tr> +</table> +<h3>Static Methods</h3> +<table> +<tr><td>None</td></tr> +</table> +<a NAME="E5ListSelectionDialog.__init__" ID="E5ListSelectionDialog.__init__"></a> +<h4>E5ListSelectionDialog (Constructor)</h4> +<b>E5ListSelectionDialog</b>(<i>entries, selectionMode=QAbstractItemView.ExtendedSelection, title="", message="", parent=None</i>) +<p> + Constructor +</p><dl> +<dt><i>entries</i> (list of str)</dt> +<dd> +list of entries to select from +</dd><dt><i>selectionMode</i> (QAbstractItemView.SelectionMode)</dt> +<dd> +selection mode for the list +</dd><dt><i>title</i> (str)</dt> +<dd> +tirle of the dialog +</dd><dt><i>message</i> (str)</dt> +<dd> +message to be show in the dialog +</dd><dt><i>parent</i> (QWidget)</dt> +<dd> +reference to the parent widget +</dd> +</dl><a NAME="E5ListSelectionDialog.getSelection" ID="E5ListSelectionDialog.getSelection"></a> +<h4>E5ListSelectionDialog.getSelection</h4> +<b>getSelection</b>(<i></i>) +<p> + Public method to retrieve the selected items. +</p><dl> +<dt>Returns:</dt> +<dd> +selected entries +</dd> +</dl><dl> +<dt>Return Type:</dt> +<dd> +list of str +</dd> +</dl><a NAME="E5ListSelectionDialog.on_selectionList_itemSelectionChanged" ID="E5ListSelectionDialog.on_selectionList_itemSelectionChanged"></a> +<h4>E5ListSelectionDialog.on_selectionList_itemSelectionChanged</h4> +<b>on_selectionList_itemSelectionChanged</b>(<i></i>) +<p> + Private slot handling a change of the selection. +</p> +<div align="right"><a href="#top">Up</a></div> +<hr /> +</body></html> \ No newline at end of file
--- a/Documentation/Source/eric6.Project.Project.html Sun Oct 16 12:20:30 2016 +0200 +++ b/Documentation/Source/eric6.Project.Project.html Sun Oct 16 14:42:46 2016 +0200 @@ -236,14 +236,14 @@ <td><a href="#Project.__openRecent">__openRecent</a></td> <td>Private method to open a project from the list of rencently opened projects.</td> </tr><tr> -<td><a href="#Project.__pluginCreateArchive">__pluginCreateArchive</a></td> -<td>Private slot to create an eric6 plugin archive.</td> +<td><a href="#Project.__pluginCreateArchives">__pluginCreateArchives</a></td> +<td>Private slot to create eric6 plugin archives.</td> </tr><tr> <td><a href="#Project.__pluginCreatePkgList">__pluginCreatePkgList</a></td> <td>Private slot to create a PKGLIST file needed for archive file creation.</td> </tr><tr> -<td><a href="#Project.__pluginCreateSnapshotArchive">__pluginCreateSnapshotArchive</a></td> -<td>Private slot to create an eric6 plugin archive snapshot release.</td> +<td><a href="#Project.__pluginCreateSnapshotArchives">__pluginCreateSnapshotArchives</a></td> +<td>Private slot to create eric6 plugin archive snapshot releases.</td> </tr><tr> <td><a href="#Project.__pluginExtractVersion">__pluginExtractVersion</a></td> <td>Private method to extract the version number entry.</td> @@ -904,26 +904,26 @@ <dd> reference to the action that triggered (QAction) </dd> -</dl><a NAME="Project.__pluginCreateArchive" ID="Project.__pluginCreateArchive"></a> -<h4>Project.__pluginCreateArchive</h4> -<b>__pluginCreateArchive</b>(<i>snapshot=False</i>) +</dl><a NAME="Project.__pluginCreateArchives" ID="Project.__pluginCreateArchives"></a> +<h4>Project.__pluginCreateArchives</h4> +<b>__pluginCreateArchives</b>(<i>snapshot=False</i>) <p> - Private slot to create an eric6 plugin archive. + Private slot to create eric6 plugin archives. </p><dl> <dt><i>snapshot</i></dt> <dd> -flag indicating a snapshot archive (boolean) +flag indicating snapshot archives (boolean) </dd> </dl><a NAME="Project.__pluginCreatePkgList" ID="Project.__pluginCreatePkgList"></a> <h4>Project.__pluginCreatePkgList</h4> <b>__pluginCreatePkgList</b>(<i></i>) <p> Private slot to create a PKGLIST file needed for archive file creation. -</p><a NAME="Project.__pluginCreateSnapshotArchive" ID="Project.__pluginCreateSnapshotArchive"></a> -<h4>Project.__pluginCreateSnapshotArchive</h4> -<b>__pluginCreateSnapshotArchive</b>(<i></i>) +</p><a NAME="Project.__pluginCreateSnapshotArchives" ID="Project.__pluginCreateSnapshotArchives"></a> +<h4>Project.__pluginCreateSnapshotArchives</h4> +<b>__pluginCreateSnapshotArchives</b>(<i></i>) <p> - Private slot to create an eric6 plugin archive snapshot release. + Private slot to create eric6 plugin archive snapshot releases. </p><a NAME="Project.__pluginExtractVersion" ID="Project.__pluginExtractVersion"></a> <h4>Project.__pluginExtractVersion</h4> <b>__pluginExtractVersion</b>(<i>filename</i>)
--- a/Documentation/Source/index-eric6.DebugClients.html Sun Oct 16 12:20:30 2016 +0200 +++ b/Documentation/Source/index-eric6.DebugClients.html Sun Oct 16 14:42:46 2016 +0200 @@ -27,11 +27,8 @@ <h3>Packages</h3> <table> <tr> -<td><a href="index-eric6.DebugClients.Python2.html">Python2</a></td> -<td>Package implementing the Python debugger.</td> -</tr><tr> -<td><a href="index-eric6.DebugClients.Python3.html">Python3</a></td> -<td>Package implementing the Python3 debugger.</td> +<td><a href="index-eric6.DebugClients.Python.html">Python</a></td> +<td>Package implementing the standard Python debugger.</td> </tr> </table>
--- a/Documentation/Source/index-eric6.E5Gui.html Sun Oct 16 12:20:30 2016 +0200 +++ b/Documentation/Source/index-eric6.E5Gui.html Sun Oct 16 14:42:46 2016 +0200 @@ -69,6 +69,9 @@ <td><a href="eric6.E5Gui.E5LineEditButton.html">E5LineEditButton</a></td> <td>Module implementing a button class to be used with E5LineEdit.</td> </tr><tr> +<td><a href="eric6.E5Gui.E5ListSelectionDialog.html">E5ListSelectionDialog</a></td> +<td>Module implementing a dialog to select from a list of strings.</td> +</tr><tr> <td><a href="eric6.E5Gui.E5ListView.html">E5ListView</a></td> <td>Module implementing specialized list views.</td> </tr><tr>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/E5Gui/E5ListSelectionDialog.py Sun Oct 16 14:42:46 2016 +0200 @@ -0,0 +1,68 @@ +# -*- coding: utf-8 -*- + +# Copyright (c) 2016 Detlev Offenbach <detlev@die-offenbachs.de> +# + +""" +Module implementing a dialog to select from a list of strings. +""" + +from PyQt5.QtCore import pyqtSlot +from PyQt5.QtWidgets import QDialog, QDialogButtonBox, QAbstractItemView + +from .Ui_E5ListSelectionDialog import Ui_E5ListSelectionDialog + + +class E5ListSelectionDialog(QDialog, Ui_E5ListSelectionDialog): + """ + Class implementing a dialog to select from a list of strings. + """ + def __init__(self, entries, + selectionMode=QAbstractItemView.ExtendedSelection, + title="", message="", parent=None): + """ + Constructor + + @param entries list of entries to select from + @type list of str + @param selectionMode selection mode for the list + @type QAbstractItemView.SelectionMode + @param title tirle of the dialog + @type str + @param message message to be show in the dialog + @type str + @param parent reference to the parent widget + @type QWidget + """ + super(E5ListSelectionDialog, self).__init__(parent) + self.setupUi(self) + + self.selectionList.setSelectionMode(selectionMode) + if title: + self.setWindowTitle(title) + if message: + self.messageLabel.setText(message) + + self.selectionList.addItems(entries) + + self.buttonBox.button(QDialogButtonBox.Ok).setEnabled(False) + + @pyqtSlot() + def on_selectionList_itemSelectionChanged(self): + """ + Private slot handling a change of the selection. + """ + self.buttonBox.button(QDialogButtonBox.Ok).setEnabled( + len(self.selectionList.selectedItems()) > 0) + + def getSelection(self): + """ + Public method to retrieve the selected items. + + @return selected entries + @rtype list of str + """ + entries = [] + for item in self.selectionList.selectedItems(): + entries.append(item.text()) + return entries
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/E5Gui/E5ListSelectionDialog.ui Sun Oct 16 14:42:46 2016 +0200 @@ -0,0 +1,84 @@ +<?xml version="1.0" encoding="UTF-8"?> +<ui version="4.0"> + <class>E5ListSelectionDialog</class> + <widget class="QDialog" name="E5ListSelectionDialog"> + <property name="geometry"> + <rect> + <x>0</x> + <y>0</y> + <width>400</width> + <height>500</height> + </rect> + </property> + <property name="windowTitle"> + <string>Select from List</string> + </property> + <property name="sizeGripEnabled"> + <bool>true</bool> + </property> + <layout class="QVBoxLayout" name="verticalLayout"> + <item> + <widget class="QLabel" name="messageLabel"> + <property name="text"> + <string>Select from the list below:</string> + </property> + <property name="wordWrap"> + <bool>true</bool> + </property> + </widget> + </item> + <item> + <widget class="QListWidget" name="selectionList"> + <property name="alternatingRowColors"> + <bool>true</bool> + </property> + </widget> + </item> + <item> + <widget class="QDialogButtonBox" name="buttonBox"> + <property name="orientation"> + <enum>Qt::Horizontal</enum> + </property> + <property name="standardButtons"> + <set>QDialogButtonBox::Cancel|QDialogButtonBox::Ok</set> + </property> + </widget> + </item> + </layout> + </widget> + <resources/> + <connections> + <connection> + <sender>buttonBox</sender> + <signal>accepted()</signal> + <receiver>E5ListSelectionDialog</receiver> + <slot>accept()</slot> + <hints> + <hint type="sourcelabel"> + <x>248</x> + <y>254</y> + </hint> + <hint type="destinationlabel"> + <x>157</x> + <y>274</y> + </hint> + </hints> + </connection> + <connection> + <sender>buttonBox</sender> + <signal>rejected()</signal> + <receiver>E5ListSelectionDialog</receiver> + <slot>reject()</slot> + <hints> + <hint type="sourcelabel"> + <x>316</x> + <y>260</y> + </hint> + <hint type="destinationlabel"> + <x>286</x> + <y>274</y> + </hint> + </hints> + </connection> + </connections> +</ui>
--- a/Project/Project.py Sun Oct 16 12:20:30 2016 +0200 +++ b/Project/Project.py Sun Oct 16 14:42:46 2016 +0200 @@ -30,6 +30,8 @@ from E5Gui.E5Application import e5App from E5Gui import E5FileDialog, E5MessageBox +from E5Gui.E5ListSelectionDialog import E5ListSelectionDialog +from E5Gui.E5ProgressDialog import E5ProgressDialog from Globals import recentNameProject @@ -3834,37 +3836,39 @@ self.actions.append(self.pluginPkgListAct) self.pluginArchiveAct = E5Action( - self.tr('Create Plugin Archive'), + self.tr('Create Plugin Archives'), UI.PixmapCache.getIcon("pluginArchive.png"), - self.tr('Create Plugin &Archive'), 0, 0, + self.tr('Create Plugin &Archives'), 0, 0, self.pluginGrp, 'project_plugin_archive') self.pluginArchiveAct.setStatusTip( - self.tr('Create an eric6 plugin archive file.')) + self.tr('Create eric6 plugin archive files.')) self.pluginArchiveAct.setWhatsThis(self.tr( - """<b>Create Plugin Archive</b>""" - """<p>This creates an eric6 plugin archive file using the list""" - """ of files given in the PKGLIST file. The archive name is""" - """ built from the main script name.</p>""" + """<b>Create Plugin Archives</b>""" + """<p>This creates eric6 plugin archive files using the list""" + """ of files given in a PKGLIST* file. The archive name is""" + """ built from the main script name if not designated in""" + """ the package list file.</p>""" )) - self.pluginArchiveAct.triggered.connect(self.__pluginCreateArchive) + self.pluginArchiveAct.triggered.connect(self.__pluginCreateArchives) self.actions.append(self.pluginArchiveAct) self.pluginSArchiveAct = E5Action( - self.tr('Create Plugin Archive (Snapshot)'), + self.tr('Create Plugin Archives (Snapshot)'), UI.PixmapCache.getIcon("pluginArchiveSnapshot.png"), - self.tr('Create Plugin Archive (&Snapshot)'), 0, 0, + self.tr('Create Plugin Archives (&Snapshot)'), 0, 0, self.pluginGrp, 'project_plugin_sarchive') self.pluginSArchiveAct.setStatusTip(self.tr( - 'Create an eric6 plugin archive file (snapshot release).')) + 'Create eric6 plugin archive files (snapshot releases).')) self.pluginSArchiveAct.setWhatsThis(self.tr( - """<b>Create Plugin Archive (Snapshot)</b>""" - """<p>This creates an eric6 plugin archive file using the list""" - """ of files given in the PKGLIST file. The archive name is""" - """ built from the main script name. The version entry of the""" - """ main script is modified to reflect a snapshot release.</p>""" + """<b>Create Plugin Archives (Snapshot)</b>""" + """<p>This creates eric6 plugin archive files using the list""" + """ of files given in the PKGLIST* file. The archive name is""" + """ built from the main script name if not designated in""" + """ the package list file. The version entry of the main script""" + """ is modified to reflect a snapshot release.</p>""" )) self.pluginSArchiveAct.triggered.connect( - self.__pluginCreateSnapshotArchive) + self.__pluginCreateSnapshotArchives) self.actions.append(self.pluginSArchiveAct) self.closeAct.setEnabled(False) @@ -4770,40 +4774,12 @@ self.appendFile("PKGLIST") @pyqtSlot() - def __pluginCreateArchive(self, snapshot=False): - """ - Private slot to create an eric6 plugin archive. - - @param snapshot flag indicating a snapshot archive (boolean) - """ - pkglists = [os.path.basename(f) for f in - glob.glob(os.path.join(self.ppath, "PKGLIST*"))] - if len(pkglists) == 1: - pkglist = os.path.join(self.ppath, pkglists[0]) - elif len(pkglists) > 1: - pkglist, ok = QInputDialog.getItem( - None, - self.tr("Create Plugin Archive"), - self.tr("Select a package list file:"), - sorted(pkglists), - 0, False) - if not ok or not pkglist: - E5MessageBox.critical( - self.ui, - self.tr("Create Plugin Archive"), - self.tr("""<p>No package list file selected. """ - """Aborting...</p>""")) - return - else: - pkglist = os.path.join(self.ppath, pkglist) - else: - E5MessageBox.critical( - self.ui, - self.tr("Create Plugin Archive"), - self.tr("""<p>The file <b>PKGLIST</b> does not exist. """ - """Aborting...</p>""")) - return - + def __pluginCreateArchives(self, snapshot=False): + """ + Private slot to create eric6 plugin archives. + + @param snapshot flag indicating snapshot archives (boolean) + """ if not self.pdata["MAINSCRIPT"]: E5MessageBox.critical( self.ui, @@ -4813,101 +4789,149 @@ """Aborting...""")) return - try: - pkglistFile = open(pkglist, "r", encoding="utf-8") - names = pkglistFile.read() - pkglistFile.close() - except IOError as why: - E5MessageBox.critical( - self.ui, - self.tr("Create Plugin Archive"), - self.tr( - """<p>The file <b>PKGLIST</b> could not be read.</p>""" - """<p>Reason: {0}</p>""").format(str(why))) - return - - lines = names.splitlines() - archiveName = "" - names = [] - for line in lines: - if line.startswith(";"): - # it's a comment possibly containing a directive - # supported directives are: - # - archive_name= defines the name of the archive - if line[1:].strip().startswith("archive_name="): - archiveName = line[1:].split("=")[1] + selectedLists = [] + pkglists = [os.path.basename(f) for f in + glob.glob(os.path.join(self.ppath, "PKGLIST*"))] + if len(pkglists) == 1: + selectedLists = [os.path.join(self.ppath, pkglists[0])] + elif len(pkglists) > 1: + dlg = E5ListSelectionDialog( + sorted(pkglists), title=self.tr("Create Plugin Archive"), + message=self.tr("Select package lists:")) + if dlg.exec_() == QDialog.Accepted: + selectedLists = [os.path.join(self.ppath, s) + for s in dlg.getSelection()] else: - names.append(line) - names = sorted(names) - if archiveName: - archive = os.path.join(self.ppath, archiveName) - else: - archive = os.path.join( - self.ppath, self.pdata["MAINSCRIPT"].replace(".py", ".zip")) - try: - archiveFile = zipfile.ZipFile(archive, "w") - except IOError as why: + return + + if not selectedLists: E5MessageBox.critical( self.ui, self.tr("Create Plugin Archive"), - self.tr( - """<p>The eric6 plugin archive file <b>{0}</b> could """ - """not be created.</p>""" - """<p>Reason: {1}</p>""").format(archive, str(why))) + self.tr("""<p>No package list files (PKGLIST*) available or""" + """ selected. Aborting...</p>""")) return - for name in names: - if name: - try: - self.__createZipDirEntries( - os.path.split(name)[0], archiveFile) - if snapshot and name == self.pdata["MAINSCRIPT"]: - snapshotSource, version = self.__createSnapshotSource( - os.path.join(self.ppath, - self.pdata["MAINSCRIPT"])) - archiveFile.writestr(name, snapshotSource) - else: - archiveFile.write(os.path.join(self.ppath, name), name) - if name == self.pdata["MAINSCRIPT"]: - version = self.__pluginExtractVersion( - os.path.join(self.ppath, - self.pdata["MAINSCRIPT"])) - except OSError as why: - E5MessageBox.critical( - self.ui, - self.tr("Create Plugin Archive"), - self.tr( - """<p>The file <b>{0}</b> could not be stored """ - """in the archive. Ignoring it.</p>""" - """<p>Reason: {1}</p>""") - .format(os.path.join(self.ppath, name), str(why))) - archiveFile.writestr("VERSION", version.encode("utf-8")) - archiveFile.close() - - if archive not in self.pdata["OTHERS"]: - self.appendFile(archive) - + progress = E5ProgressDialog( + self.tr("Creating plugin archives..."), self.tr("Abort"), + 0, len(selectedLists), self.tr("%v/%m Archives")) + progress.setMinimumDuration(0) + progress.setWindowTitle(self.tr("Create Plugin Archives")) + count = 0 + errors = 0 + for pkglist in selectedLists: + progress.setValue(count) + if progress.wasCanceled(): + break + + try: + pkglistFile = open(pkglist, "r", encoding="utf-8") + names = pkglistFile.read() + pkglistFile.close() + except IOError as why: + E5MessageBox.critical( + self.ui, + self.tr("Create Plugin Archive"), + self.tr( + """<p>The file <b>{0}</b> could not be read.</p>""" + """<p>Reason: {1}</p>""").format( + os.path.basename(pkglist), str(why))) + errors += 1 + count += 1 + continue + + lines = names.splitlines() + archiveName = "" + names = [] + for line in lines: + if line.startswith(";"): + # it's a comment possibly containing a directive + # supported directives are: + # - archive_name= defines the name of the archive + if line[1:].strip().startswith("archive_name="): + archiveName = line[1:].split("=")[1] + else: + names.append(line) + names = sorted(names) + if archiveName: + archive = os.path.join(self.ppath, archiveName) + else: + archive = os.path.join( + self.ppath, + self.pdata["MAINSCRIPT"].replace(".py", ".zip")) + try: + archiveFile = zipfile.ZipFile(archive, "w") + except IOError as why: + E5MessageBox.critical( + self.ui, + self.tr("Create Plugin Archive"), + self.tr( + """<p>The eric6 plugin archive file <b>{0}</b>""" + """ could not be created.</p>""" + """<p>Reason: {1}</p>""").format(archive, str(why))) + errors += 1 + count += 1 + continue + + for name in names: + if name: + try: + self.__createZipDirEntries( + os.path.split(name)[0], archiveFile) + if snapshot and name == self.pdata["MAINSCRIPT"]: + snapshotSource, version = \ + self.__createSnapshotSource( + os.path.join(self.ppath, + self.pdata["MAINSCRIPT"])) + archiveFile.writestr(name, snapshotSource) + else: + archiveFile.write(os.path.join(self.ppath, name), + name) + if name == self.pdata["MAINSCRIPT"]: + version = self.__pluginExtractVersion( + os.path.join(self.ppath, + self.pdata["MAINSCRIPT"])) + except OSError as why: + E5MessageBox.critical( + self.ui, + self.tr("Create Plugin Archive"), + self.tr( + """<p>The file <b>{0}</b> could not be""" + """ stored in the archive. Ignoring it.</p>""" + """<p>Reason: {1}</p>""") + .format(os.path.join(self.ppath, name), str(why))) + archiveFile.writestr("VERSION", version.encode("utf-8")) + archiveFile.close() + + if archive not in self.pdata["OTHERS"]: + self.appendFile(archive) + + count += 1 + + progress.setValue(len(selectedLists)) + + if errors: + message = self.tr("<p>The eric6 plugin archive files were " + "created with some errors.</p>") + else: + message = self.tr("<p>The eric6 plugin archive files were " + "created successfully.</p>") if self.ui.notificationsEnabled(): self.ui.showNotification( UI.PixmapCache.getPixmap("pluginArchive48.png"), self.tr("Create Plugin Archive"), - self.tr( - """<p>The eric6 plugin archive file <b>{0}</b> was """ - """created successfully.</p>""") - .format(os.path.basename(archive))) + message) else: E5MessageBox.information( self.ui, self.tr("Create Plugin Archive"), - self.tr( - """<p>The eric6 plugin archive file <b>{0}</b> was """ - """created successfully.</p>""").format(archive)) + message) - def __pluginCreateSnapshotArchive(self): - """ - Private slot to create an eric6 plugin archive snapshot release. - """ - self.__pluginCreateArchive(True) + def __pluginCreateSnapshotArchives(self): + """ + Private slot to create eric6 plugin archive snapshot releases. + """ + self.__pluginCreateArchives(True) def __createZipDirEntries(self, path, zipFile): """
--- a/eric6.e4p Sun Oct 16 12:20:30 2016 +0200 +++ b/eric6.e4p Sun Oct 16 14:42:46 2016 +0200 @@ -122,6 +122,7 @@ <Source>E5Gui/E5Led.py</Source> <Source>E5Gui/E5LineEdit.py</Source> <Source>E5Gui/E5LineEditButton.py</Source> + <Source>E5Gui/E5ListSelectionDialog.py</Source> <Source>E5Gui/E5ListView.py</Source> <Source>E5Gui/E5MainWindow.py</Source> <Source>E5Gui/E5MapWidget.py</Source> @@ -1497,6 +1498,7 @@ <Form>Debugger/VariableDetailDialog.ui</Form> <Form>Debugger/VariablesFilterDialog.ui</Form> <Form>E5Gui/E5ErrorMessageFilterDialog.ui</Form> + <Form>E5Gui/E5ListSelectionDialog.ui</Form> <Form>E5Gui/E5StringListEditWidget.ui</Form> <Form>E5Gui/E5TextEditSearchWidget.ui</Form> <Form>E5Gui/E5ToolBarDialog.ui</Form> @@ -1829,7 +1831,6 @@ <Form>VCS/CommandOptionsDialog.ui</Form> <Form>VCS/RepositoryInfoDialog.ui</Form> <Form>ViewManager/BookmarkedFilesDialog.ui</Form> - <Form>WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.ui</Form> <Form>WebBrowser/AdBlock/AdBlockDialog.ui</Form> <Form>WebBrowser/AdBlock/AdBlockExceptionsDialog.ui</Form> <Form>WebBrowser/Bookmarks/AddBookmarkDialog.ui</Form> @@ -1861,6 +1862,7 @@ <Form>WebBrowser/PersonalInformationManager/PersonalDataDialog.ui</Form> <Form>WebBrowser/QtHelp/HelpTopicDialog.ui</Form> <Form>WebBrowser/QtHelp/QtHelpDocumentationDialog.ui</Form> + <Form>WebBrowser/QtHelp/QtHelpDocumentationSelectionDialog.ui</Form> <Form>WebBrowser/QtHelp/QtHelpFiltersDialog.ui</Form> <Form>WebBrowser/SearchWidget.ui</Form> <Form>WebBrowser/SiteInfo/SiteInfoDialog.ui</Form> @@ -1925,14 +1927,14 @@ <Interfaces/> <Others> <Other>.hgignore</Other> + <Other>APIs/Python/zope-2.10.7.api</Other> + <Other>APIs/Python/zope-2.11.2.api</Other> + <Other>APIs/Python/zope-3.3.1.api</Other> <Other>APIs/Python3/PyQt4.bas</Other> <Other>APIs/Python3/PyQt5.bas</Other> <Other>APIs/Python3/QScintilla2.bas</Other> <Other>APIs/Python3/eric6.api</Other> <Other>APIs/Python3/eric6.bas</Other> - <Other>APIs/Python/zope-2.10.7.api</Other> - <Other>APIs/Python/zope-2.11.2.api</Other> - <Other>APIs/Python/zope-3.3.1.api</Other> <Other>APIs/QSS/qss.api</Other> <Other>APIs/Ruby/Ruby-1.8.7.api</Other> <Other>APIs/Ruby/Ruby-1.8.7.bas</Other>
--- a/i18n/eric6_cs.ts Sun Oct 16 12:20:30 2016 +0200 +++ b/i18n/eric6_cs.ts Sun Oct 16 14:42:46 2016 +0200 @@ -390,7 +390,7 @@ <context> <name>AddBookmarkDialog</name> <message> - <location filename="../WebBrowser/Bookmarks/AddBookmarkDialog.py" line="198"/> + <location filename="../WebBrowser/Bookmarks/AddBookmarkDialog.ui" line="26"/> <source>Add Bookmark</source> <translation>Přidat záložku</translation> </message> @@ -1777,7 +1777,7 @@ <translation>Editovat &adresu</translation> </message> <message> - <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="169"/> + <location filename="../WebBrowser/Bookmarks/BookmarksDialog.ui" line="75"/> <source>&Delete</source> <translation>&Smazat</translation> </message> @@ -2470,12 +2470,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/CallTraceViewer.py" line="54"/> + <location filename="../Debugger/CallTraceViewer.ui" line="109"/> <source>From</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/CallTraceViewer.py" line="54"/> + <location filename="../Debugger/CallTraceViewer.ui" line="114"/> <source>To</source> <translation type="unfinished"></translation> </message> @@ -2641,7 +2641,7 @@ <translation>Stisknutím zrušit sdílený editor</translation> </message> <message> - <location filename="../Cooperation/ChatWidget.py" line="513"/> + <location filename="../Cooperation/ChatWidget.ui" line="230"/> <source>Clear</source> <translation>Vyčistit</translation> </message> @@ -2939,7 +2939,7 @@ <context> <name>ClickToFlashWhitelistDialog</name> <message> - <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.py" line="54"/> + <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.ui" line="14"/> <source>ClickToFlash Whitelist</source> <translation type="unfinished"></translation> </message> @@ -4243,22 +4243,22 @@ <translation>&Synchronizovat vodorovné posuvníky</translation> </message> <message> - <location filename="../UI/CompareDialog.py" line="356"/> + <location filename="../UI/CompareDialog.py" line="354"/> <source>Total: {0}</source> <translation>Celkem: {0}</translation> </message> <message> + <location filename="../UI/CompareDialog.py" line="356"/> + <source>Changed: {0}</source> + <translation>Změněno: {0}</translation> + </message> + <message> + <location filename="../UI/CompareDialog.py" line="357"/> + <source>Added: {0}</source> + <translation>Přidáno: {0}</translation> + </message> + <message> <location filename="../UI/CompareDialog.py" line="358"/> - <source>Changed: {0}</source> - <translation>Změněno: {0}</translation> - </message> - <message> - <location filename="../UI/CompareDialog.py" line="359"/> - <source>Added: {0}</source> - <translation>Přidáno: {0}</translation> - </message> - <message> - <location filename="../UI/CompareDialog.py" line="360"/> <source>Deleted: {0}</source> <translation>Smazáno: {0}</translation> </message> @@ -4875,7 +4875,7 @@ <translation type="unfinished">Doména:</translation> </message> <message> - <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="177"/> + <location filename="../WebBrowser/CookieJar/CookiesDialog.ui" line="223"/> <source><no cookie selected></source> <translation type="unfinished"></translation> </message> @@ -7641,7 +7641,7 @@ <context> <name>DownloadManager</name> <message> - <location filename="../WebBrowser/Download/DownloadManager.py" line="363"/> + <location filename="../WebBrowser/Download/DownloadManager.ui" line="14"/> <source>Downloads</source> <translation type="unfinished"></translation> </message> @@ -7880,6 +7880,19 @@ </message> </context> <context> + <name>E5ListSelectionDialog</name> + <message> + <location filename="../E5Gui/E5ListSelectionDialog.ui" line="14"/> + <source>Select from List</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../E5Gui/E5ListSelectionDialog.ui" line="23"/> + <source>Select from the list below:</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>E5MainWindow</name> <message> <location filename="../E5Gui/E5MainWindow.py" line="56"/> @@ -8098,92 +8111,92 @@ <translation type="unfinished">Standardní tlačítka</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="41"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="257"/> <source>Abort</source> <translation type="unfinished">Přerušit</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="42"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="264"/> <source>Apply</source> <translation type="unfinished">Použít</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="43"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="271"/> <source>Cancel</source> <translation type="unfinished">Zrušit</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="44"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="278"/> <source>Close</source> <translation type="unfinished">Zavřít</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="45"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="285"/> <source>Discard</source> <translation type="unfinished">Zahodit</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="46"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="292"/> <source>Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="47"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="299"/> <source>Ignore</source> <translation type="unfinished">Ignorovat</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="48"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="306"/> <source>No</source> <translation type="unfinished">Ne</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="49"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="313"/> <source>No to all</source> <translation type="unfinished">Ne pro všechno</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="50"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="320"/> <source>Ok</source> <translation type="unfinished">Ok</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="51"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="327"/> <source>Open</source> <translation type="unfinished">Otevřít</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="52"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="334"/> <source>Reset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="53"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="341"/> <source>Restore defaults</source> <translation type="unfinished">Obnovit defaulty</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="54"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="348"/> <source>Retry</source> <translation type="unfinished">Vrátit</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="55"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="355"/> <source>Save</source> <translation type="unfinished">Uložit</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="56"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="362"/> <source>Save all</source> <translation type="unfinished">Uložit vše</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="57"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="369"/> <source>Yes</source> <translation type="unfinished">Ano</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="58"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="376"/> <source>Yes to all</source> <translation type="unfinished">Ano pro všechno</translation> </message> @@ -10193,7 +10206,7 @@ <translation>Stiskněte pro výběr API souboru ze seznamu instalovaných API</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="184"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="132"/> <source>Add from installed APIs</source> <translation>Přidat z instalovaných API</translation> </message> @@ -10203,7 +10216,7 @@ <translation>Stiskněte pro kompilování vybrané API definici</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="236"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="159"/> <source>Compile APIs</source> <translation>Kompilovat API</translation> </message> @@ -10268,7 +10281,7 @@ <translation>Stiskněte pro výběr API souboru ze seznamu API souborů instalovaných z pluginů</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="203"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="142"/> <source>Add from Plugin APIs</source> <translation>Přidat z API pluginů</translation> </message> @@ -11282,7 +11295,7 @@ <translation>Výběr výplně konce řádku.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="113"/> <source>Fill to end of line</source> <translation>Vyplnit do konce řádku</translation> </message> @@ -11327,7 +11340,7 @@ <translation>Vybrat font.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="69"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="103"/> <source>Font</source> <translation></translation> </message> @@ -12778,7 +12791,7 @@ <translation>Mód:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="58"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1080"/> <source>Disabled</source> <translation>Vypnuto</translation> </message> @@ -13562,7 +13575,7 @@ <context> <name>EmailDialog</name> <message> - <location filename="../UI/EmailDialog.py" line="339"/> + <location filename="../UI/EmailDialog.ui" line="13"/> <source>Send bug report</source> <translation>Odeslat hlášení o chybách</translation> </message> @@ -15007,12 +15020,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="110"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="122"/> <source>Host</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="111"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="127"/> <source>Permission</source> <translation type="unfinished"></translation> </message> @@ -15027,7 +15040,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="51"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="97"/> <source>Geolocation</source> <translation type="unfinished"></translation> </message> @@ -16171,7 +16184,7 @@ <translation type="unfinished">Jméno:</translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="193"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="158"/> <source><no flash cookie selected></source> <translation type="unfinished"></translation> </message> @@ -16181,7 +16194,7 @@ <translation type="unfinished">Velikost:</translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="122"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="137"/> <source>Origin:</source> <translation type="unfinished"></translation> </message> @@ -16216,7 +16229,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="213"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="225"/> <source>Remove Cookie</source> <translation type="unfinished"></translation> </message> @@ -16642,7 +16655,7 @@ <context> <name>GreaseMonkeyAddScriptDialog</name> <message> - <location filename="../WebBrowser/GreaseMonkey/GreaseMonkeyAddScriptDialog.py" line="105"/> + <location filename="../WebBrowser/GreaseMonkey/GreaseMonkeyAddScriptDialog.ui" line="14"/> <source>GreaseMonkey Script Installation</source> <translation type="unfinished"></translation> </message> @@ -22339,7 +22352,7 @@ <context> <name>HgAddSubrepositoryDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.py" line="98"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.ui" line="14"/> <source>Add Sub-repository</source> <translation type="unfinished"></translation> </message> @@ -23424,7 +23437,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="247"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.ui" line="73"/> <source>Resolved</source> <translation type="unfinished"></translation> </message> @@ -23434,7 +23447,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="245"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.ui" line="83"/> <source>Unresolved</source> <translation type="unfinished"></translation> </message> @@ -24058,7 +24071,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="317"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.ui" line="55"/> <source>Revision</source> <translation type="unfinished">Revize</translation> </message> @@ -24337,7 +24350,7 @@ <context> <name>HgLogBrowserDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="71"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="14"/> <source>Mercurial Log</source> <translation></translation> </message> @@ -24367,17 +24380,17 @@ <translation>Vybrat pole pro filtrování</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="96"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="181"/> <source>Revision</source> <translation>Revize</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="97"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="191"/> <source>Author</source> <translation>Autor</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="98"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="201"/> <source>Message</source> <translation>Zpráva</translation> </message> @@ -28244,7 +28257,7 @@ <context> <name>HgStatusDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="313"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="14"/> <source>Mercurial Status</source> <translation>Mercurial status</translation> </message> @@ -28385,7 +28398,7 @@ <translation>Proces {0} nelze spustit. Ověřte, že je umístěn v požadované cestě.</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="708"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="87"/> <source>Commit</source> <translation>Zapsat měny</translation> </message> @@ -28505,7 +28518,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="854"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="203"/> <source>Differences</source> <translation type="unfinished"></translation> </message> @@ -29272,7 +29285,7 @@ <translation>Stisknout pro odebrání vybraných položek</translation> </message> <message> - <location filename="../WebBrowser/History/HistoryDialog.py" line="114"/> + <location filename="../WebBrowser/History/HistoryDialog.ui" line="75"/> <source>&Remove</source> <translation>Odeb&rat</translation> </message> @@ -35151,92 +35164,92 @@ <translation>Standardní tlačítka</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="40"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="219"/> <source>Apply</source> <translation>Použít</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="39"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="226"/> <source>Abort</source> <translation>Přerušit</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="41"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="233"/> <source>Cancel</source> <translation>Zrušit</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="45"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="240"/> <source>Ignore</source> <translation>Ignorovat</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="54"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="247"/> <source>Save all</source> <translation>Uložit vše</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="53"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="254"/> <source>Save</source> <translation>Uložit</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="43"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="261"/> <source>Discard</source> <translation>Zahodit</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="56"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="268"/> <source>Yes to all</source> <translation>Ano pro všechno</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="49"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="275"/> <source>Open</source> <translation>Otevřít</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="50"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="282"/> <source>Reset</source> <translation>Reset</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="48"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="289"/> <source>Ok</source> <translation>Ok</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="46"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="296"/> <source>No</source> <translation>Ne</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="44"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="303"/> <source>Help</source> <translation>Pomoc</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="47"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="310"/> <source>No to all</source> <translation>Ne pro všechno</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="52"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="317"/> <source>Retry</source> <translation>Vrátit</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="51"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="324"/> <source>Restore defaults</source> <translation>Obnovit defaulty</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="55"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="331"/> <source>Yes</source> <translation>Ano</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="42"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="338"/> <source>Close</source> <translation>Zavřít</translation> </message> @@ -36986,7 +36999,7 @@ <context> <name>NoCacheHostsDialog</name> <message> - <location filename="../Helpviewer/Network/NoCacheHostsDialog.py" line="52"/> + <location filename="../Helpviewer/Network/NoCacheHostsDialog.ui" line="14"/> <source>Not Cached Hosts</source> <translation type="unfinished"></translation> </message> @@ -37094,7 +37107,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/NotificationsPage.py" line="81"/> + <location filename="../Preferences/ConfigurationPages/NotificationsPage.ui" line="146"/> <source>Visual Selection</source> <translation type="unfinished"></translation> </message> @@ -37765,7 +37778,7 @@ <context> <name>PasswordsDialog</name> <message> - <location filename="../WebBrowser/Passwords/PasswordsDialog.py" line="91"/> + <location filename="../WebBrowser/Passwords/PasswordsDialog.ui" line="14"/> <source>Saved Passwords</source> <translation>Uložená hesla</translation> </message> @@ -38329,7 +38342,7 @@ <translation>Některé pluginy nebyly instalovány.</translation> </message> <message> - <location filename="../PluginManager/PluginInstallDialog.py" line="470"/> + <location filename="../PluginManager/PluginInstallDialog.py" line="476"/> <source>Unspecific exception installing plugin.</source> <translation>Neznámá výjimka při instalaci pluginu.</translation> </message> @@ -38388,7 +38401,7 @@ <translation><p>Plugin modul <b>{0}</b> již existuje. Zrušeno...</p></translation> </message> <message> - <location filename="../PluginManager/PluginInstallDialog.py" line="463"/> + <location filename="../PluginManager/PluginInstallDialog.py" line="469"/> <source>Error installing plugin. Reason: {0}</source> <translation>Chyba při instalaci pluginu. Důvod: {0}</translation> </message> @@ -38411,7 +38424,7 @@ <translation>Modulu chybí atributy 'pluginType' a/nebo 'pluginTypename'.</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1103"/> + <location filename="../PluginManager/PluginManager.py" line="1106"/> <source>Plugin Manager Error</source> <translation>Chyba plugin manažeru</translation> </message> @@ -38431,27 +38444,27 @@ <translation>Modul se nepodařilo načíst. Chyba: {0}</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1103"/> + <location filename="../PluginManager/PluginManager.py" line="1106"/> <source><p>The plugin download directory <b>{0}</b> could not be created. Please configure it via the configuration dialog.</p><p>Reason: {1}</p></source> <translation><p>Download plugin adresář <b>{0}</b> se nepodařilo vytvořit. Prosím, upravte nastavení přes konfigurační dialog.</p><p>Důvod: {1}</p></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1179"/> + <location filename="../PluginManager/PluginManager.py" line="1182"/> <source>Error downloading file</source> <translation type="unfinished">Chyba při stahování souboru</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1179"/> + <location filename="../PluginManager/PluginManager.py" line="1182"/> <source><p>Could not download the requested file from {0}.</p><p>Error: {1}</p></source> <translation type="unfinished"><p>Nelze stáhnout požadovaný soubor z {0}.</p><p>Chyba: {1}</p></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1216"/> + <location filename="../PluginManager/PluginManager.py" line="1219"/> <source>New plugin versions available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1216"/> + <location filename="../PluginManager/PluginManager.py" line="1219"/> <source><p>There are new plug-ins or plug-in updates available. Use the plug-in repository dialog to get them.</p></source> <translation type="unfinished"></translation> </message> @@ -39372,207 +39385,207 @@ <context> <name>Project</name> <message> - <location filename="../Project/Project.py" line="164"/> + <location filename="../Project/Project.py" line="166"/> <source>Ruby Files (*.rb);;</source> <translation>Ruby soubory (*.rb);;</translation> </message> <message> - <location filename="../Project/Project.py" line="245"/> + <location filename="../Project/Project.py" line="247"/> <source>Console</source> <translation>Konzole</translation> </message> <message> - <location filename="../Project/Project.py" line="246"/> + <location filename="../Project/Project.py" line="248"/> <source>Other</source> <translation>Ostatní</translation> </message> <message> - <location filename="../Project/Project.py" line="699"/> + <location filename="../Project/Project.py" line="701"/> <source>Read project file</source> <translation>Načíst soubor projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="799"/> + <location filename="../Project/Project.py" line="801"/> <source>Save project file</source> <translation>Uložit soubor projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="835"/> + <location filename="../Project/Project.py" line="837"/> <source>Read user project properties</source> <translation>Načíst uživatelská nastavení projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="859"/> + <location filename="../Project/Project.py" line="861"/> <source>Save user project properties</source> <translation>Uložit uživatelská nastavení projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="917"/> + <location filename="../Project/Project.py" line="919"/> <source>Read project session</source> <translation>Načíst relaci projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="1139"/> + <location filename="../Project/Project.py" line="1141"/> <source>Please save the project first.</source> <translation>Prosím, nejdříve uložte projekt.</translation> </message> <message> - <location filename="../Project/Project.py" line="953"/> + <location filename="../Project/Project.py" line="955"/> <source>Save project session</source> <translation>Uložit relaci projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="982"/> + <location filename="../Project/Project.py" line="984"/> <source>Delete project session</source> <translation>Smazat relaci projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="1016"/> + <location filename="../Project/Project.py" line="1018"/> <source>Read tasks</source> <translation>Načíst úlohy</translation> </message> <message> - <location filename="../Project/Project.py" line="1036"/> + <location filename="../Project/Project.py" line="1038"/> <source>Save tasks</source> <translation>Uložit úlohy</translation> </message> <message> - <location filename="../Project/Project.py" line="1093"/> + <location filename="../Project/Project.py" line="1095"/> <source>Read debugger properties</source> <translation>Načíst nastavení debuggeru</translation> </message> <message> - <location filename="../Project/Project.py" line="1127"/> + <location filename="../Project/Project.py" line="1129"/> <source>Save debugger properties</source> <translation>Uložit nastavení debuggeru</translation> </message> <message> - <location filename="../Project/Project.py" line="1153"/> + <location filename="../Project/Project.py" line="1155"/> <source>Delete debugger properties</source> <translation>Smazat nastavení debuggeru</translation> </message> <message> - <location filename="../Project/Project.py" line="1261"/> + <location filename="../Project/Project.py" line="1263"/> <source>Add Language</source> <translation>Přidat jazyk</translation> </message> <message> - <location filename="../Project/Project.py" line="1383"/> + <location filename="../Project/Project.py" line="1385"/> <source>Delete translation</source> <translation>Smazat překlad</translation> </message> <message> - <location filename="../Project/Project.py" line="1534"/> + <location filename="../Project/Project.py" line="1536"/> <source>Add file</source> <translation>Přidat soubor</translation> </message> <message> - <location filename="../Project/Project.py" line="1651"/> + <location filename="../Project/Project.py" line="1653"/> <source>The target directory must not be empty.</source> <translation>Cílový adresář nesmí být prázdný.</translation> </message> <message> - <location filename="../Project/Project.py" line="1662"/> + <location filename="../Project/Project.py" line="1664"/> <source>Add directory</source> <translation>Přidat adresář</translation> </message> <message> - <location filename="../Project/Project.py" line="1662"/> + <location filename="../Project/Project.py" line="1664"/> <source>The source directory must not be empty.</source> <translation>Cílový adresář nesmí být prázdný.</translation> </message> <message> - <location filename="../Project/Project.py" line="1786"/> + <location filename="../Project/Project.py" line="1788"/> <source>Rename file</source> <translation>Přejmenovat soubor</translation> </message> <message> - <location filename="../Project/Project.py" line="1810"/> + <location filename="../Project/Project.py" line="1812"/> <source>Rename File</source> <translation>Přejmenovat soubor</translation> </message> <message> - <location filename="../Project/Project.py" line="2046"/> + <location filename="../Project/Project.py" line="2048"/> <source>Delete file</source> <translation>Smazat soubor</translation> </message> <message> - <location filename="../Project/Project.py" line="2075"/> + <location filename="../Project/Project.py" line="2077"/> <source>Delete directory</source> <translation>Smazat adresář</translation> </message> <message> - <location filename="../Project/Project.py" line="2157"/> + <location filename="../Project/Project.py" line="2159"/> <source>Create project directory</source> <translation>Vytvořit adresář projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="2681"/> + <location filename="../Project/Project.py" line="2683"/> <source>New Project</source> <translation>Nový projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="2233"/> + <location filename="../Project/Project.py" line="2235"/> <source>Add existing files to the project?</source> <translation>Přidat existující soubory do projektu?</translation> </message> <message> - <location filename="../Project/Project.py" line="2352"/> + <location filename="../Project/Project.py" line="2354"/> <source>Would you like to edit the VCS command options?</source> <translation>Chcete editovat parametry VCS příkazu?</translation> </message> <message> - <location filename="../Project/Project.py" line="3441"/> + <location filename="../Project/Project.py" line="3443"/> <source>New project</source> <translation>Nový projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="2300"/> + <location filename="../Project/Project.py" line="2302"/> <source>Shall the project file be added to the repository?</source> <translation>Má být projekt přidán do repozitáře?</translation> </message> <message> - <location filename="../Project/Project.py" line="2324"/> + <location filename="../Project/Project.py" line="2326"/> <source>Select version control system for the project</source> <translation>Výběr verzovacího systému projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="3455"/> + <location filename="../Project/Project.py" line="3457"/> <source>Open project</source> <translation>Otevřít projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="2817"/> + <location filename="../Project/Project.py" line="2819"/> <source>Project Files (*.e4p)</source> <translation>Soubory projektu (*.e4p)</translation> </message> <message> - <location filename="../Project/Project.py" line="3492"/> + <location filename="../Project/Project.py" line="3494"/> <source>Save project as</source> <translation>Uložit projekt jako</translation> </message> <message> - <location filename="../Project/Project.py" line="2832"/> + <location filename="../Project/Project.py" line="2834"/> <source>Save File</source> <translation>Uložit soubor</translation> </message> <message> - <location filename="../Project/Project.py" line="2868"/> + <location filename="../Project/Project.py" line="2870"/> <source>Close Project</source> <translation>Zavřít projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="2868"/> + <location filename="../Project/Project.py" line="2870"/> <source>The current project has unsaved changes.</source> <translation>Aktuální projekt obsahuje neuložené změny.</translation> </message> <message> - <location filename="../Project/Project.py" line="3033"/> + <location filename="../Project/Project.py" line="3035"/> <source>Syntax errors detected</source> <translation>Zjištěny syntaktické chyby</translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="3033"/> + <location filename="../Project/Project.py" line="3035"/> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>Projekt obsahuje %n soubor se syntaktickými chybami.</numerusform> @@ -39581,969 +39594,1044 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="3441"/> + <location filename="../Project/Project.py" line="3443"/> <source>&New...</source> <translation>&Nový...</translation> </message> <message> - <location filename="../Project/Project.py" line="3446"/> + <location filename="../Project/Project.py" line="3448"/> <source>Generate a new project</source> <translation>Vygenerovat nový projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3447"/> + <location filename="../Project/Project.py" line="3449"/> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>Nový...</b><p>Otevře se dialogové okno pro zadání informací o novém projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3455"/> + <location filename="../Project/Project.py" line="3457"/> <source>&Open...</source> <translation>&Otevřít...</translation> </message> <message> - <location filename="../Project/Project.py" line="3460"/> + <location filename="../Project/Project.py" line="3462"/> <source>Open an existing project</source> <translation>Otevřít existující projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3461"/> + <location filename="../Project/Project.py" line="3463"/> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>Otevřít....</b><p>Otevře existující projekt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3468"/> + <location filename="../Project/Project.py" line="3470"/> <source>Close project</source> <translation>Zavřít projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3468"/> + <location filename="../Project/Project.py" line="3470"/> <source>&Close</source> <translation>&Zavřít</translation> </message> <message> - <location filename="../Project/Project.py" line="3472"/> + <location filename="../Project/Project.py" line="3474"/> <source>Close the current project</source> <translation>Uzavře aktuální projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3473"/> + <location filename="../Project/Project.py" line="3475"/> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>Zavřít</b><p>Aktuální projekt se uzavře.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3480"/> + <location filename="../Project/Project.py" line="3482"/> <source>Save project</source> <translation>Uložit projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3671"/> + <location filename="../Project/Project.py" line="3673"/> <source>&Save</source> <translation>&Uložit</translation> </message> <message> - <location filename="../Project/Project.py" line="3484"/> + <location filename="../Project/Project.py" line="3486"/> <source>Save the current project</source> <translation>Uložit aktuální projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3485"/> + <location filename="../Project/Project.py" line="3487"/> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>Uložit</b><p>Aktuální projekt se uloží.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3492"/> + <location filename="../Project/Project.py" line="3494"/> <source>Save &as...</source> <translation>Uložit j&ako...</translation> </message> <message> - <location filename="../Project/Project.py" line="3496"/> - <source>Save the current project to a new file</source> - <translation>Uloží aktuální projekt do nového souboru</translation> - </message> - <message> <location filename="../Project/Project.py" line="3498"/> + <source>Save the current project to a new file</source> + <translation>Uloží aktuální projekt do nového souboru</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3500"/> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>Uložit jako</b><p>Uloží aktuální projekt do nového souboru.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3507"/> + <location filename="../Project/Project.py" line="3509"/> <source>Add files to project</source> <translation>Přidat soubory do projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="3507"/> + <location filename="../Project/Project.py" line="3509"/> <source>Add &files...</source> <translation>&Přidat soubory...</translation> </message> <message> - <location filename="../Project/Project.py" line="3512"/> - <source>Add files to the current project</source> - <translation>Přidat soubory do aktuálního projektu</translation> - </message> - <message> <location filename="../Project/Project.py" line="3514"/> + <source>Add files to the current project</source> + <translation>Přidat soubory do aktuálního projektu</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3516"/> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation><b>Přidat soubory...</b><p>Otevře dialog pri přidání souborů do aktuálního projektu. Místo pro přidání je definováno extenzí souborů.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3523"/> + <location filename="../Project/Project.py" line="3525"/> <source>Add directory to project</source> <translation>Přidat adresář do projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="3523"/> + <location filename="../Project/Project.py" line="3525"/> <source>Add directory...</source> <translation>Přidat adresář...</translation> </message> <message> - <location filename="../Project/Project.py" line="3528"/> - <source>Add a directory to the current project</source> - <translation>Přidat adresář do aktuálního projektu</translation> - </message> - <message> <location filename="../Project/Project.py" line="3530"/> + <source>Add a directory to the current project</source> + <translation>Přidat adresář do aktuálního projektu</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3532"/> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>Přidat adresář...</b><p>Otevře dialog pro přičtení adresáře do aktuálního projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3538"/> + <location filename="../Project/Project.py" line="3540"/> <source>Add translation to project</source> <translation>Přidat překlad do projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="3538"/> + <location filename="../Project/Project.py" line="3540"/> <source>Add &translation...</source> <translation>Přida&t překlad...</translation> </message> <message> - <location filename="../Project/Project.py" line="3543"/> - <source>Add a translation to the current project</source> - <translation>Přidat překlad do aktuálního projektu</translation> - </message> - <message> <location filename="../Project/Project.py" line="3545"/> + <source>Add a translation to the current project</source> + <translation>Přidat překlad do aktuálního projektu</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3547"/> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation><b>Přidat překlad</b><p>Otevře dialog pro přidání překladu do aktuálního projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3553"/> + <location filename="../Project/Project.py" line="3555"/> <source>Search new files</source> <translation>Hledat nové soubory</translation> </message> <message> - <location filename="../Project/Project.py" line="3553"/> + <location filename="../Project/Project.py" line="3555"/> <source>Searc&h new files...</source> <translation>&Hledat nové soubory...</translation> </message> <message> - <location filename="../Project/Project.py" line="3557"/> - <source>Search new files in the project directory.</source> - <translation>Hledat nové soubory v adresáři projektu.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3559"/> + <source>Search new files in the project directory.</source> + <translation>Hledat nové soubory v adresáři projektu.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3561"/> <source><b>Search new files...</b><p>This searches for new files (sources, *.ui, *.idl) in the project directory and registered subdirectories.</p></source> <translation><b>Hledat nové soubory...</b><p>Hledají se nové soubory (zdrojové, *.ui, *.idl) v adresáři projektu a v registrovaných podadresářích.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3582"/> + <location filename="../Project/Project.py" line="3584"/> <source>Project properties</source> <translation>Nastavení projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="3582"/> + <location filename="../Project/Project.py" line="3584"/> <source>&Properties...</source> <translation>&Natavení...</translation> </message> <message> - <location filename="../Project/Project.py" line="3587"/> + <location filename="../Project/Project.py" line="3589"/> <source>Show the project properties</source> <translation>Zobrazit nastavení projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="3588"/> + <location filename="../Project/Project.py" line="3590"/> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation><b>Nastavení...</b><p>Zobrazí dialog s editací nastavení projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3595"/> + <location filename="../Project/Project.py" line="3597"/> <source>User project properties</source> <translation>Uživatelská nastavení projektu</translation> </message> <message> - <location filename="../Project/Project.py" line="3595"/> + <location filename="../Project/Project.py" line="3597"/> <source>&User Properties...</source> <translation>Uživat&elská nastavení...</translation> </message> <message> - <location filename="../Project/Project.py" line="3600"/> - <source>Show the user specific project properties</source> - <translation>Zobrazit uživatelem definovaná nastavení projektu</translation> - </message> - <message> <location filename="../Project/Project.py" line="3602"/> + <source>Show the user specific project properties</source> + <translation>Zobrazit uživatelem definovaná nastavení projektu</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3604"/> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation><b>Uživatelská nastavení...</b><p>Zobrazí dialog s editací uživatelských nastavení projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3610"/> + <location filename="../Project/Project.py" line="3612"/> <source>Filetype Associations</source> <translation>Asociace typů souborů</translation> </message> <message> - <location filename="../Project/Project.py" line="3610"/> + <location filename="../Project/Project.py" line="3612"/> <source>Filetype Associations...</source> <translation>Asociace typů souborů...</translation> </message> <message> - <location filename="../Project/Project.py" line="3614"/> - <source>Show the project filetype associations</source> - <translation>Zobrazit asociace typů souborů</translation> - </message> - <message> <location filename="../Project/Project.py" line="3616"/> + <source>Show the project filetype associations</source> + <translation>Zobrazit asociace typů souborů</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3618"/> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the filetype associations of the project. These associations determine the type (source, form, interface or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation><b>Asociace typů souborů...</b><p>Zobrazí se dialog s editací asociace typů souborů v projektu. Na základě vzorku souborového jména tyto asociace určují typ souboru (zdrojový kód, formulář, interface nebo jiné). Tyto asociace jsou použity při přidávání souborů do projektu a při vyhledávání.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3646"/> + <location filename="../Project/Project.py" line="3648"/> <source>Debugger Properties</source> <translation>Nastavení debugeru</translation> </message> <message> - <location filename="../Project/Project.py" line="3646"/> + <location filename="../Project/Project.py" line="3648"/> <source>Debugger &Properties...</source> <translation>Nastavení &debuggeru...</translation> </message> <message> - <location filename="../Project/Project.py" line="3650"/> + <location filename="../Project/Project.py" line="3652"/> <source>Show the debugger properties</source> <translation>Zobrazit nastavení debugeru</translation> </message> <message> - <location filename="../Project/Project.py" line="3651"/> + <location filename="../Project/Project.py" line="3653"/> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation><b>Nastavení debugeru...</b><p>Zobrazí dialog s editací nastavení debugeru.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3659"/> + <location filename="../Project/Project.py" line="3661"/> <source>Load</source> <translation>Načíst</translation> </message> <message> - <location filename="../Project/Project.py" line="3659"/> + <location filename="../Project/Project.py" line="3661"/> <source>&Load</source> <translation>&Načíst</translation> </message> <message> - <location filename="../Project/Project.py" line="3663"/> + <location filename="../Project/Project.py" line="3665"/> <source>Load the debugger properties</source> <translation>Načíst nastavení debugeru</translation> </message> <message> - <location filename="../Project/Project.py" line="3664"/> + <location filename="../Project/Project.py" line="3666"/> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation><b>Načíst nastavení debugeru</b><p>Načtou se nastavení debugeru do projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3671"/> + <location filename="../Project/Project.py" line="3673"/> <source>Save</source> <translation>Uložit</translation> </message> <message> - <location filename="../Project/Project.py" line="3675"/> + <location filename="../Project/Project.py" line="3677"/> <source>Save the debugger properties</source> <translation>Uložit nastavení debugeru</translation> </message> <message> - <location filename="../Project/Project.py" line="3676"/> + <location filename="../Project/Project.py" line="3678"/> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation><b>Uložit nastavení debugeru</b><p>Uloží nastavení debugeru definovaná v projektu..</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3683"/> + <location filename="../Project/Project.py" line="3685"/> <source>Delete</source> <translation>Smazat</translation> </message> <message> - <location filename="../Project/Project.py" line="3683"/> + <location filename="../Project/Project.py" line="3685"/> <source>&Delete</source> <translation>Sma&zat</translation> </message> <message> - <location filename="../Project/Project.py" line="3687"/> + <location filename="../Project/Project.py" line="3689"/> <source>Delete the debugger properties</source> <translation>Smazat nastavení debugeru</translation> </message> <message> - <location filename="../Project/Project.py" line="3688"/> + <location filename="../Project/Project.py" line="3690"/> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation><b>Smazat nastavení debugeru</b><p>Smaže se soubor obsahující nastavení debugeru v daném projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3696"/> + <location filename="../Project/Project.py" line="3698"/> <source>Reset</source> <translation></translation> </message> <message> - <location filename="../Project/Project.py" line="3696"/> + <location filename="../Project/Project.py" line="3698"/> <source>&Reset</source> <translation>&Reset</translation> </message> <message> - <location filename="../Project/Project.py" line="3700"/> + <location filename="../Project/Project.py" line="3702"/> <source>Reset the debugger properties</source> <translation>Reset nastavení debugeru</translation> </message> <message> - <location filename="../Project/Project.py" line="3701"/> + <location filename="../Project/Project.py" line="3703"/> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation><b>Reset nastavení debugeru</b><p>Zresetuje nastavení debugeru v projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3710"/> + <location filename="../Project/Project.py" line="3712"/> <source>Load session</source> <translation>Načíst relaci</translation> </message> <message> - <location filename="../Project/Project.py" line="3714"/> + <location filename="../Project/Project.py" line="3716"/> <source>Load the projects session file.</source> <translation>Načíst soubor s relací projektu.</translation> </message> <message> - <location filename="../Project/Project.py" line="3715"/> + <location filename="../Project/Project.py" line="3717"/> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Načíst relaci</b><p>Načte soubor s relací projektu. Relace obsahuje následující údaje:<br>- všechny otevřené zdrojové soubory<br>- všechny breakpointy<br>- argumenty příkazové řádky <br>- pracovní adresář<br>- příznak výjimky</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3728"/> + <location filename="../Project/Project.py" line="3730"/> <source>Save session</source> <translation>Uložit relaci</translation> </message> <message> - <location filename="../Project/Project.py" line="3732"/> + <location filename="../Project/Project.py" line="3734"/> <source>Save the projects session file.</source> <translation>Uložit soubor s relací projektu.</translation> </message> <message> - <location filename="../Project/Project.py" line="3733"/> + <location filename="../Project/Project.py" line="3735"/> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Uložit relaci</b><p>Uloží soubor s relací projektu. Relace obsahuje následující údaje:<br>- všechny otevřené zdrojové soubory<br>- všechny breakpointy<br>- argumenty příkazové řádky <br>- pracovní adresář<br>- příznak výjimky</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3746"/> + <location filename="../Project/Project.py" line="3748"/> <source>Delete session</source> <translation>Smazat relaci</translation> </message> <message> - <location filename="../Project/Project.py" line="3750"/> + <location filename="../Project/Project.py" line="3752"/> <source>Delete the projects session file.</source> <translation>Smaže soubor s relací projektu.</translation> </message> <message> - <location filename="../Project/Project.py" line="3751"/> + <location filename="../Project/Project.py" line="3753"/> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation><b>Smazat relaci</b><p>Smaže soubor s relací projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3760"/> + <location filename="../Project/Project.py" line="3762"/> <source>Code Metrics</source> <translation>Metriky kódu</translation> </message> <message> - <location filename="../Project/Project.py" line="3760"/> + <location filename="../Project/Project.py" line="3762"/> <source>&Code Metrics...</source> <translation>Metriky &kódu...</translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> - <source>Show some code metrics for the project.</source> - <translation>Zobrazit metriky kódu projektu.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3766"/> + <source>Show some code metrics for the project.</source> + <translation>Zobrazit metriky kódu projektu.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3768"/> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation><b>Metriky kódu...</b><p>Zobrazí se metriky kódu všech python souborů v projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3774"/> + <location filename="../Project/Project.py" line="3776"/> <source>Python Code Coverage</source> <translation>Pokrytí python kódu</translation> </message> <message> - <location filename="../Project/Project.py" line="3774"/> + <location filename="../Project/Project.py" line="3776"/> <source>Code Co&verage...</source> <translation>Pokr&ytí kódu...</translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> - <source>Show code coverage information for the project.</source> - <translation>Zobrazit informace pokrytí kódu projektu.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3780"/> + <source>Show code coverage information for the project.</source> + <translation>Zobrazit informace pokrytí kódu projektu.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3782"/> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation><b>Pokrytí kódu...</b><p>Zobrazí informace o pokrytí kódu ve všech python souborech projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4564"/> + <location filename="../Project/Project.py" line="4568"/> <source>Profile Data</source> <translation>Profilovat data</translation> </message> <message> - <location filename="../Project/Project.py" line="3788"/> + <location filename="../Project/Project.py" line="3790"/> <source>&Profile Data...</source> <translation>&Profilovat data...</translation> </message> <message> - <location filename="../Project/Project.py" line="3792"/> - <source>Show profiling data for the project.</source> - <translation>Zobrazit profilování dat projektu.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3794"/> + <source>Show profiling data for the project.</source> + <translation>Zobrazit profilování dat projektu.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3796"/> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation><b>Profilovat data</b><p>Zobrazí se profilování dat projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4618"/> + <location filename="../Project/Project.py" line="4622"/> <source>Application Diagram</source> <translation>Diagram aplikace</translation> </message> <message> - <location filename="../Project/Project.py" line="3803"/> + <location filename="../Project/Project.py" line="3805"/> <source>&Application Diagram...</source> <translation>Diagram &aplikace...</translation> </message> <message> - <location filename="../Project/Project.py" line="3807"/> - <source>Show a diagram of the project.</source> - <translation>Zobrazit diagram projektu.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3809"/> + <source>Show a diagram of the project.</source> + <translation>Zobrazit diagram projektu.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3811"/> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>Diagram aplikace...</b><p>Zobrazí diagram projektu.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3900"/> + <location filename="../Project/Project.py" line="3904"/> <source>&Project</source> <translation>&Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3901"/> + <location filename="../Project/Project.py" line="3905"/> <source>Open &Recent Projects</source> <translation>Otevřít poslední p&rojekty</translation> </message> <message> - <location filename="../Project/Project.py" line="3902"/> - <source>&Version Control</source> - <translation>Kontrola &verzí</translation> - </message> - <message> <location filename="../Project/Project.py" line="3906"/> - <source>Chec&k</source> - <translation>Zkontro&lovat</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3908"/> - <source>Sho&w</source> - <translation>Zo&brazit</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3909"/> - <source>&Diagrams</source> - <translation>&Diagramy</translation> + <source>&Version Control</source> + <translation>Kontrola &verzí</translation> </message> <message> <location filename="../Project/Project.py" line="3910"/> - <source>Session</source> - <translation>Relace</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3911"/> - <source>Source &Documentation</source> - <translation>Zd&rojová dokumentace</translation> + <source>Chec&k</source> + <translation>Zkontro&lovat</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3912"/> + <source>Sho&w</source> + <translation>Zo&brazit</translation> </message> <message> <location filename="../Project/Project.py" line="3913"/> - <source>Debugger</source> - <translation></translation> + <source>&Diagrams</source> + <translation>&Diagramy</translation> </message> <message> <location filename="../Project/Project.py" line="3914"/> + <source>Session</source> + <translation>Relace</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3915"/> + <source>Source &Documentation</source> + <translation>Zd&rojová dokumentace</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3917"/> + <source>Debugger</source> + <translation></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3918"/> <source>Pac&kagers</source> <translation>Balíč&ky</translation> </message> <message> - <location filename="../Project/Project.py" line="4022"/> + <location filename="../Project/Project.py" line="4026"/> <source>Project</source> <translation>Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="4088"/> + <location filename="../Project/Project.py" line="4092"/> <source>&Clear</source> <translation>&Vyčistit</translation> </message> <message> - <location filename="../Project/Project.py" line="4227"/> + <location filename="../Project/Project.py" line="4231"/> <source>Search New Files</source> <translation>Hledat nové soubory</translation> </message> <message> - <location filename="../Project/Project.py" line="4227"/> + <location filename="../Project/Project.py" line="4231"/> <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="4373"/> + <location filename="../Project/Project.py" line="4377"/> <source>Version Control System</source> <translation>Version Control System</translation> </message> <message> - <location filename="../Project/Project.py" line="4491"/> + <location filename="../Project/Project.py" line="4495"/> <source>Coverage Data</source> <translation>Datové pokrytí</translation> </message> <message> - <location filename="../Project/Project.py" line="4541"/> + <location filename="../Project/Project.py" line="4545"/> <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="4514"/> + <location filename="../Project/Project.py" line="4518"/> <source>Code Coverage</source> <translation>Pokrytí kódu</translation> </message> <message> - <location filename="../Project/Project.py" line="4514"/> + <location filename="../Project/Project.py" line="4518"/> <source>Please select a coverage file</source> <translation>Prosím, vyberte soubor pokrytí</translation> </message> <message> - <location filename="../Project/Project.py" line="4564"/> + <location filename="../Project/Project.py" line="4568"/> <source>Please select a profile file</source> <translation>Prosím, vyberte soubor s profilem</translation> </message> <message> - <location filename="../Project/Project.py" line="4618"/> + <location filename="../Project/Project.py" line="4622"/> <source>Include module names?</source> <translation>Včetně jmen modulů?</translation> </message> <message> - <location filename="../Project/Project.py" line="4776"/> + <location filename="../Project/Project.py" line="4780"/> <source>Create Package List</source> <translation>Vytvořit seznam balíčků</translation> </message> <message> - <location filename="../Project/Project.py" line="3832"/> + <location filename="../Project/Project.py" line="3834"/> <source>Create &Package List</source> <translation>Vytvořit seznam &balíčků</translation> </message> <message> - <location filename="../Project/Project.py" line="5003"/> + <location filename="../Project/Project.py" line="5027"/> <source>Create Plugin Archive</source> <translation>Vytvořit Plugin archiv</translation> </message> <message> <location filename="../Project/Project.py" line="3848"/> <source>Create Plugin &Archive</source> - <translation>Vytvořit Plugin &archiv</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4736"/> + <translation type="obsolete">Vytvořit Plugin &archiv</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4740"/> <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="4815"/> <source><p>The file <b>PKGLIST</b> does not exist. Aborting...</p></source> - <translation><p>Soubor <b>PKGLIST</b> neexistuje. Zrušeno...</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4823"/> + <translation type="obsolete"><p>Soubor <b>PKGLIST</b> neexistuje. Zrušeno...</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4799"/> <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="1565"/> + <location filename="../Project/Project.py" line="1567"/> <source><p>The source directory doesn't contain any files belonging to the selected category.</p></source> <translation><p>Zdrojový adresář neobsahuje žádné soubory související s danou kategorií.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2681"/> + <location filename="../Project/Project.py" line="2683"/> <source>Select Version Control System</source> <translation>Vybrat Version Control System</translation> </message> <message> - <location filename="../Project/Project.py" line="2331"/> + <location filename="../Project/Project.py" line="2333"/> <source>None</source> <translation>None</translation> </message> <message> - <location filename="../Project/Project.py" line="344"/> + <location filename="../Project/Project.py" line="346"/> <source>Registering Project Type</source> <translation>Zaregistrovat typ projektu</translation> </message> <message> <location filename="../Project/Project.py" line="3864"/> <source>Create Plugin Archive (Snapshot)</source> - <translation>Vytvořit archiv pluginů (snímek)</translation> + <translation type="obsolete">Vytvořit archiv pluginů (snímek)</translation> </message> <message> <location filename="../Project/Project.py" line="3864"/> <source>Create Plugin Archive (&Snapshot)</source> - <translation>Vytvořit archiv pluginů (&snímek)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="1261"/> + <translation type="obsolete">Vytvořit archiv pluginů (&snímek)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="1263"/> <source>You have to specify a translation pattern first.</source> <translation>Nejdříve musíte specifikovat vzor překladu.</translation> </message> <message> - <location filename="../Project/Project.py" line="2430"/> + <location filename="../Project/Project.py" line="2432"/> <source>Translation Pattern</source> <translation>Vzor překladu</translation> </message> <message> - <location filename="../Project/Project.py" line="2430"/> + <location filename="../Project/Project.py" line="2432"/> <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source> <translation>Zadejte vzor cesty pro soubory s překlady (použijte '%language%' na místě s kódem jazyka):</translation> </message> <message> - <location filename="../Project/Project.py" line="3628"/> + <location filename="../Project/Project.py" line="3630"/> <source>Lexer Associations</source> <translation>Spojení lexeru</translation> </message> <message> - <location filename="../Project/Project.py" line="3628"/> + <location filename="../Project/Project.py" line="3630"/> <source>Lexer Associations...</source> <translation>Spojení lexeru...</translation> </message> <message> - <location filename="../Project/Project.py" line="3632"/> - <source>Show the project lexer associations (overriding defaults)</source> - <translation>Zobrazit spojení lexeru projektu (přepíše výchozí)</translation> - </message> - <message> <location filename="../Project/Project.py" line="3634"/> + <source>Show the project lexer associations (overriding defaults)</source> + <translation>Zobrazit spojení lexeru projektu (přepíše výchozí)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3636"/> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation><b>Spojení lexeru...</b><p>Zobrazuje dialog s editací spojení lexeru projektu. Tato spojení přepisují globální lexer spojení. Lexer je použit pro zvýraznění textu v editoru.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="260"/> + <location filename="../Project/Project.py" line="262"/> <source>PySide GUI</source> <translation></translation> </message> <message> - <location filename="../Project/Project.py" line="261"/> + <location filename="../Project/Project.py" line="263"/> <source>PySide Console</source> <translation>PySide konzole</translation> </message> <message> - <location filename="../Project/Project.py" line="161"/> + <location filename="../Project/Project.py" line="163"/> <source>Python3 Files (*.py *.py3);;Python3 GUI Files (*.pyw *.pyw3);;</source> <translation>Python3 soubory (*.py *.py3);;Python3 GUI soubory (*.pyw *.pyw3);;</translation> </message> <message> - <location filename="../Project/Project.py" line="699"/> + <location filename="../Project/Project.py" line="701"/> <source><p>The project file <b>{0}</b> could not be read.</p></source> <translation><p>Soubor projektu <b>{0}</b> nelze načíst.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="799"/> + <location filename="../Project/Project.py" line="801"/> <source><p>The project file <b>{0}</b> could not be written.</p></source> <translation><p>Do souboru projektu <b>{0}</b> nelze zapisovat.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="835"/> + <location filename="../Project/Project.py" line="837"/> <source><p>The user specific project properties file <b>{0}</b> could not be read.</p></source> <translation><p>Uživatelská nastavení projektu <b>{0}</b> nelze načíst.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="859"/> + <location filename="../Project/Project.py" line="861"/> <source><p>The user specific project properties file <b>{0}</b> could not be written.</p></source> <translation><p>Do souboru s uživatelskými nastaveními <b>{0}</b> nelze zapisovat.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="917"/> + <location filename="../Project/Project.py" line="919"/> <source><p>The project session file <b>{0}</b> could not be read.</p></source> <translation><p>Soubor s relací projektu <b>{0}</b> nelze načíst.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="953"/> + <location filename="../Project/Project.py" line="955"/> <source><p>The project session file <b>{0}</b> could not be written.</p></source> <translation><p>Do souboru s relací projektu <b>{0}</b> nelze zapisovat.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="982"/> + <location filename="../Project/Project.py" line="984"/> <source><p>The project session file <b>{0}</b> could not be deleted.</p></source> <translation><p>Soubor s relací projektu <b>{0}</b> nelze smazat.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1016"/> + <location filename="../Project/Project.py" line="1018"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation><p>Soubor s úlohami <b>{0}</b> nelze načíst.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1036"/> + <location filename="../Project/Project.py" line="1038"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation><p>Do souboru s úlohami <b>{0}</b> nelze zapisovat.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1093"/> + <location filename="../Project/Project.py" line="1095"/> <source><p>The project debugger properties file <b>{0}</b> could not be read.</p></source> <translation><p>Soubor s nastaveními debuggeru <b>{0}</b> nelze načíst.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1127"/> + <location filename="../Project/Project.py" line="1129"/> <source><p>The project debugger properties file <b>{0}</b> could not be written.</p></source> <translation><p>Do souboru s nastaveními debuggeru <b>{0}</b> nelze zapisovat.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1153"/> + <location filename="../Project/Project.py" line="1155"/> <source><p>The project debugger properties file <b>{0}</b> could not be deleted.</p></source> <translation><p>Soubor s nastaveními debuggeru <b>{0}</b> nelze smazat.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1383"/> + <location filename="../Project/Project.py" line="1385"/> <source><p>The selected translation file <b>{0}</b> could not be deleted.</p></source> <translation><p>Vybraný soubor s překladem <b>{0}</b> nelze smazat.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1596"/> + <location filename="../Project/Project.py" line="1598"/> <source><p>The file <b>{0}</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Soubor <b>{0}</b> již existuje.</p><p>Má se přepsat?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2832"/> + <location filename="../Project/Project.py" line="2834"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Soubor <b>{0}</b> již existuje.</p><p>Má se přepsat?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1810"/> + <location filename="../Project/Project.py" line="1812"/> <source><p>The file <b>{0}</b> could not be renamed.<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="../Project/Project.py" line="2046"/> + <location filename="../Project/Project.py" line="2048"/> <source><p>The selected file <b>{0}</b> could not be deleted.</p></source> <translation><p>Vybraný soubor <b>{0}</b> nelze smazat.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2075"/> + <location filename="../Project/Project.py" line="2077"/> <source><p>The selected directory <b>{0}</b> could not be deleted.</p></source> <translation><p>Vybraný adresář <b>{0}</b> nelze smazat.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2157"/> + <location filename="../Project/Project.py" line="2159"/> <source><p>The project directory <b>{0}</b> could not be created.</p></source> <translation><p>Adresář projektu <b>{0}</b> nelze vytvořit.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4373"/> + <location filename="../Project/Project.py" line="4377"/> <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="4776"/> + <location filename="../Project/Project.py" line="4780"/> <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="4836"/> <source><p>The file <b>PKGLIST</b> could not be read.</p><p>Reason: {0}</p></source> - <translation><p>Soubor <b>PKGLIST</b> nelze načíst.</p><p>Důvod: {0}</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4892"/> + <translation type="obsolete"><p>Soubor <b>PKGLIST</b> nelze načíst.</p><p>Důvod: {0}</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4911"/> <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="4961"/> + <location filename="../Project/Project.py" line="4985"/> <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="1522"/> + <location filename="../Project/Project.py" line="1524"/> <source><p>The selected file <b>{0}</b> could not be added to <b>{1}</b>.</p><p>Reason: {2}</p></source> <translation><p>Vybraný soubor <b>{0}</b> nelze přidat do <b>{1}</b>.</p><p>Důvod: {2}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1578"/> + <location filename="../Project/Project.py" line="1580"/> <source><p>The target directory <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>Cílový adresář <b>{0}</b> nelze vytvořit.</p><p>Důvod: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="158"/> + <location filename="../Project/Project.py" line="160"/> <source>Python2 Files (*.py2);;Python2 GUI Files (*.pyw2);;</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2220"/> + <location filename="../Project/Project.py" line="2222"/> <source>Create main script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2220"/> + <location filename="../Project/Project.py" line="2222"/> <source><p>The mainscript <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3817"/> + <location filename="../Project/Project.py" line="3819"/> <source>Load Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3817"/> + <location filename="../Project/Project.py" line="3819"/> <source>&Load Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3821"/> - <source>Load a diagram from file.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3823"/> + <source>Load a diagram from file.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3825"/> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="321"/> + <location filename="../Project/Project.py" line="323"/> <source><p>The Programming Language <b>{0}</b> is not supported.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="344"/> + <location filename="../Project/Project.py" line="346"/> <source><p>The Project type <b>{0}</b> is already registered.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="332"/> + <location filename="../Project/Project.py" line="334"/> <source><p>The Project type <b>{0}</b> is already registered with Programming Language <b>{1}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="242"/> + <location filename="../Project/Project.py" line="244"/> <source>PyQt5 GUI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="243"/> + <location filename="../Project/Project.py" line="245"/> <source>PyQt5 Console</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4361"/> + <location filename="../Project/Project.py" line="4365"/> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5003"/> + <location filename="../Project/Project.py" line="5027"/> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3837"/> - <source>Create an initial PKGLIST file for an eric6 plugin.</source> - <translation type="unfinished">Vytvořit počáteční soubor PKGLIST pro eric5 plugin. {6 ?}</translation> - </message> - <message> <location filename="../Project/Project.py" line="3839"/> + <source>Create an initial PKGLIST file for an eric6 plugin.</source> + <translation type="unfinished">Vytvořit počáteční soubor PKGLIST pro eric5 plugin. {6 ?}</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3841"/> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric6 plugin archive. The list is created from the project file.</p></source> <translation type="unfinished"><b>Vytvořit seznam balíčků</b><p>Vytvoří počáteční seznam souborů pro vložení do eric5 plugin archivu. Seznam je vytvořen ze souboru projektu.</p> {6 ?}</translation> </message> <message> <location filename="../Project/Project.py" line="3853"/> <source>Create an eric6 plugin archive file.</source> - <translation type="unfinished">Vytvořit soubor eric5 plugin archivu. {6 ?}</translation> + <translation type="obsolete">Vytvořit soubor eric5 plugin archivu. {6 ?}</translation> </message> <message> <location filename="../Project/Project.py" line="3855"/> <source><b>Create Plugin Archive</b><p>This creates an eric6 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name.</p></source> - <translation type="unfinished"><b>Vytvořit Plugin archiv</b><p>Vytvoří soubor s eric5 plugin archivem za použití seznamu souborů daných v PKGLIST souboru. Jméno archivu je odvozeno ze jména hlavního skriptu.</p> {6 ?}</translation> + <translation type="obsolete"><b>Vytvořit Plugin archiv</b><p>Vytvoří soubor s eric5 plugin archivem za použití seznamu souborů daných v PKGLIST souboru. Jméno archivu je odvozeno ze jména hlavního skriptu.</p> {6 ?}</translation> </message> <message> <location filename="../Project/Project.py" line="3869"/> <source>Create an eric6 plugin archive file (snapshot release).</source> - <translation type="unfinished">Vytvoří se soubor eric5 plugin archívu (snímek vydání). {6 ?}</translation> + <translation type="obsolete">Vytvoří se soubor eric5 plugin archívu (snímek vydání). {6 ?}</translation> </message> <message> <location filename="../Project/Project.py" line="3871"/> <source><b>Create Plugin Archive (Snapshot)</b><p>This creates an eric6 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name. The version entry of the main script is modified to reflect a snapshot release.</p></source> - <translation type="unfinished"><b>Vytvořit Plugin archiv (Snímek)</b><p>Vytvoří soubor s eric5 plugin archivem za použití seznamu souborů daných v PKGLIST souboru. Údaj o verzi hlavního skriptu je změněn v souladu se snímkem vydání.</p> {6 ?}</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4866"/> + <translation type="obsolete"><b>Vytvořit Plugin archiv (Snímek)</b><p>Vytvoří soubor s eric5 plugin archivem za použití seznamu souborů daných v PKGLIST souboru. Údaj o verzi hlavního skriptu je změněn v souladu se snímkem vydání.</p> {6 ?}</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4881"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"><p>Soubor s eric5 plugin archivem <b>{0}</b> nelze vytvořit. Zrušeno...</p><p>Důvod: {1}</p> {6 ?} {0}?} {1}?}</translation> </message> <message> <location filename="../Project/Project.py" line="4915"/> <source><p>The eric6 plugin archive file <b>{0}</b> was created successfully.</p></source> - <translation type="unfinished"><p>Soubor s eric5 plugin archivem <b>{0}</b> byl úspěšně vytvořen.</p> {6 ?} {0}?}</translation> - </message> - <message> - <location filename="../Project/Project.py" line="240"/> + <translation type="obsolete"><p>Soubor s eric5 plugin archivem <b>{0}</b> byl úspěšně vytvořen.</p> {6 ?} {0}?}</translation> + </message> + <message> + <location filename="../Project/Project.py" line="242"/> <source>PyQt4 GUI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="241"/> + <location filename="../Project/Project.py" line="243"/> <source>PyQt4 Console</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="244"/> + <location filename="../Project/Project.py" line="246"/> <source>Eric6 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2651"/> + <location filename="../Project/Project.py" line="2653"/> <source>Create project management directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2651"/> + <location filename="../Project/Project.py" line="2653"/> <source><p>The project directory <b>{0}</b> is not writable.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3567"/> + <location filename="../Project/Project.py" line="3569"/> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3573"/> - <source>Search for a file in the project list of files.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3575"/> + <source>Search for a file in the project list of files.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3577"/> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3567"/> + <location filename="../Project/Project.py" line="3569"/> <source>Search Project File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3567"/> + <location filename="../Project/Project.py" line="3569"/> <source>Search Project File...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4799"/> - <source>Select a package list file:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4806"/> - <source><p>No package list file selected. Aborting...</p></source> + <location filename="../Project/Project.py" line="4834"/> + <source>Create Plugin Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3850"/> + <source>Create Plugin &Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3855"/> + <source>Create eric6 plugin archive files.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3857"/> + <source><b>Create Plugin Archives</b><p>This creates eric6 plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3867"/> + <source>Create Plugin Archives (Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3867"/> + <source>Create Plugin Archives (&Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3872"/> + <source>Create eric6 plugin archive files (snapshot releases).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3874"/> + <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric6 plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4813"/> + <source>Select package lists:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>Creating plugin archives...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>Abort</source> + <translation type="unfinished">Přerušit</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>%v/%m Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4834"/> + <source>Coverage</source> + <translation type="obsolete">Pokrytí</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4847"/> + <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4930"/> + <source><p>The eric6 plugin archive files were created with some errors.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4933"/> + <source><p>The eric6 plugin archive files were created successfully.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4823"/> + <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished"></translation> </message> </context> @@ -42548,7 +42636,7 @@ <translation>Vykonáno</translation> </message> <message> - <location filename="../DataViews/PyCoverageDialog.py" line="349"/> + <location filename="../DataViews/PyCoverageDialog.ui" line="172"/> <source>Coverage</source> <translation>Pokrytí</translation> </message> @@ -42629,7 +42717,7 @@ </translation> </message> <message> - <location filename="../DataViews/PyCoverageDialog.py" line="345"/> + <location filename="../DataViews/PyCoverageDialog.ui" line="192"/> <source>%v/%m Files</source> <translation type="unfinished"></translation> </message> @@ -42637,7 +42725,7 @@ <context> <name>PyProfileDialog</name> <message> - <location filename="../DataViews/PyProfileDialog.py" line="233"/> + <location filename="../DataViews/PyProfileDialog.ui" line="20"/> <source>Profile Results</source> <translation>Výsledky profilování</translation> </message> @@ -47278,7 +47366,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.py" line="150"/> + <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.ui" line="89"/> <source>Remove Filters</source> <translation type="unfinished"></translation> </message> @@ -47288,7 +47376,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.py" line="178"/> + <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.ui" line="99"/> <source>Remove Attributes</source> <translation type="unfinished"></translation> </message> @@ -48756,7 +48844,7 @@ <context> <name>SendRefererWhitelistDialog</name> <message> - <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="52"/> + <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.ui" line="14"/> <source>Send Referer Whitelist</source> <translation type="unfinished"></translation> </message> @@ -49958,7 +50046,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Snapshot/SnapWidget.py" line="531"/> + <location filename="../Snapshot/SnapWidget.ui" line="20"/> <source>eric6 Snapshot</source> <translation type="unfinished"></translation> </message> @@ -52542,7 +52630,7 @@ <context> <name>SvnDiffDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="171"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.ui" line="14"/> <source>Subversion Diff</source> <translation></translation> </message> @@ -52819,12 +52907,12 @@ <translation></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="621"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="112"/> <source>Revision</source> <translation>Revize</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="618"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="117"/> <source>Author</source> <translation>Autor</translation> </message> @@ -52834,7 +52922,7 @@ <translation>Datum</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="141"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="127"/> <source>Message</source> <translation>Zpráva</translation> </message> @@ -53306,7 +53394,7 @@ <translation>Prot&otokol:</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="128"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.ui" line="45"/> <source>&URL:</source> <translation>&URL:</translation> </message> @@ -53418,7 +53506,7 @@ <translation>Výběr protokolu pro přístup do repozitáře</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.py" line="95"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.ui" line="45"/> <source>&URL:</source> <translation>&URL:</translation> </message> @@ -54662,7 +54750,7 @@ <context> <name>SvnStatusDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="394"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="14"/> <source>Subversion Status</source> <translation></translation> </message> @@ -54909,7 +54997,7 @@ <translation>Chyba v procesu generování</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="711"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="80"/> <source>Commit</source> <translation>Commit</translation> </message> @@ -60219,7 +60307,7 @@ <context> <name>UnittestDialog</name> <message> - <location filename="../PyUnit/UnittestDialog.py" line="400"/> + <location filename="../PyUnit/UnittestDialog.ui" line="14"/> <source>Unittest</source> <translation></translation> </message> @@ -63102,62 +63190,62 @@ <context> <name>VariablesViewer</name> <message> - <location filename="../Debugger/VariablesViewer.py" line="354"/> + <location filename="../Debugger/VariablesViewer.py" line="358"/> <source>Global Variables</source> <translation>Globální proměnné</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="355"/> - <source>Globals</source> - <translation>Globální</translation> - </message> - <message> - <location filename="../Debugger/VariablesViewer.py" line="366"/> - <source>Value</source> - <translation>Hodnota</translation> - </message> - <message> - <location filename="../Debugger/VariablesViewer.py" line="366"/> - <source>Type</source> - <translation>Typ</translation> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="359"/> + <source>Globals</source> + <translation>Globální</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="370"/> + <source>Value</source> + <translation>Hodnota</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="370"/> + <source>Type</source> + <translation>Typ</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="363"/> <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="365"/> + <location filename="../Debugger/VariablesViewer.py" line="369"/> <source>Local Variables</source> <translation>Lokální proměnné</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="366"/> - <source>Locals</source> - <translation>Lokální</translation> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="370"/> + <source>Locals</source> + <translation>Lokální</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="374"/> <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="401"/> + <location filename="../Debugger/VariablesViewer.py" line="405"/> <source>Show Details...</source> <translation>Zobrazit detaily...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="409"/> + <location filename="../Debugger/VariablesViewer.py" line="413"/> <source>Configure...</source> <translation>Konfigurovat...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="629"/> + <location filename="../Debugger/VariablesViewer.py" line="633"/> <source>{0} items</source> <translation>{0} položek</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="407"/> + <location filename="../Debugger/VariablesViewer.py" line="411"/> <source>Refresh</source> <translation type="unfinished">Obnovit</translation> </message>
--- a/i18n/eric6_de.ts Sun Oct 16 12:20:30 2016 +0200 +++ b/i18n/eric6_de.ts Sun Oct 16 14:42:46 2016 +0200 @@ -390,7 +390,7 @@ <context> <name>AddBookmarkDialog</name> <message> - <location filename="../WebBrowser/Bookmarks/AddBookmarkDialog.ui" line="26"/> + <location filename="../WebBrowser/Bookmarks/AddBookmarkDialog.py" line="198"/> <source>Add Bookmark</source> <translation>Lesezeichen hinzufügen</translation> </message> @@ -1707,7 +1707,7 @@ <translation>&Adresse editieren</translation> </message> <message> - <location filename="../WebBrowser/Bookmarks/BookmarksDialog.ui" line="75"/> + <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="169"/> <source>&Delete</source> <translation>&Löschen</translation> </message> @@ -2404,12 +2404,12 @@ <translation>Drücken, um die Aufrufverfolgung in eine Textdatei zu speichern</translation> </message> <message> - <location filename="../Debugger/CallTraceViewer.ui" line="109"/> + <location filename="../Debugger/CallTraceViewer.py" line="54"/> <source>From</source> <translation>Von</translation> </message> <message> - <location filename="../Debugger/CallTraceViewer.ui" line="114"/> + <location filename="../Debugger/CallTraceViewer.py" line="54"/> <source>To</source> <translation>Nach</translation> </message> @@ -2575,7 +2575,7 @@ <translation>Drücken, um eine verteilte Änderungssitzung abzubrechen</translation> </message> <message> - <location filename="../Cooperation/ChatWidget.ui" line="230"/> + <location filename="../Cooperation/ChatWidget.py" line="513"/> <source>Clear</source> <translation>Löschen</translation> </message> @@ -2872,7 +2872,7 @@ <context> <name>ClickToFlashWhitelistDialog</name> <message> - <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.ui" line="14"/> + <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.py" line="54"/> <source>ClickToFlash Whitelist</source> <translation>ClickToFlash Whitelist</translation> </message> @@ -4160,22 +4160,22 @@ <translation>Vergleichen</translation> </message> <message> - <location filename="../UI/CompareDialog.py" line="356"/> + <location filename="../UI/CompareDialog.py" line="354"/> <source>Total: {0}</source> <translation>Gesamt: {0}</translation> </message> <message> + <location filename="../UI/CompareDialog.py" line="356"/> + <source>Changed: {0}</source> + <translation>Geändert: {0}</translation> + </message> + <message> + <location filename="../UI/CompareDialog.py" line="357"/> + <source>Added: {0}</source> + <translation>Hinzugefügt: {0}</translation> + </message> + <message> <location filename="../UI/CompareDialog.py" line="358"/> - <source>Changed: {0}</source> - <translation>Geändert: {0}</translation> - </message> - <message> - <location filename="../UI/CompareDialog.py" line="359"/> - <source>Added: {0}</source> - <translation>Hinzugefügt: {0}</translation> - </message> - <message> - <location filename="../UI/CompareDialog.py" line="360"/> <source>Deleted: {0}</source> <translation>Gelöscht: {0}</translation> </message> @@ -4793,7 +4793,7 @@ <translation>Domain:</translation> </message> <message> - <location filename="../WebBrowser/CookieJar/CookiesDialog.ui" line="223"/> + <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="177"/> <source><no cookie selected></source> <translation><kein Cookie ausgewählt></translation> </message> @@ -7385,7 +7385,7 @@ <context> <name>DownloadManager</name> <message> - <location filename="../WebBrowser/Download/DownloadManager.ui" line="14"/> + <location filename="../WebBrowser/Download/DownloadManager.py" line="363"/> <source>Downloads</source> <translation>Downloads</translation> </message> @@ -7614,6 +7614,19 @@ </message> </context> <context> + <name>E5ListSelectionDialog</name> + <message> + <location filename="../E5Gui/E5ListSelectionDialog.ui" line="14"/> + <source>Select from List</source> + <translation>Aus der Liste wählen</translation> + </message> + <message> + <location filename="../E5Gui/E5ListSelectionDialog.ui" line="23"/> + <source>Select from the list below:</source> + <translation>Wähle aus der Liste unten:</translation> + </message> +</context> +<context> <name>E5MainWindow</name> <message> <location filename="../E5Gui/E5MainWindow.py" line="56"/> @@ -7832,92 +7845,92 @@ <translation>Standard Knöpfe</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="257"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="41"/> <source>Abort</source> <translation>Abbrechen (Abort)</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="264"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="42"/> <source>Apply</source> <translation>Anwenden</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="271"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="43"/> <source>Cancel</source> <translation>Abbrechen (Cancel)</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="278"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="44"/> <source>Close</source> <translation>Schließen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="285"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="45"/> <source>Discard</source> <translation>Verwerfen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="292"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="46"/> <source>Help</source> <translation>Hilfe</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="299"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="47"/> <source>Ignore</source> <translation>Ignorieren</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="306"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="48"/> <source>No</source> <translation>Nein</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="313"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="49"/> <source>No to all</source> <translation>Nein zu allen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="320"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="50"/> <source>Ok</source> <translation>Ok</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="327"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="51"/> <source>Open</source> <translation>Öffnen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="334"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="52"/> <source>Reset</source> <translation>Zurücksetzen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="341"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="53"/> <source>Restore defaults</source> <translation>Auf Standardwerte zurücksetzen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="348"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="54"/> <source>Retry</source> <translation>Wiederholen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="355"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="55"/> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="362"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="56"/> <source>Save all</source> <translation>Alles speichern</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="369"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="57"/> <source>Yes</source> <translation>Ja</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="376"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="58"/> <source>Yes to all</source> <translation>Ja zu allen</translation> </message> @@ -9934,7 +9947,7 @@ <translation>Drücken, um eine API-Datei aus der Liste installierter API-Dateien zu wählen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="132"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="184"/> <source>Add from installed APIs</source> <translation>Von installierten APIs hinzufügen</translation> </message> @@ -9944,7 +9957,7 @@ <translation>Drücke, um die gewählte APIs Zusammenstellung zu übersetzen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="159"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="236"/> <source>Compile APIs</source> <translation>APIs übersetzen</translation> </message> @@ -9969,7 +9982,7 @@ <translation>Drücken, um eine API-Datei aus der Liste von API-Dateien, die von Plugins installierter wurden, zu wählen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="142"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="203"/> <source>Add from Plugin APIs</source> <translation>Von Plugin APIs hinzufügen</translation> </message> @@ -10973,7 +10986,7 @@ <translation>Wähle den Modus „Füllen bis zum Zeilenende“.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="113"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> <source>Fill to end of line</source> <translation>Füllen bis zum Zeilenende</translation> </message> @@ -11018,7 +11031,7 @@ <translation>Wähle die Schriftart aus.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="103"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="69"/> <source>Font</source> <translation>Schriftart</translation> </message> @@ -12444,7 +12457,7 @@ <translation>Modus:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1080"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="58"/> <source>Disabled</source> <translation>Ausgeschaltet</translation> </message> @@ -13228,7 +13241,7 @@ <context> <name>EmailDialog</name> <message> - <location filename="../UI/EmailDialog.ui" line="13"/> + <location filename="../UI/EmailDialog.py" line="339"/> <source>Send bug report</source> <translation>Sende Fehlerbericht</translation> </message> @@ -14631,12 +14644,12 @@ <translation>Benachrichtigungen</translation> </message> <message> - <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="122"/> + <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="110"/> <source>Host</source> <translation>Rechner</translation> </message> <message> - <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="127"/> + <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="111"/> <source>Permission</source> <translation>Berechtigung</translation> </message> @@ -14651,7 +14664,7 @@ <translation>Alle entfernen</translation> </message> <message> - <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="97"/> + <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="51"/> <source>Geolocation</source> <translation>Geolokalisierung</translation> </message> @@ -15775,7 +15788,7 @@ <translation>Name:</translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="158"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="193"/> <source><no flash cookie selected></source> <translation><kein Flash Cookie ausgewählt></translation> </message> @@ -15785,7 +15798,7 @@ <translation>Größe:</translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="137"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="122"/> <source>Origin:</source> <translation>Ursprung:</translation> </message> @@ -15820,7 +15833,7 @@ <translation>Drücken, um ausgewählte Flash Cookies zu entfernen</translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="225"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="213"/> <source>Remove Cookie</source> <translation>Cookie entfernen</translation> </message> @@ -16248,7 +16261,7 @@ <context> <name>GreaseMonkeyAddScriptDialog</name> <message> - <location filename="../WebBrowser/GreaseMonkey/GreaseMonkeyAddScriptDialog.ui" line="14"/> + <location filename="../WebBrowser/GreaseMonkey/GreaseMonkeyAddScriptDialog.py" line="105"/> <source>GreaseMonkey Script Installation</source> <translation>GreaseMonkey-Skriptinstallation</translation> </message> @@ -21844,7 +21857,7 @@ <context> <name>HgAddSubrepositoryDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.ui" line="14"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.py" line="98"/> <source>Add Sub-repository</source> <translation>Unterrepository hinzufügen</translation> </message> @@ -22937,7 +22950,7 @@ <translation>Drücken, um die ausgewählten Einträge als 'aufgelöst' zu markieren</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.ui" line="73"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="247"/> <source>Resolved</source> <translation>Aufgelöst</translation> </message> @@ -22947,7 +22960,7 @@ <translation>Drücken, um die ausgewählten Einträge als 'nicht aufgelöst' zu markieren</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.ui" line="83"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="245"/> <source>Unresolved</source> <translation>Nicht Aufgelöst</translation> </message> @@ -23540,7 +23553,7 @@ <translation>Wähle die als Filter zu verwendende Kategorie</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.ui" line="55"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="317"/> <source>Revision</source> <translation>Revision</translation> </message> @@ -23819,7 +23832,7 @@ <context> <name>HgLogBrowserDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="14"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="71"/> <source>Mercurial Log</source> <translation>Mercurial-Log</translation> </message> @@ -23849,17 +23862,17 @@ <translation>Wähle das als Filter zu verwendende Feld</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="181"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="96"/> <source>Revision</source> <translation>Revision</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="191"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="97"/> <source>Author</source> <translation>Autor</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="201"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="98"/> <source>Message</source> <translation>Nachricht</translation> </message> @@ -27713,7 +27726,7 @@ <context> <name>HgStatusDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="14"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="313"/> <source>Mercurial Status</source> <translation>Mercurial-Status</translation> </message> @@ -27855,7 +27868,7 @@ <translation>Der Prozess {0} konnte nicht gestartet werden. Stellen Sie sicher, dass er sich im Suchpfad befindet.</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="87"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="708"/> <source>Commit</source> <translation>Einpflegen</translation> </message> @@ -27975,7 +27988,7 @@ <translation>alle</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="203"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="854"/> <source>Differences</source> <translation>Unterschiede</translation> </message> @@ -28740,7 +28753,7 @@ <translation>Drücken, um die ausgwählten Einträge zu löschen</translation> </message> <message> - <location filename="../WebBrowser/History/HistoryDialog.ui" line="75"/> + <location filename="../WebBrowser/History/HistoryDialog.py" line="114"/> <source>&Remove</source> <translation>&Entfernen</translation> </message> @@ -34559,92 +34572,92 @@ <translation>Standard Knöpfe</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="219"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="40"/> <source>Apply</source> <translation>Anwenden</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="226"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="39"/> <source>Abort</source> <translation>Abbrechen (Abort)</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="233"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="41"/> <source>Cancel</source> <translation>Abbrechen (Cancel)</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="240"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="45"/> <source>Ignore</source> <translation>Ignorieren</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="247"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="54"/> <source>Save all</source> <translation>Alles speichern</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="254"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="53"/> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="261"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="43"/> <source>Discard</source> <translation>Verwerfen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="268"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="56"/> <source>Yes to all</source> <translation>Ja zu allen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="275"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="49"/> <source>Open</source> <translation>Öffnen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="282"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="50"/> <source>Reset</source> <translation>Zurücksetzen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="289"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="48"/> <source>Ok</source> <translation>Ok</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="296"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="46"/> <source>No</source> <translation>Nein</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="303"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="44"/> <source>Help</source> <translation>Hilfe</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="310"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="47"/> <source>No to all</source> <translation>Nein zu allen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="317"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="52"/> <source>Retry</source> <translation>Wiederholen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="324"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="51"/> <source>Restore defaults</source> <translation>Auf Standardwerte zurücksetzen</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="331"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="55"/> <source>Yes</source> <translation>Ja</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="338"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="42"/> <source>Close</source> <translation>Schließen</translation> </message> @@ -36374,7 +36387,7 @@ <context> <name>NoCacheHostsDialog</name> <message> - <location filename="../Helpviewer/Network/NoCacheHostsDialog.ui" line="14"/> + <location filename="../Helpviewer/Network/NoCacheHostsDialog.py" line="52"/> <source>Not Cached Hosts</source> <translation>Nicht Gecachte Hosts</translation> </message> @@ -36482,7 +36495,7 @@ <translation>Einschalten, um die Position visuell auszuwählen, ausschalten, um sie einzulesen</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/NotificationsPage.ui" line="146"/> + <location filename="../Preferences/ConfigurationPages/NotificationsPage.py" line="81"/> <source>Visual Selection</source> <translation>Visuelle Auswahl</translation> </message> @@ -37155,7 +37168,7 @@ <context> <name>PasswordsDialog</name> <message> - <location filename="../WebBrowser/Passwords/PasswordsDialog.ui" line="14"/> + <location filename="../WebBrowser/Passwords/PasswordsDialog.py" line="91"/> <source>Saved Passwords</source> <translation>Gespeicherte Passwörter</translation> </message> @@ -37767,12 +37780,12 @@ <translation><p>Das Pluginmodul <b>{0}</b> existiert bereits. Abbruch...</p></translation> </message> <message> - <location filename="../PluginManager/PluginInstallDialog.py" line="463"/> + <location filename="../PluginManager/PluginInstallDialog.py" line="469"/> <source>Error installing plugin. Reason: {0}</source> <translation>Fehler bei der Plugin-Installation. Ursache: {0}</translation> </message> <message> - <location filename="../PluginManager/PluginInstallDialog.py" line="470"/> + <location filename="../PluginManager/PluginInstallDialog.py" line="476"/> <source>Unspecific exception installing plugin.</source> <translation>Unbekannte Ausnahme bei der Plugin-Installation.</translation> </message> @@ -37810,12 +37823,12 @@ <translation>Modul konnte nicht geladen werden. Fehler: {0}</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1103"/> + <location filename="../PluginManager/PluginManager.py" line="1106"/> <source>Plugin Manager Error</source> <translation>Pluginmanager-Fehler</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1103"/> + <location filename="../PluginManager/PluginManager.py" line="1106"/> <source><p>The plugin download directory <b>{0}</b> could not be created. Please configure it via the configuration dialog.</p><p>Reason: {1}</p></source> <translation><p>Das Downloadverzeichnis für Plugins <b>{0}</b> konnte nicht erzeugt werden. Bitte über den Konfigurationsdialog einstellen.</p><p>Ursache: {1}</p></translation> </message> @@ -37830,22 +37843,22 @@ <translation>Das interne Pluginverzeichnis <b>{0}</b> existiert nicht.</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1179"/> + <location filename="../PluginManager/PluginManager.py" line="1182"/> <source>Error downloading file</source> <translation>Fehler beim Herunterladen der Datei</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1179"/> + <location filename="../PluginManager/PluginManager.py" line="1182"/> <source><p>Could not download the requested file from {0}.</p><p>Error: {1}</p></source> <translation><p>Die angefragte Datei konnte nicht von {0} gedownloaded werden.</p><p>Fehler: {1}</p></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1216"/> + <location filename="../PluginManager/PluginManager.py" line="1219"/> <source>New plugin versions available</source> <translation>Neue Plugin Versionen verfügbar</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1216"/> + <location filename="../PluginManager/PluginManager.py" line="1219"/> <source><p>There are new plug-ins or plug-in updates available. Use the plug-in repository dialog to get them.</p></source> <translation><p>Es sind neue Plugins oder neue Plugin Versionen verfügbar. Benutze den Plugin-Repository Dialog, um sie zu laden.</p></translation> </message> @@ -38756,852 +38769,852 @@ <context> <name>Project</name> <message> - <location filename="../Project/Project.py" line="699"/> + <location filename="../Project/Project.py" line="701"/> <source>Read project file</source> <translation>Projektdatei lesen</translation> </message> <message> - <location filename="../Project/Project.py" line="1383"/> + <location filename="../Project/Project.py" line="1385"/> <source>Delete translation</source> <translation>Übersetzung löschen</translation> </message> <message> - <location filename="../Project/Project.py" line="1534"/> + <location filename="../Project/Project.py" line="1536"/> <source>Add file</source> <translation>Datei hinzufügen</translation> </message> <message> - <location filename="../Project/Project.py" line="2046"/> + <location filename="../Project/Project.py" line="2048"/> <source>Delete file</source> <translation>Datei löschen</translation> </message> <message> - <location filename="../Project/Project.py" line="2157"/> + <location filename="../Project/Project.py" line="2159"/> <source>Create project directory</source> <translation>Projektverzeichnis erstellen</translation> </message> <message> - <location filename="../Project/Project.py" line="3455"/> + <location filename="../Project/Project.py" line="3457"/> <source>Open project</source> <translation>Projekt öffnen</translation> </message> <message> - <location filename="../Project/Project.py" line="3492"/> + <location filename="../Project/Project.py" line="3494"/> <source>Save project as</source> <translation>Projekt speichern unter</translation> </message> <message> - <location filename="../Project/Project.py" line="2832"/> + <location filename="../Project/Project.py" line="2834"/> <source>Save File</source> <translation>Datei speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="2868"/> + <location filename="../Project/Project.py" line="2870"/> <source>Close Project</source> <translation>Projekt schließen</translation> </message> <message> - <location filename="../Project/Project.py" line="2868"/> + <location filename="../Project/Project.py" line="2870"/> <source>The current project has unsaved changes.</source> <translation>Das aktuelle Projekt hat ungesicherte Änderungen.</translation> </message> <message> - <location filename="../Project/Project.py" line="3671"/> + <location filename="../Project/Project.py" line="3673"/> <source>&Save</source> <translation>&Speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="3441"/> + <location filename="../Project/Project.py" line="3443"/> <source>New project</source> <translation>Neues Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3441"/> + <location filename="../Project/Project.py" line="3443"/> <source>&New...</source> <translation>&Neu...</translation> </message> <message> - <location filename="../Project/Project.py" line="3446"/> + <location filename="../Project/Project.py" line="3448"/> <source>Generate a new project</source> <translation>Erstelle ein neues Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3447"/> + <location filename="../Project/Project.py" line="3449"/> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>Neu...</b><p>Dies öffnet einen Dialog zur Eingabe der Informationen des neuen Projektes.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3455"/> + <location filename="../Project/Project.py" line="3457"/> <source>&Open...</source> <translation>&Öffnen...</translation> </message> <message> - <location filename="../Project/Project.py" line="3460"/> + <location filename="../Project/Project.py" line="3462"/> <source>Open an existing project</source> <translation>Öffnet ein bestehendes Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3461"/> + <location filename="../Project/Project.py" line="3463"/> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>Öffnen...</b><p>Dies öffnet ein bestehendes Projekt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3468"/> + <location filename="../Project/Project.py" line="3470"/> <source>Close project</source> <translation>Projekt schließen</translation> </message> <message> - <location filename="../Project/Project.py" line="3468"/> + <location filename="../Project/Project.py" line="3470"/> <source>&Close</source> <translation>Schl&ießen</translation> </message> <message> - <location filename="../Project/Project.py" line="3472"/> + <location filename="../Project/Project.py" line="3474"/> <source>Close the current project</source> <translation>Schließt das aktuelle Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3473"/> + <location filename="../Project/Project.py" line="3475"/> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>Schließen</b><p>Dies schließt das aktuelle Projekt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3480"/> + <location filename="../Project/Project.py" line="3482"/> <source>Save project</source> <translation>Projekt speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="3484"/> + <location filename="../Project/Project.py" line="3486"/> <source>Save the current project</source> <translation>Speichert das aktuelle Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="3485"/> + <location filename="../Project/Project.py" line="3487"/> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>Speichern</b><p>Dies speichert das aktuelle Projekt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3496"/> - <source>Save the current project to a new file</source> - <translation>Speichert das aktuelle Projekt in eine neue Datei</translation> - </message> - <message> <location filename="../Project/Project.py" line="3498"/> + <source>Save the current project to a new file</source> + <translation>Speichert das aktuelle Projekt in eine neue Datei</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3500"/> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>Speichern unter</b><p>Dies speichert das aktuelle Projekt in eine neue Datei.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3538"/> + <location filename="../Project/Project.py" line="3540"/> <source>Add translation to project</source> <translation>Übersetzung zum Projekt hinzufügen</translation> </message> <message> - <location filename="../Project/Project.py" line="3538"/> + <location filename="../Project/Project.py" line="3540"/> <source>Add &translation...</source> <translation>&Übersetzung hinzufügen...</translation> </message> <message> - <location filename="../Project/Project.py" line="3543"/> - <source>Add a translation to the current project</source> - <translation>Eine Übersetzung zum aktuellen Projekt hinzufügen</translation> - </message> - <message> <location filename="../Project/Project.py" line="3545"/> + <source>Add a translation to the current project</source> + <translation>Eine Übersetzung zum aktuellen Projekt hinzufügen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3547"/> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation><b>Übersetzung hinzufügen...</b><p>Dies öffnet einen Dialog, mit dem eine Übersetzung zum aktuellen Projekt hinzugefügt werden kann.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3582"/> + <location filename="../Project/Project.py" line="3584"/> <source>Project properties</source> <translation>Projekteigenschaften</translation> </message> <message> - <location filename="../Project/Project.py" line="3582"/> + <location filename="../Project/Project.py" line="3584"/> <source>&Properties...</source> <translation>&Eigenschaften...</translation> </message> <message> - <location filename="../Project/Project.py" line="3587"/> + <location filename="../Project/Project.py" line="3589"/> <source>Show the project properties</source> <translation>Zeigt die Projekteigenschaften an</translation> </message> <message> - <location filename="../Project/Project.py" line="3588"/> + <location filename="../Project/Project.py" line="3590"/> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation><b>Eigenschaften...</b><p>Dies zeigt einen Dialog an, mit dem die Projekteigenschaften bearbeitet werden können.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3901"/> + <location filename="../Project/Project.py" line="3905"/> <source>Open &Recent Projects</source> <translation>Zu&letzt geöffnete Projekte</translation> </message> <message> - <location filename="../Project/Project.py" line="1651"/> + <location filename="../Project/Project.py" line="1653"/> <source>The target directory must not be empty.</source> <translation>Das Zielverzeichnis darf nicht leer sein.</translation> </message> <message> - <location filename="../Project/Project.py" line="3553"/> + <location filename="../Project/Project.py" line="3555"/> <source>Search new files</source> <translation>Neue Dateien suchen</translation> </message> <message> - <location filename="../Project/Project.py" line="3553"/> + <location filename="../Project/Project.py" line="3555"/> <source>Searc&h new files...</source> <translation>Neue &Dateien suchen...</translation> </message> <message> - <location filename="../Project/Project.py" line="3557"/> + <location filename="../Project/Project.py" line="3559"/> <source>Search new files in the project directory.</source> <translation>Sucht neue Dateien im Projektverzeichnis.</translation> </message> <message> - <location filename="../Project/Project.py" line="1662"/> + <location filename="../Project/Project.py" line="1664"/> <source>Add directory</source> <translation>Verzeichnis hinzufügen</translation> </message> <message> - <location filename="../Project/Project.py" line="1662"/> + <location filename="../Project/Project.py" line="1664"/> <source>The source directory must not be empty.</source> <translation>Das Quellverzeichnis darf nicht leer sein.</translation> </message> <message> - <location filename="../Project/Project.py" line="1261"/> + <location filename="../Project/Project.py" line="1263"/> <source>Add Language</source> <translation>Sprache hinzufügen</translation> </message> <message> - <location filename="../Project/Project.py" line="3492"/> + <location filename="../Project/Project.py" line="3494"/> <source>Save &as...</source> <translation>Speichern &unter...</translation> </message> <message> - <location filename="../Project/Project.py" line="4373"/> + <location filename="../Project/Project.py" line="4377"/> <source>Version Control System</source> <translation>Versionskontrollsystem</translation> </message> <message> - <location filename="../Project/Project.py" line="4227"/> + <location filename="../Project/Project.py" line="4231"/> <source>Search New Files</source> <translation>Neue Dateien suchen</translation> </message> <message> - <location filename="../Project/Project.py" line="4227"/> + <location filename="../Project/Project.py" line="4231"/> <source>There were no new files found to be added.</source> <translation>Es wurden keine neuen Dateien gefunden.</translation> </message> <message> - <location filename="../Project/Project.py" line="917"/> + <location filename="../Project/Project.py" line="919"/> <source>Read project session</source> <translation>Projekt Session lesen</translation> </message> <message> - <location filename="../Project/Project.py" line="1139"/> + <location filename="../Project/Project.py" line="1141"/> <source>Please save the project first.</source> <translation>Bitte speichern Sie zuerst das Projekt.</translation> </message> <message> - <location filename="../Project/Project.py" line="953"/> + <location filename="../Project/Project.py" line="955"/> <source>Save project session</source> <translation>Projekt Session speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="3710"/> + <location filename="../Project/Project.py" line="3712"/> <source>Load session</source> <translation>Session laden</translation> </message> <message> - <location filename="../Project/Project.py" line="3714"/> + <location filename="../Project/Project.py" line="3716"/> <source>Load the projects session file.</source> <translation>Laden der Projekt Session.</translation> </message> <message> - <location filename="../Project/Project.py" line="3728"/> + <location filename="../Project/Project.py" line="3730"/> <source>Save session</source> <translation>Session speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="3732"/> + <location filename="../Project/Project.py" line="3734"/> <source>Save the projects session file.</source> <translation>Speichern der Projekt Session.</translation> </message> <message> - <location filename="../Project/Project.py" line="3715"/> + <location filename="../Project/Project.py" line="3717"/> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Session laden</b><p>Dies lädt eine Projektsessiondatei. Die Session enthält die folgenden Daten.<br>- alle offenen Quelltextdateien<br>- alle Haltepunkte<br>- die Kommandozeilenparameter<br>- das Arbeitsverzeichnis<br>- das Ausnahmemeldungsflag</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3733"/> + <location filename="../Project/Project.py" line="3735"/> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Session speichern</b><p>Dies speichert eine Projektsessiondatei. Die Session enthält die folgenden Daten.<br>- alle offenen Quelltextdateien<br>- alle Haltepunkte<br>- die Kommandozeilenparameter<br>- das Arbeitsverzeichnis<br>- das Ausnahmemeldungsflag</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3911"/> + <location filename="../Project/Project.py" line="3915"/> <source>Source &Documentation</source> <translation>&Quelltextdokumentation</translation> </message> <message> + <location filename="../Project/Project.py" line="3910"/> + <source>Chec&k</source> + <translation>&Prüfen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3762"/> + <source>Code Metrics</source> + <translation>Quelltextmetriken</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3762"/> + <source>&Code Metrics...</source> + <translation>&Quelltextmetriken...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3766"/> + <source>Show some code metrics for the project.</source> + <translation>Zeige einige Quelltextmetriken für das Projekt.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3768"/> + <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> + <translation><b>Quelltextmetriken...</b><p>Dies zeigt einige Quelltextmetriken für alle Python-Dateien des Projektes.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3776"/> + <source>Python Code Coverage</source> + <translation>Python-Quelltext-Abdeckung</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3776"/> + <source>Code Co&verage...</source> + <translation>&Quelltext Abdeckung...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3780"/> + <source>Show code coverage information for the project.</source> + <translation>Zeige die Quelltextabdeckung für das Projekt.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3782"/> + <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> + <translation><b>Quelltext Abdeckung...</b><p>Dies zeigt die Quelltextabdeckung für alle Python-Dateien des Projektes an.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4568"/> + <source>Profile Data</source> + <translation>Profildaten</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3790"/> + <source>&Profile Data...</source> + <translation>&Profildaten...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3794"/> + <source>Show profiling data for the project.</source> + <translation>Zeige Profildaten des aktuellen Projektes.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3796"/> + <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> + <translation><b>Profildaten...</b><p>Dies zeigt die Profildaten des Projektes.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3912"/> + <source>Sho&w</source> + <translation>&Zeige</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4545"/> + <source>There is no main script defined for the current project. Aborting</source> + <translation>Für das aktuelle Projekt ist kein Hauptskript festgelegt. Abbruch</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4495"/> + <source>Coverage Data</source> + <translation>Quelltext Abdeckungsdaten</translation> + </message> + <message> <location filename="../Project/Project.py" line="3906"/> - <source>Chec&k</source> - <translation>&Prüfen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3760"/> - <source>Code Metrics</source> - <translation>Quelltextmetriken</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3760"/> - <source>&Code Metrics...</source> - <translation>&Quelltextmetriken...</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3764"/> - <source>Show some code metrics for the project.</source> - <translation>Zeige einige Quelltextmetriken für das Projekt.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3766"/> - <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> - <translation><b>Quelltextmetriken...</b><p>Dies zeigt einige Quelltextmetriken für alle Python-Dateien des Projektes.</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3774"/> - <source>Python Code Coverage</source> - <translation>Python-Quelltext-Abdeckung</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3774"/> - <source>Code Co&verage...</source> - <translation>&Quelltext Abdeckung...</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3778"/> - <source>Show code coverage information for the project.</source> - <translation>Zeige die Quelltextabdeckung für das Projekt.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3780"/> - <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> - <translation><b>Quelltext Abdeckung...</b><p>Dies zeigt die Quelltextabdeckung für alle Python-Dateien des Projektes an.</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4564"/> - <source>Profile Data</source> - <translation>Profildaten</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3788"/> - <source>&Profile Data...</source> - <translation>&Profildaten...</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3792"/> - <source>Show profiling data for the project.</source> - <translation>Zeige Profildaten des aktuellen Projektes.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3794"/> - <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> - <translation><b>Profildaten...</b><p>Dies zeigt die Profildaten des Projektes.</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3908"/> - <source>Sho&w</source> - <translation>&Zeige</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4541"/> - <source>There is no main script defined for the current project. Aborting</source> - <translation>Für das aktuelle Projekt ist kein Hauptskript festgelegt. Abbruch</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4491"/> - <source>Coverage Data</source> - <translation>Quelltext Abdeckungsdaten</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3902"/> <source>&Version Control</source> <translation>&Versionskontrolle</translation> </message> <message> - <location filename="../Project/Project.py" line="4618"/> + <location filename="../Project/Project.py" line="4622"/> <source>Application Diagram</source> <translation>Applikations-Diagramm</translation> </message> <message> - <location filename="../Project/Project.py" line="3803"/> + <location filename="../Project/Project.py" line="3805"/> <source>&Application Diagram...</source> <translation>&Applikations-Diagramm...</translation> </message> <message> - <location filename="../Project/Project.py" line="3807"/> - <source>Show a diagram of the project.</source> - <translation>Zeigt ein Diagramm des Projektes.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3809"/> + <source>Show a diagram of the project.</source> + <translation>Zeigt ein Diagramm des Projektes.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3811"/> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>Applikations-Diagramm...</b><p>Dies zeigt ein Diagramm des Projektes.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3909"/> + <location filename="../Project/Project.py" line="3913"/> <source>&Diagrams</source> <translation>&Diagramme</translation> </message> <message> - <location filename="../Project/Project.py" line="799"/> + <location filename="../Project/Project.py" line="801"/> <source>Save project file</source> <translation>Projektdatei speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="4514"/> + <location filename="../Project/Project.py" line="4518"/> <source>Code Coverage</source> <translation>Quelltext Abdeckung</translation> </message> <message> - <location filename="../Project/Project.py" line="4514"/> + <location filename="../Project/Project.py" line="4518"/> <source>Please select a coverage file</source> <translation>Bitte wählen Sie eine Datei mit Abdeckungsdaten</translation> </message> <message> - <location filename="../Project/Project.py" line="4564"/> + <location filename="../Project/Project.py" line="4568"/> <source>Please select a profile file</source> <translation>Bitte wählen Sie eine Datei mit Profildaten</translation> </message> <message> - <location filename="../Project/Project.py" line="3523"/> + <location filename="../Project/Project.py" line="3525"/> <source>Add directory to project</source> <translation>Verzeichnis zum Projekt hinzufügen</translation> </message> <message> - <location filename="../Project/Project.py" line="3523"/> + <location filename="../Project/Project.py" line="3525"/> <source>Add directory...</source> <translation>Verzeichnis hinzufügen...</translation> </message> <message> - <location filename="../Project/Project.py" line="3528"/> - <source>Add a directory to the current project</source> - <translation>Füge den Inhalt eines Verzeichnisses zum Projekt hinzu</translation> - </message> - <message> <location filename="../Project/Project.py" line="3530"/> + <source>Add a directory to the current project</source> + <translation>Füge den Inhalt eines Verzeichnisses zum Projekt hinzu</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3532"/> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>Verzeichnis hinzufügen</b><p>Dies öffnet einen Dialog, mit dem ein Verzeichnis bzw. der Inhalt eines Verzeichnisses zum aktuellen Projekt hinzugefügt werden kann.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1786"/> + <location filename="../Project/Project.py" line="1788"/> <source>Rename file</source> <translation>Datei umbenennen</translation> </message> <message> - <location filename="../Project/Project.py" line="1810"/> + <location filename="../Project/Project.py" line="1812"/> <source>Rename File</source> <translation>Datei umbenennen</translation> </message> <message> - <location filename="../Project/Project.py" line="2300"/> + <location filename="../Project/Project.py" line="2302"/> <source>Shall the project file be added to the repository?</source> <translation>Soll die Projektdatei zum Repository hinzugefügt werden?</translation> </message> <message> - <location filename="../Project/Project.py" line="2681"/> + <location filename="../Project/Project.py" line="2683"/> <source>New Project</source> <translation>Neues Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="2233"/> + <location filename="../Project/Project.py" line="2235"/> <source>Add existing files to the project?</source> <translation>Existierende Dateien dem Projekt hinzufügen?</translation> </message> <message> - <location filename="../Project/Project.py" line="2352"/> + <location filename="../Project/Project.py" line="2354"/> <source>Would you like to edit the VCS command options?</source> <translation>Möchten Sie die VCS-Befehlsoptionen bearbeiten?</translation> </message> <message> - <location filename="../Project/Project.py" line="2324"/> + <location filename="../Project/Project.py" line="2326"/> <source>Select version control system for the project</source> <translation>Wähle das Versionskontrollsystem für das Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="699"/> + <location filename="../Project/Project.py" line="701"/> <source><p>The project file <b>{0}</b> could not be read.</p></source> <translation><p>Die Projektdatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="799"/> + <location filename="../Project/Project.py" line="801"/> <source><p>The project file <b>{0}</b> could not be written.</p></source> <translation><p>Die Projektdatei <b>{0}</b> konnte nicht geschrieben werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="917"/> + <location filename="../Project/Project.py" line="919"/> <source><p>The project session file <b>{0}</b> could not be read.</p></source> <translation><p>Die Projektsessiondatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="953"/> + <location filename="../Project/Project.py" line="955"/> <source><p>The project session file <b>{0}</b> could not be written.</p></source> <translation><p>Die Projektsessiondatei <b>{0}</b> konnte nicht gespeichert werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1383"/> + <location filename="../Project/Project.py" line="1385"/> <source><p>The selected translation file <b>{0}</b> could not be deleted.</p></source> <translation><p>Die ausgewählte Übersetzungsdatei <b>{0}</b> konnte nicht gelöscht werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2832"/> + <location filename="../Project/Project.py" line="2834"/> <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="../Project/Project.py" line="2046"/> + <location filename="../Project/Project.py" line="2048"/> <source><p>The selected file <b>{0}</b> could not be deleted.</p></source> <translation><p>Die ausgewählte Datei <b>{0}</b> konnte nicht gelöscht werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2157"/> + <location filename="../Project/Project.py" line="2159"/> <source><p>The project directory <b>{0}</b> could not be created.</p></source> <translation><p>Das Projektverzeichnis <b>{0}</b> konnte nicht erstellt werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="982"/> + <location filename="../Project/Project.py" line="984"/> <source>Delete project session</source> <translation>Projekt Session löschen</translation> </message> <message> - <location filename="../Project/Project.py" line="982"/> + <location filename="../Project/Project.py" line="984"/> <source><p>The project session file <b>{0}</b> could not be deleted.</p></source> <translation><p>Die Projektsessiondatei <b>{0}</b> konnte nicht gelöscht werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3746"/> + <location filename="../Project/Project.py" line="3748"/> <source>Delete session</source> <translation>Session löschen</translation> </message> <message> - <location filename="../Project/Project.py" line="3750"/> + <location filename="../Project/Project.py" line="3752"/> <source>Delete the projects session file.</source> <translation>Löscht die Projektsessiondatei.</translation> </message> <message> - <location filename="../Project/Project.py" line="3751"/> + <location filename="../Project/Project.py" line="3753"/> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation><b>Session löschen</b><p>Dies löscht die Sessiondatei des Projektes.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="164"/> + <location filename="../Project/Project.py" line="166"/> <source>Ruby Files (*.rb);;</source> <translation>Ruby-Dateien (*.rb);;</translation> </message> <message> - <location filename="../Project/Project.py" line="3559"/> + <location filename="../Project/Project.py" line="3561"/> <source><b>Search new files...</b><p>This searches for new files (sources, *.ui, *.idl) in the project directory and registered subdirectories.</p></source> <translation><b>Neue Dateien suchen...</b><p>Dies sucht im Projektverzeichnis und in registrierten Unterverzeichnissen nach neuen Dateien (Quellen, *.ui, *.idl).</p></translation> </message> <message> - <location filename="../Project/Project.py" line="245"/> + <location filename="../Project/Project.py" line="247"/> <source>Console</source> <translation>Konsole</translation> </message> <message> - <location filename="../Project/Project.py" line="246"/> + <location filename="../Project/Project.py" line="248"/> <source>Other</source> <translation>Sonstige</translation> </message> <message> - <location filename="../Project/Project.py" line="4618"/> + <location filename="../Project/Project.py" line="4622"/> <source>Include module names?</source> <translation>Modulnamen anzeigen?</translation> </message> <message> - <location filename="../Project/Project.py" line="2075"/> + <location filename="../Project/Project.py" line="2077"/> <source>Delete directory</source> <translation>Verzeichnis löschen</translation> </message> <message> - <location filename="../Project/Project.py" line="2075"/> + <location filename="../Project/Project.py" line="2077"/> <source><p>The selected directory <b>{0}</b> could not be deleted.</p></source> <translation><p>Das ausgewählte Verzeichnis <b>{0}</b> konnte nicht gelöscht werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1016"/> + <location filename="../Project/Project.py" line="1018"/> <source>Read tasks</source> <translation>Aufgaben lesen</translation> </message> <message> - <location filename="../Project/Project.py" line="1016"/> + <location filename="../Project/Project.py" line="1018"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation><p>Die Aufgabendatei <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1036"/> + <location filename="../Project/Project.py" line="1038"/> <source>Save tasks</source> <translation>Aufgaben speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="1036"/> + <location filename="../Project/Project.py" line="1038"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation><p>Die Aufgabendatei <b>{0}</b> konnte nicht geschrieben werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1093"/> + <location filename="../Project/Project.py" line="1095"/> <source>Read debugger properties</source> <translation>Debugger-Eigenschaften lesen</translation> </message> <message> - <location filename="../Project/Project.py" line="1093"/> + <location filename="../Project/Project.py" line="1095"/> <source><p>The project debugger properties file <b>{0}</b> could not be read.</p></source> <translation><p>Die Datei mit den projektspezifischen Debugger-Eigenschaften <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1127"/> + <location filename="../Project/Project.py" line="1129"/> <source>Save debugger properties</source> <translation>Debugger-Eigenschaften speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="1127"/> + <location filename="../Project/Project.py" line="1129"/> <source><p>The project debugger properties file <b>{0}</b> could not be written.</p></source> <translation><p>Die Datei mit den projektspezifischen Debugger-Eigenschaften <b>{0}</b> konnte nicht gespeichert werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1153"/> + <location filename="../Project/Project.py" line="1155"/> <source>Delete debugger properties</source> <translation>Debugger-Eigenschaften löschen</translation> </message> <message> - <location filename="../Project/Project.py" line="1153"/> + <location filename="../Project/Project.py" line="1155"/> <source><p>The project debugger properties file <b>{0}</b> could not be deleted.</p></source> <translation><p>Die Datei mit den projektspezifischen Debugger-Eigenschaften <b>{0}</b> konnte nicht gelöscht werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3646"/> + <location filename="../Project/Project.py" line="3648"/> <source>Debugger Properties</source> <translation>Debugger-Eigenschaften</translation> </message> <message> - <location filename="../Project/Project.py" line="3646"/> + <location filename="../Project/Project.py" line="3648"/> <source>Debugger &Properties...</source> <translation>Debugger-&Eigenschaften...</translation> </message> <message> - <location filename="../Project/Project.py" line="3650"/> + <location filename="../Project/Project.py" line="3652"/> <source>Show the debugger properties</source> <translation>Debugger-Eigenschaften anzeigen</translation> </message> <message> - <location filename="../Project/Project.py" line="3651"/> + <location filename="../Project/Project.py" line="3653"/> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation><b>Debugger-Eigenschaften...</b><p>Dies zeigt einen Dialog an, um die projektspezifischen Debugger-Einstellungen zu bearbeiten.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3659"/> + <location filename="../Project/Project.py" line="3661"/> <source>Load</source> <translation>Laden</translation> </message> <message> - <location filename="../Project/Project.py" line="3659"/> + <location filename="../Project/Project.py" line="3661"/> <source>&Load</source> <translation>&Laden</translation> </message> <message> - <location filename="../Project/Project.py" line="3663"/> + <location filename="../Project/Project.py" line="3665"/> <source>Load the debugger properties</source> <translation>Debugger-Eigenschaften laden</translation> </message> <message> - <location filename="../Project/Project.py" line="3671"/> + <location filename="../Project/Project.py" line="3673"/> <source>Save</source> <translation>Speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="3675"/> + <location filename="../Project/Project.py" line="3677"/> <source>Save the debugger properties</source> <translation>Debugger-Eigenschaften speichern</translation> </message> <message> - <location filename="../Project/Project.py" line="3683"/> + <location filename="../Project/Project.py" line="3685"/> <source>Delete</source> <translation>Löschen</translation> </message> <message> - <location filename="../Project/Project.py" line="3683"/> + <location filename="../Project/Project.py" line="3685"/> <source>&Delete</source> <translation>&Löschen</translation> </message> <message> - <location filename="../Project/Project.py" line="3687"/> + <location filename="../Project/Project.py" line="3689"/> <source>Delete the debugger properties</source> <translation>Debugger-Eigenschaften löschen</translation> </message> <message> - <location filename="../Project/Project.py" line="3696"/> + <location filename="../Project/Project.py" line="3698"/> <source>Reset</source> <translation>Zurücksetzen</translation> </message> <message> - <location filename="../Project/Project.py" line="3696"/> + <location filename="../Project/Project.py" line="3698"/> <source>&Reset</source> <translation>&Zurücksetzen</translation> </message> <message> - <location filename="../Project/Project.py" line="3700"/> + <location filename="../Project/Project.py" line="3702"/> <source>Reset the debugger properties</source> <translation>Debugger-Eigenschaften zurücksetzen</translation> </message> <message> - <location filename="../Project/Project.py" line="3913"/> + <location filename="../Project/Project.py" line="3917"/> <source>Debugger</source> <translation>Debugger</translation> </message> <message> - <location filename="../Project/Project.py" line="3910"/> + <location filename="../Project/Project.py" line="3914"/> <source>Session</source> <translation>Session</translation> </message> <message> - <location filename="../Project/Project.py" line="3664"/> + <location filename="../Project/Project.py" line="3666"/> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation><b>Debugger-Eigenschaften laden</b><p>Dies lädt die projektspezifischen Debugger-Einstellungen.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3676"/> + <location filename="../Project/Project.py" line="3678"/> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation><b>Debugger-Eigenschaften speichern</b><p>Dies speichert die projektspezifischen Debugger-Einstellungen.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3688"/> + <location filename="../Project/Project.py" line="3690"/> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation><b>Debugger-Eigenschaften löschen</b><p>Dies löscht die Datei mit den projektspezifischen Debugger-Einstellungen.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3701"/> + <location filename="../Project/Project.py" line="3703"/> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation><b>Debugger-Eigenschaften zurücksetzen</b><p>Dies setzt die projektspezifischen Debugger-Einstellungen zurück.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3610"/> + <location filename="../Project/Project.py" line="3612"/> <source>Filetype Associations</source> <translation>Dateitypzuordnungen</translation> </message> <message> - <location filename="../Project/Project.py" line="3610"/> + <location filename="../Project/Project.py" line="3612"/> <source>Filetype Associations...</source> <translation>Dateitypzuordnungen...</translation> </message> <message> - <location filename="../Project/Project.py" line="3614"/> - <source>Show the project filetype associations</source> - <translation>Zeigt die Dateitypzuordnungen des Projektes</translation> - </message> - <message> <location filename="../Project/Project.py" line="3616"/> + <source>Show the project filetype associations</source> + <translation>Zeigt die Dateitypzuordnungen des Projektes</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3618"/> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the filetype associations of the project. These associations determine the type (source, form, interface or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation><b>Dateitypzuordnungen...</b><p>Dies zeigt einen Dialog zur Eingabe der Dateitypzuordnungen des Projektes. Diese Zuordnungen bestimmen den Typ (Quellen, Formulare, Schnittstellen oder Sonstige) über ein Dateinamenmuster. Sie werden genutzt, wenn eine Datei zum Projekt hinzugefügt oder wenn nach neuen Dateien gesucht wird.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3914"/> + <location filename="../Project/Project.py" line="3918"/> <source>Pac&kagers</source> <translation>Pa&ketierer</translation> </message> <message> - <location filename="../Project/Project.py" line="3507"/> + <location filename="../Project/Project.py" line="3509"/> <source>Add files to project</source> <translation>Dateien zum Projekt hinzufügen</translation> </message> <message> - <location filename="../Project/Project.py" line="3507"/> + <location filename="../Project/Project.py" line="3509"/> <source>Add &files...</source> <translation>&Dateien hinzufügen...</translation> </message> <message> - <location filename="../Project/Project.py" line="3512"/> - <source>Add files to the current project</source> - <translation>Fügt Dateien zum aktuellen Projekt hinzu</translation> - </message> - <message> <location filename="../Project/Project.py" line="3514"/> + <source>Add files to the current project</source> + <translation>Fügt Dateien zum aktuellen Projekt hinzu</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3516"/> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation><b>Dateien hinzufügen...</b><p>Dies öffnet einen Dialog, mit dem Dateien zum aktuellen Projekt hinzugefügt werden kann. Der Ort, an dem sie eingefügt werden, wird durch die Dateinamenerweiterung bestimmt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1810"/> + <location filename="../Project/Project.py" line="1812"/> <source><p>The file <b>{0}</b> could not be renamed.<br />Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht umbenannt werden.<br />Ursache: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2817"/> + <location filename="../Project/Project.py" line="2819"/> <source>Project Files (*.e4p)</source> <translation>Projektdateien (*.e4p)</translation> </message> <message> - <location filename="../Project/Project.py" line="3900"/> + <location filename="../Project/Project.py" line="3904"/> <source>&Project</source> <translation>&Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="4022"/> + <location filename="../Project/Project.py" line="4026"/> <source>Project</source> <translation>Projekt</translation> </message> <message> - <location filename="../Project/Project.py" line="4088"/> + <location filename="../Project/Project.py" line="4092"/> <source>&Clear</source> <translation>&Löschen</translation> </message> <message> - <location filename="../Project/Project.py" line="1596"/> + <location filename="../Project/Project.py" line="1598"/> <source><p>The file <b>{0}</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Die Datei <b>{0}</b> existiert bereits. Überschreiben?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="835"/> + <location filename="../Project/Project.py" line="837"/> <source>Read user project properties</source> <translation>Nutzer bezogene Projektdaten lesen</translation> </message> <message> - <location filename="../Project/Project.py" line="835"/> + <location filename="../Project/Project.py" line="837"/> <source><p>The user specific project properties file <b>{0}</b> could not be read.</p></source> <translation><p>Die Datei mit den Nutzer bezogenen Projektdaten <b>{0}</b> konnte nicht gelesen werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="859"/> + <location filename="../Project/Project.py" line="861"/> <source>Save user project properties</source> <translation>Nutzer bezogene Projektdaten sichern</translation> </message> <message> - <location filename="../Project/Project.py" line="859"/> + <location filename="../Project/Project.py" line="861"/> <source><p>The user specific project properties file <b>{0}</b> could not be written.</p></source> <translation><p>Die Datei mit den Nutzer bezogenen Projektdaten <b>{0}</b> konnte nicht geschrieben werden.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3595"/> + <location filename="../Project/Project.py" line="3597"/> <source>User project properties</source> <translation>Nutzer bezogene Projektdaten</translation> </message> <message> - <location filename="../Project/Project.py" line="3595"/> + <location filename="../Project/Project.py" line="3597"/> <source>&User Properties...</source> <translation>&Nutzer bezogene Projektdaten...</translation> </message> <message> - <location filename="../Project/Project.py" line="3600"/> - <source>Show the user specific project properties</source> - <translation>Zeigt die Nutzer bezogenen Projektdaten an</translation> - </message> - <message> <location filename="../Project/Project.py" line="3602"/> + <source>Show the user specific project properties</source> + <translation>Zeigt die Nutzer bezogenen Projektdaten an</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3604"/> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation><b>Nutzer bezogene Projektdaten...</b><p>Dies zeigt einen Dialog an, um Nutzer bezogene Projektdaten zu bearbeiten.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3033"/> + <location filename="../Project/Project.py" line="3035"/> <source>Syntax errors detected</source> <translation>Syntaxfehler gefunden</translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="3033"/> + <location filename="../Project/Project.py" line="3035"/> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>Das Projekt beinhaltet eine Datei mit Syntaxfehlern.</numerusform> @@ -39609,325 +39622,345 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="4776"/> + <location filename="../Project/Project.py" line="4780"/> <source>Create Package List</source> <translation>Erzeuge Paketliste</translation> </message> <message> - <location filename="../Project/Project.py" line="3832"/> + <location filename="../Project/Project.py" line="3834"/> <source>Create &Package List</source> <translation>Erzeuge &Paketliste</translation> </message> <message> - <location filename="../Project/Project.py" line="5003"/> + <location filename="../Project/Project.py" line="5027"/> <source>Create Plugin Archive</source> <translation>Erzeuge Plugin Archiv</translation> </message> <message> - <location filename="../Project/Project.py" line="3848"/> - <source>Create Plugin &Archive</source> - <translation>Erzeuge Plugin &Archiv</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4736"/> + <location filename="../Project/Project.py" line="4740"/> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Die Datei <b>PKGLIST</b> existiert bereits.</p><p>Überschreiben?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4776"/> + <location filename="../Project/Project.py" line="4780"/> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation><p>Die Datei <b>PKGLIST</b> konnte nicht erzeugt werden.</p><p>Ursache: {0}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4815"/> - <source><p>The file <b>PKGLIST</b> does not exist. Aborting...</p></source> - <translation><p>Die Datei <b>PKGLIST</b> existiert nicht. Abbruch...</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4823"/> + <location filename="../Project/Project.py" line="4799"/> <source>The project does not have a main script defined. Aborting...</source> <translation>Für das Projekt wurde kein Hauptskript angegeben. Abbruch...</translation> </message> <message> - <location filename="../Project/Project.py" line="4836"/> - <source><p>The file <b>PKGLIST</b> could not be read.</p><p>Reason: {0}</p></source> - <translation><p>Die Datei <b>PKGLIST</b> konnte nicht gelesen werden.</p><p>Ursache: {0}</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="1565"/> + <location filename="../Project/Project.py" line="1567"/> <source><p>The source directory doesn't contain any files belonging to the selected category.</p></source> <translation><p>Das Quellverzeichnis enthält keine Dateien, die zur gewählten Kategorie gehören.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2681"/> + <location filename="../Project/Project.py" line="2683"/> <source>Select Version Control System</source> <translation>Versionskontrollsystem auswählen</translation> </message> <message> - <location filename="../Project/Project.py" line="2331"/> + <location filename="../Project/Project.py" line="2333"/> <source>None</source> <translation>Keines</translation> </message> <message> - <location filename="../Project/Project.py" line="344"/> + <location filename="../Project/Project.py" line="346"/> <source>Registering Project Type</source> <translation>Projekttyp Registrierung</translation> </message> <message> - <location filename="../Project/Project.py" line="4892"/> + <location filename="../Project/Project.py" line="4911"/> <source><p>The file <b>{0}</b> could not be stored in the archive. Ignoring it.</p><p>Reason: {1}</p></source> <translation><p>Die Datei <b>{0}</b> konnte nicht im Archiv gespeichert werde. Sie wird ignoriert.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3864"/> - <source>Create Plugin Archive (Snapshot)</source> - <translation>Erzeuge Plugin Archiv (Snapshot)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3864"/> - <source>Create Plugin Archive (&Snapshot)</source> - <translation>Erzeuge Plugin Archiv (&Snapshot)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4961"/> + <location filename="../Project/Project.py" line="4985"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation><p>Die Plugindatei <b>{0}</b> konnte nicht gelesen werden.<br>Grund: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1261"/> + <location filename="../Project/Project.py" line="1263"/> <source>You have to specify a translation pattern first.</source> <translation>Sie müssen zuerst ein Übersetzungsmuster festlegen.</translation> </message> <message> - <location filename="../Project/Project.py" line="2430"/> + <location filename="../Project/Project.py" line="2432"/> <source>Translation Pattern</source> <translation>Übersetzungsmuster</translation> </message> <message> - <location filename="../Project/Project.py" line="2430"/> + <location filename="../Project/Project.py" line="2432"/> <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source> <translation>Gib das Pfadmuster für Übersetzungsdateien ein (benutze „%language%“ anstelle des Sprachcodes):</translation> </message> <message> - <location filename="../Project/Project.py" line="4373"/> + <location filename="../Project/Project.py" line="4377"/> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation><p>Das ausgewählte Versionskontrollsystem <b>{0}</b> konnte nicht gefunden werden.<br/>Versionskontrolle nicht möglich.</p><p>{1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3628"/> + <location filename="../Project/Project.py" line="3630"/> <source>Lexer Associations</source> <translation>Lexerzuordnungen</translation> </message> <message> - <location filename="../Project/Project.py" line="3628"/> + <location filename="../Project/Project.py" line="3630"/> <source>Lexer Associations...</source> <translation>Lexerzuordnungen...</translation> </message> <message> - <location filename="../Project/Project.py" line="3632"/> - <source>Show the project lexer associations (overriding defaults)</source> - <translation>Zeigt die projektspezifischen Lexerzuordnungen</translation> - </message> - <message> <location filename="../Project/Project.py" line="3634"/> + <source>Show the project lexer associations (overriding defaults)</source> + <translation>Zeigt die projektspezifischen Lexerzuordnungen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3636"/> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation><b>Lexerzuordnungen</b><p>Dies öffnet einen Dialog, um die projektspezifischen Lexerzuordnungen zu bearbeiten. Diese Zuordnungen überschreiben die globalen Lexerzuordnungen. Lexer werden verwendet, um den Editortext einzufärben.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="260"/> + <location filename="../Project/Project.py" line="262"/> <source>PySide GUI</source> <translation>PySide Oberfläche</translation> </message> <message> - <location filename="../Project/Project.py" line="261"/> + <location filename="../Project/Project.py" line="263"/> <source>PySide Console</source> <translation>PySide Kommandozeile</translation> </message> <message> - <location filename="../Project/Project.py" line="161"/> + <location filename="../Project/Project.py" line="163"/> <source>Python3 Files (*.py *.py3);;Python3 GUI Files (*.pyw *.pyw3);;</source> <translation>Python 3-Dateien (*.py *.py3);;Python 3-GUI-Dateien (*.pyw *.pyw3);;</translation> </message> <message> - <location filename="../Project/Project.py" line="1522"/> + <location filename="../Project/Project.py" line="1524"/> <source><p>The selected file <b>{0}</b> could not be added to <b>{1}</b>.</p><p>Reason: {2}</p></source> <translation><p>Die ausgewählte Datei <b>{0}</b> konnte nicht zu <b>{1}</b> hinzugefügt werden.</p><p>Ursache: {2}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1578"/> + <location filename="../Project/Project.py" line="1580"/> <source><p>The target directory <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>Das Zielverzeichnis <b>{0}</b> konnte nicht erstellt werden.</p><p>Ursache: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="158"/> + <location filename="../Project/Project.py" line="160"/> <source>Python2 Files (*.py2);;Python2 GUI Files (*.pyw2);;</source> <translation>Python 2-Dateien (*.py2);;Python 2-GUI-Dateien (*.pyw2);;</translation> </message> <message> - <location filename="../Project/Project.py" line="2220"/> + <location filename="../Project/Project.py" line="2222"/> <source>Create main script</source> <translation>Hauptskript erzeugen</translation> </message> <message> - <location filename="../Project/Project.py" line="2220"/> + <location filename="../Project/Project.py" line="2222"/> <source><p>The mainscript <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation><p>Das Hauptskript <b>{0}</b> konnte nicht erzeugt werden.<br/>Ursache: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3817"/> + <location filename="../Project/Project.py" line="3819"/> <source>Load Diagram</source> <translation>Diagramm laden</translation> </message> <message> - <location filename="../Project/Project.py" line="3817"/> + <location filename="../Project/Project.py" line="3819"/> <source>&Load Diagram...</source> <translation>Diagramm &laden...</translation> </message> <message> - <location filename="../Project/Project.py" line="3821"/> - <source>Load a diagram from file.</source> - <translation>Lade ein Diagramm aus einer Datei.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3823"/> + <source>Load a diagram from file.</source> + <translation>Lade ein Diagramm aus einer Datei.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3825"/> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation><b>Diagramm laden...</b><p>Dies lädt ein Diagramm aus einer Datei.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="321"/> + <location filename="../Project/Project.py" line="323"/> <source><p>The Programming Language <b>{0}</b> is not supported.</p></source> <translation><p>Die Programmiersprache <b>{0}</b> wird nicht unterstützt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="344"/> + <location filename="../Project/Project.py" line="346"/> <source><p>The Project type <b>{0}</b> is already registered.</p></source> <translation><p>Der Projekttyp <b>{0}</b> ist bereits registriert.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="332"/> + <location filename="../Project/Project.py" line="334"/> <source><p>The Project type <b>{0}</b> is already registered with Programming Language <b>{1}</b>.</p></source> <translation><p>Der Projekttyp <b>{0}</b> ist bereits für die Programmiersprache <b>{1}</b> registriert.</p></translation> </message> <message> + <location filename="../Project/Project.py" line="244"/> + <source>PyQt5 GUI</source> + <translation>PyQt5 Oberfläche</translation> + </message> + <message> + <location filename="../Project/Project.py" line="245"/> + <source>PyQt5 Console</source> + <translation>PyQt5 Kommandozeile</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4365"/> + <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> + <translation><p>Das ausgewählte Versionskontrollsystem <b>{0}</b> konnte nicht gefunden werden.<br/>Ignoriere Übersteuerung.</p><p>{1}</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="5027"/> + <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> + <translation><p>Die Plugindatei <b>{0}</b> konnte nicht gelesen werden.<br>Ursache: {1}</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3839"/> + <source>Create an initial PKGLIST file for an eric6 plugin.</source> + <translation>Erzeugt eine erste PKGLIST-Datei für ein eric6-Plugin.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3841"/> + <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric6 plugin archive. The list is created from the project file.</p></source> + <translation><b>Erzeuge Paketliste</b><p>Dies erzeugt eine erste Liste von Dateien, die in ein eric6-Pluginarchive einbezogen werden sollen. Die Liste wird aus der Projektdatei erzeugt.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4881"/> + <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> + <translation><p>Die eric6 Plugin Archivdatei <b>{0}</b> konnte nicht erzeugt werden.</p><p>Ursache: {1}</p></translation> + </message> + <message> <location filename="../Project/Project.py" line="242"/> - <source>PyQt5 GUI</source> - <translation>PyQt5 Oberfläche</translation> + <source>PyQt4 GUI</source> + <translation>PyQt4 Oberfläche</translation> </message> <message> <location filename="../Project/Project.py" line="243"/> - <source>PyQt5 Console</source> - <translation>PyQt5 Kommandozeile</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4361"/> - <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> - <translation><p>Das ausgewählte Versionskontrollsystem <b>{0}</b> konnte nicht gefunden werden.<br/>Ignoriere Übersteuerung.</p><p>{1}</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="5003"/> - <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> - <translation><p>Die Plugindatei <b>{0}</b> konnte nicht gelesen werden.<br>Ursache: {1}</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3837"/> - <source>Create an initial PKGLIST file for an eric6 plugin.</source> - <translation>Erzeugt eine erste PKGLIST-Datei für ein eric6-Plugin.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3839"/> - <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric6 plugin archive. The list is created from the project file.</p></source> - <translation><b>Erzeuge Paketliste</b><p>Dies erzeugt eine erste Liste von Dateien, die in ein eric6-Pluginarchive einbezogen werden sollen. Die Liste wird aus der Projektdatei erzeugt.</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3853"/> - <source>Create an eric6 plugin archive file.</source> - <translation>Erzeugt eine eric6 Plugin Archivdatei.</translation> + <source>PyQt4 Console</source> + <translation>PyQt4 Kommandozeile</translation> + </message> + <message> + <location filename="../Project/Project.py" line="246"/> + <source>Eric6 Plugin</source> + <translation>Eric6 Plugin</translation> + </message> + <message> + <location filename="../Project/Project.py" line="2653"/> + <source>Create project management directory</source> + <translation>Projektverwaltungsverzeichnis erstellen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="2653"/> + <source><p>The project directory <b>{0}</b> is not writable.</p></source> + <translation><p>Das Projektverzeichnis <b>{0}</b> ist nicht beschreibbar.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3569"/> + <source>Alt+Ctrl+P</source> + <comment>Project|Search Project File</comment> + <translation>Alt+Ctrl+P</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3575"/> + <source>Search for a file in the project list of files.</source> + <translation>Suche nach einer Datei in der Liste der Projektdateien.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3577"/> + <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> + <translation><b>Projektdatei suchen</b><p>Dies sucht nach einer Datei in der Liste der Projektdateien.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3569"/> + <source>Search Project File</source> + <translation>Projektdatei suchen</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3569"/> + <source>Search Project File...</source> + <translation>Projektdatei suchen...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4834"/> + <source>Create Plugin Archives</source> + <translation>Erzeuge Plugin Archive</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3850"/> + <source>Create Plugin &Archives</source> + <translation>Erzeuge Plugin &Archive</translation> </message> <message> <location filename="../Project/Project.py" line="3855"/> - <source><b>Create Plugin Archive</b><p>This creates an eric6 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name.</p></source> - <translation><b>Erzeuge Pluginarchiv</b><p>Dies erzeugt eine eric6-Pluginarchivdatei mit den Dateien, die in der PKGLIST-Datei angegeben wurden. Der Archivname wird aus dem Namen des Hauptskriptes generiert.</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3869"/> - <source>Create an eric6 plugin archive file (snapshot release).</source> - <translation>Erzeugt eine eric6 Plugin Archivdatei (Snapshot Release).</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3871"/> - <source><b>Create Plugin Archive (Snapshot)</b><p>This creates an eric6 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name. The version entry of the main script is modified to reflect a snapshot release.</p></source> - <translation><b>Erzeuge Pluginarchiv (Snapshot)</b><p>Dies erzeugt eine eric6-Pluginarchivdatei mit den Dateien, die in der PKGLIST-Datei angegeben wurden. Der Archivname wird aus dem Namen des Hauptskriptes generiert. Der Versionseintrag des Hauptskriptes wird verändert, um ein Snapshot Release anzuzeigen.</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4866"/> - <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> - <translation><p>Die eric6 Plugin Archivdatei <b>{0}</b> konnte nicht erzeugt werden.</p><p>Ursache: {1}</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4915"/> - <source><p>The eric6 plugin archive file <b>{0}</b> was created successfully.</p></source> - <translation><p>Die eric6 Plugin Archivdatei <b>{0}</b> wurde erfolgreich erzeugt.</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="240"/> - <source>PyQt4 GUI</source> - <translation>PyQt4 Oberfläche</translation> - </message> - <message> - <location filename="../Project/Project.py" line="241"/> - <source>PyQt4 Console</source> - <translation>PyQt4 Kommandozeile</translation> - </message> - <message> - <location filename="../Project/Project.py" line="244"/> - <source>Eric6 Plugin</source> - <translation>Eric6 Plugin</translation> - </message> - <message> - <location filename="../Project/Project.py" line="2651"/> - <source>Create project management directory</source> - <translation>Projektverwaltungsverzeichnis erstellen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="2651"/> - <source><p>The project directory <b>{0}</b> is not writable.</p></source> - <translation><p>Das Projektverzeichnis <b>{0}</b> ist nicht beschreibbar.</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3567"/> - <source>Alt+Ctrl+P</source> - <comment>Project|Search Project File</comment> - <translation>Alt+Ctrl+P</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3573"/> - <source>Search for a file in the project list of files.</source> - <translation>Suche nach einer Datei in der Liste der Projektdateien.</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3575"/> - <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> - <translation><b>Projektdatei suchen</b><p>Dies sucht nach einer Datei in der Liste der Projektdateien.</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3567"/> - <source>Search Project File</source> - <translation>Projektdatei suchen</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3567"/> - <source>Search Project File...</source> - <translation>Projektdatei suchen...</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4799"/> - <source>Select a package list file:</source> - <translation>Wähle eine Paketlistendatei:</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4806"/> - <source><p>No package list file selected. Aborting...</p></source> - <translation><p>Keine Paketlistendatei ausgewählt. Abbruch...</p></translation> + <source>Create eric6 plugin archive files.</source> + <translation>Erzeugt eric6 Plugin Archivdateien.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3857"/> + <source><b>Create Plugin Archives</b><p>This creates eric6 plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> + <translation><b>Erzeuge Pluginarchive</b><p>Dies erzeugt eric6-Pluginarchivdateien mit den Dateien, die in einer PKGLIST*-Datei angegeben wurden. Der Archivname wird aus dem Namen des Hauptskriptes generiert, falls er nicht in der Paketlistendatei angegeben ist.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3867"/> + <source>Create Plugin Archives (Snapshot)</source> + <translation>Erzeuge Plugin Archive (Snapshot)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3867"/> + <source>Create Plugin Archives (&Snapshot)</source> + <translation>Erzeuge Plugin Archive (&Snapshot)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3872"/> + <source>Create eric6 plugin archive files (snapshot releases).</source> + <translation>Erzeugt eric6 Plugin Archivdateien (Snapshot Releases).</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3874"/> + <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric6 plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> + <translation><b>Erzeuge Pluginarchive (Snapshot)</b><p>Dies erzeugt eric6-Pluginarchivdateien mit den Dateien, die in der PKGLIST*-Datei angegeben wurden. Der Archivname wird aus dem Namen des Hauptskriptes generiert, falls er nicht in der Paketlistendatei angegeben ist. Der Versionseintrag des Hauptskriptes wird verändert, um ein Snapshot Release anzuzeigen.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4813"/> + <source>Select package lists:</source> + <translation>Wähle Paketlisten:</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>Creating plugin archives...</source> + <translation>Erzeuge Plugin Archive...</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>Abort</source> + <translation>Abbruch</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>%v/%m Archives</source> + <translation>%v/%m Archive</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4847"/> + <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> + <translation><p>Die Datei <b>{0}</b> konnte nicht geladen werden.<br/>Grund: {1}</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4930"/> + <source><p>The eric6 plugin archive files were created with some errors.</p></source> + <translation><p>Die eric6 Plugin Archivdateien wurden mit einigen Fehlern erzeugt.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4933"/> + <source><p>The eric6 plugin archive files were created successfully.</p></source> + <translation><p>Die eric6 Plugin Archivdateien wurden erfolgreich erzeugt.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4823"/> + <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> + <translation><p>Keine Paketlistendateien (PKGLIST*) verfügbar oder ausgewählt. Abbruch...</p></translation> </message> </context> <context> @@ -41929,7 +41962,7 @@ <translation>Ausgeführt</translation> </message> <message> - <location filename="../DataViews/PyCoverageDialog.ui" line="172"/> + <location filename="../DataViews/PyCoverageDialog.py" line="349"/> <source>Coverage</source> <translation>Abdeckung</translation> </message> @@ -41979,7 +42012,7 @@ </translation> </message> <message> - <location filename="../DataViews/PyCoverageDialog.ui" line="192"/> + <location filename="../DataViews/PyCoverageDialog.py" line="345"/> <source>%v/%m Files</source> <translation>%v/%m Dateien</translation> </message> @@ -42002,7 +42035,7 @@ <translation>Lösche alle Informationen</translation> </message> <message> - <location filename="../DataViews/PyProfileDialog.ui" line="20"/> + <location filename="../DataViews/PyProfileDialog.py" line="233"/> <source>Profile Results</source> <translation>Profilergebnisse</translation> </message> @@ -46688,7 +46721,7 @@ <translation>Drücken, um die ausgewählten Filter zu löschen</translation> </message> <message> - <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.ui" line="89"/> + <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.py" line="150"/> <source>Remove Filters</source> <translation>Filter löschen</translation> </message> @@ -46698,7 +46731,7 @@ <translation>Drücken, um die ausgewählten Attribute zu löschen</translation> </message> <message> - <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.ui" line="99"/> + <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.py" line="178"/> <source>Remove Attributes</source> <translation>Attribute löschen</translation> </message> @@ -48204,7 +48237,7 @@ <context> <name>SendRefererWhitelistDialog</name> <message> - <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.ui" line="14"/> + <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="52"/> <source>Send Referer Whitelist</source> <translation>Referer Whitelist</translation> </message> @@ -49416,7 +49449,7 @@ <translation>&Vorschau kopieren</translation> </message> <message> - <location filename="../Snapshot/SnapWidget.ui" line="20"/> + <location filename="../Snapshot/SnapWidget.py" line="531"/> <source>eric6 Snapshot</source> <translation>eric6-Bildschirmfoto</translation> </message> @@ -51902,7 +51935,7 @@ <context> <name>SvnDiffDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.ui" line="14"/> + <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="171"/> <source>Subversion Diff</source> <translation>Subversion-Diff</translation> </message> @@ -52180,12 +52213,12 @@ <translation>Subversion-Log</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="112"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="621"/> <source>Revision</source> <translation>Revision</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="117"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="618"/> <source>Author</source> <translation>Autor</translation> </message> @@ -52195,7 +52228,7 @@ <translation>Datum</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="127"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="141"/> <source>Message</source> <translation>Nachricht</translation> </message> @@ -52673,7 +52706,7 @@ <translation>&Protokoll:</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.ui" line="45"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="128"/> <source>&URL:</source> <translation>&URL:</translation> </message> @@ -52774,7 +52807,7 @@ <translation>Wähle das Protokoll zum Zugriff auf das Repository</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.ui" line="45"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.py" line="95"/> <source>&URL:</source> <translation>&URL:</translation> </message> @@ -54044,7 +54077,7 @@ <translation>ignoriert</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="14"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="394"/> <source>Subversion Status</source> <translation>Subversion-Status</translation> </message> @@ -54054,7 +54087,7 @@ <translation>Änderungen einpflegen...</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="80"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="711"/> <source>Commit</source> <translation>Einpflegen</translation> </message> @@ -59488,7 +59521,7 @@ <context> <name>UnittestDialog</name> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="14"/> + <location filename="../PyUnit/UnittestDialog.py" line="400"/> <source>Unittest</source> <translation>Modultest</translation> </message> @@ -62370,62 +62403,62 @@ <context> <name>VariablesViewer</name> <message> - <location filename="../Debugger/VariablesViewer.py" line="354"/> + <location filename="../Debugger/VariablesViewer.py" line="358"/> <source>Global Variables</source> <translation>Globale Variablen</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="355"/> - <source>Globals</source> - <translation>Global</translation> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="359"/> + <source>Globals</source> + <translation>Global</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="363"/> <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="365"/> + <location filename="../Debugger/VariablesViewer.py" line="369"/> <source>Local Variables</source> <translation>Lokale Variablen</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="366"/> - <source>Locals</source> - <translation>Lokal</translation> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="370"/> + <source>Locals</source> + <translation>Lokal</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="374"/> <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="366"/> + <location filename="../Debugger/VariablesViewer.py" line="370"/> <source>Type</source> <translation>Typ</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="366"/> + <location filename="../Debugger/VariablesViewer.py" line="370"/> <source>Value</source> <translation>Wert</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="629"/> + <location filename="../Debugger/VariablesViewer.py" line="633"/> <source>{0} items</source> <translation>{0} Einträge</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="401"/> + <location filename="../Debugger/VariablesViewer.py" line="405"/> <source>Show Details...</source> <translation>Zeige Details...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="409"/> + <location filename="../Debugger/VariablesViewer.py" line="413"/> <source>Configure...</source> <translation>Einstellungen...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="407"/> + <location filename="../Debugger/VariablesViewer.py" line="411"/> <source>Refresh</source> <translation>Aktualisieren</translation> </message>
--- a/i18n/eric6_empty.ts Sun Oct 16 12:20:30 2016 +0200 +++ b/i18n/eric6_empty.ts Sun Oct 16 14:42:46 2016 +0200 @@ -390,7 +390,7 @@ <context> <name>AddBookmarkDialog</name> <message> - <location filename="../WebBrowser/Bookmarks/AddBookmarkDialog.ui" line="26"/> + <location filename="../WebBrowser/Bookmarks/AddBookmarkDialog.py" line="198"/> <source>Add Bookmark</source> <translation type="unfinished"></translation> </message> @@ -1661,7 +1661,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Bookmarks/BookmarksDialog.ui" line="75"/> + <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="169"/> <source>&Delete</source> <translation type="unfinished"></translation> </message> @@ -2389,12 +2389,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/CallTraceViewer.ui" line="109"/> + <location filename="../Debugger/CallTraceViewer.py" line="54"/> <source>From</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/CallTraceViewer.ui" line="114"/> + <location filename="../Debugger/CallTraceViewer.py" line="54"/> <source>To</source> <translation type="unfinished"></translation> </message> @@ -2497,7 +2497,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Cooperation/ChatWidget.ui" line="230"/> + <location filename="../Cooperation/ChatWidget.py" line="513"/> <source>Clear</source> <translation type="unfinished"></translation> </message> @@ -2842,7 +2842,7 @@ <context> <name>ClickToFlashWhitelistDialog</name> <message> - <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.ui" line="14"/> + <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.py" line="54"/> <source>ClickToFlash Whitelist</source> <translation type="unfinished"></translation> </message> @@ -4119,22 +4119,22 @@ <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/CompareDialog.py" line="354"/> + <source>Total: {0}</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/CompareDialog.py" line="356"/> - <source>Total: {0}</source> + <source>Changed: {0}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/CompareDialog.py" line="357"/> + <source>Added: {0}</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/CompareDialog.py" line="358"/> - <source>Changed: {0}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/CompareDialog.py" line="359"/> - <source>Added: {0}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/CompareDialog.py" line="360"/> <source>Deleted: {0}</source> <translation type="unfinished"></translation> </message> @@ -4746,7 +4746,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/CookieJar/CookiesDialog.ui" line="223"/> + <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="177"/> <source><no cookie selected></source> <translation type="unfinished"></translation> </message> @@ -7309,7 +7309,7 @@ <context> <name>DownloadManager</name> <message> - <location filename="../WebBrowser/Download/DownloadManager.ui" line="14"/> + <location filename="../WebBrowser/Download/DownloadManager.py" line="363"/> <source>Downloads</source> <translation type="unfinished"></translation> </message> @@ -7517,6 +7517,19 @@ </message> </context> <context> + <name>E5ListSelectionDialog</name> + <message> + <location filename="../E5Gui/E5ListSelectionDialog.ui" line="14"/> + <source>Select from List</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../E5Gui/E5ListSelectionDialog.ui" line="23"/> + <source>Select from the list below:</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>E5MainWindow</name> <message> <location filename="../E5Gui/E5MainWindow.py" line="56"/> @@ -7745,92 +7758,92 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="257"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="41"/> <source>Abort</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="264"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="42"/> <source>Apply</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="271"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="43"/> <source>Cancel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="278"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="44"/> <source>Close</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="285"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="45"/> <source>Discard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="292"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="46"/> <source>Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="299"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="47"/> <source>Ignore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="306"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="48"/> <source>No</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="313"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="49"/> <source>No to all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="320"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="50"/> <source>Ok</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="327"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="51"/> <source>Open</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="334"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="52"/> <source>Reset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="341"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="53"/> <source>Restore defaults</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="348"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="54"/> <source>Retry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="355"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="55"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="362"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="56"/> <source>Save all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="369"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="57"/> <source>Yes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="376"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="58"/> <source>Yes to all</source> <translation type="unfinished"></translation> </message> @@ -9830,7 +9843,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="132"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="184"/> <source>Add from installed APIs</source> <translation type="unfinished"></translation> </message> @@ -9840,7 +9853,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="142"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="203"/> <source>Add from Plugin APIs</source> <translation type="unfinished"></translation> </message> @@ -9850,7 +9863,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="159"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="236"/> <source>Compile APIs</source> <translation type="unfinished"></translation> </message> @@ -10898,7 +10911,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="103"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="69"/> <source>Font</source> <translation type="unfinished"></translation> </message> @@ -10908,7 +10921,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="113"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> <source>Fill to end of line</source> <translation type="unfinished"></translation> </message> @@ -12484,7 +12497,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1080"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="58"/> <source>Disabled</source> <translation type="unfinished"></translation> </message> @@ -13128,7 +13141,7 @@ <context> <name>EmailDialog</name> <message> - <location filename="../UI/EmailDialog.ui" line="13"/> + <location filename="../UI/EmailDialog.py" line="339"/> <source>Send bug report</source> <translation type="unfinished"></translation> </message> @@ -14521,12 +14534,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="122"/> + <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="110"/> <source>Host</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="127"/> + <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="111"/> <source>Permission</source> <translation type="unfinished"></translation> </message> @@ -14541,7 +14554,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="97"/> + <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="51"/> <source>Geolocation</source> <translation type="unfinished"></translation> </message> @@ -15661,7 +15674,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="158"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="193"/> <source><no flash cookie selected></source> <translation type="unfinished"></translation> </message> @@ -15671,7 +15684,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="137"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="122"/> <source>Origin:</source> <translation type="unfinished"></translation> </message> @@ -15706,7 +15719,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="225"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="213"/> <source>Remove Cookie</source> <translation type="unfinished"></translation> </message> @@ -16131,7 +16144,7 @@ <context> <name>GreaseMonkeyAddScriptDialog</name> <message> - <location filename="../WebBrowser/GreaseMonkey/GreaseMonkeyAddScriptDialog.ui" line="14"/> + <location filename="../WebBrowser/GreaseMonkey/GreaseMonkeyAddScriptDialog.py" line="105"/> <source>GreaseMonkey Script Installation</source> <translation type="unfinished"></translation> </message> @@ -21714,7 +21727,7 @@ <context> <name>HgAddSubrepositoryDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.ui" line="14"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.py" line="98"/> <source>Add Sub-repository</source> <translation type="unfinished"></translation> </message> @@ -22799,7 +22812,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.ui" line="73"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="247"/> <source>Resolved</source> <translation type="unfinished"></translation> </message> @@ -22809,7 +22822,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.ui" line="83"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="245"/> <source>Unresolved</source> <translation type="unfinished"></translation> </message> @@ -23386,7 +23399,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.ui" line="55"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="317"/> <source>Revision</source> <translation type="unfinished"></translation> </message> @@ -23665,7 +23678,7 @@ <context> <name>HgLogBrowserDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="14"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="71"/> <source>Mercurial Log</source> <translation type="unfinished"></translation> </message> @@ -23735,7 +23748,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="181"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="96"/> <source>Revision</source> <translation type="unfinished"></translation> </message> @@ -23745,7 +23758,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="191"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="97"/> <source>Author</source> <translation type="unfinished"></translation> </message> @@ -23755,7 +23768,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="201"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="98"/> <source>Message</source> <translation type="unfinished"></translation> </message> @@ -27538,7 +27551,7 @@ <context> <name>HgStatusDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="14"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="313"/> <source>Mercurial Status</source> <translation type="unfinished"></translation> </message> @@ -27559,7 +27572,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="87"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="708"/> <source>Commit</source> <translation type="unfinished"></translation> </message> @@ -27644,7 +27657,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="203"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="854"/> <source>Differences</source> <translation type="unfinished"></translation> </message> @@ -28553,7 +28566,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/History/HistoryDialog.ui" line="75"/> + <location filename="../WebBrowser/History/HistoryDialog.py" line="114"/> <source>&Remove</source> <translation type="unfinished"></translation> </message> @@ -34415,92 +34428,92 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="219"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="40"/> <source>Apply</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="226"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="39"/> <source>Abort</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="233"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="41"/> <source>Cancel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="240"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="45"/> <source>Ignore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="247"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="54"/> <source>Save all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="254"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="53"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="261"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="43"/> <source>Discard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="268"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="56"/> <source>Yes to all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="275"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="49"/> <source>Open</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="282"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="50"/> <source>Reset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="289"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="48"/> <source>Ok</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="296"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="46"/> <source>No</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="303"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="44"/> <source>Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="310"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="47"/> <source>No to all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="317"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="52"/> <source>Retry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="324"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="51"/> <source>Restore defaults</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="331"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="55"/> <source>Yes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="338"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="42"/> <source>Close</source> <translation type="unfinished"></translation> </message> @@ -36175,7 +36188,7 @@ <context> <name>NoCacheHostsDialog</name> <message> - <location filename="../Helpviewer/Network/NoCacheHostsDialog.ui" line="14"/> + <location filename="../Helpviewer/Network/NoCacheHostsDialog.py" line="52"/> <source>Not Cached Hosts</source> <translation type="unfinished"></translation> </message> @@ -36283,7 +36296,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/NotificationsPage.ui" line="146"/> + <location filename="../Preferences/ConfigurationPages/NotificationsPage.py" line="81"/> <source>Visual Selection</source> <translation type="unfinished"></translation> </message> @@ -36953,7 +36966,7 @@ <context> <name>PasswordsDialog</name> <message> - <location filename="../WebBrowser/Passwords/PasswordsDialog.ui" line="14"/> + <location filename="../WebBrowser/Passwords/PasswordsDialog.py" line="91"/> <source>Saved Passwords</source> <translation type="unfinished"></translation> </message> @@ -37571,12 +37584,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../PluginManager/PluginInstallDialog.py" line="463"/> + <location filename="../PluginManager/PluginInstallDialog.py" line="469"/> <source>Error installing plugin. Reason: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PluginManager/PluginInstallDialog.py" line="470"/> + <location filename="../PluginManager/PluginInstallDialog.py" line="476"/> <source>Unspecific exception installing plugin.</source> <translation type="unfinished"></translation> </message> @@ -37624,32 +37637,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1103"/> + <location filename="../PluginManager/PluginManager.py" line="1106"/> <source>Plugin Manager Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1103"/> + <location filename="../PluginManager/PluginManager.py" line="1106"/> <source><p>The plugin download directory <b>{0}</b> could not be created. Please configure it via the configuration dialog.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1179"/> + <location filename="../PluginManager/PluginManager.py" line="1182"/> <source>Error downloading file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1179"/> + <location filename="../PluginManager/PluginManager.py" line="1182"/> <source><p>Could not download the requested file from {0}.</p><p>Error: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1216"/> + <location filename="../PluginManager/PluginManager.py" line="1219"/> <source>New plugin versions available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1216"/> + <location filename="../PluginManager/PluginManager.py" line="1219"/> <source><p>There are new plug-ins or plug-in updates available. Use the plug-in repository dialog to get them.</p></source> <translation type="unfinished"></translation> </message> @@ -38549,1176 +38562,1196 @@ <context> <name>Project</name> <message> - <location filename="../Project/Project.py" line="158"/> + <location filename="../Project/Project.py" line="160"/> <source>Python2 Files (*.py2);;Python2 GUI Files (*.pyw2);;</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="161"/> + <location filename="../Project/Project.py" line="163"/> <source>Python3 Files (*.py *.py3);;Python3 GUI Files (*.pyw *.pyw3);;</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="164"/> + <location filename="../Project/Project.py" line="166"/> <source>Ruby Files (*.rb);;</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="240"/> - <source>PyQt4 GUI</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="241"/> - <source>PyQt4 Console</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="242"/> - <source>PyQt5 GUI</source> + <source>PyQt4 GUI</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Project/Project.py" line="243"/> - <source>PyQt5 Console</source> + <source>PyQt4 Console</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Project/Project.py" line="244"/> - <source>Eric6 Plugin</source> + <source>PyQt5 GUI</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Project/Project.py" line="245"/> - <source>Console</source> + <source>PyQt5 Console</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Project/Project.py" line="246"/> + <source>Eric6 Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="247"/> + <source>Console</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="248"/> <source>Other</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="260"/> + <location filename="../Project/Project.py" line="262"/> <source>PySide GUI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="261"/> + <location filename="../Project/Project.py" line="263"/> <source>PySide Console</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="344"/> + <location filename="../Project/Project.py" line="346"/> <source>Registering Project Type</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="321"/> + <location filename="../Project/Project.py" line="323"/> <source><p>The Programming Language <b>{0}</b> is not supported.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="332"/> + <location filename="../Project/Project.py" line="334"/> <source><p>The Project type <b>{0}</b> is already registered with Programming Language <b>{1}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="344"/> + <location filename="../Project/Project.py" line="346"/> <source><p>The Project type <b>{0}</b> is already registered.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="699"/> + <location filename="../Project/Project.py" line="701"/> <source>Read project file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="699"/> + <location filename="../Project/Project.py" line="701"/> <source><p>The project file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="799"/> + <location filename="../Project/Project.py" line="801"/> <source>Save project file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="799"/> + <location filename="../Project/Project.py" line="801"/> <source><p>The project file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="835"/> + <location filename="../Project/Project.py" line="837"/> <source>Read user project properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="835"/> + <location filename="../Project/Project.py" line="837"/> <source><p>The user specific project properties file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="859"/> + <location filename="../Project/Project.py" line="861"/> <source>Save user project properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="859"/> + <location filename="../Project/Project.py" line="861"/> <source><p>The user specific project properties file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="917"/> + <location filename="../Project/Project.py" line="919"/> <source>Read project session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1139"/> + <location filename="../Project/Project.py" line="1141"/> <source>Please save the project first.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="917"/> + <location filename="../Project/Project.py" line="919"/> <source><p>The project session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="953"/> + <location filename="../Project/Project.py" line="955"/> <source>Save project session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="953"/> + <location filename="../Project/Project.py" line="955"/> <source><p>The project session file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="982"/> + <location filename="../Project/Project.py" line="984"/> <source>Delete project session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="982"/> + <location filename="../Project/Project.py" line="984"/> <source><p>The project session file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1016"/> + <location filename="../Project/Project.py" line="1018"/> <source>Read tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1016"/> + <location filename="../Project/Project.py" line="1018"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1036"/> + <location filename="../Project/Project.py" line="1038"/> <source>Save tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1036"/> + <location filename="../Project/Project.py" line="1038"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1093"/> + <location filename="../Project/Project.py" line="1095"/> <source>Read debugger properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1093"/> + <location filename="../Project/Project.py" line="1095"/> <source><p>The project debugger properties file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1127"/> + <location filename="../Project/Project.py" line="1129"/> <source>Save debugger properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1127"/> + <location filename="../Project/Project.py" line="1129"/> <source><p>The project debugger properties file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1153"/> + <location filename="../Project/Project.py" line="1155"/> <source>Delete debugger properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1153"/> + <location filename="../Project/Project.py" line="1155"/> <source><p>The project debugger properties file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1261"/> + <location filename="../Project/Project.py" line="1263"/> <source>Add Language</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1261"/> + <location filename="../Project/Project.py" line="1263"/> <source>You have to specify a translation pattern first.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1383"/> + <location filename="../Project/Project.py" line="1385"/> <source>Delete translation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1383"/> + <location filename="../Project/Project.py" line="1385"/> <source><p>The selected translation file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1534"/> + <location filename="../Project/Project.py" line="1536"/> <source>Add file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1596"/> + <location filename="../Project/Project.py" line="1598"/> <source><p>The file <b>{0}</b> already exists.</p><p>Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1522"/> + <location filename="../Project/Project.py" line="1524"/> <source><p>The selected file <b>{0}</b> could not be added to <b>{1}</b>.</p><p>Reason: {2}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1651"/> + <location filename="../Project/Project.py" line="1653"/> <source>The target directory must not be empty.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1662"/> + <location filename="../Project/Project.py" line="1664"/> <source>Add directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1565"/> + <location filename="../Project/Project.py" line="1567"/> <source><p>The source directory doesn't contain any files belonging to the selected category.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1578"/> + <location filename="../Project/Project.py" line="1580"/> <source><p>The target directory <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1662"/> + <location filename="../Project/Project.py" line="1664"/> <source>The source directory must not be empty.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1786"/> + <location filename="../Project/Project.py" line="1788"/> <source>Rename file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1810"/> + <location filename="../Project/Project.py" line="1812"/> <source>Rename File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2832"/> + <location filename="../Project/Project.py" line="2834"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1810"/> + <location filename="../Project/Project.py" line="1812"/> <source><p>The file <b>{0}</b> could not be renamed.<br />Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2046"/> + <location filename="../Project/Project.py" line="2048"/> <source>Delete file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2046"/> + <location filename="../Project/Project.py" line="2048"/> <source><p>The selected file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2075"/> + <location filename="../Project/Project.py" line="2077"/> <source>Delete directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2075"/> + <location filename="../Project/Project.py" line="2077"/> <source><p>The selected directory <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2157"/> + <location filename="../Project/Project.py" line="2159"/> <source>Create project directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2157"/> + <location filename="../Project/Project.py" line="2159"/> <source><p>The project directory <b>{0}</b> could not be created.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2651"/> + <location filename="../Project/Project.py" line="2653"/> <source>Create project management directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2651"/> + <location filename="../Project/Project.py" line="2653"/> <source><p>The project directory <b>{0}</b> is not writable.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2220"/> + <location filename="../Project/Project.py" line="2222"/> <source>Create main script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2220"/> + <location filename="../Project/Project.py" line="2222"/> <source><p>The mainscript <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2681"/> + <location filename="../Project/Project.py" line="2683"/> <source>New Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2233"/> + <location filename="../Project/Project.py" line="2235"/> <source>Add existing files to the project?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2681"/> + <location filename="../Project/Project.py" line="2683"/> <source>Select Version Control System</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2352"/> + <location filename="../Project/Project.py" line="2354"/> <source>Would you like to edit the VCS command options?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3441"/> + <location filename="../Project/Project.py" line="3443"/> <source>New project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2300"/> + <location filename="../Project/Project.py" line="2302"/> <source>Shall the project file be added to the repository?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2331"/> + <location filename="../Project/Project.py" line="2333"/> <source>None</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2324"/> + <location filename="../Project/Project.py" line="2326"/> <source>Select version control system for the project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2430"/> + <location filename="../Project/Project.py" line="2432"/> <source>Translation Pattern</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2430"/> + <location filename="../Project/Project.py" line="2432"/> <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3455"/> + <location filename="../Project/Project.py" line="3457"/> <source>Open project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2817"/> + <location filename="../Project/Project.py" line="2819"/> <source>Project Files (*.e4p)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3492"/> + <location filename="../Project/Project.py" line="3494"/> <source>Save project as</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2832"/> + <location filename="../Project/Project.py" line="2834"/> <source>Save File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2868"/> + <location filename="../Project/Project.py" line="2870"/> <source>Close Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2868"/> + <location filename="../Project/Project.py" line="2870"/> <source>The current project has unsaved changes.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3033"/> + <location filename="../Project/Project.py" line="3035"/> <source>Syntax errors detected</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="3033"/> + <location filename="../Project/Project.py" line="3035"/> <source>The project contains %n file(s) with syntax errors.</source> <translation type="unfinished"> <numerusform></numerusform> </translation> </message> <message> - <location filename="../Project/Project.py" line="3441"/> + <location filename="../Project/Project.py" line="3443"/> <source>&New...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3446"/> + <location filename="../Project/Project.py" line="3448"/> <source>Generate a new project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3447"/> + <location filename="../Project/Project.py" line="3449"/> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3455"/> + <location filename="../Project/Project.py" line="3457"/> <source>&Open...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3460"/> + <location filename="../Project/Project.py" line="3462"/> <source>Open an existing project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3461"/> + <location filename="../Project/Project.py" line="3463"/> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3468"/> + <location filename="../Project/Project.py" line="3470"/> <source>Close project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3468"/> + <location filename="../Project/Project.py" line="3470"/> <source>&Close</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3472"/> + <location filename="../Project/Project.py" line="3474"/> <source>Close the current project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3473"/> + <location filename="../Project/Project.py" line="3475"/> <source><b>Close</b><p>This closes the current project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3480"/> + <location filename="../Project/Project.py" line="3482"/> <source>Save project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3671"/> + <location filename="../Project/Project.py" line="3673"/> <source>&Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3484"/> + <location filename="../Project/Project.py" line="3486"/> <source>Save the current project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3485"/> + <location filename="../Project/Project.py" line="3487"/> <source><b>Save</b><p>This saves the current project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3492"/> + <location filename="../Project/Project.py" line="3494"/> <source>Save &as...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3496"/> - <source>Save the current project to a new file</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3498"/> + <source>Save the current project to a new file</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3500"/> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3507"/> + <location filename="../Project/Project.py" line="3509"/> <source>Add files to project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3507"/> + <location filename="../Project/Project.py" line="3509"/> <source>Add &files...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3512"/> - <source>Add files to the current project</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3514"/> + <source>Add files to the current project</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3516"/> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3523"/> + <location filename="../Project/Project.py" line="3525"/> <source>Add directory to project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3523"/> + <location filename="../Project/Project.py" line="3525"/> <source>Add directory...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3528"/> - <source>Add a directory to the current project</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3530"/> + <source>Add a directory to the current project</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3532"/> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3538"/> + <location filename="../Project/Project.py" line="3540"/> <source>Add translation to project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3538"/> + <location filename="../Project/Project.py" line="3540"/> <source>Add &translation...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3543"/> - <source>Add a translation to the current project</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3545"/> + <source>Add a translation to the current project</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3547"/> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3553"/> + <location filename="../Project/Project.py" line="3555"/> <source>Search new files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3553"/> + <location filename="../Project/Project.py" line="3555"/> <source>Searc&h new files...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3557"/> - <source>Search new files in the project directory.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3559"/> + <source>Search new files in the project directory.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3561"/> <source><b>Search new files...</b><p>This searches for new files (sources, *.ui, *.idl) in the project directory and registered subdirectories.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3567"/> + <location filename="../Project/Project.py" line="3569"/> <source>Search Project File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3567"/> + <location filename="../Project/Project.py" line="3569"/> <source>Search Project File...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3567"/> + <location filename="../Project/Project.py" line="3569"/> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3573"/> - <source>Search for a file in the project list of files.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3575"/> + <source>Search for a file in the project list of files.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3577"/> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3582"/> + <location filename="../Project/Project.py" line="3584"/> <source>Project properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3582"/> + <location filename="../Project/Project.py" line="3584"/> <source>&Properties...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3587"/> + <location filename="../Project/Project.py" line="3589"/> <source>Show the project properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3588"/> + <location filename="../Project/Project.py" line="3590"/> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3595"/> + <location filename="../Project/Project.py" line="3597"/> <source>User project properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3595"/> + <location filename="../Project/Project.py" line="3597"/> <source>&User Properties...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3600"/> - <source>Show the user specific project properties</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3602"/> + <source>Show the user specific project properties</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3604"/> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3610"/> + <location filename="../Project/Project.py" line="3612"/> <source>Filetype Associations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3610"/> + <location filename="../Project/Project.py" line="3612"/> <source>Filetype Associations...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3614"/> - <source>Show the project filetype associations</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3616"/> + <source>Show the project filetype associations</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3618"/> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the filetype associations of the project. These associations determine the type (source, form, interface or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3628"/> + <location filename="../Project/Project.py" line="3630"/> <source>Lexer Associations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3628"/> + <location filename="../Project/Project.py" line="3630"/> <source>Lexer Associations...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3632"/> - <source>Show the project lexer associations (overriding defaults)</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3634"/> + <source>Show the project lexer associations (overriding defaults)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3636"/> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3646"/> + <location filename="../Project/Project.py" line="3648"/> <source>Debugger Properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3646"/> + <location filename="../Project/Project.py" line="3648"/> <source>Debugger &Properties...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3650"/> + <location filename="../Project/Project.py" line="3652"/> <source>Show the debugger properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3651"/> + <location filename="../Project/Project.py" line="3653"/> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3659"/> + <location filename="../Project/Project.py" line="3661"/> <source>Load</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3659"/> + <location filename="../Project/Project.py" line="3661"/> <source>&Load</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3663"/> + <location filename="../Project/Project.py" line="3665"/> <source>Load the debugger properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3664"/> + <location filename="../Project/Project.py" line="3666"/> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3671"/> + <location filename="../Project/Project.py" line="3673"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3675"/> + <location filename="../Project/Project.py" line="3677"/> <source>Save the debugger properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3676"/> + <location filename="../Project/Project.py" line="3678"/> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3683"/> + <location filename="../Project/Project.py" line="3685"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3683"/> + <location filename="../Project/Project.py" line="3685"/> <source>&Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3687"/> + <location filename="../Project/Project.py" line="3689"/> <source>Delete the debugger properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3688"/> + <location filename="../Project/Project.py" line="3690"/> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3696"/> + <location filename="../Project/Project.py" line="3698"/> <source>Reset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3696"/> + <location filename="../Project/Project.py" line="3698"/> <source>&Reset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3700"/> + <location filename="../Project/Project.py" line="3702"/> <source>Reset the debugger properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3701"/> + <location filename="../Project/Project.py" line="3703"/> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3710"/> + <location filename="../Project/Project.py" line="3712"/> <source>Load session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3714"/> + <location filename="../Project/Project.py" line="3716"/> <source>Load the projects session file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3715"/> + <location filename="../Project/Project.py" line="3717"/> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3728"/> + <location filename="../Project/Project.py" line="3730"/> <source>Save session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3732"/> + <location filename="../Project/Project.py" line="3734"/> <source>Save the projects session file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3733"/> + <location filename="../Project/Project.py" line="3735"/> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3746"/> + <location filename="../Project/Project.py" line="3748"/> <source>Delete session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3750"/> + <location filename="../Project/Project.py" line="3752"/> <source>Delete the projects session file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3751"/> + <location filename="../Project/Project.py" line="3753"/> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3760"/> + <location filename="../Project/Project.py" line="3762"/> <source>Code Metrics</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3760"/> + <location filename="../Project/Project.py" line="3762"/> <source>&Code Metrics...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> - <source>Show some code metrics for the project.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3766"/> + <source>Show some code metrics for the project.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3768"/> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3774"/> + <location filename="../Project/Project.py" line="3776"/> <source>Python Code Coverage</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3774"/> + <location filename="../Project/Project.py" line="3776"/> <source>Code Co&verage...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> - <source>Show code coverage information for the project.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3780"/> + <source>Show code coverage information for the project.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3782"/> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4564"/> + <location filename="../Project/Project.py" line="4568"/> <source>Profile Data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3788"/> + <location filename="../Project/Project.py" line="3790"/> <source>&Profile Data...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3792"/> - <source>Show profiling data for the project.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3794"/> + <source>Show profiling data for the project.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3796"/> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4618"/> + <location filename="../Project/Project.py" line="4622"/> <source>Application Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3803"/> + <location filename="../Project/Project.py" line="3805"/> <source>&Application Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3807"/> - <source>Show a diagram of the project.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3809"/> + <source>Show a diagram of the project.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3811"/> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3817"/> + <location filename="../Project/Project.py" line="3819"/> <source>Load Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3817"/> + <location filename="../Project/Project.py" line="3819"/> <source>&Load Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3821"/> - <source>Load a diagram from file.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3823"/> + <source>Load a diagram from file.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3825"/> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4776"/> + <location filename="../Project/Project.py" line="4780"/> <source>Create Package List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3832"/> + <location filename="../Project/Project.py" line="3834"/> <source>Create &Package List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3837"/> - <source>Create an initial PKGLIST file for an eric6 plugin.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3839"/> + <source>Create an initial PKGLIST file for an eric6 plugin.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3841"/> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric6 plugin archive. The list is created from the project file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5003"/> + <location filename="../Project/Project.py" line="5027"/> <source>Create Plugin Archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3848"/> - <source>Create Plugin &Archive</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3853"/> - <source>Create an eric6 plugin archive file.</source> + <location filename="../Project/Project.py" line="3904"/> + <source>&Project</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3905"/> + <source>Open &Recent Projects</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3906"/> + <source>&Version Control</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3910"/> + <source>Chec&k</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3912"/> + <source>Sho&w</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3913"/> + <source>&Diagrams</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3914"/> + <source>Session</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3915"/> + <source>Source &Documentation</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3917"/> + <source>Debugger</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3918"/> + <source>Pac&kagers</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4026"/> + <source>Project</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4092"/> + <source>&Clear</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4231"/> + <source>Search New Files</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4231"/> + <source>There were no new files found to be added.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4377"/> + <source>Version Control System</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4365"/> + <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4377"/> + <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4495"/> + <source>Coverage Data</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4545"/> + <source>There is no main script defined for the current project. Aborting</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4518"/> + <source>Code Coverage</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4518"/> + <source>Please select a coverage file</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4568"/> + <source>Please select a profile file</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4622"/> + <source>Include module names?</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4740"/> + <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4780"/> + <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4799"/> + <source>The project does not have a main script defined. Aborting...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4881"/> + <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4911"/> + <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"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4985"/> + <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="5027"/> + <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4834"/> + <source>Create Plugin Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3850"/> + <source>Create Plugin &Archives</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Project/Project.py" line="3855"/> - <source><b>Create Plugin Archive</b><p>This creates an eric6 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3864"/> - <source>Create Plugin Archive (Snapshot)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3864"/> - <source>Create Plugin Archive (&Snapshot)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3869"/> - <source>Create an eric6 plugin archive file (snapshot release).</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3871"/> - <source><b>Create Plugin Archive (Snapshot)</b><p>This creates an eric6 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name. The version entry of the main script is modified to reflect a snapshot release.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3900"/> - <source>&Project</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3901"/> - <source>Open &Recent Projects</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3902"/> - <source>&Version Control</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3906"/> - <source>Chec&k</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3908"/> - <source>Sho&w</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3909"/> - <source>&Diagrams</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3910"/> - <source>Session</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3911"/> - <source>Source &Documentation</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3913"/> - <source>Debugger</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3914"/> - <source>Pac&kagers</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4022"/> - <source>Project</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4088"/> - <source>&Clear</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4227"/> - <source>Search New Files</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4227"/> - <source>There were no new files found to be added.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4373"/> - <source>Version Control System</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4361"/> - <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4373"/> - <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4491"/> - <source>Coverage Data</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4541"/> - <source>There is no main script defined for the current project. Aborting</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4514"/> - <source>Code Coverage</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4514"/> - <source>Please select a coverage file</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4564"/> - <source>Please select a profile file</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4618"/> - <source>Include module names?</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4736"/> - <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4776"/> - <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4815"/> - <source><p>The file <b>PKGLIST</b> does not exist. Aborting...</p></source> + <source>Create eric6 plugin archive files.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3857"/> + <source><b>Create Plugin Archives</b><p>This creates eric6 plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3867"/> + <source>Create Plugin Archives (Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3867"/> + <source>Create Plugin Archives (&Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3872"/> + <source>Create eric6 plugin archive files (snapshot releases).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3874"/> + <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric6 plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4813"/> + <source>Select package lists:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>Creating plugin archives...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>Abort</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>%v/%m Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4847"/> + <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4930"/> + <source><p>The eric6 plugin archive files were created with some errors.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4933"/> + <source><p>The eric6 plugin archive files were created successfully.</p></source> <translation type="unfinished"></translation> </message> <message> <location filename="../Project/Project.py" line="4823"/> - <source>The project does not have a main script defined. Aborting...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4836"/> - <source><p>The file <b>PKGLIST</b> could not be read.</p><p>Reason: {0}</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4866"/> - <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4892"/> - <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"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4915"/> - <source><p>The eric6 plugin archive file <b>{0}</b> was created successfully.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4961"/> - <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="5003"/> - <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4799"/> - <source>Select a package list file:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4806"/> - <source><p>No package list file selected. Aborting...</p></source> + <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished"></translation> </message> </context> @@ -41677,7 +41710,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../DataViews/PyCoverageDialog.ui" line="172"/> + <location filename="../DataViews/PyCoverageDialog.py" line="349"/> <source>Coverage</source> <translation type="unfinished"></translation> </message> @@ -41708,7 +41741,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../DataViews/PyCoverageDialog.ui" line="192"/> + <location filename="../DataViews/PyCoverageDialog.py" line="345"/> <source>%v/%m Files</source> <translation type="unfinished"></translation> </message> @@ -41763,7 +41796,7 @@ <context> <name>PyProfileDialog</name> <message> - <location filename="../DataViews/PyProfileDialog.ui" line="20"/> + <location filename="../DataViews/PyProfileDialog.py" line="233"/> <source>Profile Results</source> <translation type="unfinished"></translation> </message> @@ -46280,7 +46313,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.ui" line="89"/> + <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.py" line="150"/> <source>Remove Filters</source> <translation type="unfinished"></translation> </message> @@ -46290,7 +46323,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.ui" line="99"/> + <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.py" line="178"/> <source>Remove Attributes</source> <translation type="unfinished"></translation> </message> @@ -47763,7 +47796,7 @@ <context> <name>SendRefererWhitelistDialog</name> <message> - <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.ui" line="14"/> + <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="52"/> <source>Send Referer Whitelist</source> <translation type="unfinished"></translation> </message> @@ -48752,7 +48785,7 @@ <context> <name>SnapWidget</name> <message> - <location filename="../Snapshot/SnapWidget.ui" line="20"/> + <location filename="../Snapshot/SnapWidget.py" line="531"/> <source>eric6 Snapshot</source> <translation type="unfinished"></translation> </message> @@ -51403,7 +51436,7 @@ <context> <name>SvnDiffDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.ui" line="14"/> + <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="171"/> <source>Subversion Diff</source> <translation type="unfinished"></translation> </message> @@ -51705,17 +51738,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="112"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="621"/> <source>Revision</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="117"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="618"/> <source>Author</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="127"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="141"/> <source>Message</source> <translation type="unfinished"></translation> </message> @@ -52151,7 +52184,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.ui" line="45"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="128"/> <source>&URL:</source> <translation type="unfinished"></translation> </message> @@ -52244,7 +52277,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.ui" line="45"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.py" line="95"/> <source>&URL:</source> <translation type="unfinished"></translation> </message> @@ -53465,7 +53498,7 @@ <context> <name>SvnStatusDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="14"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="394"/> <source>Subversion Status</source> <translation type="unfinished"></translation> </message> @@ -53486,7 +53519,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="80"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="711"/> <source>Commit</source> <translation type="unfinished"></translation> </message> @@ -58922,7 +58955,7 @@ <context> <name>UnittestDialog</name> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="14"/> + <location filename="../PyUnit/UnittestDialog.py" line="400"/> <source>Unittest</source> <translation type="unfinished"></translation> </message> @@ -61789,62 +61822,62 @@ <context> <name>VariablesViewer</name> <message> - <location filename="../Debugger/VariablesViewer.py" line="354"/> + <location filename="../Debugger/VariablesViewer.py" line="358"/> <source>Global Variables</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="355"/> - <source>Globals</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/VariablesViewer.py" line="366"/> - <source>Value</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/VariablesViewer.py" line="366"/> - <source>Type</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="359"/> + <source>Globals</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="370"/> + <source>Value</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="370"/> + <source>Type</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="363"/> <source><b>The Global Variables Viewer Window</b><p>This window displays the global variables of the debugged program.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="365"/> + <location filename="../Debugger/VariablesViewer.py" line="369"/> <source>Local Variables</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="366"/> - <source>Locals</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="370"/> + <source>Locals</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="374"/> <source><b>The Local Variables Viewer Window</b><p>This window displays the local variables of the debugged program.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="401"/> + <location filename="../Debugger/VariablesViewer.py" line="405"/> <source>Show Details...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="407"/> + <location filename="../Debugger/VariablesViewer.py" line="411"/> <source>Refresh</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="409"/> + <location filename="../Debugger/VariablesViewer.py" line="413"/> <source>Configure...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="629"/> + <location filename="../Debugger/VariablesViewer.py" line="633"/> <source>{0} items</source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_en.ts Sun Oct 16 12:20:30 2016 +0200 +++ b/i18n/eric6_en.ts Sun Oct 16 14:42:46 2016 +0200 @@ -390,7 +390,7 @@ <context> <name>AddBookmarkDialog</name> <message> - <location filename="../WebBrowser/Bookmarks/AddBookmarkDialog.ui" line="26"/> + <location filename="../WebBrowser/Bookmarks/AddBookmarkDialog.py" line="198"/> <source>Add Bookmark</source> <translation type="unfinished"></translation> </message> @@ -1661,7 +1661,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/Bookmarks/BookmarksDialog.ui" line="75"/> + <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="169"/> <source>&Delete</source> <translation type="unfinished"></translation> </message> @@ -2379,12 +2379,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/CallTraceViewer.ui" line="109"/> + <location filename="../Debugger/CallTraceViewer.py" line="54"/> <source>From</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/CallTraceViewer.ui" line="114"/> + <location filename="../Debugger/CallTraceViewer.py" line="54"/> <source>To</source> <translation type="unfinished"></translation> </message> @@ -2492,7 +2492,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Cooperation/ChatWidget.ui" line="230"/> + <location filename="../Cooperation/ChatWidget.py" line="513"/> <source>Clear</source> <translation type="unfinished"></translation> </message> @@ -2842,7 +2842,7 @@ <context> <name>ClickToFlashWhitelistDialog</name> <message> - <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.ui" line="14"/> + <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.py" line="54"/> <source>ClickToFlash Whitelist</source> <translation type="unfinished"></translation> </message> @@ -4121,22 +4121,22 @@ <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/CompareDialog.py" line="354"/> + <source>Total: {0}</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/CompareDialog.py" line="356"/> - <source>Total: {0}</source> + <source>Changed: {0}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/CompareDialog.py" line="357"/> + <source>Added: {0}</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/CompareDialog.py" line="358"/> - <source>Changed: {0}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/CompareDialog.py" line="359"/> - <source>Added: {0}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/CompareDialog.py" line="360"/> <source>Deleted: {0}</source> <translation type="unfinished"></translation> </message> @@ -4753,7 +4753,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/CookieJar/CookiesDialog.ui" line="223"/> + <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="177"/> <source><no cookie selected></source> <translation type="unfinished"></translation> </message> @@ -7316,7 +7316,7 @@ <context> <name>DownloadManager</name> <message> - <location filename="../WebBrowser/Download/DownloadManager.ui" line="14"/> + <location filename="../WebBrowser/Download/DownloadManager.py" line="363"/> <source>Downloads</source> <translation type="unfinished"></translation> </message> @@ -7531,6 +7531,19 @@ </message> </context> <context> + <name>E5ListSelectionDialog</name> + <message> + <location filename="../E5Gui/E5ListSelectionDialog.ui" line="14"/> + <source>Select from List</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../E5Gui/E5ListSelectionDialog.ui" line="23"/> + <source>Select from the list below:</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>E5MainWindow</name> <message> <location filename="../E5Gui/E5MainWindow.py" line="56"/> @@ -7749,92 +7762,92 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="257"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="41"/> <source>Abort</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="264"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="42"/> <source>Apply</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="271"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="43"/> <source>Cancel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="278"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="44"/> <source>Close</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="285"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="45"/> <source>Discard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="292"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="46"/> <source>Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="299"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="47"/> <source>Ignore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="306"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="48"/> <source>No</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="313"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="49"/> <source>No to all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="320"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="50"/> <source>Ok</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="327"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="51"/> <source>Open</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="334"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="52"/> <source>Reset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="341"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="53"/> <source>Restore defaults</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="348"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="54"/> <source>Retry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="355"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="55"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="362"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="56"/> <source>Save all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="369"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="57"/> <source>Yes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="376"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="58"/> <source>Yes to all</source> <translation type="unfinished"></translation> </message> @@ -9849,7 +9862,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="132"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="184"/> <source>Add from installed APIs</source> <translation type="unfinished"></translation> </message> @@ -9859,7 +9872,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="142"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="203"/> <source>Add from Plugin APIs</source> <translation type="unfinished"></translation> </message> @@ -9869,7 +9882,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="159"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="236"/> <source>Compile APIs</source> <translation type="unfinished"></translation> </message> @@ -10912,7 +10925,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="103"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="69"/> <source>Font</source> <translation type="unfinished"></translation> </message> @@ -10922,7 +10935,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="113"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> <source>Fill to end of line</source> <translation type="unfinished"></translation> </message> @@ -12433,7 +12446,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1080"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="58"/> <source>Disabled</source> <translation type="unfinished"></translation> </message> @@ -13142,7 +13155,7 @@ <context> <name>EmailDialog</name> <message> - <location filename="../UI/EmailDialog.ui" line="13"/> + <location filename="../UI/EmailDialog.py" line="339"/> <source>Send bug report</source> <translation type="unfinished"></translation> </message> @@ -14535,12 +14548,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="122"/> + <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="110"/> <source>Host</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="127"/> + <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="111"/> <source>Permission</source> <translation type="unfinished"></translation> </message> @@ -14555,7 +14568,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="97"/> + <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="51"/> <source>Geolocation</source> <translation type="unfinished"></translation> </message> @@ -15677,7 +15690,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="158"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="193"/> <source><no flash cookie selected></source> <translation type="unfinished"></translation> </message> @@ -15687,7 +15700,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="137"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="122"/> <source>Origin:</source> <translation type="unfinished"></translation> </message> @@ -15722,7 +15735,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="225"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="213"/> <source>Remove Cookie</source> <translation type="unfinished"></translation> </message> @@ -16147,7 +16160,7 @@ <context> <name>GreaseMonkeyAddScriptDialog</name> <message> - <location filename="../WebBrowser/GreaseMonkey/GreaseMonkeyAddScriptDialog.ui" line="14"/> + <location filename="../WebBrowser/GreaseMonkey/GreaseMonkeyAddScriptDialog.py" line="105"/> <source>GreaseMonkey Script Installation</source> <translation type="unfinished"></translation> </message> @@ -21735,7 +21748,7 @@ <context> <name>HgAddSubrepositoryDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.ui" line="14"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.py" line="98"/> <source>Add Sub-repository</source> <translation type="unfinished"></translation> </message> @@ -22820,7 +22833,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.ui" line="73"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="247"/> <source>Resolved</source> <translation type="unfinished"></translation> </message> @@ -22830,7 +22843,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.ui" line="83"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="245"/> <source>Unresolved</source> <translation type="unfinished"></translation> </message> @@ -23407,7 +23420,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.ui" line="55"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="317"/> <source>Revision</source> <translation type="unfinished"></translation> </message> @@ -23686,7 +23699,7 @@ <context> <name>HgLogBrowserDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="14"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="71"/> <source>Mercurial Log</source> <translation type="unfinished"></translation> </message> @@ -23726,17 +23739,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="181"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="96"/> <source>Revision</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="191"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="97"/> <source>Author</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="201"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="98"/> <source>Message</source> <translation type="unfinished"></translation> </message> @@ -27562,7 +27575,7 @@ <context> <name>HgStatusDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="14"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="313"/> <source>Mercurial Status</source> <translation type="unfinished"></translation> </message> @@ -27703,7 +27716,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="87"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="708"/> <source>Commit</source> <translation type="unfinished"></translation> </message> @@ -27823,7 +27836,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="203"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="854"/> <source>Differences</source> <translation type="unfinished"></translation> </message> @@ -28583,7 +28596,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/History/HistoryDialog.ui" line="75"/> + <location filename="../WebBrowser/History/HistoryDialog.py" line="114"/> <source>&Remove</source> <translation type="unfinished"></translation> </message> @@ -34438,92 +34451,92 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="219"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="40"/> <source>Apply</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="226"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="39"/> <source>Abort</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="233"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="41"/> <source>Cancel</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="240"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="45"/> <source>Ignore</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="247"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="54"/> <source>Save all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="254"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="53"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="261"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="43"/> <source>Discard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="268"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="56"/> <source>Yes to all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="275"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="49"/> <source>Open</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="282"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="50"/> <source>Reset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="289"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="48"/> <source>Ok</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="296"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="46"/> <source>No</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="303"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="44"/> <source>Help</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="310"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="47"/> <source>No to all</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="317"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="52"/> <source>Retry</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="324"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="51"/> <source>Restore defaults</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="331"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="55"/> <source>Yes</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="338"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="42"/> <source>Close</source> <translation type="unfinished"></translation> </message> @@ -36213,7 +36226,7 @@ <context> <name>NoCacheHostsDialog</name> <message> - <location filename="../Helpviewer/Network/NoCacheHostsDialog.ui" line="14"/> + <location filename="../Helpviewer/Network/NoCacheHostsDialog.py" line="52"/> <source>Not Cached Hosts</source> <translation type="unfinished"></translation> </message> @@ -36321,7 +36334,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/NotificationsPage.ui" line="146"/> + <location filename="../Preferences/ConfigurationPages/NotificationsPage.py" line="81"/> <source>Visual Selection</source> <translation type="unfinished"></translation> </message> @@ -36991,7 +37004,7 @@ <context> <name>PasswordsDialog</name> <message> - <location filename="../WebBrowser/Passwords/PasswordsDialog.ui" line="14"/> + <location filename="../WebBrowser/Passwords/PasswordsDialog.py" line="91"/> <source>Saved Passwords</source> <translation type="unfinished"></translation> </message> @@ -37609,12 +37622,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../PluginManager/PluginInstallDialog.py" line="463"/> + <location filename="../PluginManager/PluginInstallDialog.py" line="469"/> <source>Error installing plugin. Reason: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PluginManager/PluginInstallDialog.py" line="470"/> + <location filename="../PluginManager/PluginInstallDialog.py" line="476"/> <source>Unspecific exception installing plugin.</source> <translation type="unfinished"></translation> </message> @@ -37652,32 +37665,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1103"/> + <location filename="../PluginManager/PluginManager.py" line="1106"/> <source>Plugin Manager Error</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1103"/> + <location filename="../PluginManager/PluginManager.py" line="1106"/> <source><p>The plugin download directory <b>{0}</b> could not be created. Please configure it via the configuration dialog.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1179"/> + <location filename="../PluginManager/PluginManager.py" line="1182"/> <source>Error downloading file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1179"/> + <location filename="../PluginManager/PluginManager.py" line="1182"/> <source><p>Could not download the requested file from {0}.</p><p>Error: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1216"/> + <location filename="../PluginManager/PluginManager.py" line="1219"/> <source>New plugin versions available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1216"/> + <location filename="../PluginManager/PluginManager.py" line="1219"/> <source><p>There are new plug-ins or plug-in updates available. Use the plug-in repository dialog to get them.</p></source> <translation type="unfinished"></translation> </message> @@ -38587,362 +38600,362 @@ <context> <name>Project</name> <message> - <location filename="../Project/Project.py" line="161"/> + <location filename="../Project/Project.py" line="163"/> <source>Python3 Files (*.py *.py3);;Python3 GUI Files (*.pyw *.pyw3);;</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="164"/> + <location filename="../Project/Project.py" line="166"/> <source>Ruby Files (*.rb);;</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="245"/> + <location filename="../Project/Project.py" line="247"/> <source>Console</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="246"/> + <location filename="../Project/Project.py" line="248"/> <source>Other</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="260"/> + <location filename="../Project/Project.py" line="262"/> <source>PySide GUI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="261"/> + <location filename="../Project/Project.py" line="263"/> <source>PySide Console</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="344"/> + <location filename="../Project/Project.py" line="346"/> <source>Registering Project Type</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="699"/> + <location filename="../Project/Project.py" line="701"/> <source>Read project file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="699"/> + <location filename="../Project/Project.py" line="701"/> <source><p>The project file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="799"/> + <location filename="../Project/Project.py" line="801"/> <source>Save project file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="799"/> + <location filename="../Project/Project.py" line="801"/> <source><p>The project file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="835"/> + <location filename="../Project/Project.py" line="837"/> <source>Read user project properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="835"/> + <location filename="../Project/Project.py" line="837"/> <source><p>The user specific project properties file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="859"/> + <location filename="../Project/Project.py" line="861"/> <source>Save user project properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="859"/> + <location filename="../Project/Project.py" line="861"/> <source><p>The user specific project properties file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="917"/> + <location filename="../Project/Project.py" line="919"/> <source>Read project session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1139"/> + <location filename="../Project/Project.py" line="1141"/> <source>Please save the project first.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="917"/> + <location filename="../Project/Project.py" line="919"/> <source><p>The project session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="953"/> + <location filename="../Project/Project.py" line="955"/> <source>Save project session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="953"/> + <location filename="../Project/Project.py" line="955"/> <source><p>The project session file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="982"/> + <location filename="../Project/Project.py" line="984"/> <source>Delete project session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="982"/> + <location filename="../Project/Project.py" line="984"/> <source><p>The project session file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1016"/> + <location filename="../Project/Project.py" line="1018"/> <source>Read tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1016"/> + <location filename="../Project/Project.py" line="1018"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1036"/> + <location filename="../Project/Project.py" line="1038"/> <source>Save tasks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1036"/> + <location filename="../Project/Project.py" line="1038"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1093"/> + <location filename="../Project/Project.py" line="1095"/> <source>Read debugger properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1093"/> + <location filename="../Project/Project.py" line="1095"/> <source><p>The project debugger properties file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1127"/> + <location filename="../Project/Project.py" line="1129"/> <source>Save debugger properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1127"/> + <location filename="../Project/Project.py" line="1129"/> <source><p>The project debugger properties file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1153"/> + <location filename="../Project/Project.py" line="1155"/> <source>Delete debugger properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1153"/> + <location filename="../Project/Project.py" line="1155"/> <source><p>The project debugger properties file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1261"/> + <location filename="../Project/Project.py" line="1263"/> <source>Add Language</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1261"/> + <location filename="../Project/Project.py" line="1263"/> <source>You have to specify a translation pattern first.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1383"/> + <location filename="../Project/Project.py" line="1385"/> <source>Delete translation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1383"/> + <location filename="../Project/Project.py" line="1385"/> <source><p>The selected translation file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1534"/> + <location filename="../Project/Project.py" line="1536"/> <source>Add file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1596"/> + <location filename="../Project/Project.py" line="1598"/> <source><p>The file <b>{0}</b> already exists.</p><p>Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1522"/> + <location filename="../Project/Project.py" line="1524"/> <source><p>The selected file <b>{0}</b> could not be added to <b>{1}</b>.</p><p>Reason: {2}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1651"/> + <location filename="../Project/Project.py" line="1653"/> <source>The target directory must not be empty.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1662"/> + <location filename="../Project/Project.py" line="1664"/> <source>Add directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1565"/> + <location filename="../Project/Project.py" line="1567"/> <source><p>The source directory doesn't contain any files belonging to the selected category.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1578"/> + <location filename="../Project/Project.py" line="1580"/> <source><p>The target directory <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1662"/> + <location filename="../Project/Project.py" line="1664"/> <source>The source directory must not be empty.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1786"/> + <location filename="../Project/Project.py" line="1788"/> <source>Rename file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1810"/> + <location filename="../Project/Project.py" line="1812"/> <source>Rename File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2832"/> + <location filename="../Project/Project.py" line="2834"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1810"/> + <location filename="../Project/Project.py" line="1812"/> <source><p>The file <b>{0}</b> could not be renamed.<br />Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2046"/> + <location filename="../Project/Project.py" line="2048"/> <source>Delete file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2046"/> + <location filename="../Project/Project.py" line="2048"/> <source><p>The selected file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2075"/> + <location filename="../Project/Project.py" line="2077"/> <source>Delete directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2075"/> + <location filename="../Project/Project.py" line="2077"/> <source><p>The selected directory <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2157"/> + <location filename="../Project/Project.py" line="2159"/> <source>Create project directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2157"/> + <location filename="../Project/Project.py" line="2159"/> <source><p>The project directory <b>{0}</b> could not be created.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2681"/> + <location filename="../Project/Project.py" line="2683"/> <source>New Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2233"/> + <location filename="../Project/Project.py" line="2235"/> <source>Add existing files to the project?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2681"/> + <location filename="../Project/Project.py" line="2683"/> <source>Select Version Control System</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2352"/> + <location filename="../Project/Project.py" line="2354"/> <source>Would you like to edit the VCS command options?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3441"/> + <location filename="../Project/Project.py" line="3443"/> <source>New project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2300"/> + <location filename="../Project/Project.py" line="2302"/> <source>Shall the project file be added to the repository?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2331"/> + <location filename="../Project/Project.py" line="2333"/> <source>None</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2324"/> + <location filename="../Project/Project.py" line="2326"/> <source>Select version control system for the project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2430"/> + <location filename="../Project/Project.py" line="2432"/> <source>Translation Pattern</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2430"/> + <location filename="../Project/Project.py" line="2432"/> <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3455"/> + <location filename="../Project/Project.py" line="3457"/> <source>Open project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2817"/> + <location filename="../Project/Project.py" line="2819"/> <source>Project Files (*.e4p)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3492"/> + <location filename="../Project/Project.py" line="3494"/> <source>Save project as</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2832"/> + <location filename="../Project/Project.py" line="2834"/> <source>Save File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2868"/> + <location filename="../Project/Project.py" line="2870"/> <source>Close Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2868"/> + <location filename="../Project/Project.py" line="2870"/> <source>The current project has unsaved changes.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3033"/> + <location filename="../Project/Project.py" line="3035"/> <source>Syntax errors detected</source> <translation type="unfinished"></translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="3033"/> + <location filename="../Project/Project.py" line="3035"/> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>The project contains one file with syntax errors.</numerusform> @@ -38950,814 +38963,834 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="3441"/> + <location filename="../Project/Project.py" line="3443"/> <source>&New...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3446"/> + <location filename="../Project/Project.py" line="3448"/> <source>Generate a new project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3447"/> + <location filename="../Project/Project.py" line="3449"/> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3455"/> + <location filename="../Project/Project.py" line="3457"/> <source>&Open...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3460"/> + <location filename="../Project/Project.py" line="3462"/> <source>Open an existing project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3461"/> + <location filename="../Project/Project.py" line="3463"/> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3468"/> + <location filename="../Project/Project.py" line="3470"/> <source>Close project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3468"/> + <location filename="../Project/Project.py" line="3470"/> <source>&Close</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3472"/> + <location filename="../Project/Project.py" line="3474"/> <source>Close the current project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3473"/> + <location filename="../Project/Project.py" line="3475"/> <source><b>Close</b><p>This closes the current project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3480"/> + <location filename="../Project/Project.py" line="3482"/> <source>Save project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3671"/> + <location filename="../Project/Project.py" line="3673"/> <source>&Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3484"/> + <location filename="../Project/Project.py" line="3486"/> <source>Save the current project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3485"/> + <location filename="../Project/Project.py" line="3487"/> <source><b>Save</b><p>This saves the current project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3492"/> + <location filename="../Project/Project.py" line="3494"/> <source>Save &as...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3496"/> - <source>Save the current project to a new file</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3498"/> + <source>Save the current project to a new file</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3500"/> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3507"/> + <location filename="../Project/Project.py" line="3509"/> <source>Add files to project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3507"/> + <location filename="../Project/Project.py" line="3509"/> <source>Add &files...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3512"/> - <source>Add files to the current project</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3514"/> + <source>Add files to the current project</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3516"/> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3523"/> + <location filename="../Project/Project.py" line="3525"/> <source>Add directory to project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3523"/> + <location filename="../Project/Project.py" line="3525"/> <source>Add directory...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3528"/> - <source>Add a directory to the current project</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3530"/> + <source>Add a directory to the current project</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3532"/> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3538"/> + <location filename="../Project/Project.py" line="3540"/> <source>Add translation to project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3538"/> + <location filename="../Project/Project.py" line="3540"/> <source>Add &translation...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3543"/> - <source>Add a translation to the current project</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3545"/> + <source>Add a translation to the current project</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3547"/> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3553"/> + <location filename="../Project/Project.py" line="3555"/> <source>Search new files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3553"/> + <location filename="../Project/Project.py" line="3555"/> <source>Searc&h new files...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3557"/> - <source>Search new files in the project directory.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3559"/> + <source>Search new files in the project directory.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3561"/> <source><b>Search new files...</b><p>This searches for new files (sources, *.ui, *.idl) in the project directory and registered subdirectories.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3582"/> + <location filename="../Project/Project.py" line="3584"/> <source>Project properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3582"/> + <location filename="../Project/Project.py" line="3584"/> <source>&Properties...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3587"/> + <location filename="../Project/Project.py" line="3589"/> <source>Show the project properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3588"/> + <location filename="../Project/Project.py" line="3590"/> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3595"/> + <location filename="../Project/Project.py" line="3597"/> <source>User project properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3595"/> + <location filename="../Project/Project.py" line="3597"/> <source>&User Properties...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3600"/> - <source>Show the user specific project properties</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3602"/> + <source>Show the user specific project properties</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3604"/> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3610"/> + <location filename="../Project/Project.py" line="3612"/> <source>Filetype Associations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3610"/> + <location filename="../Project/Project.py" line="3612"/> <source>Filetype Associations...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3614"/> - <source>Show the project filetype associations</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3616"/> + <source>Show the project filetype associations</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3618"/> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the filetype associations of the project. These associations determine the type (source, form, interface or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3628"/> + <location filename="../Project/Project.py" line="3630"/> <source>Lexer Associations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3628"/> + <location filename="../Project/Project.py" line="3630"/> <source>Lexer Associations...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3632"/> - <source>Show the project lexer associations (overriding defaults)</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3634"/> + <source>Show the project lexer associations (overriding defaults)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3636"/> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3646"/> + <location filename="../Project/Project.py" line="3648"/> <source>Debugger Properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3646"/> + <location filename="../Project/Project.py" line="3648"/> <source>Debugger &Properties...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3650"/> + <location filename="../Project/Project.py" line="3652"/> <source>Show the debugger properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3651"/> + <location filename="../Project/Project.py" line="3653"/> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3659"/> + <location filename="../Project/Project.py" line="3661"/> <source>Load</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3659"/> + <location filename="../Project/Project.py" line="3661"/> <source>&Load</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3663"/> + <location filename="../Project/Project.py" line="3665"/> <source>Load the debugger properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3664"/> + <location filename="../Project/Project.py" line="3666"/> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3671"/> + <location filename="../Project/Project.py" line="3673"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3675"/> + <location filename="../Project/Project.py" line="3677"/> <source>Save the debugger properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3676"/> + <location filename="../Project/Project.py" line="3678"/> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3683"/> + <location filename="../Project/Project.py" line="3685"/> <source>Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3683"/> + <location filename="../Project/Project.py" line="3685"/> <source>&Delete</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3687"/> + <location filename="../Project/Project.py" line="3689"/> <source>Delete the debugger properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3688"/> + <location filename="../Project/Project.py" line="3690"/> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3696"/> + <location filename="../Project/Project.py" line="3698"/> <source>Reset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3696"/> + <location filename="../Project/Project.py" line="3698"/> <source>&Reset</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3700"/> + <location filename="../Project/Project.py" line="3702"/> <source>Reset the debugger properties</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3701"/> + <location filename="../Project/Project.py" line="3703"/> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3710"/> + <location filename="../Project/Project.py" line="3712"/> <source>Load session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3714"/> + <location filename="../Project/Project.py" line="3716"/> <source>Load the projects session file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3715"/> + <location filename="../Project/Project.py" line="3717"/> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3728"/> + <location filename="../Project/Project.py" line="3730"/> <source>Save session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3732"/> + <location filename="../Project/Project.py" line="3734"/> <source>Save the projects session file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3733"/> + <location filename="../Project/Project.py" line="3735"/> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3746"/> + <location filename="../Project/Project.py" line="3748"/> <source>Delete session</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3750"/> + <location filename="../Project/Project.py" line="3752"/> <source>Delete the projects session file.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3751"/> + <location filename="../Project/Project.py" line="3753"/> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3760"/> + <location filename="../Project/Project.py" line="3762"/> <source>Code Metrics</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3760"/> + <location filename="../Project/Project.py" line="3762"/> <source>&Code Metrics...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> - <source>Show some code metrics for the project.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3766"/> + <source>Show some code metrics for the project.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3768"/> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3774"/> + <location filename="../Project/Project.py" line="3776"/> <source>Python Code Coverage</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3774"/> + <location filename="../Project/Project.py" line="3776"/> <source>Code Co&verage...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> - <source>Show code coverage information for the project.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3780"/> + <source>Show code coverage information for the project.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3782"/> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4564"/> + <location filename="../Project/Project.py" line="4568"/> <source>Profile Data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3788"/> + <location filename="../Project/Project.py" line="3790"/> <source>&Profile Data...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3792"/> - <source>Show profiling data for the project.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3794"/> + <source>Show profiling data for the project.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3796"/> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4618"/> + <location filename="../Project/Project.py" line="4622"/> <source>Application Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3803"/> + <location filename="../Project/Project.py" line="3805"/> <source>&Application Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3807"/> - <source>Show a diagram of the project.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3809"/> + <source>Show a diagram of the project.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3811"/> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4776"/> + <location filename="../Project/Project.py" line="4780"/> <source>Create Package List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3832"/> + <location filename="../Project/Project.py" line="3834"/> <source>Create &Package List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5003"/> + <location filename="../Project/Project.py" line="5027"/> <source>Create Plugin Archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3848"/> - <source>Create Plugin &Archive</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3864"/> - <source>Create Plugin Archive (Snapshot)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3864"/> - <source>Create Plugin Archive (&Snapshot)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3900"/> + <location filename="../Project/Project.py" line="3904"/> <source>&Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3901"/> + <location filename="../Project/Project.py" line="3905"/> <source>Open &Recent Projects</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3902"/> - <source>&Version Control</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3906"/> - <source>Chec&k</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3908"/> - <source>Sho&w</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3909"/> - <source>&Diagrams</source> + <source>&Version Control</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Project/Project.py" line="3910"/> - <source>Session</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3911"/> - <source>Source &Documentation</source> + <source>Chec&k</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3912"/> + <source>Sho&w</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Project/Project.py" line="3913"/> - <source>Debugger</source> + <source>&Diagrams</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Project/Project.py" line="3914"/> + <source>Session</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3915"/> + <source>Source &Documentation</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3917"/> + <source>Debugger</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3918"/> <source>Pac&kagers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4022"/> + <location filename="../Project/Project.py" line="4026"/> <source>Project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4088"/> + <location filename="../Project/Project.py" line="4092"/> <source>&Clear</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4227"/> + <location filename="../Project/Project.py" line="4231"/> <source>Search New Files</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4227"/> + <location filename="../Project/Project.py" line="4231"/> <source>There were no new files found to be added.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4373"/> + <location filename="../Project/Project.py" line="4377"/> <source>Version Control System</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4373"/> + <location filename="../Project/Project.py" line="4377"/> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4491"/> + <location filename="../Project/Project.py" line="4495"/> <source>Coverage Data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4541"/> + <location filename="../Project/Project.py" line="4545"/> <source>There is no main script defined for the current project. Aborting</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4514"/> + <location filename="../Project/Project.py" line="4518"/> <source>Code Coverage</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4514"/> + <location filename="../Project/Project.py" line="4518"/> <source>Please select a coverage file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4564"/> + <location filename="../Project/Project.py" line="4568"/> <source>Please select a profile file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4618"/> + <location filename="../Project/Project.py" line="4622"/> <source>Include module names?</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4736"/> + <location filename="../Project/Project.py" line="4740"/> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4776"/> + <location filename="../Project/Project.py" line="4780"/> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4815"/> - <source><p>The file <b>PKGLIST</b> does not exist. Aborting...</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4823"/> + <location filename="../Project/Project.py" line="4799"/> <source>The project does not have a main script defined. Aborting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4836"/> - <source><p>The file <b>PKGLIST</b> could not be read.</p><p>Reason: {0}</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4892"/> + <location filename="../Project/Project.py" line="4911"/> <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"></translation> </message> <message> - <location filename="../Project/Project.py" line="4961"/> + <location filename="../Project/Project.py" line="4985"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="158"/> + <location filename="../Project/Project.py" line="160"/> <source>Python2 Files (*.py2);;Python2 GUI Files (*.pyw2);;</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2220"/> + <location filename="../Project/Project.py" line="2222"/> <source>Create main script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2220"/> + <location filename="../Project/Project.py" line="2222"/> <source><p>The mainscript <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3817"/> + <location filename="../Project/Project.py" line="3819"/> <source>Load Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3817"/> + <location filename="../Project/Project.py" line="3819"/> <source>&Load Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3821"/> - <source>Load a diagram from file.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3823"/> + <source>Load a diagram from file.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3825"/> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="321"/> + <location filename="../Project/Project.py" line="323"/> <source><p>The Programming Language <b>{0}</b> is not supported.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="344"/> + <location filename="../Project/Project.py" line="346"/> <source><p>The Project type <b>{0}</b> is already registered.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="332"/> + <location filename="../Project/Project.py" line="334"/> <source><p>The Project type <b>{0}</b> is already registered with Programming Language <b>{1}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> + <location filename="../Project/Project.py" line="244"/> + <source>PyQt5 GUI</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="245"/> + <source>PyQt5 Console</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4365"/> + <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="5027"/> + <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3839"/> + <source>Create an initial PKGLIST file for an eric6 plugin.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3841"/> + <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric6 plugin archive. The list is created from the project file.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4881"/> + <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Project/Project.py" line="242"/> - <source>PyQt5 GUI</source> + <source>PyQt4 GUI</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Project/Project.py" line="243"/> - <source>PyQt5 Console</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4361"/> - <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="5003"/> - <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3837"/> - <source>Create an initial PKGLIST file for an eric6 plugin.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3839"/> - <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric6 plugin archive. The list is created from the project file.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3853"/> - <source>Create an eric6 plugin archive file.</source> + <source>PyQt4 Console</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="246"/> + <source>Eric6 Plugin</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="2653"/> + <source>Create project management directory</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="2653"/> + <source><p>The project directory <b>{0}</b> is not writable.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3569"/> + <source>Alt+Ctrl+P</source> + <comment>Project|Search Project File</comment> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3575"/> + <source>Search for a file in the project list of files.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3577"/> + <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3569"/> + <source>Search Project File</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3569"/> + <source>Search Project File...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4834"/> + <source>Create Plugin Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3850"/> + <source>Create Plugin &Archives</source> <translation type="unfinished"></translation> </message> <message> <location filename="../Project/Project.py" line="3855"/> - <source><b>Create Plugin Archive</b><p>This creates an eric6 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3869"/> - <source>Create an eric6 plugin archive file (snapshot release).</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3871"/> - <source><b>Create Plugin Archive (Snapshot)</b><p>This creates an eric6 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name. The version entry of the main script is modified to reflect a snapshot release.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4866"/> - <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4915"/> - <source><p>The eric6 plugin archive file <b>{0}</b> was created successfully.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="240"/> - <source>PyQt4 GUI</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="241"/> - <source>PyQt4 Console</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="244"/> - <source>Eric6 Plugin</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="2651"/> - <source>Create project management directory</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="2651"/> - <source><p>The project directory <b>{0}</b> is not writable.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3567"/> - <source>Alt+Ctrl+P</source> - <comment>Project|Search Project File</comment> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3573"/> - <source>Search for a file in the project list of files.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3575"/> - <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3567"/> - <source>Search Project File</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3567"/> - <source>Search Project File...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4799"/> - <source>Select a package list file:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4806"/> - <source><p>No package list file selected. Aborting...</p></source> + <source>Create eric6 plugin archive files.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3857"/> + <source><b>Create Plugin Archives</b><p>This creates eric6 plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3867"/> + <source>Create Plugin Archives (Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3867"/> + <source>Create Plugin Archives (&Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3872"/> + <source>Create eric6 plugin archive files (snapshot releases).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3874"/> + <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric6 plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4813"/> + <source>Select package lists:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>Creating plugin archives...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>Abort</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>%v/%m Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4847"/> + <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4930"/> + <source><p>The eric6 plugin archive files were created with some errors.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4933"/> + <source><p>The eric6 plugin archive files were created successfully.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4823"/> + <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished"></translation> </message> </context> @@ -41716,7 +41749,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../DataViews/PyCoverageDialog.ui" line="172"/> + <location filename="../DataViews/PyCoverageDialog.py" line="349"/> <source>Coverage</source> <translation type="unfinished"></translation> </message> @@ -41795,7 +41828,7 @@ </translation> </message> <message> - <location filename="../DataViews/PyCoverageDialog.ui" line="192"/> + <location filename="../DataViews/PyCoverageDialog.py" line="345"/> <source>%v/%m Files</source> <translation type="unfinished"></translation> </message> @@ -41803,7 +41836,7 @@ <context> <name>PyProfileDialog</name> <message> - <location filename="../DataViews/PyProfileDialog.ui" line="20"/> + <location filename="../DataViews/PyProfileDialog.py" line="233"/> <source>Profile Results</source> <translation type="unfinished"></translation> </message> @@ -46330,7 +46363,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.ui" line="89"/> + <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.py" line="150"/> <source>Remove Filters</source> <translation type="unfinished"></translation> </message> @@ -46340,7 +46373,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.ui" line="99"/> + <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.py" line="178"/> <source>Remove Attributes</source> <translation type="unfinished"></translation> </message> @@ -47803,7 +47836,7 @@ <context> <name>SendRefererWhitelistDialog</name> <message> - <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.ui" line="14"/> + <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="52"/> <source>Send Referer Whitelist</source> <translation type="unfinished"></translation> </message> @@ -49003,7 +49036,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Snapshot/SnapWidget.ui" line="20"/> + <location filename="../Snapshot/SnapWidget.py" line="531"/> <source>eric6 Snapshot</source> <translation type="unfinished"></translation> </message> @@ -51444,7 +51477,7 @@ <context> <name>SvnDiffDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.ui" line="14"/> + <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="171"/> <source>Subversion Diff</source> <translation type="unfinished"></translation> </message> @@ -51746,17 +51779,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="112"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="621"/> <source>Revision</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="117"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="618"/> <source>Author</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="127"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="141"/> <source>Message</source> <translation type="unfinished"></translation> </message> @@ -52208,7 +52241,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.ui" line="45"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="128"/> <source>&URL:</source> <translation type="unfinished"></translation> </message> @@ -52300,7 +52333,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.ui" line="45"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.py" line="95"/> <source>&URL:</source> <translation type="unfinished"></translation> </message> @@ -53506,7 +53539,7 @@ <context> <name>SvnStatusDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="14"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="394"/> <source>Subversion Status</source> <translation type="unfinished"></translation> </message> @@ -53782,7 +53815,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="80"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="711"/> <source>Commit</source> <translation type="unfinished"></translation> </message> @@ -58963,7 +58996,7 @@ <context> <name>UnittestDialog</name> <message> - <location filename="../PyUnit/UnittestDialog.ui" line="14"/> + <location filename="../PyUnit/UnittestDialog.py" line="400"/> <source>Unittest</source> <translation type="unfinished"></translation> </message> @@ -61830,62 +61863,62 @@ <context> <name>VariablesViewer</name> <message> - <location filename="../Debugger/VariablesViewer.py" line="354"/> + <location filename="../Debugger/VariablesViewer.py" line="358"/> <source>Global Variables</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="355"/> - <source>Globals</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/VariablesViewer.py" line="366"/> - <source>Value</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Debugger/VariablesViewer.py" line="366"/> - <source>Type</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="359"/> + <source>Globals</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="370"/> + <source>Value</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="370"/> + <source>Type</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="363"/> <source><b>The Global Variables Viewer Window</b><p>This window displays the global variables of the debugged program.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="365"/> + <location filename="../Debugger/VariablesViewer.py" line="369"/> <source>Local Variables</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="366"/> - <source>Locals</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="370"/> + <source>Locals</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="374"/> <source><b>The Local Variables Viewer Window</b><p>This window displays the local variables of the debugged program.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="401"/> + <location filename="../Debugger/VariablesViewer.py" line="405"/> <source>Show Details...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="409"/> + <location filename="../Debugger/VariablesViewer.py" line="413"/> <source>Configure...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="629"/> + <location filename="../Debugger/VariablesViewer.py" line="633"/> <source>{0} items</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="407"/> + <location filename="../Debugger/VariablesViewer.py" line="411"/> <source>Refresh</source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_es.ts Sun Oct 16 12:20:30 2016 +0200 +++ b/i18n/eric6_es.ts Sun Oct 16 14:42:46 2016 +0200 @@ -390,7 +390,7 @@ <context> <name>AddBookmarkDialog</name> <message> - <location filename="../WebBrowser/Bookmarks/AddBookmarkDialog.py" line="198"/> + <location filename="../WebBrowser/Bookmarks/AddBookmarkDialog.ui" line="26"/> <source>Add Bookmark</source> <translation>Añadir Marcador</translation> </message> @@ -1704,7 +1704,7 @@ <translation>Editar &Dirección</translation> </message> <message> - <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="169"/> + <location filename="../WebBrowser/Bookmarks/BookmarksDialog.ui" line="75"/> <source>&Delete</source> <translation>&Borrar</translation> </message> @@ -2401,12 +2401,12 @@ <translation>Pulsar para guardar el trazado de llamadas como archivo de texto</translation> </message> <message> - <location filename="../Debugger/CallTraceViewer.py" line="54"/> + <location filename="../Debugger/CallTraceViewer.ui" line="109"/> <source>From</source> <translation>Desde</translation> </message> <message> - <location filename="../Debugger/CallTraceViewer.py" line="54"/> + <location filename="../Debugger/CallTraceViewer.ui" line="114"/> <source>To</source> <translation>Hasta</translation> </message> @@ -2572,7 +2572,7 @@ <translation>Pulsar para cancelar la edición compartida</translation> </message> <message> - <location filename="../Cooperation/ChatWidget.py" line="513"/> + <location filename="../Cooperation/ChatWidget.ui" line="230"/> <source>Clear</source> <translation>Limpiar</translation> </message> @@ -2872,7 +2872,7 @@ <context> <name>ClickToFlashWhitelistDialog</name> <message> - <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.py" line="54"/> + <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.ui" line="14"/> <source>ClickToFlash Whitelist</source> <translation>Lista Blanca de ClickToFlash</translation> </message> @@ -4163,22 +4163,22 @@ <translation>&Sincronizar barras de desplazamiento horizontales</translation> </message> <message> - <location filename="../UI/CompareDialog.py" line="356"/> + <location filename="../UI/CompareDialog.py" line="354"/> <source>Total: {0}</source> <translation>Total: {0}</translation> </message> <message> + <location filename="../UI/CompareDialog.py" line="356"/> + <source>Changed: {0}</source> + <translation>Cambiado: {0}</translation> + </message> + <message> + <location filename="../UI/CompareDialog.py" line="357"/> + <source>Added: {0}</source> + <translation>Añadido: {0}</translation> + </message> + <message> <location filename="../UI/CompareDialog.py" line="358"/> - <source>Changed: {0}</source> - <translation>Cambiado: {0}</translation> - </message> - <message> - <location filename="../UI/CompareDialog.py" line="359"/> - <source>Added: {0}</source> - <translation>Añadido: {0}</translation> - </message> - <message> - <location filename="../UI/CompareDialog.py" line="360"/> <source>Deleted: {0}</source> <translation>Borrado: {0}</translation> </message> @@ -4791,7 +4791,7 @@ <translation>Dominio:</translation> </message> <message> - <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="177"/> + <location filename="../WebBrowser/CookieJar/CookiesDialog.ui" line="223"/> <source><no cookie selected></source> <translation><no hay cookie seleccionada></translation> </message> @@ -7379,7 +7379,7 @@ <context> <name>DownloadManager</name> <message> - <location filename="../WebBrowser/Download/DownloadManager.py" line="363"/> + <location filename="../WebBrowser/Download/DownloadManager.ui" line="14"/> <source>Downloads</source> <translation>Descargas</translation> </message> @@ -7607,6 +7607,19 @@ </message> </context> <context> + <name>E5ListSelectionDialog</name> + <message> + <location filename="../E5Gui/E5ListSelectionDialog.ui" line="14"/> + <source>Select from List</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../E5Gui/E5ListSelectionDialog.ui" line="23"/> + <source>Select from the list below:</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>E5MainWindow</name> <message> <location filename="../E5Gui/E5MainWindow.py" line="56"/> @@ -7825,92 +7838,92 @@ <translation>Botones Estándar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="41"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="257"/> <source>Abort</source> <translation>Abortar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="42"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="264"/> <source>Apply</source> <translation>Aplicar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="43"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="271"/> <source>Cancel</source> <translation>Cancelar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="44"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="278"/> <source>Close</source> <translation>Cerrar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="45"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="285"/> <source>Discard</source> <translation>Descartar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="46"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="292"/> <source>Help</source> <translation>Ayuda</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="47"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="299"/> <source>Ignore</source> <translation>Ignorar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="48"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="306"/> <source>No</source> <translation>No</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="49"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="313"/> <source>No to all</source> <translation>No a todo</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="50"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="320"/> <source>Ok</source> <translation>Ok</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="51"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="327"/> <source>Open</source> <translation>Abrir</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="52"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="334"/> <source>Reset</source> <translation>Restaurar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="53"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="341"/> <source>Restore defaults</source> <translation>Restaurar valores por defecto</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="54"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="348"/> <source>Retry</source> <translation>Reintentar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="55"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="355"/> <source>Save</source> <translation>Guardar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="56"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="362"/> <source>Save all</source> <translation>Guardar todo</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="57"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="369"/> <source>Yes</source> <translation>Si</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="58"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="376"/> <source>Yes to all</source> <translation>Si a todo</translation> </message> @@ -9899,7 +9912,7 @@ <translation>Presione para seleccionar un archivo API desde la lista de APIs instaladas</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="184"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="132"/> <source>Add from installed APIs</source> <translation>Añadir de las APIs instaladas</translation> </message> @@ -9909,7 +9922,7 @@ <translation>Pulse para compilar la definición de las APIs seleccionadas</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="236"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="159"/> <source>Compile APIs</source> <translation>Compilar APIs</translation> </message> @@ -9964,7 +9977,7 @@ <translation>Pulse para seleccionar un archivo de API de la lista de archivos de API instalados por los plugins</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="203"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="142"/> <source>Add from Plugin APIs</source> <translation>Añadir desde las APIs de plugins</translation> </message> @@ -10973,7 +10986,7 @@ <translation>Selecciona llenar hasta el fin de la línea.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="113"/> <source>Fill to end of line</source> <translation>Llenar hasta el final de la línea</translation> </message> @@ -11018,7 +11031,7 @@ <translation>Selección de Fuente.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="69"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="103"/> <source>Font</source> <translation>Fuente</translation> </message> @@ -12449,7 +12462,7 @@ <translation>Modo:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="58"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1080"/> <source>Disabled</source> <translation>Deshabilitado</translation> </message> @@ -13233,7 +13246,7 @@ <context> <name>EmailDialog</name> <message> - <location filename="../UI/EmailDialog.py" line="339"/> + <location filename="../UI/EmailDialog.ui" line="13"/> <source>Send bug report</source> <translation>Enviar informe de bugs</translation> </message> @@ -14629,12 +14642,12 @@ <translation>Notificaciones</translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="110"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="122"/> <source>Host</source> <translation>Host</translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="111"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="127"/> <source>Permission</source> <translation>Permiso</translation> </message> @@ -14649,7 +14662,7 @@ <translation>Eliminar Todo</translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="51"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="97"/> <source>Geolocation</source> <translation>Geolocalización</translation> </message> @@ -15773,7 +15786,7 @@ <translation>Nombre:</translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="193"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="158"/> <source><no flash cookie selected></source> <translation><no hay cookie de flash seleccionada></translation> </message> @@ -15783,7 +15796,7 @@ <translation>Tamaño:</translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="122"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="137"/> <source>Origin:</source> <translation>Origen:</translation> </message> @@ -15818,7 +15831,7 @@ <translation>Pulsar para eliminar las cookies de flash seleccionadas</translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="213"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="225"/> <source>Remove Cookie</source> <translation>Eliminar Cookie</translation> </message> @@ -16246,7 +16259,7 @@ <context> <name>GreaseMonkeyAddScriptDialog</name> <message> - <location filename="../WebBrowser/GreaseMonkey/GreaseMonkeyAddScriptDialog.py" line="105"/> + <location filename="../WebBrowser/GreaseMonkey/GreaseMonkeyAddScriptDialog.ui" line="14"/> <source>GreaseMonkey Script Installation</source> <translation>Instalación de Script de GreaseMonkey</translation> </message> @@ -21842,7 +21855,7 @@ <context> <name>HgAddSubrepositoryDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.py" line="98"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.ui" line="14"/> <source>Add Sub-repository</source> <translation>Añadir Sub-repositorio</translation> </message> @@ -22935,7 +22948,7 @@ <translation>Pulsar para marcar las entradas seleccionadas como 'resolved'</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="247"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.ui" line="73"/> <source>Resolved</source> <translation>Resolved</translation> </message> @@ -22945,7 +22958,7 @@ <translation>Pulsar para marcar las entradas seleccionadas como 'unresolved'</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="245"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.ui" line="83"/> <source>Unresolved</source> <translation>Unresolved</translation> </message> @@ -23538,7 +23551,7 @@ <translation>Seleccionar la categoría sobre la que filtrar</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="317"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.ui" line="55"/> <source>Revision</source> <translation>Revisión</translation> </message> @@ -23817,7 +23830,7 @@ <context> <name>HgLogBrowserDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="71"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="14"/> <source>Mercurial Log</source> <translation>Registro de Mercurial</translation> </message> @@ -23847,17 +23860,17 @@ <translation>Seleccione el campo de filtrado</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="96"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="181"/> <source>Revision</source> <translation>Revisión</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="97"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="191"/> <source>Author</source> <translation>Autor</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="98"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="201"/> <source>Message</source> <translation>Mensaje</translation> </message> @@ -27713,7 +27726,7 @@ <context> <name>HgStatusDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="313"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="14"/> <source>Mercurial Status</source> <translation>Mercurial Status</translation> </message> @@ -27855,7 +27868,7 @@ <translation>El proceso {0} no se ha podido ejecutar. Verifique que está en la ruta de búsqueda (search path).</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="708"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="87"/> <source>Commit</source> <translation>Commit</translation> </message> @@ -27975,7 +27988,7 @@ <translation>todo</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="854"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="203"/> <source>Differences</source> <translation>Diferencias</translation> </message> @@ -28740,7 +28753,7 @@ <translation>Pulse para eliminar las entradas seleccionadas</translation> </message> <message> - <location filename="../WebBrowser/History/HistoryDialog.py" line="114"/> + <location filename="../WebBrowser/History/HistoryDialog.ui" line="75"/> <source>&Remove</source> <translation>&Eliminar</translation> </message> @@ -34559,92 +34572,92 @@ <translation>Botones Estándar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="40"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="219"/> <source>Apply</source> <translation>Aplicar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="39"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="226"/> <source>Abort</source> <translation>Abortar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="41"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="233"/> <source>Cancel</source> <translation>Cancelar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="45"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="240"/> <source>Ignore</source> <translation>Ignorar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="54"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="247"/> <source>Save all</source> <translation>Guardar todo</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="53"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="254"/> <source>Save</source> <translation>Guardar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="43"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="261"/> <source>Discard</source> <translation>Descartar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="56"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="268"/> <source>Yes to all</source> <translation>Si a todo</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="49"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="275"/> <source>Open</source> <translation>Abrir</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="50"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="282"/> <source>Reset</source> <translation>Reiniciar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="48"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="289"/> <source>Ok</source> <translation>Ok</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="46"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="296"/> <source>No</source> <translation>No</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="44"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="303"/> <source>Help</source> <translation>Ayuda</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="47"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="310"/> <source>No to all</source> <translation>No a todo</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="52"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="317"/> <source>Retry</source> <translation>Reintentar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="51"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="324"/> <source>Restore defaults</source> <translation>Restaurar valores por defecto</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="55"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="331"/> <source>Yes</source> <translation>Si</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="42"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="338"/> <source>Close</source> <translation>Cerrar</translation> </message> @@ -36374,7 +36387,7 @@ <context> <name>NoCacheHostsDialog</name> <message> - <location filename="../Helpviewer/Network/NoCacheHostsDialog.py" line="52"/> + <location filename="../Helpviewer/Network/NoCacheHostsDialog.ui" line="14"/> <source>Not Cached Hosts</source> <translation>Hosts no en Caché</translation> </message> @@ -36482,7 +36495,7 @@ <translation>Pulsar para seleccionar la posición visualmente, soltar para asignar</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/NotificationsPage.py" line="81"/> + <location filename="../Preferences/ConfigurationPages/NotificationsPage.ui" line="146"/> <source>Visual Selection</source> <translation>Selección Visual</translation> </message> @@ -37155,7 +37168,7 @@ <context> <name>PasswordsDialog</name> <message> - <location filename="../WebBrowser/Passwords/PasswordsDialog.py" line="91"/> + <location filename="../WebBrowser/Passwords/PasswordsDialog.ui" line="14"/> <source>Saved Passwords</source> <translation>Contraseñas Almacenadas</translation> </message> @@ -37719,7 +37732,7 @@ <translation>Algunos plugins no se han podido instalar.</translation> </message> <message> - <location filename="../PluginManager/PluginInstallDialog.py" line="470"/> + <location filename="../PluginManager/PluginInstallDialog.py" line="476"/> <source>Unspecific exception installing plugin.</source> <translation>Excepción no especificada durante la instalación del plugin.</translation> </message> @@ -37781,7 +37794,7 @@ <translation><p>El módulo de plugin <b>{0}</b> ya existe. Abortando...</p></translation> </message> <message> - <location filename="../PluginManager/PluginInstallDialog.py" line="463"/> + <location filename="../PluginManager/PluginInstallDialog.py" line="469"/> <source>Error installing plugin. Reason: {0}</source> <translation>Error al instalar el plugin. Razón: {0}</translation> </message> @@ -37804,7 +37817,7 @@ <translation>Metodo de activación del plugin incompatible.</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1103"/> + <location filename="../PluginManager/PluginManager.py" line="1106"/> <source>Plugin Manager Error</source> <translation>Error del Gestor de Plugins</translation> </message> @@ -37824,27 +37837,27 @@ <translation>Ha fallado la carga del módulo. Error: {0}</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1103"/> + <location filename="../PluginManager/PluginManager.py" line="1106"/> <source><p>The plugin download directory <b>{0}</b> could not be created. Please configure it via the configuration dialog.</p><p>Reason: {1}</p></source> <translation><p>El directorio de descaga del plugin <b>{0}</b> no ha podido ser creado. Por favor, configúrelo a través del diálogo de configuración.</p><p>Razón: {1}</p></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1179"/> + <location filename="../PluginManager/PluginManager.py" line="1182"/> <source>Error downloading file</source> <translation>Error al descargar el fichero</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1179"/> + <location filename="../PluginManager/PluginManager.py" line="1182"/> <source><p>Could not download the requested file from {0}.</p><p>Error: {1}</p></source> <translation><p>No se pudo descargar el archivo solicitado desde {0}.</p><p>Error: {1}</p></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1216"/> + <location filename="../PluginManager/PluginManager.py" line="1219"/> <source>New plugin versions available</source> <translation>Existen nuevas versiones de plugins</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1216"/> + <location filename="../PluginManager/PluginManager.py" line="1219"/> <source><p>There are new plug-ins or plug-in updates available. Use the plug-in repository dialog to get them.</p></source> <translation><p>Existen nuevos plug-ins o existen bien actualizaciones para plug-in. Utilice el repositorio de plug-ins para su obtención.</p></translation> </message> @@ -38755,222 +38768,222 @@ <context> <name>Project</name> <message> - <location filename="../Project/Project.py" line="164"/> + <location filename="../Project/Project.py" line="166"/> <source>Ruby Files (*.rb);;</source> <translation>Archivos Ruby (*.rb);;</translation> </message> <message> - <location filename="../Project/Project.py" line="245"/> + <location filename="../Project/Project.py" line="247"/> <source>Console</source> <translation>Consola</translation> </message> <message> - <location filename="../Project/Project.py" line="246"/> + <location filename="../Project/Project.py" line="248"/> <source>Other</source> <translation>Otro</translation> </message> <message> - <location filename="../Project/Project.py" line="699"/> + <location filename="../Project/Project.py" line="701"/> <source>Read project file</source> <translation>Leer archivo de proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="799"/> + <location filename="../Project/Project.py" line="801"/> <source>Save project file</source> <translation>Guardar proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="835"/> + <location filename="../Project/Project.py" line="837"/> <source>Read user project properties</source> <translation>Leer las propiedades de proyecto del usuario</translation> </message> <message> - <location filename="../Project/Project.py" line="859"/> + <location filename="../Project/Project.py" line="861"/> <source>Save user project properties</source> <translation>Guardar propiedades de proyecto del usuario</translation> </message> <message> - <location filename="../Project/Project.py" line="917"/> + <location filename="../Project/Project.py" line="919"/> <source>Read project session</source> <translation>Leer sesion de proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="1139"/> + <location filename="../Project/Project.py" line="1141"/> <source>Please save the project first.</source> <translation>Por favor guarde primero el proyecto.</translation> </message> <message> - <location filename="../Project/Project.py" line="953"/> + <location filename="../Project/Project.py" line="955"/> <source>Save project session</source> <translation>Guardar sesion de proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="982"/> + <location filename="../Project/Project.py" line="984"/> <source>Delete project session</source> <translation>Borrar sesion de proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="1016"/> + <location filename="../Project/Project.py" line="1018"/> <source>Read tasks</source> <translation>Leer tareas</translation> </message> <message> - <location filename="../Project/Project.py" line="1036"/> + <location filename="../Project/Project.py" line="1038"/> <source>Save tasks</source> <translation>Guardar Tareas</translation> </message> <message> - <location filename="../Project/Project.py" line="1093"/> + <location filename="../Project/Project.py" line="1095"/> <source>Read debugger properties</source> <translation>Leer propiedades del depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="1127"/> + <location filename="../Project/Project.py" line="1129"/> <source>Save debugger properties</source> <translation>Guardar propiedades del depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="1153"/> + <location filename="../Project/Project.py" line="1155"/> <source>Delete debugger properties</source> <translation>Borrar propiedades del depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="1261"/> + <location filename="../Project/Project.py" line="1263"/> <source>Add Language</source> <translation>Añadir lenguaje</translation> </message> <message> - <location filename="../Project/Project.py" line="1383"/> + <location filename="../Project/Project.py" line="1385"/> <source>Delete translation</source> <translation>Borrar traducción</translation> </message> <message> - <location filename="../Project/Project.py" line="1534"/> + <location filename="../Project/Project.py" line="1536"/> <source>Add file</source> <translation>Agregar archivo</translation> </message> <message> - <location filename="../Project/Project.py" line="1651"/> + <location filename="../Project/Project.py" line="1653"/> <source>The target directory must not be empty.</source> <translation>El directorio de destino no puede estar vacío.</translation> </message> <message> - <location filename="../Project/Project.py" line="1662"/> + <location filename="../Project/Project.py" line="1664"/> <source>Add directory</source> <translation>Añadir directorio</translation> </message> <message> - <location filename="../Project/Project.py" line="1565"/> + <location filename="../Project/Project.py" line="1567"/> <source><p>The source directory doesn't contain any files belonging to the selected category.</p></source> <translation><p>El directorio de origen no contiene archivos que pertenezcan a la categoría seleccionada.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1662"/> + <location filename="../Project/Project.py" line="1664"/> <source>The source directory must not be empty.</source> <translation>El directorio de origen no puede estar vacío.</translation> </message> <message> - <location filename="../Project/Project.py" line="1786"/> + <location filename="../Project/Project.py" line="1788"/> <source>Rename file</source> <translation>Renombrar archivo</translation> </message> <message> - <location filename="../Project/Project.py" line="1810"/> + <location filename="../Project/Project.py" line="1812"/> <source>Rename File</source> <translation>Renombrar Archivo</translation> </message> <message> - <location filename="../Project/Project.py" line="2046"/> + <location filename="../Project/Project.py" line="2048"/> <source>Delete file</source> <translation>Borrar archivo</translation> </message> <message> - <location filename="../Project/Project.py" line="2075"/> + <location filename="../Project/Project.py" line="2077"/> <source>Delete directory</source> <translation>Borrar directorio</translation> </message> <message> - <location filename="../Project/Project.py" line="2157"/> + <location filename="../Project/Project.py" line="2159"/> <source>Create project directory</source> <translation>Crear directorio de proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="2681"/> + <location filename="../Project/Project.py" line="2683"/> <source>New Project</source> <translation>Proyecto nuevo</translation> </message> <message> - <location filename="../Project/Project.py" line="2233"/> + <location filename="../Project/Project.py" line="2235"/> <source>Add existing files to the project?</source> <translation>¿Agregar archivos existentes al proyecto?</translation> </message> <message> - <location filename="../Project/Project.py" line="2681"/> + <location filename="../Project/Project.py" line="2683"/> <source>Select Version Control System</source> <translation>Seleccion el Sistema de control de versiones (VCS)</translation> </message> <message> - <location filename="../Project/Project.py" line="2352"/> + <location filename="../Project/Project.py" line="2354"/> <source>Would you like to edit the VCS command options?</source> <translation>¿Le gustaría editar las opciones de comando para VCS?</translation> </message> <message> - <location filename="../Project/Project.py" line="3441"/> + <location filename="../Project/Project.py" line="3443"/> <source>New project</source> <translation>Proyecto nuevo</translation> </message> <message> - <location filename="../Project/Project.py" line="2300"/> + <location filename="../Project/Project.py" line="2302"/> <source>Shall the project file be added to the repository?</source> <translation>¿Debe añadirse el archivo de proyecto al repositorio?</translation> </message> <message> - <location filename="../Project/Project.py" line="2331"/> + <location filename="../Project/Project.py" line="2333"/> <source>None</source> <translation>Ninguno</translation> </message> <message> - <location filename="../Project/Project.py" line="2324"/> + <location filename="../Project/Project.py" line="2326"/> <source>Select version control system for the project</source> <translation>Seleccione el sistema de control de versiones para el proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="3455"/> + <location filename="../Project/Project.py" line="3457"/> <source>Open project</source> <translation>Abrir proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="2817"/> + <location filename="../Project/Project.py" line="2819"/> <source>Project Files (*.e4p)</source> <translation>Archivos de proyecto (*.e4p)</translation> </message> <message> - <location filename="../Project/Project.py" line="3492"/> + <location filename="../Project/Project.py" line="3494"/> <source>Save project as</source> <translation>Guardar proyecto como</translation> </message> <message> - <location filename="../Project/Project.py" line="2832"/> + <location filename="../Project/Project.py" line="2834"/> <source>Save File</source> <translation>Guardar archivo</translation> </message> <message> - <location filename="../Project/Project.py" line="2868"/> + <location filename="../Project/Project.py" line="2870"/> <source>Close Project</source> <translation>Cerrar Proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="2868"/> + <location filename="../Project/Project.py" line="2870"/> <source>The current project has unsaved changes.</source> <translation>El proyecto actual tiene cambios sin guardar.</translation> </message> <message> - <location filename="../Project/Project.py" line="3033"/> + <location filename="../Project/Project.py" line="3035"/> <source>Syntax errors detected</source> <translation>Se detectaron errores de sintaxis</translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="3033"/> + <location filename="../Project/Project.py" line="3035"/> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>El archivo contiene %n archivo(s) con errores de sintaxis.</numerusform> @@ -38978,954 +38991,1029 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="3441"/> + <location filename="../Project/Project.py" line="3443"/> <source>&New...</source> <translation>&Nuevo...</translation> </message> <message> - <location filename="../Project/Project.py" line="3446"/> + <location filename="../Project/Project.py" line="3448"/> <source>Generate a new project</source> <translation>Generar un nuevo proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="3447"/> + <location filename="../Project/Project.py" line="3449"/> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>Nuevo...</b><p>Abre un diálogo para introducir la información para un nuevo proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3455"/> + <location filename="../Project/Project.py" line="3457"/> <source>&Open...</source> <translation>&Abrir...</translation> </message> <message> - <location filename="../Project/Project.py" line="3460"/> + <location filename="../Project/Project.py" line="3462"/> <source>Open an existing project</source> <translation>Abrir un proyecto existente</translation> </message> <message> - <location filename="../Project/Project.py" line="3461"/> + <location filename="../Project/Project.py" line="3463"/> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>Abrir...</b><p>Abre un proyecto existente..</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3468"/> + <location filename="../Project/Project.py" line="3470"/> <source>Close project</source> <translation>Cerrar proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="3468"/> + <location filename="../Project/Project.py" line="3470"/> <source>&Close</source> <translation>&Cerrar</translation> </message> <message> - <location filename="../Project/Project.py" line="3472"/> + <location filename="../Project/Project.py" line="3474"/> <source>Close the current project</source> <translation>Cierra el proyecto actual</translation> </message> <message> - <location filename="../Project/Project.py" line="3473"/> + <location filename="../Project/Project.py" line="3475"/> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>Cerrar</b><p>Cierra el proyecto actualt.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3480"/> + <location filename="../Project/Project.py" line="3482"/> <source>Save project</source> <translation>Guardar proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="3671"/> + <location filename="../Project/Project.py" line="3673"/> <source>&Save</source> <translation>&Guardar</translation> </message> <message> - <location filename="../Project/Project.py" line="3484"/> + <location filename="../Project/Project.py" line="3486"/> <source>Save the current project</source> <translation>Guarda el proyecto actual</translation> </message> <message> - <location filename="../Project/Project.py" line="3485"/> + <location filename="../Project/Project.py" line="3487"/> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>Guardar</b><p>Guarda el proyecto actual.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3492"/> + <location filename="../Project/Project.py" line="3494"/> <source>Save &as...</source> <translation>Guardar co&mo...</translation> </message> <message> - <location filename="../Project/Project.py" line="3496"/> - <source>Save the current project to a new file</source> - <translation>Guardar el proyecto actual en un nuevo archivo</translation> - </message> - <message> <location filename="../Project/Project.py" line="3498"/> + <source>Save the current project to a new file</source> + <translation>Guardar el proyecto actual en un nuevo archivo</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3500"/> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>Guardar como</b><p>Guarda el proyecto en otro archivo.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3507"/> + <location filename="../Project/Project.py" line="3509"/> <source>Add files to project</source> <translation>Agregar archivos al proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="3507"/> + <location filename="../Project/Project.py" line="3509"/> <source>Add &files...</source> <translation>&Agregar archivos...</translation> </message> <message> - <location filename="../Project/Project.py" line="3512"/> - <source>Add files to the current project</source> - <translation>Añadir archivos al proyecto actual</translation> - </message> - <message> <location filename="../Project/Project.py" line="3514"/> + <source>Add files to the current project</source> + <translation>Añadir archivos al proyecto actual</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3516"/> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation><b>Añadir archivos...</b><p>Abre un diálogo para añadir archivos al proyecto actual. El lugar donde se van a añadir es determinado por la extensión del nombre de archivo.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3523"/> + <location filename="../Project/Project.py" line="3525"/> <source>Add directory to project</source> <translation>Agregar directorio al proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="3523"/> + <location filename="../Project/Project.py" line="3525"/> <source>Add directory...</source> <translation>Agregar directorio...</translation> </message> <message> - <location filename="../Project/Project.py" line="3528"/> - <source>Add a directory to the current project</source> - <translation>Agregar directorio al proyecto actual</translation> - </message> - <message> <location filename="../Project/Project.py" line="3530"/> + <source>Add a directory to the current project</source> + <translation>Agregar directorio al proyecto actual</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3532"/> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>Añadir directorio...</b><p>Abre un diálogo para añadir un directorio al proyecto actual.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3538"/> + <location filename="../Project/Project.py" line="3540"/> <source>Add translation to project</source> <translation>Añadir traducción al proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="3538"/> + <location filename="../Project/Project.py" line="3540"/> <source>Add &translation...</source> <translation>Añadir &Traducción...</translation> </message> <message> - <location filename="../Project/Project.py" line="3543"/> - <source>Add a translation to the current project</source> - <translation>Añadir una traducción al proyecto actual</translation> - </message> - <message> <location filename="../Project/Project.py" line="3545"/> + <source>Add a translation to the current project</source> + <translation>Añadir una traducción al proyecto actual</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3547"/> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation><b>Añadir traducción...</b><p>Abre un diálogo para añadir una traducción al proyecto actual.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3553"/> + <location filename="../Project/Project.py" line="3555"/> <source>Search new files</source> <translation>Buscar archivos nuevos</translation> </message> <message> - <location filename="../Project/Project.py" line="3553"/> + <location filename="../Project/Project.py" line="3555"/> <source>Searc&h new files...</source> <translation>Bus&car archivos nuevos...</translation> </message> <message> - <location filename="../Project/Project.py" line="3557"/> - <source>Search new files in the project directory.</source> - <translation>Bucar nuevos archivos en el directorio de proyecto.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3559"/> + <source>Search new files in the project directory.</source> + <translation>Bucar nuevos archivos en el directorio de proyecto.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3561"/> <source><b>Search new files...</b><p>This searches for new files (sources, *.ui, *.idl) in the project directory and registered subdirectories.</p></source> <translation><b>Buscar nuevos archivos...</b><p>Busca nuevos archivos (fuentes, *.ui, *.idl) en el directorio del proyecto y en los subdirectorios registrados.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3582"/> + <location filename="../Project/Project.py" line="3584"/> <source>Project properties</source> <translation>Propiedades del proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="3582"/> + <location filename="../Project/Project.py" line="3584"/> <source>&Properties...</source> <translation>&Propiedades...</translation> </message> <message> - <location filename="../Project/Project.py" line="3587"/> + <location filename="../Project/Project.py" line="3589"/> <source>Show the project properties</source> <translation>Ver las propiedades del proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="3588"/> + <location filename="../Project/Project.py" line="3590"/> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation><b>Propiedades...</b><p>Muestra un diálogo para editar las propiedades del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3595"/> + <location filename="../Project/Project.py" line="3597"/> <source>User project properties</source> <translation>Propiedades del usuario del proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="3595"/> + <location filename="../Project/Project.py" line="3597"/> <source>&User Properties...</source> <translation>Propiedades del &Usuario...</translation> </message> <message> - <location filename="../Project/Project.py" line="3600"/> - <source>Show the user specific project properties</source> - <translation>Muestra propiedades del proyecto específicas del usuario</translation> - </message> - <message> <location filename="../Project/Project.py" line="3602"/> + <source>Show the user specific project properties</source> + <translation>Muestra propiedades del proyecto específicas del usuario</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3604"/> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation><b>Propiedades del Usuario...</b><p>Abre un diálogo par editar las propiedades del proyecto específicas del usuario.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3610"/> + <location filename="../Project/Project.py" line="3612"/> <source>Filetype Associations</source> <translation>Asociación de tipos de archivo</translation> </message> <message> - <location filename="../Project/Project.py" line="3610"/> + <location filename="../Project/Project.py" line="3612"/> <source>Filetype Associations...</source> <translation>Asociación de tipos de archivo...</translation> </message> <message> - <location filename="../Project/Project.py" line="3614"/> - <source>Show the project filetype associations</source> - <translation>Ver las asociaciones del proyecto</translation> - </message> - <message> <location filename="../Project/Project.py" line="3616"/> + <source>Show the project filetype associations</source> + <translation>Ver las asociaciones del proyecto</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3618"/> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the filetype associations of the project. These associations determine the type (source, form, interface or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation><b>Asociaciones de Tipo de Archivo...</b><p>Muestra un diálogo para editar las asociaciones de los tipos de archivos del proyecto. Estas asociaciones determinan el tipo (fuente, formulario, interfaz u otras) con un patrón de nombres de archivo. Se usan cuando se añade un archivo al proyecto y cuando se realiza una búsqueda de nuevos archivos.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3646"/> + <location filename="../Project/Project.py" line="3648"/> <source>Debugger Properties</source> <translation>Propiedades del depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="3646"/> + <location filename="../Project/Project.py" line="3648"/> <source>Debugger &Properties...</source> <translation>&Propiedades del depurador...</translation> </message> <message> - <location filename="../Project/Project.py" line="3650"/> + <location filename="../Project/Project.py" line="3652"/> <source>Show the debugger properties</source> <translation>Muestra las propiedades del depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="3651"/> + <location filename="../Project/Project.py" line="3653"/> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation><b>Propiedades del Depurador...</b><p>Abre un diálogo par editar las propiedades del depurador específicas del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3659"/> + <location filename="../Project/Project.py" line="3661"/> <source>Load</source> <translation>Cargar</translation> </message> <message> - <location filename="../Project/Project.py" line="3659"/> + <location filename="../Project/Project.py" line="3661"/> <source>&Load</source> <translation>&Cargar</translation> </message> <message> - <location filename="../Project/Project.py" line="3663"/> + <location filename="../Project/Project.py" line="3665"/> <source>Load the debugger properties</source> <translation>Cargar las propiedades del depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="3664"/> + <location filename="../Project/Project.py" line="3666"/> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation><b>Cargar Propiedades del Depurador</b><p>Carga las opciones de configuración del depurador específicas del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3671"/> + <location filename="../Project/Project.py" line="3673"/> <source>Save</source> <translation>Guardar</translation> </message> <message> - <location filename="../Project/Project.py" line="3675"/> + <location filename="../Project/Project.py" line="3677"/> <source>Save the debugger properties</source> <translation>Guardar propiedades del depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="3676"/> + <location filename="../Project/Project.py" line="3678"/> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation><b>Guardar Propiedades del Depurador</b><p>Guarda las opciones de configuración del depurador específicas del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3683"/> + <location filename="../Project/Project.py" line="3685"/> <source>Delete</source> <translation>Borrar</translation> </message> <message> - <location filename="../Project/Project.py" line="3683"/> + <location filename="../Project/Project.py" line="3685"/> <source>&Delete</source> <translation>&Borrar</translation> </message> <message> - <location filename="../Project/Project.py" line="3687"/> + <location filename="../Project/Project.py" line="3689"/> <source>Delete the debugger properties</source> <translation>Borrar las propiedades del depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="3688"/> + <location filename="../Project/Project.py" line="3690"/> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation><b>Borrar Propiedades del Depurador</b><p>Borra el archivo que contiene las opciones de configuración del depurador específicas del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3696"/> + <location filename="../Project/Project.py" line="3698"/> <source>Reset</source> <translation>Reiniciar</translation> </message> <message> - <location filename="../Project/Project.py" line="3696"/> + <location filename="../Project/Project.py" line="3698"/> <source>&Reset</source> <translation>&Reiniciar</translation> </message> <message> - <location filename="../Project/Project.py" line="3700"/> + <location filename="../Project/Project.py" line="3702"/> <source>Reset the debugger properties</source> <translation>Restablecer las propiedades del depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="3701"/> + <location filename="../Project/Project.py" line="3703"/> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation><b>Restablecer Propiedades del Depurador</b><p>Restablece las opciones de configuración del depurador específicas del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3710"/> + <location filename="../Project/Project.py" line="3712"/> <source>Load session</source> <translation>Cargar sesión</translation> </message> <message> - <location filename="../Project/Project.py" line="3714"/> + <location filename="../Project/Project.py" line="3716"/> <source>Load the projects session file.</source> <translation>Cargar archivo de sesión de proyectos.</translation> </message> <message> - <location filename="../Project/Project.py" line="3715"/> + <location filename="../Project/Project.py" line="3717"/> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Cargar sesión</b><p>Carga el archivo de sesión de proyecto. La sesión consiste en los datos siguientes.<br>- todos los archivos de fuentes abiertos<br>- todos los puntos de interrupción<br>- todos los argumentos de línea de comandos<br>- el directorio de trabajo<br>- el flag de reporte de excepciones</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3728"/> + <location filename="../Project/Project.py" line="3730"/> <source>Save session</source> <translation>Guardar sesión</translation> </message> <message> - <location filename="../Project/Project.py" line="3732"/> + <location filename="../Project/Project.py" line="3734"/> <source>Save the projects session file.</source> <translation>Guardar archivos de sessión de proyecto.</translation> </message> <message> - <location filename="../Project/Project.py" line="3733"/> + <location filename="../Project/Project.py" line="3735"/> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Guardar sesión</b><p>Guarda el archivo de sesión de proyecto. La sesión consiste en los datos siguientes.<br>- todos los archivos de fuentes abiertos<br>- todos los puntos de interrupción<br>- todos los argumentos de línea de comandos<br>- el directorio de trabajo<br>- el flag de reporte de excepciones</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3746"/> + <location filename="../Project/Project.py" line="3748"/> <source>Delete session</source> <translation>Borrar sesión</translation> </message> <message> - <location filename="../Project/Project.py" line="3750"/> + <location filename="../Project/Project.py" line="3752"/> <source>Delete the projects session file.</source> <translation>Borrar el archivo de sesión de proyecto.</translation> </message> <message> - <location filename="../Project/Project.py" line="3751"/> + <location filename="../Project/Project.py" line="3753"/> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation><b>Borrar sesión</b><p>Borra el archivo de sesión del proyecto</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3760"/> + <location filename="../Project/Project.py" line="3762"/> <source>Code Metrics</source> <translation>Métricas de código</translation> </message> <message> - <location filename="../Project/Project.py" line="3760"/> + <location filename="../Project/Project.py" line="3762"/> <source>&Code Metrics...</source> <translation>Métricas de &código...</translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> - <source>Show some code metrics for the project.</source> - <translation>Muestra algunas métricas del código para este proyecto.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3766"/> + <source>Show some code metrics for the project.</source> + <translation>Muestra algunas métricas del código para este proyecto.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3768"/> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation><b>Métricas de Código...</b><p>Muestra algunas métricas de código para todos los archivos Python en el proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3774"/> + <location filename="../Project/Project.py" line="3776"/> <source>Python Code Coverage</source> <translation>Cobertura de Código Python</translation> </message> <message> - <location filename="../Project/Project.py" line="3774"/> + <location filename="../Project/Project.py" line="3776"/> <source>Code Co&verage...</source> <translation>Co&bertura de código...</translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> - <source>Show code coverage information for the project.</source> - <translation>Muestra información de cobertura de código para el proyecto.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3780"/> + <source>Show code coverage information for the project.</source> + <translation>Muestra información de cobertura de código para el proyecto.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3782"/> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation><b>Cobertura de Código...</b><p>Muestra la información de cobertura de código para todos los archivos Python en el proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4564"/> + <location filename="../Project/Project.py" line="4568"/> <source>Profile Data</source> <translation>Datos de perfil</translation> </message> <message> - <location filename="../Project/Project.py" line="3788"/> + <location filename="../Project/Project.py" line="3790"/> <source>&Profile Data...</source> <translation>Datos de &pefil...</translation> </message> <message> - <location filename="../Project/Project.py" line="3792"/> - <source>Show profiling data for the project.</source> - <translation>Mostrar datos de profiling para el proyecto.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3794"/> + <source>Show profiling data for the project.</source> + <translation>Mostrar datos de profiling para el proyecto.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3796"/> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation><b>Datos de Profiling...</b><p>Muestra datos de profiling para el proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4618"/> + <location filename="../Project/Project.py" line="4622"/> <source>Application Diagram</source> <translation>Diagrama de Aplicación</translation> </message> <message> - <location filename="../Project/Project.py" line="3803"/> + <location filename="../Project/Project.py" line="3805"/> <source>&Application Diagram...</source> <translation>Diagrama de &Aplicación...</translation> </message> <message> - <location filename="../Project/Project.py" line="3807"/> - <source>Show a diagram of the project.</source> - <translation>Mostrar diagrama del proyecto.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3809"/> + <source>Show a diagram of the project.</source> + <translation>Mostrar diagrama del proyecto.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3811"/> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>Diagrama de Aplicación...</b><p>Muestra un diagrama del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4776"/> + <location filename="../Project/Project.py" line="4780"/> <source>Create Package List</source> <translation>Crear Lista del Paquete</translation> </message> <message> - <location filename="../Project/Project.py" line="3832"/> + <location filename="../Project/Project.py" line="3834"/> <source>Create &Package List</source> <translation>Crear Lista del &Paquete</translation> </message> <message> - <location filename="../Project/Project.py" line="5003"/> + <location filename="../Project/Project.py" line="5027"/> <source>Create Plugin Archive</source> <translation>Crear Archivo de Plugin</translation> </message> <message> <location filename="../Project/Project.py" line="3848"/> <source>Create Plugin &Archive</source> - <translation>Crear &Archivo de Plugin</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3900"/> + <translation type="obsolete">Crear &Archivo de Plugin</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3904"/> <source>&Project</source> <translation>&Proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="3901"/> + <location filename="../Project/Project.py" line="3905"/> <source>Open &Recent Projects</source> <translation>Abrir Proyectos &Recientes</translation> </message> <message> - <location filename="../Project/Project.py" line="3902"/> - <source>&Version Control</source> - <translation>Control de &Versiones</translation> - </message> - <message> <location filename="../Project/Project.py" line="3906"/> - <source>Chec&k</source> - <translation>Veri&ficar</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3908"/> - <source>Sho&w</source> - <translation>V&er</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3909"/> - <source>&Diagrams</source> - <translation>&Diagramas</translation> + <source>&Version Control</source> + <translation>Control de &Versiones</translation> </message> <message> <location filename="../Project/Project.py" line="3910"/> - <source>Session</source> - <translation>Sesión</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3911"/> - <source>Source &Documentation</source> - <translation>Origen de &Documentación </translation> + <source>Chec&k</source> + <translation>Veri&ficar</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3912"/> + <source>Sho&w</source> + <translation>V&er</translation> </message> <message> <location filename="../Project/Project.py" line="3913"/> - <source>Debugger</source> - <translation>Depurador</translation> + <source>&Diagrams</source> + <translation>&Diagramas</translation> </message> <message> <location filename="../Project/Project.py" line="3914"/> + <source>Session</source> + <translation>Sesión</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3915"/> + <source>Source &Documentation</source> + <translation>Origen de &Documentación </translation> + </message> + <message> + <location filename="../Project/Project.py" line="3917"/> + <source>Debugger</source> + <translation>Depurador</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3918"/> <source>Pac&kagers</source> <translation>Empa&quetadores</translation> </message> <message> - <location filename="../Project/Project.py" line="4022"/> + <location filename="../Project/Project.py" line="4026"/> <source>Project</source> <translation>Proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="4088"/> + <location filename="../Project/Project.py" line="4092"/> <source>&Clear</source> <translation>&Borrar</translation> </message> <message> - <location filename="../Project/Project.py" line="4227"/> + <location filename="../Project/Project.py" line="4231"/> <source>Search New Files</source> <translation>Buscar nuevos archivos</translation> </message> <message> - <location filename="../Project/Project.py" line="4227"/> + <location filename="../Project/Project.py" line="4231"/> <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="4373"/> + <location filename="../Project/Project.py" line="4377"/> <source>Version Control System</source> <translation>Sistema de control de versiones</translation> </message> <message> - <location filename="../Project/Project.py" line="4491"/> + <location filename="../Project/Project.py" line="4495"/> <source>Coverage Data</source> <translation>Datos de Cobertura</translation> </message> <message> - <location filename="../Project/Project.py" line="4541"/> + <location filename="../Project/Project.py" line="4545"/> <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="4514"/> + <location filename="../Project/Project.py" line="4518"/> <source>Code Coverage</source> <translation>Cobertura de codigo</translation> </message> <message> - <location filename="../Project/Project.py" line="4514"/> + <location filename="../Project/Project.py" line="4518"/> <source>Please select a coverage file</source> <translation>Por favor seleccione un archivo de cobertura</translation> </message> <message> - <location filename="../Project/Project.py" line="4564"/> + <location filename="../Project/Project.py" line="4568"/> <source>Please select a profile file</source> <translation>Por favor seleccione un archivo de profiling</translation> </message> <message> - <location filename="../Project/Project.py" line="4618"/> + <location filename="../Project/Project.py" line="4622"/> <source>Include module names?</source> <translation>¿Incluir nombres de módulos?</translation> </message> <message> - <location filename="../Project/Project.py" line="4736"/> + <location filename="../Project/Project.py" line="4740"/> <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="4815"/> <source><p>The file <b>PKGLIST</b> does not exist. Aborting...</p></source> - <translation><p>El archivo <b>PKGLIST</b> no existe. Abortando...</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4823"/> + <translation type="obsolete"><p>El archivo <b>PKGLIST</b> no existe. Abortando...</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4799"/> <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="344"/> + <location filename="../Project/Project.py" line="346"/> <source>Registering Project Type</source> <translation>Registrando Tipo de Proyecto</translation> </message> <message> <location filename="../Project/Project.py" line="3864"/> <source>Create Plugin Archive (Snapshot)</source> - <translation>Crear un Archivo de Plugin (Snapshot)</translation> + <translation type="obsolete">Crear un Archivo de Plugin (Snapshot)</translation> </message> <message> <location filename="../Project/Project.py" line="3864"/> <source>Create Plugin Archive (&Snapshot)</source> - <translation>Crear un Archivo de Plugin (&Snapshot)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="1261"/> + <translation type="obsolete">Crear un Archivo de Plugin (&Snapshot)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="1263"/> <source>You have to specify a translation pattern first.</source> <translation>Debe especificar primero un patrón de traducción.</translation> </message> <message> - <location filename="../Project/Project.py" line="2430"/> + <location filename="../Project/Project.py" line="2432"/> <source>Translation Pattern</source> <translation>Patrón de Traducción</translation> </message> <message> - <location filename="../Project/Project.py" line="2430"/> + <location filename="../Project/Project.py" line="2432"/> <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source> <translation>Introduzca el patrón de ruta para los archivos de traducción (use '%language%' in lugar del código de idioma):</translation> </message> <message> - <location filename="../Project/Project.py" line="3628"/> + <location filename="../Project/Project.py" line="3630"/> <source>Lexer Associations</source> <translation>Asociaciones de Analizador Léxico</translation> </message> <message> - <location filename="../Project/Project.py" line="3628"/> + <location filename="../Project/Project.py" line="3630"/> <source>Lexer Associations...</source> <translation>Asociaciones de Analizador Léxico...</translation> </message> <message> - <location filename="../Project/Project.py" line="3632"/> - <source>Show the project lexer associations (overriding defaults)</source> - <translation>Ver las asociaciones de analizador léxico del proyecto (sobreescribiendo valores por defecto)</translation> - </message> - <message> <location filename="../Project/Project.py" line="3634"/> + <source>Show the project lexer associations (overriding defaults)</source> + <translation>Ver las asociaciones de analizador léxico del proyecto (sobreescribiendo valores por defecto)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3636"/> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation><b>Asociaciones de Analizador Léxico ...</b><p>Muestra un diálogo para editar las asociaciones de analizador léxico del proyecto. Estas asociaciones sobreescriben las asociaciones de analizador léxico globales. Los analizadores léxicos se utilizan para resaltar el texto en el editor.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="260"/> + <location filename="../Project/Project.py" line="262"/> <source>PySide GUI</source> <translation>GUI de PySide</translation> </message> <message> - <location filename="../Project/Project.py" line="261"/> + <location filename="../Project/Project.py" line="263"/> <source>PySide Console</source> <translation>Consola PySide</translation> </message> <message> - <location filename="../Project/Project.py" line="161"/> + <location filename="../Project/Project.py" line="163"/> <source>Python3 Files (*.py *.py3);;Python3 GUI Files (*.pyw *.pyw3);;</source> <translation>Archivos Python3 (*.py *.py3);;Archivos de GUI Python3 (*.pyw *.pyw3);;</translation> </message> <message> - <location filename="../Project/Project.py" line="699"/> + <location filename="../Project/Project.py" line="701"/> <source><p>The project file <b>{0}</b> could not be read.</p></source> <translation><p>El archivo de proyecto <b>{0}</b> no ha podido ser leído.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="799"/> + <location filename="../Project/Project.py" line="801"/> <source><p>The project file <b>{0}</b> could not be written.</p></source> <translation><p>El archivo de proyecto <b>{0}</b> no ha podido ser guardado.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="835"/> + <location filename="../Project/Project.py" line="837"/> <source><p>The user specific project properties file <b>{0}</b> could not be read.</p></source> <translation><p>El archivo de propiedades de proyecto específicas del usuario <b>{0}</b> no ha podido ser leído.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="859"/> + <location filename="../Project/Project.py" line="861"/> <source><p>The user specific project properties file <b>{0}</b> could not be written.</p></source> <translation><p>El archivo de propiedades de proyecto específicas del usuario <b>{0}</b> no ha podido ser guardado.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="917"/> + <location filename="../Project/Project.py" line="919"/> <source><p>The project session file <b>{0}</b> could not be read.</p></source> <translation><p>El archivo de sesión de proyecto <b>{0}</b> no ha podido leerse.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="953"/> + <location filename="../Project/Project.py" line="955"/> <source><p>The project session file <b>{0}</b> could not be written.</p></source> <translation><p>El archivo de sesión de proyecto <b>{0}</b> no ha podido guardarse.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="982"/> + <location filename="../Project/Project.py" line="984"/> <source><p>The project session file <b>{0}</b> could not be deleted.</p></source> <translation><p>El archivo de sesión de proyecto <b>{0}</b> no ha podido borrarse.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1016"/> + <location filename="../Project/Project.py" line="1018"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation><p>El archivo de tareas <b>{0}</b> no puede leerse.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1036"/> + <location filename="../Project/Project.py" line="1038"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation><p>El archivo de tareas <b>{0}</b> no pudo ser guardado.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1093"/> + <location filename="../Project/Project.py" line="1095"/> <source><p>The project debugger properties file <b>{0}</b> could not be read.</p></source> <translation><p>El archivo de propiedades del depurador del proyecto <b>{0}</b> no ha podido leerse.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1127"/> + <location filename="../Project/Project.py" line="1129"/> <source><p>The project debugger properties file <b>{0}</b> could not be written.</p></source> <translation><p>El archivo de propiedades del depurador del proyecto <b>{0}</b> no pudo ser guardado.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1153"/> + <location filename="../Project/Project.py" line="1155"/> <source><p>The project debugger properties file <b>{0}</b> could not be deleted.</p></source> <translation><p>El archivo de propiedades del depurador del proyecto <b>{0}</b> no pudo ser borrado.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1383"/> + <location filename="../Project/Project.py" line="1385"/> <source><p>The selected translation file <b>{0}</b> could not be deleted.</p></source> <translation><p>El archivo de traducción seleccionado <b>{0}</b> no ha podido ser borrado.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1596"/> + <location filename="../Project/Project.py" line="1598"/> <source><p>The file <b>{0}</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>El archivo <b>{0}</b> ya existe.</p><p>¿Desea sobreescribirlo?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2832"/> + <location filename="../Project/Project.py" line="2834"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>El archivo <b>{0}</b> ya existe.</p><p>¿Desea sobreescribirlo?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1810"/> + <location filename="../Project/Project.py" line="1812"/> <source><p>The file <b>{0}</b> could not be renamed.<br />Reason: {1}</p></source> <translation><p>El archivo <b>{0}</b> no puede ser renombrado.<br />Causa: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2046"/> + <location filename="../Project/Project.py" line="2048"/> <source><p>The selected file <b>{0}</b> could not be deleted.</p></source> <translation><p>El archivo seleccionado <b>{0}</b> no ha podido borrarse.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2075"/> + <location filename="../Project/Project.py" line="2077"/> <source><p>The selected directory <b>{0}</b> could not be deleted.</p></source> <translation><p>El directorio seleccionado <b>{0}</b> no ha podido borrarse.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2157"/> + <location filename="../Project/Project.py" line="2159"/> <source><p>The project directory <b>{0}</b> could not be created.</p></source> <translation><p>El directorio de proyecto <b>{0}</b> no pudo ser creado.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4373"/> + <location filename="../Project/Project.py" line="4377"/> <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="4776"/> + <location filename="../Project/Project.py" line="4780"/> <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="4836"/> <source><p>The file <b>PKGLIST</b> could not be read.</p><p>Reason: {0}</p></source> - <translation><p>El archivo <b>PKGLIST</b> no puede ser leido.</p><p>Causa: {0}</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4892"/> + <translation type="obsolete"><p>El archivo <b>PKGLIST</b> no puede ser leido.</p><p>Causa: {0}</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4911"/> <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="4961"/> + <location filename="../Project/Project.py" line="4985"/> <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="1522"/> + <location filename="../Project/Project.py" line="1524"/> <source><p>The selected file <b>{0}</b> could not be added to <b>{1}</b>.</p><p>Reason: {2}</p></source> <translation><p>El archivo seleccionado <b>{0}</b> no ha podido se añadido a <b>{1}</b>.</p><p>Razón: {2}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1578"/> + <location filename="../Project/Project.py" line="1580"/> <source><p>The target directory <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>El directorio de destino <b>{0}</b> no ha podido ser creado.</p><p>Razón: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="158"/> + <location filename="../Project/Project.py" line="160"/> <source>Python2 Files (*.py2);;Python2 GUI Files (*.pyw2);;</source> <translation>Archivos Python2(*.py2);;Archivos de GUI Python2 (*.pyw2);;</translation> </message> <message> - <location filename="../Project/Project.py" line="2220"/> + <location filename="../Project/Project.py" line="2222"/> <source>Create main script</source> <translation>Crear script principal</translation> </message> <message> - <location filename="../Project/Project.py" line="2220"/> + <location filename="../Project/Project.py" line="2222"/> <source><p>The mainscript <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation><p>El script principal <b>{0}</b> no se ha podido crear.<br/>Razón: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3817"/> + <location filename="../Project/Project.py" line="3819"/> <source>Load Diagram</source> <translation>Cargar Diagrama</translation> </message> <message> - <location filename="../Project/Project.py" line="3817"/> + <location filename="../Project/Project.py" line="3819"/> <source>&Load Diagram...</source> <translation>&Cargar Diagrama...</translation> </message> <message> - <location filename="../Project/Project.py" line="3821"/> - <source>Load a diagram from file.</source> - <translation>CArgar diagrama desde archivo.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3823"/> + <source>Load a diagram from file.</source> + <translation>CArgar diagrama desde archivo.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3825"/> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation><b>Cargar Diagrama...</b><p>Carga un diagrama desde un archivo.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="321"/> + <location filename="../Project/Project.py" line="323"/> <source><p>The Programming Language <b>{0}</b> is not supported.</p></source> <translation><p>El Lenguaje de Programación <b>{0}</b> no está soportado.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="344"/> + <location filename="../Project/Project.py" line="346"/> <source><p>The Project type <b>{0}</b> is already registered.</p></source> <translation><p>El Tipo de Proyecto <b>{0}</b> ya está registrado.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="332"/> + <location filename="../Project/Project.py" line="334"/> <source><p>The Project type <b>{0}</b> is already registered with Programming Language <b>{1}</b>.</p></source> <translation><p>El tipo de Proyecto <b>{0}</b> ya está registrado con el Lenguaje de Programación <b>{1}</b>.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="242"/> + <location filename="../Project/Project.py" line="244"/> <source>PyQt5 GUI</source> <translation>GUI PyQt5</translation> </message> <message> - <location filename="../Project/Project.py" line="243"/> + <location filename="../Project/Project.py" line="245"/> <source>PyQt5 Console</source> <translation>Consola PyQt5</translation> </message> <message> - <location filename="../Project/Project.py" line="4361"/> + <location filename="../Project/Project.py" line="4365"/> <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="5003"/> + <location filename="../Project/Project.py" line="5027"/> <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="3837"/> - <source>Create an initial PKGLIST file for an eric6 plugin.</source> - <translation>Crear un archivo inicial PKGLIST para un plugin para eric6.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3839"/> + <source>Create an initial PKGLIST file for an eric6 plugin.</source> + <translation>Crear un archivo inicial PKGLIST para un plugin para eric6.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3841"/> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric6 plugin archive. The list is created from the project file.</p></source> <translation><b>Crear Lista del Paquete</b><p>Crea una lista inicial de archivos a incluir en un archivo para plugin de eric6. Esta lista se crea a partir del archivo de proyecto.</p></translation> </message> <message> <location filename="../Project/Project.py" line="3853"/> <source>Create an eric6 plugin archive file.</source> - <translation>Crear un archivo de plugin para eric6.</translation> + <translation type="obsolete">Crear un archivo de plugin para eric6.</translation> </message> <message> <location filename="../Project/Project.py" line="3855"/> <source><b>Create Plugin Archive</b><p>This creates an eric6 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name.</p></source> - <translation><b>Crear Archivo de Plugin</b><p>Crea un archivo de plugin para eric6 utilizando la lista de archivos dada en el archivo PKGLIST. El nombre de archivo se determina a partir del nombr del script principal.</p></translation> + <translation type="obsolete"><b>Crear Archivo de Plugin</b><p>Crea un archivo de plugin para eric6 utilizando la lista de archivos dada en el archivo PKGLIST. El nombre de archivo se determina a partir del nombr del script principal.</p></translation> </message> <message> <location filename="../Project/Project.py" line="3869"/> <source>Create an eric6 plugin archive file (snapshot release).</source> - <translation>Crear un archivo de plugin de eric6 (snapshot release).</translation> + <translation type="obsolete">Crear un archivo de plugin de eric6 (snapshot release).</translation> </message> <message> <location filename="../Project/Project.py" line="3871"/> <source><b>Create Plugin Archive (Snapshot)</b><p>This creates an eric6 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name. The version entry of the main script is modified to reflect a snapshot release.</p></source> - <translation><b>Crear un archivo de plugin (Snapshot)</b><p>Crea un archivo de plugin utilizando la lista de archivos proporcionada en el archivo PKGLIST. El nombre del archivo se determina por el nombre del script principal. La entrada para la versión del script proncipal se modifica para reflejar una versión snapshot.</p> </translation> - </message> - <message> - <location filename="../Project/Project.py" line="4866"/> + <translation type="obsolete"><b>Crear un archivo de plugin (Snapshot)</b><p>Crea un archivo de plugin utilizando la lista de archivos proporcionada en el archivo PKGLIST. El nombre del archivo se determina por el nombre del script principal. La entrada para la versión del script proncipal se modifica para reflejar una versión snapshot.</p> </translation> + </message> + <message> + <location filename="../Project/Project.py" line="4881"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>El archivo de plugin de eric6 <b>{0}</b> no ha podido ser creado. Abortando...</p><p>Razón: {1}</p></translation> </message> <message> <location filename="../Project/Project.py" line="4915"/> <source><p>The eric6 plugin archive file <b>{0}</b> was created successfully.</p></source> - <translation><p>El archivo de plugin de eric6 <b>{0}</b> se ha creado satisfactoriamente.</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="240"/> + <translation type="obsolete"><p>El archivo de plugin de eric6 <b>{0}</b> se ha creado satisfactoriamente.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="242"/> <source>PyQt4 GUI</source> <translation>GUI PyQt4</translation> </message> <message> - <location filename="../Project/Project.py" line="241"/> + <location filename="../Project/Project.py" line="243"/> <source>PyQt4 Console</source> <translation>Consola PyQt4</translation> </message> <message> - <location filename="../Project/Project.py" line="244"/> + <location filename="../Project/Project.py" line="246"/> <source>Eric6 Plugin</source> <translation>Eric6 Plugin</translation> </message> <message> - <location filename="../Project/Project.py" line="2651"/> + <location filename="../Project/Project.py" line="2653"/> <source>Create project management directory</source> <translation>Crear directorio de gestión del proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="2651"/> + <location filename="../Project/Project.py" line="2653"/> <source><p>The project directory <b>{0}</b> is not writable.</p></source> <translation><p>El directorio del proyecto <b>{0}</b> no se puede escribir.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3567"/> + <location filename="../Project/Project.py" line="3569"/> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation>Alt+Ctrl+P</translation> </message> <message> - <location filename="../Project/Project.py" line="3573"/> + <location filename="../Project/Project.py" line="3575"/> <source>Search for a file in the project list of files.</source> <translation>Bucar un archivo en el listado de archivos del proyecto.</translation> </message> <message> - <location filename="../Project/Project.py" line="3575"/> + <location filename="../Project/Project.py" line="3577"/> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation><b>Buscar Archivo en el Proyecto</b><p>Busca un archivo en el listado de archivos del proyecto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3567"/> + <location filename="../Project/Project.py" line="3569"/> <source>Search Project File</source> <translation>Buscar Archivo en Proyecto</translation> </message> <message> - <location filename="../Project/Project.py" line="3567"/> + <location filename="../Project/Project.py" line="3569"/> <source>Search Project File...</source> <translation>Buscar Archivo en Proyecto...</translation> </message> <message> - <location filename="../Project/Project.py" line="4799"/> - <source>Select a package list file:</source> + <location filename="../Project/Project.py" line="4834"/> + <source>Create Plugin Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3850"/> + <source>Create Plugin &Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3855"/> + <source>Create eric6 plugin archive files.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3857"/> + <source><b>Create Plugin Archives</b><p>This creates eric6 plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3867"/> + <source>Create Plugin Archives (Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3867"/> + <source>Create Plugin Archives (&Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3872"/> + <source>Create eric6 plugin archive files (snapshot releases).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3874"/> + <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric6 plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4806"/> - <source><p>No package list file selected. Aborting...</p></source> + <location filename="../Project/Project.py" line="4813"/> + <source>Select package lists:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>Creating plugin archives...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>Abort</source> + <translation type="unfinished">Abortar</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>%v/%m Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4834"/> + <source>Coverage</source> + <translation type="obsolete">Cobertura</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4847"/> + <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> + <translation type="unfinished"><p>El archivo<b>{0}</b> no puede ser leído.<br />Causa: {1}</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4930"/> + <source><p>The eric6 plugin archive files were created with some errors.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4933"/> + <source><p>The eric6 plugin archive files were created successfully.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4823"/> + <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished"></translation> </message> </context> @@ -41894,7 +41982,7 @@ <translation>Ejecutadas</translation> </message> <message> - <location filename="../DataViews/PyCoverageDialog.py" line="349"/> + <location filename="../DataViews/PyCoverageDialog.ui" line="172"/> <source>Coverage</source> <translation>Cobertura</translation> </message> @@ -41974,7 +42062,7 @@ </translation> </message> <message> - <location filename="../DataViews/PyCoverageDialog.py" line="345"/> + <location filename="../DataViews/PyCoverageDialog.ui" line="192"/> <source>%v/%m Files</source> <translation>%v/%m Archivos</translation> </message> @@ -41982,7 +42070,7 @@ <context> <name>PyProfileDialog</name> <message> - <location filename="../DataViews/PyProfileDialog.py" line="233"/> + <location filename="../DataViews/PyProfileDialog.ui" line="20"/> <source>Profile Results</source> <translation>Resultados de Profiling</translation> </message> @@ -46651,7 +46739,7 @@ <translation>Pulsar para eliminar los filtros seleccionados</translation> </message> <message> - <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.py" line="150"/> + <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.ui" line="89"/> <source>Remove Filters</source> <translation>Eliminar Filtros</translation> </message> @@ -46661,7 +46749,7 @@ <translation>Pulsar para eliminar los atributos seleccionados</translation> </message> <message> - <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.py" line="178"/> + <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.ui" line="99"/> <source>Remove Attributes</source> <translation>Eliminar Atributos</translation> </message> @@ -48171,7 +48259,7 @@ <context> <name>SendRefererWhitelistDialog</name> <message> - <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="52"/> + <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.ui" line="14"/> <source>Send Referer Whitelist</source> <translation>Enviar Lista Blanca de Referers</translation> </message> @@ -49381,7 +49469,7 @@ <translation>Copiar y Vista &Preliminar</translation> </message> <message> - <location filename="../Snapshot/SnapWidget.py" line="531"/> + <location filename="../Snapshot/SnapWidget.ui" line="20"/> <source>eric6 Snapshot</source> <translation>Captura de Pantalla de eric6</translation> </message> @@ -51863,7 +51951,7 @@ <context> <name>SvnDiffDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="171"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.ui" line="14"/> <source>Subversion Diff</source> <translation>Diff de Subversion</translation> </message> @@ -52166,17 +52254,17 @@ <translation>Seleccione el campo de filtrado</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="621"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="112"/> <source>Revision</source> <translation>Revisión</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="618"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="117"/> <source>Author</source> <translation>Autor</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="141"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="127"/> <source>Message</source> <translation>Mensaje</translation> </message> @@ -52631,7 +52719,7 @@ <translation>&Protocolo:</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="128"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.ui" line="45"/> <source>&URL:</source> <translation>&URL:</translation> </message> @@ -52731,7 +52819,7 @@ <translation>Seleccionar el protocolo para acceder al repositorio</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.py" line="95"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.ui" line="45"/> <source>&URL:</source> <translation>&URL:</translation> </message> @@ -53941,7 +54029,7 @@ <context> <name>SvnStatusDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="394"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="14"/> <source>Subversion Status</source> <translation>Estado de Subversion</translation> </message> @@ -54198,7 +54286,7 @@ <translation>Error de Generación de Proceso</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="711"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="80"/> <source>Commit</source> <translation>Commit</translation> </message> @@ -59440,7 +59528,7 @@ <context> <name>UnittestDialog</name> <message> - <location filename="../PyUnit/UnittestDialog.py" line="400"/> + <location filename="../PyUnit/UnittestDialog.ui" line="14"/> <source>Unittest</source> <translation>Test Unitario</translation> </message> @@ -62319,62 +62407,62 @@ <context> <name>VariablesViewer</name> <message> - <location filename="../Debugger/VariablesViewer.py" line="354"/> + <location filename="../Debugger/VariablesViewer.py" line="358"/> <source>Global Variables</source> <translation>Variables Globales</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="355"/> - <source>Globals</source> - <translation>Globales</translation> - </message> - <message> - <location filename="../Debugger/VariablesViewer.py" line="366"/> - <source>Value</source> - <translation>Valor</translation> - </message> - <message> - <location filename="../Debugger/VariablesViewer.py" line="366"/> - <source>Type</source> - <translation>Tipo</translation> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="359"/> + <source>Globals</source> + <translation>Globales</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="370"/> + <source>Value</source> + <translation>Valor</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="370"/> + <source>Type</source> + <translation>Tipo</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="363"/> <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="365"/> + <location filename="../Debugger/VariablesViewer.py" line="369"/> <source>Local Variables</source> <translation>Variables Locales</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="366"/> - <source>Locals</source> - <translation>Locales</translation> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="370"/> + <source>Locals</source> + <translation>Locales</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="374"/> <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="401"/> + <location filename="../Debugger/VariablesViewer.py" line="405"/> <source>Show Details...</source> <translation>Mostrar detalles...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="409"/> + <location filename="../Debugger/VariablesViewer.py" line="413"/> <source>Configure...</source> <translation>Configurar...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="629"/> + <location filename="../Debugger/VariablesViewer.py" line="633"/> <source>{0} items</source> <translation>{0} elementos</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="407"/> + <location filename="../Debugger/VariablesViewer.py" line="411"/> <source>Refresh</source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_fr.ts Sun Oct 16 12:20:30 2016 +0200 +++ b/i18n/eric6_fr.ts Sun Oct 16 14:42:46 2016 +0200 @@ -390,7 +390,7 @@ <context> <name>AddBookmarkDialog</name> <message> - <location filename="../WebBrowser/Bookmarks/AddBookmarkDialog.py" line="198"/> + <location filename="../WebBrowser/Bookmarks/AddBookmarkDialog.ui" line="26"/> <source>Add Bookmark</source> <translation>Ajouter un signet</translation> </message> @@ -1784,7 +1784,7 @@ <translation>Éditer &Adresse</translation> </message> <message> - <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="169"/> + <location filename="../WebBrowser/Bookmarks/BookmarksDialog.ui" line="75"/> <source>&Delete</source> <translation>&Supprimer</translation> </message> @@ -2492,12 +2492,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/CallTraceViewer.py" line="54"/> + <location filename="../Debugger/CallTraceViewer.ui" line="109"/> <source>From</source> <translation type="unfinished">De</translation> </message> <message> - <location filename="../Debugger/CallTraceViewer.py" line="54"/> + <location filename="../Debugger/CallTraceViewer.ui" line="114"/> <source>To</source> <translation type="unfinished">A</translation> </message> @@ -2659,7 +2659,7 @@ <translation>Cliquer pour annuler l'éditeur partagé</translation> </message> <message> - <location filename="../Cooperation/ChatWidget.py" line="513"/> + <location filename="../Cooperation/ChatWidget.ui" line="230"/> <source>Clear</source> <translation>Effacer</translation> </message> @@ -2955,7 +2955,7 @@ <context> <name>ClickToFlashWhitelistDialog</name> <message> - <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.py" line="54"/> + <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.ui" line="14"/> <source>ClickToFlash Whitelist</source> <translation type="unfinished"></translation> </message> @@ -4252,22 +4252,22 @@ <translation type="unfinished"></translation> </message> <message> + <location filename="../UI/CompareDialog.py" line="354"/> + <source>Total: {0}</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../UI/CompareDialog.py" line="356"/> - <source>Total: {0}</source> + <source>Changed: {0}</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../UI/CompareDialog.py" line="357"/> + <source>Added: {0}</source> <translation type="unfinished"></translation> </message> <message> <location filename="../UI/CompareDialog.py" line="358"/> - <source>Changed: {0}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/CompareDialog.py" line="359"/> - <source>Added: {0}</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../UI/CompareDialog.py" line="360"/> <source>Deleted: {0}</source> <translation type="unfinished"></translation> </message> @@ -4885,7 +4885,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="177"/> + <location filename="../WebBrowser/CookieJar/CookiesDialog.ui" line="223"/> <source><no cookie selected></source> <translation type="unfinished"></translation> </message> @@ -7625,7 +7625,7 @@ <context> <name>DownloadManager</name> <message> - <location filename="../WebBrowser/Download/DownloadManager.py" line="363"/> + <location filename="../WebBrowser/Download/DownloadManager.ui" line="14"/> <source>Downloads</source> <translation type="unfinished"></translation> </message> @@ -7866,6 +7866,19 @@ </message> </context> <context> + <name>E5ListSelectionDialog</name> + <message> + <location filename="../E5Gui/E5ListSelectionDialog.ui" line="14"/> + <source>Select from List</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../E5Gui/E5ListSelectionDialog.ui" line="23"/> + <source>Select from the list below:</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>E5MainWindow</name> <message> <location filename="../E5Gui/E5MainWindow.py" line="56"/> @@ -8084,92 +8097,92 @@ <translation type="unfinished">Boutons standards</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="41"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="257"/> <source>Abort</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="42"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="264"/> <source>Apply</source> <translation type="unfinished">Appliquer</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="43"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="271"/> <source>Cancel</source> <translation type="unfinished">Annuler</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="44"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="278"/> <source>Close</source> <translation type="unfinished">Fermer</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="45"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="285"/> <source>Discard</source> <translation type="unfinished">Abondonner les modifications</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="46"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="292"/> <source>Help</source> <translation type="unfinished">Aide</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="47"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="299"/> <source>Ignore</source> <translation type="unfinished">Ignorer</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="48"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="306"/> <source>No</source> <translation type="unfinished">Non</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="49"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="313"/> <source>No to all</source> <translation type="unfinished">Non à tout</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="50"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="320"/> <source>Ok</source> <translation type="unfinished">Ok</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="51"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="327"/> <source>Open</source> <translation type="unfinished">Ouvrir</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="52"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="334"/> <source>Reset</source> <translation type="unfinished">Réinitialiser</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="53"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="341"/> <source>Restore defaults</source> <translation type="unfinished">Restaurer les valeurs par défaut</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="54"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="348"/> <source>Retry</source> <translation type="unfinished">Réessayer</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="55"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="355"/> <source>Save</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="56"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="362"/> <source>Save all</source> <translation type="unfinished">Tout enregistrer</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="57"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="369"/> <source>Yes</source> <translation type="unfinished">Oui</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="58"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="376"/> <source>Yes to all</source> <translation type="unfinished">Oui à tout</translation> </message> @@ -10219,7 +10232,7 @@ <translation>Cliquer pour sélectionner un fichier API à partir des fichiers installés</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="184"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="132"/> <source>Add from installed APIs</source> <translation>Ajouter à partir des APIs installés</translation> </message> @@ -10229,7 +10242,7 @@ <translation>Cliquer pour compiler les APIs sélectionnés</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="236"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="159"/> <source>Compile APIs</source> <translation>Compiler les APIs</translation> </message> @@ -10254,7 +10267,7 @@ <translation>Cliquer pour sélectionner un fichier API à partir de la liste des APIs installés pour les plugins</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="203"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="142"/> <source>Add from Plugin APIs</source> <translation>Ajouter à partir des APIs de plugins</translation> </message> @@ -11273,7 +11286,7 @@ <translation>Cocher pour appliquer le style jusqu'en fin de ligne.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="113"/> <source>Fill to end of line</source> <translation>Appliquer jusqu'à la fin de ligne</translation> </message> @@ -11318,7 +11331,7 @@ <translation>Sélectionner la police.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="69"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="103"/> <source>Font</source> <translation>Police</translation> </message> @@ -12785,7 +12798,7 @@ <translation>Mode:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="58"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1080"/> <source>Disabled</source> <translation>Désactivé</translation> </message> @@ -13572,7 +13585,7 @@ <context> <name>EmailDialog</name> <message> - <location filename="../UI/EmailDialog.py" line="339"/> + <location filename="../UI/EmailDialog.ui" line="13"/> <source>Send bug report</source> <translation>Envoyer un rapport de bug</translation> </message> @@ -15014,12 +15027,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="110"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="122"/> <source>Host</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="111"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="127"/> <source>Permission</source> <translation type="unfinished"></translation> </message> @@ -15034,7 +15047,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="51"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="97"/> <source>Geolocation</source> <translation type="unfinished"></translation> </message> @@ -16176,7 +16189,7 @@ <translation type="unfinished">Nom:</translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="193"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="158"/> <source><no flash cookie selected></source> <translation type="unfinished"></translation> </message> @@ -16186,7 +16199,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="122"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="137"/> <source>Origin:</source> <translation type="unfinished"></translation> </message> @@ -16221,7 +16234,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="213"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="225"/> <source>Remove Cookie</source> <translation type="unfinished"></translation> </message> @@ -16647,7 +16660,7 @@ <context> <name>GreaseMonkeyAddScriptDialog</name> <message> - <location filename="../WebBrowser/GreaseMonkey/GreaseMonkeyAddScriptDialog.py" line="105"/> + <location filename="../WebBrowser/GreaseMonkey/GreaseMonkeyAddScriptDialog.ui" line="14"/> <source>GreaseMonkey Script Installation</source> <translation type="unfinished"></translation> </message> @@ -22305,7 +22318,7 @@ <context> <name>HgAddSubrepositoryDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.py" line="98"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.ui" line="14"/> <source>Add Sub-repository</source> <translation type="unfinished"></translation> </message> @@ -23391,7 +23404,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="247"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.ui" line="73"/> <source>Resolved</source> <translation type="unfinished"></translation> </message> @@ -23401,7 +23414,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="245"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.ui" line="83"/> <source>Unresolved</source> <translation type="unfinished"></translation> </message> @@ -24021,7 +24034,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="317"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.ui" line="55"/> <source>Revision</source> <translation type="unfinished">Révision</translation> </message> @@ -24300,7 +24313,7 @@ <context> <name>HgLogBrowserDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="71"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="14"/> <source>Mercurial Log</source> <translation type="unfinished"></translation> </message> @@ -24330,17 +24343,17 @@ <translation type="unfinished">Sélectionner le champ à filtrer</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="96"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="181"/> <source>Revision</source> <translation type="unfinished">Révision</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="97"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="191"/> <source>Author</source> <translation type="unfinished">Auteur</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="98"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="201"/> <source>Message</source> <translation type="unfinished">Message</translation> </message> @@ -28204,7 +28217,7 @@ <context> <name>HgStatusDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="313"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="14"/> <source>Mercurial Status</source> <translation type="unfinished"></translation> </message> @@ -28345,7 +28358,7 @@ <translation type="unfinished">Impossible de lancer le processus {0}. Assurez-vous qu'il est bien dans le chemin de recherche.</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="708"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="87"/> <source>Commit</source> <translation type="unfinished">Commit</translation> </message> @@ -28465,7 +28478,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="854"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="203"/> <source>Differences</source> <translation type="unfinished"></translation> </message> @@ -29227,7 +29240,7 @@ <translation type="unfinished">Cliquer pour supprimer les entrées sélectionnées</translation> </message> <message> - <location filename="../WebBrowser/History/HistoryDialog.py" line="114"/> + <location filename="../WebBrowser/History/HistoryDialog.ui" line="75"/> <source>&Remove</source> <translation type="unfinished">Supp&rimer</translation> </message> @@ -35095,92 +35108,92 @@ <translation>Boutons standards</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="40"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="219"/> <source>Apply</source> <translation>Appliquer</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="39"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="226"/> <source>Abort</source> <translation>Abandon</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="41"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="233"/> <source>Cancel</source> <translation>Annuler</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="45"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="240"/> <source>Ignore</source> <translation>Ignorer</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="54"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="247"/> <source>Save all</source> <translation>Tout enregistrer</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="53"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="254"/> <source>Save</source> <translation>Enregistrer</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="43"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="261"/> <source>Discard</source> <translation>Abondonner les modifications</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="56"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="268"/> <source>Yes to all</source> <translation>Oui à tout</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="49"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="275"/> <source>Open</source> <translation>Ouvrir</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="50"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="282"/> <source>Reset</source> <translation>Réinitialiser</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="48"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="289"/> <source>Ok</source> <translation>Ok</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="46"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="296"/> <source>No</source> <translation>Non</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="44"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="303"/> <source>Help</source> <translation>Aide</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="47"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="310"/> <source>No to all</source> <translation>Non à tout</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="52"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="317"/> <source>Retry</source> <translation>Réessayer</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="51"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="324"/> <source>Restore defaults</source> <translation>Restaurer les valeurs par défaut</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="55"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="331"/> <source>Yes</source> <translation>Oui</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="42"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="338"/> <source>Close</source> <translation>Fermer</translation> </message> @@ -36930,7 +36943,7 @@ <context> <name>NoCacheHostsDialog</name> <message> - <location filename="../Helpviewer/Network/NoCacheHostsDialog.py" line="52"/> + <location filename="../Helpviewer/Network/NoCacheHostsDialog.ui" line="14"/> <source>Not Cached Hosts</source> <translation type="unfinished"></translation> </message> @@ -37038,7 +37051,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/NotificationsPage.py" line="81"/> + <location filename="../Preferences/ConfigurationPages/NotificationsPage.ui" line="146"/> <source>Visual Selection</source> <translation type="unfinished"></translation> </message> @@ -37708,7 +37721,7 @@ <context> <name>PasswordsDialog</name> <message> - <location filename="../WebBrowser/Passwords/PasswordsDialog.py" line="91"/> + <location filename="../WebBrowser/Passwords/PasswordsDialog.ui" line="14"/> <source>Saved Passwords</source> <translation type="unfinished"></translation> </message> @@ -38272,7 +38285,7 @@ <translation>Certains plugins n'ont pu être installés.</translation> </message> <message> - <location filename="../PluginManager/PluginInstallDialog.py" line="470"/> + <location filename="../PluginManager/PluginInstallDialog.py" line="476"/> <source>Unspecific exception installing plugin.</source> <translation>Erreur inexpliquée lors de l'installation du plugin.</translation> </message> @@ -38331,7 +38344,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../PluginManager/PluginInstallDialog.py" line="463"/> + <location filename="../PluginManager/PluginInstallDialog.py" line="469"/> <source>Error installing plugin. Reason: {0}</source> <translation type="unfinished"></translation> </message> @@ -38354,7 +38367,7 @@ <translation>Le module ne comporte pas le(s) attribut(s) 'pluginType' et/ou 'pluginTypename'.</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1103"/> + <location filename="../PluginManager/PluginManager.py" line="1106"/> <source>Plugin Manager Error</source> <translation>Erreur du gestionnaire de plugins</translation> </message> @@ -38374,27 +38387,27 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1103"/> + <location filename="../PluginManager/PluginManager.py" line="1106"/> <source><p>The plugin download directory <b>{0}</b> could not be created. Please configure it via the configuration dialog.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1179"/> + <location filename="../PluginManager/PluginManager.py" line="1182"/> <source>Error downloading file</source> <translation type="unfinished">Erreur de téléchargement</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1179"/> + <location filename="../PluginManager/PluginManager.py" line="1182"/> <source><p>Could not download the requested file from {0}.</p><p>Error: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1216"/> + <location filename="../PluginManager/PluginManager.py" line="1219"/> <source>New plugin versions available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1216"/> + <location filename="../PluginManager/PluginManager.py" line="1219"/> <source><p>There are new plug-ins or plug-in updates available. Use the plug-in repository dialog to get them.</p></source> <translation type="unfinished"></translation> </message> @@ -39315,757 +39328,757 @@ <context> <name>Project</name> <message> - <location filename="../Project/Project.py" line="699"/> + <location filename="../Project/Project.py" line="701"/> <source>Read project file</source> <translation>Lire un fichier projet</translation> </message> <message> - <location filename="../Project/Project.py" line="799"/> + <location filename="../Project/Project.py" line="801"/> <source>Save project file</source> <translation>Enregistrer le fichier projet</translation> </message> <message> - <location filename="../Project/Project.py" line="917"/> + <location filename="../Project/Project.py" line="919"/> <source>Read project session</source> <translation>Lire la session du projet</translation> </message> <message> - <location filename="../Project/Project.py" line="1139"/> + <location filename="../Project/Project.py" line="1141"/> <source>Please save the project first.</source> <translation>Prière d'enregistrer votre projet d'abord.</translation> </message> <message> - <location filename="../Project/Project.py" line="953"/> + <location filename="../Project/Project.py" line="955"/> <source>Save project session</source> <translation>Enregistrer la session</translation> </message> <message> - <location filename="../Project/Project.py" line="1261"/> + <location filename="../Project/Project.py" line="1263"/> <source>Add Language</source> <translation>Ajouter une langue</translation> </message> <message> - <location filename="../Project/Project.py" line="1383"/> + <location filename="../Project/Project.py" line="1385"/> <source>Delete translation</source> <translation>Supprimer la traduction</translation> </message> <message> - <location filename="../Project/Project.py" line="1534"/> + <location filename="../Project/Project.py" line="1536"/> <source>Add file</source> <translation>Ajouter un fichier</translation> </message> <message> - <location filename="../Project/Project.py" line="1651"/> + <location filename="../Project/Project.py" line="1653"/> <source>The target directory must not be empty.</source> <translation>Le répertoire cible ne doit pas être vide.</translation> </message> <message> - <location filename="../Project/Project.py" line="1662"/> + <location filename="../Project/Project.py" line="1664"/> <source>Add directory</source> <translation>Ajouter un répertoire</translation> </message> <message> - <location filename="../Project/Project.py" line="1662"/> + <location filename="../Project/Project.py" line="1664"/> <source>The source directory must not be empty.</source> <translation>Le répertoire source ne doit pas être vide.</translation> </message> <message> - <location filename="../Project/Project.py" line="2046"/> + <location filename="../Project/Project.py" line="2048"/> <source>Delete file</source> <translation>Suppression de fichier</translation> </message> <message> - <location filename="../Project/Project.py" line="2157"/> + <location filename="../Project/Project.py" line="2159"/> <source>Create project directory</source> <translation>Création d'un répertoire projet</translation> </message> <message> - <location filename="../Project/Project.py" line="3441"/> + <location filename="../Project/Project.py" line="3443"/> <source>New project</source> <translation>Nouveau projet</translation> </message> <message> - <location filename="../Project/Project.py" line="3455"/> + <location filename="../Project/Project.py" line="3457"/> <source>Open project</source> <translation>Ouvir un projet</translation> </message> <message> - <location filename="../Project/Project.py" line="3492"/> + <location filename="../Project/Project.py" line="3494"/> <source>Save project as</source> <translation>Enregistrer le projet sous</translation> </message> <message> - <location filename="../Project/Project.py" line="2832"/> + <location filename="../Project/Project.py" line="2834"/> <source>Save File</source> <translation>Enregistrer Fichier</translation> </message> <message> - <location filename="../Project/Project.py" line="2868"/> + <location filename="../Project/Project.py" line="2870"/> <source>Close Project</source> <translation>Fermer le projet</translation> </message> <message> - <location filename="../Project/Project.py" line="2868"/> + <location filename="../Project/Project.py" line="2870"/> <source>The current project has unsaved changes.</source> <translation>Le projet courant a des modifications non enregistrées.</translation> </message> <message> - <location filename="../Project/Project.py" line="3671"/> + <location filename="../Project/Project.py" line="3673"/> <source>&Save</source> <translation>&Enregistrer</translation> </message> <message> - <location filename="../Project/Project.py" line="3441"/> + <location filename="../Project/Project.py" line="3443"/> <source>&New...</source> <translation>&Nouveau...</translation> </message> <message> - <location filename="../Project/Project.py" line="3446"/> + <location filename="../Project/Project.py" line="3448"/> <source>Generate a new project</source> <translation>Génerer un nouveau projet</translation> </message> <message> - <location filename="../Project/Project.py" line="3447"/> + <location filename="../Project/Project.py" line="3449"/> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>Nouveau...</b><p>Ouvre une boite de dialogue pour entrer les paramètres d'un nouveau projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3455"/> + <location filename="../Project/Project.py" line="3457"/> <source>&Open...</source> <translation>&Ouvrir...</translation> </message> <message> - <location filename="../Project/Project.py" line="3460"/> + <location filename="../Project/Project.py" line="3462"/> <source>Open an existing project</source> <translation>Ouvrir un projet existant</translation> </message> <message> - <location filename="../Project/Project.py" line="3461"/> + <location filename="../Project/Project.py" line="3463"/> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>Ouvrir...</b><p>Ouvre un projet existant.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3468"/> + <location filename="../Project/Project.py" line="3470"/> <source>Close project</source> <translation>Fermer le projet</translation> </message> <message> - <location filename="../Project/Project.py" line="3468"/> + <location filename="../Project/Project.py" line="3470"/> <source>&Close</source> <translation>&Fermer</translation> </message> <message> - <location filename="../Project/Project.py" line="3472"/> + <location filename="../Project/Project.py" line="3474"/> <source>Close the current project</source> <translation>Fermer le projet en cours</translation> </message> <message> - <location filename="../Project/Project.py" line="3473"/> + <location filename="../Project/Project.py" line="3475"/> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>Fermer</b><p>Ferme le projet en cours.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3480"/> + <location filename="../Project/Project.py" line="3482"/> <source>Save project</source> <translation>Enregistrer le projet</translation> </message> <message> - <location filename="../Project/Project.py" line="3484"/> + <location filename="../Project/Project.py" line="3486"/> <source>Save the current project</source> <translation>Enregistre le projet courant</translation> </message> <message> - <location filename="../Project/Project.py" line="3485"/> + <location filename="../Project/Project.py" line="3487"/> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>Enregistrer</b><p>Enregistre le projet en cours.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3492"/> + <location filename="../Project/Project.py" line="3494"/> <source>Save &as...</source> <translation>&Enregistrer sous...</translation> </message> <message> - <location filename="../Project/Project.py" line="3496"/> - <source>Save the current project to a new file</source> - <translation>Enregistre le projet en cours dans un nouveau fichier</translation> - </message> - <message> <location filename="../Project/Project.py" line="3498"/> + <source>Save the current project to a new file</source> + <translation>Enregistre le projet en cours dans un nouveau fichier</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3500"/> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>Enregistrer sous</b><p>Enregistre le projet en cours dans un nouveau fichier.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3538"/> + <location filename="../Project/Project.py" line="3540"/> <source>Add translation to project</source> <translation>Ajouter une traduction au projet</translation> </message> <message> - <location filename="../Project/Project.py" line="3538"/> + <location filename="../Project/Project.py" line="3540"/> <source>Add &translation...</source> <translation>Ajouter une &traduction...</translation> </message> <message> - <location filename="../Project/Project.py" line="3543"/> - <source>Add a translation to the current project</source> - <translation>Ajoute une traduction au projet en cours</translation> - </message> - <message> <location filename="../Project/Project.py" line="3545"/> + <source>Add a translation to the current project</source> + <translation>Ajoute une traduction au projet en cours</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3547"/> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation><b>Ajouter une traduction...</b><p>Ouvre une boite de dialogue pour ajouter une traduction au projet courant.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3553"/> + <location filename="../Project/Project.py" line="3555"/> <source>Search new files</source> <translation>Rechercher des nouveaux fichiers</translation> </message> <message> - <location filename="../Project/Project.py" line="3553"/> + <location filename="../Project/Project.py" line="3555"/> <source>Searc&h new files...</source> <translation>Re&chercher des nouveaux fichiers...</translation> </message> <message> - <location filename="../Project/Project.py" line="3557"/> + <location filename="../Project/Project.py" line="3559"/> <source>Search new files in the project directory.</source> <translation>Recherche des nouveaux fichiers dans le répertoire du projet.</translation> </message> <message> - <location filename="../Project/Project.py" line="3582"/> + <location filename="../Project/Project.py" line="3584"/> <source>Project properties</source> <translation>Propriétés du projet</translation> </message> <message> - <location filename="../Project/Project.py" line="3582"/> + <location filename="../Project/Project.py" line="3584"/> <source>&Properties...</source> <translation>&Propriétés...</translation> </message> <message> - <location filename="../Project/Project.py" line="3587"/> + <location filename="../Project/Project.py" line="3589"/> <source>Show the project properties</source> <translation>Affiche les propriétés du projet</translation> </message> <message> - <location filename="../Project/Project.py" line="3588"/> + <location filename="../Project/Project.py" line="3590"/> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation><b>Propriétés...</b><p>Affiche une boite de dialogue pour éditer les propriétés du projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3710"/> + <location filename="../Project/Project.py" line="3712"/> <source>Load session</source> <translation>Charger la session</translation> </message> <message> - <location filename="../Project/Project.py" line="3714"/> + <location filename="../Project/Project.py" line="3716"/> <source>Load the projects session file.</source> <translation>Charge le fichier de session du projet.</translation> </message> <message> - <location filename="../Project/Project.py" line="3715"/> + <location filename="../Project/Project.py" line="3717"/> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Charger la session</b><p>Charge le fichier session du projet. Une session est constituée par les données suivantes.<br>- tous les fichiers open source<br>- tous les points d'arrêts<br>- les arguments de ligne de commande<br>- le répertoire de travail<br>- le flag de rapport d'exception</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3728"/> + <location filename="../Project/Project.py" line="3730"/> <source>Save session</source> <translation>Enregistrer la session</translation> </message> <message> - <location filename="../Project/Project.py" line="3732"/> + <location filename="../Project/Project.py" line="3734"/> <source>Save the projects session file.</source> <translation>Enregistre le fichier de session du projet.</translation> </message> <message> - <location filename="../Project/Project.py" line="3733"/> + <location filename="../Project/Project.py" line="3735"/> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Enregistrer la session</b><p>Enregistrer le fichier session du projet. Une session est constituée par les données suivantes.<br>- tous les fichiers open source<br>- tous les points d'arrêts<br>- les arguments de ligne de commande<br>- le répertoire de travail<br>- le flag de rapport d'exception</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3760"/> + <location filename="../Project/Project.py" line="3762"/> <source>Code Metrics</source> <translation>Statistiques du code</translation> </message> <message> - <location filename="../Project/Project.py" line="3760"/> + <location filename="../Project/Project.py" line="3762"/> <source>&Code Metrics...</source> <translation>Statistiques du &Code...</translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> - <source>Show some code metrics for the project.</source> - <translation>Affiche des statistiques sur le code du projet.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3766"/> + <source>Show some code metrics for the project.</source> + <translation>Affiche des statistiques sur le code du projet.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3768"/> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation><b>Statistiques du Code...</b><p>Affiche des statistiques sur le code de tous les fichiers Python du projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3774"/> + <location filename="../Project/Project.py" line="3776"/> <source>Python Code Coverage</source> <translation> Code Coverage Python</translation> </message> <message> - <location filename="../Project/Project.py" line="3774"/> + <location filename="../Project/Project.py" line="3776"/> <source>Code Co&verage...</source> <translation>Code Co&verage...</translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> - <source>Show code coverage information for the project.</source> - <translation>Affiche les informations de code coverage pour le projet.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3780"/> + <source>Show code coverage information for the project.</source> + <translation>Affiche les informations de code coverage pour le projet.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3782"/> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation><b>Code Coverage...</b><p>Affiche les informations de code coverage pour le projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4564"/> + <location filename="../Project/Project.py" line="4568"/> <source>Profile Data</source> <translation>Profiling des données</translation> </message> <message> - <location filename="../Project/Project.py" line="3788"/> + <location filename="../Project/Project.py" line="3790"/> <source>&Profile Data...</source> <translation>&Profiling des données...</translation> </message> <message> - <location filename="../Project/Project.py" line="3792"/> - <source>Show profiling data for the project.</source> - <translation>Affiche le profiling des données du projet.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3794"/> + <source>Show profiling data for the project.</source> + <translation>Affiche le profiling des données du projet.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3796"/> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation><b>Profilling des données...</b><p>Affiche le profiling des données du projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4618"/> + <location filename="../Project/Project.py" line="4622"/> <source>Application Diagram</source> <translation>Diagramme de l'application</translation> </message> <message> - <location filename="../Project/Project.py" line="3803"/> + <location filename="../Project/Project.py" line="3805"/> <source>&Application Diagram...</source> <translation>&Diagramme de l'application...</translation> </message> <message> - <location filename="../Project/Project.py" line="3807"/> - <source>Show a diagram of the project.</source> - <translation>Affiche le diagramme de l'application.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3809"/> + <source>Show a diagram of the project.</source> + <translation>Affiche le diagramme de l'application.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3811"/> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>Diagramme de l'application...</b><p>Affiche le diagramme du projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3901"/> + <location filename="../Project/Project.py" line="3905"/> <source>Open &Recent Projects</source> <translation>Ouvrir un projet &récent</translation> </message> <message> - <location filename="../Project/Project.py" line="3909"/> + <location filename="../Project/Project.py" line="3913"/> <source>&Diagrams</source> <translation>&Diagrammes</translation> </message> <message> + <location filename="../Project/Project.py" line="3910"/> + <source>Chec&k</source> + <translation>&Vérification</translation> + </message> + <message> <location filename="../Project/Project.py" line="3906"/> - <source>Chec&k</source> - <translation>&Vérification</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3902"/> <source>&Version Control</source> <translation>&Contrôle de version</translation> </message> <message> - <location filename="../Project/Project.py" line="3908"/> + <location filename="../Project/Project.py" line="3912"/> <source>Sho&w</source> <translation>&Affichage</translation> </message> <message> - <location filename="../Project/Project.py" line="3911"/> + <location filename="../Project/Project.py" line="3915"/> <source>Source &Documentation</source> <translation>&Documentation automatique</translation> </message> <message> - <location filename="../Project/Project.py" line="4227"/> + <location filename="../Project/Project.py" line="4231"/> <source>Search New Files</source> <translation>Rechercher des nouveaux fichiers</translation> </message> <message> - <location filename="../Project/Project.py" line="4227"/> + <location filename="../Project/Project.py" line="4231"/> <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="4373"/> + <location filename="../Project/Project.py" line="4377"/> <source>Version Control System</source> <translation>Système de conrôle des versions (VCS)</translation> </message> <message> - <location filename="../Project/Project.py" line="4491"/> + <location filename="../Project/Project.py" line="4495"/> <source>Coverage Data</source> <translation>Coverage de données</translation> </message> <message> - <location filename="../Project/Project.py" line="4541"/> + <location filename="../Project/Project.py" line="4545"/> <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="1786"/> + <location filename="../Project/Project.py" line="1788"/> <source>Rename file</source> <translation>Renommer le fichier</translation> </message> <message> - <location filename="../Project/Project.py" line="1810"/> + <location filename="../Project/Project.py" line="1812"/> <source>Rename File</source> <translation>Renommer le fichier</translation> </message> <message> - <location filename="../Project/Project.py" line="2681"/> + <location filename="../Project/Project.py" line="2683"/> <source>New Project</source> <translation>Nouveau projet</translation> </message> <message> - <location filename="../Project/Project.py" line="2233"/> + <location filename="../Project/Project.py" line="2235"/> <source>Add existing files to the project?</source> <translation>Ajouter des fichiers existant au projet ?</translation> </message> <message> - <location filename="../Project/Project.py" line="2352"/> + <location filename="../Project/Project.py" line="2354"/> <source>Would you like to edit the VCS command options?</source> <translation>Voulez-vous éditer les options de commande VCS ?</translation> </message> <message> - <location filename="../Project/Project.py" line="2300"/> + <location filename="../Project/Project.py" line="2302"/> <source>Shall the project file be added to the repository?</source> <translation>Le fichier projet doit-il être ajouté au référentiel?</translation> </message> <message> - <location filename="../Project/Project.py" line="2324"/> + <location filename="../Project/Project.py" line="2326"/> <source>Select version control system for the project</source> <translation>Sélectionner un système de contrôle de version (VCS) pour le projet</translation> </message> <message> - <location filename="../Project/Project.py" line="3523"/> + <location filename="../Project/Project.py" line="3525"/> <source>Add directory to project</source> <translation>Ajouter un répertoire au projet</translation> </message> <message> - <location filename="../Project/Project.py" line="3523"/> + <location filename="../Project/Project.py" line="3525"/> <source>Add directory...</source> <translation>Ajouter un répertoire...</translation> </message> <message> - <location filename="../Project/Project.py" line="3528"/> - <source>Add a directory to the current project</source> - <translation>Ajouter un répertoire au projet courant</translation> - </message> - <message> <location filename="../Project/Project.py" line="3530"/> + <source>Add a directory to the current project</source> + <translation>Ajouter un répertoire au projet courant</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3532"/> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>Ajouter un répertoire...</b><p>Ouvre une fenêtre pour ajouter un répertoire au projet courant.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4514"/> + <location filename="../Project/Project.py" line="4518"/> <source>Code Coverage</source> <translation>Code Coverage</translation> </message> <message> - <location filename="../Project/Project.py" line="4514"/> + <location filename="../Project/Project.py" line="4518"/> <source>Please select a coverage file</source> <translation>Sélectionner un fichier coverage</translation> </message> <message> - <location filename="../Project/Project.py" line="4564"/> + <location filename="../Project/Project.py" line="4568"/> <source>Please select a profile file</source> <translation>Sélectionner un fichier profile</translation> </message> <message> - <location filename="../Project/Project.py" line="982"/> + <location filename="../Project/Project.py" line="984"/> <source>Delete project session</source> <translation>Supprime la session de projet</translation> </message> <message> - <location filename="../Project/Project.py" line="3746"/> + <location filename="../Project/Project.py" line="3748"/> <source>Delete session</source> <translation>Supprimer la session</translation> </message> <message> - <location filename="../Project/Project.py" line="3750"/> + <location filename="../Project/Project.py" line="3752"/> <source>Delete the projects session file.</source> <translation>Suppression du fichier session de projet.</translation> </message> <message> - <location filename="../Project/Project.py" line="3751"/> + <location filename="../Project/Project.py" line="3753"/> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation><b>Suppression de session</b><p>Ceci supprime le fichier session de projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="164"/> + <location filename="../Project/Project.py" line="166"/> <source>Ruby Files (*.rb);;</source> <translation>Fichiers Ruby (*.rb);;</translation> </message> <message> - <location filename="../Project/Project.py" line="3559"/> + <location filename="../Project/Project.py" line="3561"/> <source><b>Search new files...</b><p>This searches for new files (sources, *.ui, *.idl) in the project directory and registered subdirectories.</p></source> <translation><b>Chercher des nouveaux fichiers...</b><p>Cette commande recherche des nouveaux fichiers (sources, *.ui, *.idl) dans le répertoire projet et dans les sous-répertoires enregistrés.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="245"/> + <location filename="../Project/Project.py" line="247"/> <source>Console</source> <translation>Console</translation> </message> <message> - <location filename="../Project/Project.py" line="246"/> + <location filename="../Project/Project.py" line="248"/> <source>Other</source> <translation>Autre</translation> </message> <message> - <location filename="../Project/Project.py" line="4618"/> + <location filename="../Project/Project.py" line="4622"/> <source>Include module names?</source> <translation>Inclure les noms de modules ?</translation> </message> <message> - <location filename="../Project/Project.py" line="2075"/> + <location filename="../Project/Project.py" line="2077"/> <source>Delete directory</source> <translation>Suppression répertoire</translation> </message> <message> - <location filename="../Project/Project.py" line="1016"/> + <location filename="../Project/Project.py" line="1018"/> <source>Read tasks</source> <translation>Tâches lues</translation> </message> <message> - <location filename="../Project/Project.py" line="1036"/> + <location filename="../Project/Project.py" line="1038"/> <source>Save tasks</source> <translation>Tâches enregistrées</translation> </message> <message> - <location filename="../Project/Project.py" line="1093"/> + <location filename="../Project/Project.py" line="1095"/> <source>Read debugger properties</source> <translation>Lecture des propriétés du débogueur</translation> </message> <message> - <location filename="../Project/Project.py" line="1127"/> + <location filename="../Project/Project.py" line="1129"/> <source>Save debugger properties</source> <translation>Enregistrement des propriétés du débogueur</translation> </message> <message> - <location filename="../Project/Project.py" line="1153"/> + <location filename="../Project/Project.py" line="1155"/> <source>Delete debugger properties</source> <translation>Suppression des propriétés du débogueur</translation> </message> <message> - <location filename="../Project/Project.py" line="3646"/> + <location filename="../Project/Project.py" line="3648"/> <source>Debugger Properties</source> <translation>Propriétés du Débogueur</translation> </message> <message> - <location filename="../Project/Project.py" line="3646"/> + <location filename="../Project/Project.py" line="3648"/> <source>Debugger &Properties...</source> <translation>Débogueur & Propriétés...</translation> </message> <message> - <location filename="../Project/Project.py" line="3650"/> + <location filename="../Project/Project.py" line="3652"/> <source>Show the debugger properties</source> <translation>Affichage des propriétés du débogueur</translation> </message> <message> - <location filename="../Project/Project.py" line="3651"/> + <location filename="../Project/Project.py" line="3653"/> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation><b>Propriétés du Débogueur...</b><p>Affiche une boite de dialogue permettant d'éditer les proprités du débogueur, spécifiques au projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3659"/> + <location filename="../Project/Project.py" line="3661"/> <source>Load</source> <translation>Charger</translation> </message> <message> - <location filename="../Project/Project.py" line="3659"/> + <location filename="../Project/Project.py" line="3661"/> <source>&Load</source> <translation>&Charger</translation> </message> <message> - <location filename="../Project/Project.py" line="3663"/> + <location filename="../Project/Project.py" line="3665"/> <source>Load the debugger properties</source> <translation>Charger les propriétés du débogueur</translation> </message> <message> - <location filename="../Project/Project.py" line="3671"/> + <location filename="../Project/Project.py" line="3673"/> <source>Save</source> <translation>Enregistrer</translation> </message> <message> - <location filename="../Project/Project.py" line="3675"/> + <location filename="../Project/Project.py" line="3677"/> <source>Save the debugger properties</source> <translation>Enregistrer les propriétés du débogueur</translation> </message> <message> - <location filename="../Project/Project.py" line="3683"/> + <location filename="../Project/Project.py" line="3685"/> <source>Delete</source> <translation>Supprimer</translation> </message> <message> - <location filename="../Project/Project.py" line="3683"/> + <location filename="../Project/Project.py" line="3685"/> <source>&Delete</source> <translation>&Supprimer</translation> </message> <message> - <location filename="../Project/Project.py" line="3687"/> + <location filename="../Project/Project.py" line="3689"/> <source>Delete the debugger properties</source> <translation>Supprimer les propriétés du débogueur</translation> </message> <message> - <location filename="../Project/Project.py" line="3696"/> + <location filename="../Project/Project.py" line="3698"/> <source>Reset</source> <translation>Réinitialiser</translation> </message> <message> - <location filename="../Project/Project.py" line="3696"/> + <location filename="../Project/Project.py" line="3698"/> <source>&Reset</source> <translation>&Réinitialiser</translation> </message> <message> - <location filename="../Project/Project.py" line="3700"/> + <location filename="../Project/Project.py" line="3702"/> <source>Reset the debugger properties</source> <translation>Réinitialise des propriétés du débogueur</translation> </message> <message> - <location filename="../Project/Project.py" line="3913"/> + <location filename="../Project/Project.py" line="3917"/> <source>Debugger</source> <translation>Débogueur</translation> </message> <message> - <location filename="../Project/Project.py" line="3910"/> + <location filename="../Project/Project.py" line="3914"/> <source>Session</source> <translation>Session</translation> </message> <message> - <location filename="../Project/Project.py" line="3664"/> + <location filename="../Project/Project.py" line="3666"/> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation><b>Chargement des Propriétés du Débogueur</b><p>Charge la configuration du débogueur spécifique au projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3676"/> + <location filename="../Project/Project.py" line="3678"/> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation><b>Enregistrement des Propriétés du Débogueur</b><p>Enregistre la configuration du débogueur spécifique au projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3688"/> + <location filename="../Project/Project.py" line="3690"/> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation><b>Suppression des Propriétés du Débogueur...</b><p>Supprime la configuration du débogueur spécifique au projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3701"/> + <location filename="../Project/Project.py" line="3703"/> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation><b>Réinitialiser les propriétés du débogueur</b><p>Réinitialise la configuration du débogueur spécifique au projet.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3610"/> + <location filename="../Project/Project.py" line="3612"/> <source>Filetype Associations</source> <translation>Association des types de fichiers</translation> </message> <message> - <location filename="../Project/Project.py" line="3610"/> + <location filename="../Project/Project.py" line="3612"/> <source>Filetype Associations...</source> <translation>Association des types de fichiers...</translation> </message> <message> - <location filename="../Project/Project.py" line="3614"/> - <source>Show the project filetype associations</source> - <translation>Affiche les asociation Fichier/Type de fichier pour le projet</translation> - </message> - <message> <location filename="../Project/Project.py" line="3616"/> + <source>Show the project filetype associations</source> + <translation>Affiche les asociation Fichier/Type de fichier pour le projet</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3618"/> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the filetype associations of the project. These associations determine the type (source, form, interface or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation><b>Filetype Associations...</b><p>This shows a dialog to edit the filetype associations of the project. These associations determine the type (source, form, interface or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3914"/> + <location filename="../Project/Project.py" line="3918"/> <source>Pac&kagers</source> <translation>Création de pac&kage</translation> </message> <message> - <location filename="../Project/Project.py" line="3507"/> + <location filename="../Project/Project.py" line="3509"/> <source>Add files to project</source> <translation>Ajouter des fichiers au projet</translation> </message> <message> - <location filename="../Project/Project.py" line="3507"/> + <location filename="../Project/Project.py" line="3509"/> <source>Add &files...</source> <translation>Ajouter des &fichiers...</translation> </message> <message> - <location filename="../Project/Project.py" line="3512"/> - <source>Add files to the current project</source> - <translation>Ajouter des fichiers au projet courant</translation> - </message> - <message> <location filename="../Project/Project.py" line="3514"/> + <source>Add files to the current project</source> + <translation>Ajouter des fichiers au projet courant</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3516"/> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation><b>Ajouter des fichiers...</b><p>Ouvre une boite de dialogue pour ajouter des fichiers au projet courant. La position pour l'insertion est déterminée par l'extension du fichier.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2817"/> + <location filename="../Project/Project.py" line="2819"/> <source>Project Files (*.e4p)</source> <translation>Fichiers projets (*.e4p)</translation> </message> <message> - <location filename="../Project/Project.py" line="3900"/> + <location filename="../Project/Project.py" line="3904"/> <source>&Project</source> <translation>&Projet</translation> </message> <message> - <location filename="../Project/Project.py" line="4022"/> + <location filename="../Project/Project.py" line="4026"/> <source>Project</source> <translation>Projet</translation> </message> <message> - <location filename="../Project/Project.py" line="4088"/> + <location filename="../Project/Project.py" line="4092"/> <source>&Clear</source> <translation>&Effacer</translation> </message> <message> - <location filename="../Project/Project.py" line="835"/> + <location filename="../Project/Project.py" line="837"/> <source>Read user project properties</source> <translation>Lire les propriétés utilisateur du projet</translation> </message> <message> - <location filename="../Project/Project.py" line="859"/> + <location filename="../Project/Project.py" line="861"/> <source>Save user project properties</source> <translation>Enregistrer les propriétés utilisateur du projet</translation> </message> <message> - <location filename="../Project/Project.py" line="3595"/> + <location filename="../Project/Project.py" line="3597"/> <source>User project properties</source> <translation>Propriétés utilisateur du projet</translation> </message> <message> - <location filename="../Project/Project.py" line="3595"/> + <location filename="../Project/Project.py" line="3597"/> <source>&User Properties...</source> <translation>Propriétés &Utilisateur...</translation> </message> <message> - <location filename="../Project/Project.py" line="3600"/> - <source>Show the user specific project properties</source> - <translation>Afficher le propriétés utilisateurs spécifiques au projet</translation> - </message> - <message> <location filename="../Project/Project.py" line="3602"/> + <source>Show the user specific project properties</source> + <translation>Afficher le propriétés utilisateurs spécifiques au projet</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3604"/> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation><b>Propriétés utilisateur...</b><p>Affiche une fenêtre permettant d'éditer les propriétés du projet spécifiques à l'utilisateur.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3033"/> + <location filename="../Project/Project.py" line="3035"/> <source>Syntax errors detected</source> <translation>Erreurs de syntaxe détectées</translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="3033"/> + <location filename="../Project/Project.py" line="3035"/> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>Le projet contient %n fichier avec des erreurs de syntaxe.</numerusform> @@ -40073,419 +40086,484 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="4776"/> + <location filename="../Project/Project.py" line="4780"/> <source>Create Package List</source> <translation>Création de la liste de package</translation> </message> <message> - <location filename="../Project/Project.py" line="3832"/> + <location filename="../Project/Project.py" line="3834"/> <source>Create &Package List</source> <translation>Création de la liste de &package</translation> </message> <message> - <location filename="../Project/Project.py" line="5003"/> + <location filename="../Project/Project.py" line="5027"/> <source>Create Plugin Archive</source> <translation>Création de l'archive du plugin</translation> </message> <message> <location filename="../Project/Project.py" line="3848"/> <source>Create Plugin &Archive</source> - <translation>Création de l'&archive du plugin</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4736"/> + <translation type="obsolete">Création de l'&archive du plugin</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4740"/> <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="4815"/> <source><p>The file <b>PKGLIST</b> does not exist. Aborting...</p></source> - <translation><p>Le fichier <b>PKGLIST</b> n'existe pas. Abandon...</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4823"/> + <translation type="obsolete"><p>Le fichier <b>PKGLIST</b> n'existe pas. Abandon...</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4799"/> <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="1565"/> + <location filename="../Project/Project.py" line="1567"/> <source><p>The source directory doesn't contain any files belonging to the selected category.</p></source> <translation><p>Le répertoire source ne contient aucun fichier correspondant à la catégorie sélectionnée.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2681"/> + <location filename="../Project/Project.py" line="2683"/> <source>Select Version Control System</source> <translation>Sélectionner un système de contrôle de version</translation> </message> <message> - <location filename="../Project/Project.py" line="2331"/> + <location filename="../Project/Project.py" line="2333"/> <source>None</source> <translation>Auncun</translation> </message> <message> - <location filename="../Project/Project.py" line="344"/> + <location filename="../Project/Project.py" line="346"/> <source>Registering Project Type</source> <translation>Enregistrement du type de projet</translation> </message> <message> <location filename="../Project/Project.py" line="3864"/> <source>Create Plugin Archive (Snapshot)</source> - <translation>Création d'une archive plugin (Snapshot)</translation> + <translation type="obsolete">Création d'une archive plugin (Snapshot)</translation> </message> <message> <location filename="../Project/Project.py" line="3864"/> <source>Create Plugin Archive (&Snapshot)</source> - <translation>Création d'une archive plugin (&Snapshot)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="1261"/> + <translation type="obsolete">Création d'une archive plugin (&Snapshot)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="1263"/> <source>You have to specify a translation pattern first.</source> <translation>Vous devez d'abord spécifier un pattern de traduction.</translation> </message> <message> - <location filename="../Project/Project.py" line="2430"/> + <location filename="../Project/Project.py" line="2432"/> <source>Translation Pattern</source> <translation>Pattern de traduction</translation> </message> <message> - <location filename="../Project/Project.py" line="2430"/> + <location filename="../Project/Project.py" line="2432"/> <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source> <translation>Entrer le pattern pour les fichiers de traduction (utiliser la balise '%language%' à la place de la langue à utiliser):</translation> </message> <message> - <location filename="../Project/Project.py" line="3628"/> + <location filename="../Project/Project.py" line="3630"/> <source>Lexer Associations</source> <translation>Association des types de fichiers</translation> </message> <message> - <location filename="../Project/Project.py" line="3628"/> + <location filename="../Project/Project.py" line="3630"/> <source>Lexer Associations...</source> <translation>Association des types de fichiers...</translation> </message> <message> - <location filename="../Project/Project.py" line="3632"/> - <source>Show the project lexer associations (overriding defaults)</source> - <translation>Affiche les asociations Fichier/Type de fichier pour le projet (sans tenir compte des valeurs par défaut)</translation> - </message> - <message> <location filename="../Project/Project.py" line="3634"/> + <source>Show the project lexer associations (overriding defaults)</source> + <translation>Affiche les asociations Fichier/Type de fichier pour le projet (sans tenir compte des valeurs par défaut)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3636"/> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation><b>Associations des types de fichiers...</b><p>Permet d'associer les types de fichiers aux analyseurs syntaxiques pour le projet en cours. Ces associations sont prioritaires sur les associations de fichiers configurées par défaut.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="260"/> + <location filename="../Project/Project.py" line="262"/> <source>PySide GUI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="261"/> + <location filename="../Project/Project.py" line="263"/> <source>PySide Console</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="161"/> + <location filename="../Project/Project.py" line="163"/> <source>Python3 Files (*.py *.py3);;Python3 GUI Files (*.pyw *.pyw3);;</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="699"/> + <location filename="../Project/Project.py" line="701"/> <source><p>The project file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="799"/> + <location filename="../Project/Project.py" line="801"/> <source><p>The project file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="835"/> + <location filename="../Project/Project.py" line="837"/> <source><p>The user specific project properties file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="859"/> + <location filename="../Project/Project.py" line="861"/> <source><p>The user specific project properties file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="917"/> + <location filename="../Project/Project.py" line="919"/> <source><p>The project session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="953"/> + <location filename="../Project/Project.py" line="955"/> <source><p>The project session file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="982"/> + <location filename="../Project/Project.py" line="984"/> <source><p>The project session file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1016"/> + <location filename="../Project/Project.py" line="1018"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1036"/> + <location filename="../Project/Project.py" line="1038"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1093"/> + <location filename="../Project/Project.py" line="1095"/> <source><p>The project debugger properties file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1127"/> + <location filename="../Project/Project.py" line="1129"/> <source><p>The project debugger properties file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1153"/> + <location filename="../Project/Project.py" line="1155"/> <source><p>The project debugger properties file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1383"/> + <location filename="../Project/Project.py" line="1385"/> <source><p>The selected translation file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1596"/> + <location filename="../Project/Project.py" line="1598"/> <source><p>The file <b>{0}</b> already exists.</p><p>Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2832"/> + <location filename="../Project/Project.py" line="2834"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"><p>Le fichier <b>{0}</b>existe déjà. Écraser ?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1810"/> + <location filename="../Project/Project.py" line="1812"/> <source><p>The file <b>{0}</b> could not be renamed.<br />Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2046"/> + <location filename="../Project/Project.py" line="2048"/> <source><p>The selected file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2075"/> + <location filename="../Project/Project.py" line="2077"/> <source><p>The selected directory <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2157"/> + <location filename="../Project/Project.py" line="2159"/> <source><p>The project directory <b>{0}</b> could not be created.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4373"/> + <location filename="../Project/Project.py" line="4377"/> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4776"/> + <location filename="../Project/Project.py" line="4780"/> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4836"/> - <source><p>The file <b>PKGLIST</b> could not be read.</p><p>Reason: {0}</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4892"/> + <location filename="../Project/Project.py" line="4911"/> <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"></translation> </message> <message> - <location filename="../Project/Project.py" line="4961"/> + <location filename="../Project/Project.py" line="4985"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1522"/> + <location filename="../Project/Project.py" line="1524"/> <source><p>The selected file <b>{0}</b> could not be added to <b>{1}</b>.</p><p>Reason: {2}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1578"/> + <location filename="../Project/Project.py" line="1580"/> <source><p>The target directory <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="158"/> + <location filename="../Project/Project.py" line="160"/> <source>Python2 Files (*.py2);;Python2 GUI Files (*.pyw2);;</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2220"/> + <location filename="../Project/Project.py" line="2222"/> <source>Create main script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2220"/> + <location filename="../Project/Project.py" line="2222"/> <source><p>The mainscript <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3817"/> + <location filename="../Project/Project.py" line="3819"/> <source>Load Diagram</source> <translation type="unfinished">Charger le diagramme</translation> </message> <message> - <location filename="../Project/Project.py" line="3817"/> + <location filename="../Project/Project.py" line="3819"/> <source>&Load Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3821"/> - <source>Load a diagram from file.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3823"/> + <source>Load a diagram from file.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3825"/> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="321"/> + <location filename="../Project/Project.py" line="323"/> <source><p>The Programming Language <b>{0}</b> is not supported.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="344"/> + <location filename="../Project/Project.py" line="346"/> <source><p>The Project type <b>{0}</b> is already registered.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="332"/> + <location filename="../Project/Project.py" line="334"/> <source><p>The Project type <b>{0}</b> is already registered with Programming Language <b>{1}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="242"/> + <location filename="../Project/Project.py" line="244"/> <source>PyQt5 GUI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="243"/> + <location filename="../Project/Project.py" line="245"/> <source>PyQt5 Console</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4361"/> + <location filename="../Project/Project.py" line="4365"/> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5003"/> + <location filename="../Project/Project.py" line="5027"/> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3837"/> - <source>Create an initial PKGLIST file for an eric6 plugin.</source> - <translation type="unfinished">Créé un fichier PKGLIST initial pour un plugin eric4. {5 ?} {6 ?}</translation> - </message> - <message> <location filename="../Project/Project.py" line="3839"/> + <source>Create an initial PKGLIST file for an eric6 plugin.</source> + <translation type="unfinished">Créé un fichier PKGLIST initial pour un plugin eric4. {5 ?} {6 ?}</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3841"/> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric6 plugin archive. The list is created from the project file.</p></source> <translation type="unfinished"><b>Création de la liste de package</b><p>Cette commande créé la liste des fichiers à inclure dans l'archive d'un plugin eric4. Cette liste est créée à partir du fichier projet.</p> {5 ?} {6 ?}</translation> </message> <message> <location filename="../Project/Project.py" line="3853"/> <source>Create an eric6 plugin archive file.</source> - <translation type="unfinished">Créé le fichier d'archive pour un plugin eric4. {5 ?} {6 ?}</translation> + <translation type="obsolete">Créé le fichier d'archive pour un plugin eric4. {5 ?} {6 ?}</translation> </message> <message> <location filename="../Project/Project.py" line="3855"/> <source><b>Create Plugin Archive</b><p>This creates an eric6 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name.</p></source> - <translation type="unfinished"><b>Création de l'archive du plugin</b><p>Ceci créé une archive contenant l'ensemble des fichiers indiqués dans le fichier PKGLIST. Le nom de l'archive est construit à partir du nom du script principal.</p> {5 ?} {6 ?}</translation> + <translation type="obsolete"><b>Création de l'archive du plugin</b><p>Ceci créé une archive contenant l'ensemble des fichiers indiqués dans le fichier PKGLIST. Le nom de l'archive est construit à partir du nom du script principal.</p> {5 ?} {6 ?}</translation> </message> <message> <location filename="../Project/Project.py" line="3869"/> <source>Create an eric6 plugin archive file (snapshot release).</source> - <translation type="unfinished">Créé une archive de plugin eric4 (snapshot release). {5 ?} {6 ?}</translation> + <translation type="obsolete">Créé une archive de plugin eric4 (snapshot release). {5 ?} {6 ?}</translation> </message> <message> <location filename="../Project/Project.py" line="3871"/> <source><b>Create Plugin Archive (Snapshot)</b><p>This creates an eric6 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name. The version entry of the main script is modified to reflect a snapshot release.</p></source> - <translation type="unfinished"><b>Création d'une archive de plugin (Snapshot)</b><p>Ceci permet de créer un plugin en utilisant la liste des fichiers indiqués dans le fichier PKGLIST. Le nom de l'archive est créé à partir du nom du script principal. Le champ 'version' du script principal est modifié pour indiquer une version snapshot.</p> {5 ?} {6 ?}</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4866"/> + <translation type="obsolete"><b>Création d'une archive de plugin (Snapshot)</b><p>Ceci permet de créer un plugin en utilisant la liste des fichiers indiqués dans le fichier PKGLIST. Le nom de l'archive est créé à partir du nom du script principal. Le champ 'version' du script principal est modifié pour indiquer une version snapshot.</p> {5 ?} {6 ?}</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4881"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4915"/> - <source><p>The eric6 plugin archive file <b>{0}</b> was created successfully.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="240"/> + <location filename="../Project/Project.py" line="242"/> <source>PyQt4 GUI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="241"/> + <location filename="../Project/Project.py" line="243"/> <source>PyQt4 Console</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="244"/> + <location filename="../Project/Project.py" line="246"/> <source>Eric6 Plugin</source> <translation type="unfinished">Plugin Eric4 {6 ?}</translation> </message> <message> - <location filename="../Project/Project.py" line="2651"/> + <location filename="../Project/Project.py" line="2653"/> <source>Create project management directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2651"/> + <location filename="../Project/Project.py" line="2653"/> <source><p>The project directory <b>{0}</b> is not writable.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3567"/> + <location filename="../Project/Project.py" line="3569"/> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3573"/> - <source>Search for a file in the project list of files.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3575"/> + <source>Search for a file in the project list of files.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3577"/> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3567"/> + <location filename="../Project/Project.py" line="3569"/> <source>Search Project File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3567"/> + <location filename="../Project/Project.py" line="3569"/> <source>Search Project File...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4799"/> - <source>Select a package list file:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4806"/> - <source><p>No package list file selected. Aborting...</p></source> + <location filename="../Project/Project.py" line="4834"/> + <source>Create Plugin Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3850"/> + <source>Create Plugin &Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3855"/> + <source>Create eric6 plugin archive files.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3857"/> + <source><b>Create Plugin Archives</b><p>This creates eric6 plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3867"/> + <source>Create Plugin Archives (Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3867"/> + <source>Create Plugin Archives (&Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3872"/> + <source>Create eric6 plugin archive files (snapshot releases).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3874"/> + <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric6 plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4813"/> + <source>Select package lists:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>Creating plugin archives...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>Abort</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>%v/%m Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4834"/> + <source>Coverage</source> + <translation type="obsolete">Coverage</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4847"/> + <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4930"/> + <source><p>The eric6 plugin archive files were created with some errors.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4933"/> + <source><p>The eric6 plugin archive files were created successfully.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4823"/> + <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished"></translation> </message> </context> @@ -42522,7 +42600,7 @@ <translation>Executées</translation> </message> <message> - <location filename="../DataViews/PyCoverageDialog.py" line="349"/> + <location filename="../DataViews/PyCoverageDialog.ui" line="172"/> <source>Coverage</source> <translation>Coverage</translation> </message> @@ -42572,7 +42650,7 @@ </translation> </message> <message> - <location filename="../DataViews/PyCoverageDialog.py" line="345"/> + <location filename="../DataViews/PyCoverageDialog.ui" line="192"/> <source>%v/%m Files</source> <translation type="unfinished"></translation> </message> @@ -42600,7 +42678,7 @@ <translation>Effacer toutes les infos</translation> </message> <message> - <location filename="../DataViews/PyProfileDialog.py" line="233"/> + <location filename="../DataViews/PyProfileDialog.ui" line="20"/> <source>Profile Results</source> <translation>Résultats du profiling</translation> </message> @@ -47246,7 +47324,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.py" line="150"/> + <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.ui" line="89"/> <source>Remove Filters</source> <translation type="unfinished"></translation> </message> @@ -47256,7 +47334,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.py" line="178"/> + <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.ui" line="99"/> <source>Remove Attributes</source> <translation type="unfinished"></translation> </message> @@ -48724,7 +48802,7 @@ <context> <name>SendRefererWhitelistDialog</name> <message> - <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="52"/> + <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.ui" line="14"/> <source>Send Referer Whitelist</source> <translation type="unfinished"></translation> </message> @@ -49930,7 +50008,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Snapshot/SnapWidget.py" line="531"/> + <location filename="../Snapshot/SnapWidget.ui" line="20"/> <source>eric6 Snapshot</source> <translation type="unfinished"></translation> </message> @@ -52512,7 +52590,7 @@ <context> <name>SvnDiffDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="171"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.ui" line="14"/> <source>Subversion Diff</source> <translation>Subversion Diff</translation> </message> @@ -52789,12 +52867,12 @@ <translation>Log Subversion</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="621"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="112"/> <source>Revision</source> <translation>Révision</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="618"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="117"/> <source>Author</source> <translation>Auteur</translation> </message> @@ -52804,7 +52882,7 @@ <translation>Date</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="141"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="127"/> <source>Message</source> <translation>Message</translation> </message> @@ -53291,7 +53369,7 @@ <translation>&Protocole:</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="128"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.ui" line="45"/> <source>&URL:</source> <translation>&URL:</translation> </message> @@ -53402,7 +53480,7 @@ <translation>Sélectionner le protocole d'accès au référentiel</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.py" line="95"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.ui" line="45"/> <source>&URL:</source> <translation>&URL:</translation> </message> @@ -54701,7 +54779,7 @@ <translation>ignoré</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="394"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="14"/> <source>Subversion Status</source> <translation>Status Subversion</translation> </message> @@ -54711,7 +54789,7 @@ <translation>Commit des changements dans le référentiel...</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="711"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="80"/> <source>Commit</source> <translation>Commit</translation> </message> @@ -60199,7 +60277,7 @@ <context> <name>UnittestDialog</name> <message> - <location filename="../PyUnit/UnittestDialog.py" line="400"/> + <location filename="../PyUnit/UnittestDialog.ui" line="14"/> <source>Unittest</source> <translation>Tests unitaires</translation> </message> @@ -63084,62 +63162,62 @@ <context> <name>VariablesViewer</name> <message> - <location filename="../Debugger/VariablesViewer.py" line="354"/> + <location filename="../Debugger/VariablesViewer.py" line="358"/> <source>Global Variables</source> <translation>Variables globales</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="355"/> - <source>Globals</source> - <translation>Globales</translation> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="359"/> + <source>Globals</source> + <translation>Globales</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="363"/> <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="365"/> + <location filename="../Debugger/VariablesViewer.py" line="369"/> <source>Local Variables</source> <translation>Variables locales</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="366"/> - <source>Locals</source> - <translation>Locales</translation> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="370"/> + <source>Locals</source> + <translation>Locales</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="374"/> <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="366"/> + <location filename="../Debugger/VariablesViewer.py" line="370"/> <source>Value</source> <translation>Valeur</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="366"/> + <location filename="../Debugger/VariablesViewer.py" line="370"/> <source>Type</source> <translation>Type</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="401"/> + <location filename="../Debugger/VariablesViewer.py" line="405"/> <source>Show Details...</source> <translation>Afficher les détails...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="409"/> + <location filename="../Debugger/VariablesViewer.py" line="413"/> <source>Configure...</source> <translation>Configuration...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="629"/> + <location filename="../Debugger/VariablesViewer.py" line="633"/> <source>{0} items</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="407"/> + <location filename="../Debugger/VariablesViewer.py" line="411"/> <source>Refresh</source> <translation type="unfinished">Rafraichir</translation> </message>
--- a/i18n/eric6_it.ts Sun Oct 16 12:20:30 2016 +0200 +++ b/i18n/eric6_it.ts Sun Oct 16 14:42:46 2016 +0200 @@ -390,7 +390,7 @@ <context> <name>AddBookmarkDialog</name> <message> - <location filename="../WebBrowser/Bookmarks/AddBookmarkDialog.py" line="198"/> + <location filename="../WebBrowser/Bookmarks/AddBookmarkDialog.ui" line="26"/> <source>Add Bookmark</source> <translation>Aggiungere segnalibro</translation> </message> @@ -1782,7 +1782,7 @@ <translation>Modifica &Indirizzo</translation> </message> <message> - <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="169"/> + <location filename="../WebBrowser/Bookmarks/BookmarksDialog.ui" line="75"/> <source>&Delete</source> <translation>Can&cella</translation> </message> @@ -2494,12 +2494,12 @@ <translation>Premi per salvare il tracciamento chiamate su un file di testo</translation> </message> <message> - <location filename="../Debugger/CallTraceViewer.py" line="54"/> + <location filename="../Debugger/CallTraceViewer.ui" line="109"/> <source>From</source> <translation>Da</translation> </message> <message> - <location filename="../Debugger/CallTraceViewer.py" line="54"/> + <location filename="../Debugger/CallTraceViewer.ui" line="114"/> <source>To</source> <translation>A</translation> </message> @@ -2664,7 +2664,7 @@ <translation>Premi per cancellare un edit condiviso</translation> </message> <message> - <location filename="../Cooperation/ChatWidget.py" line="513"/> + <location filename="../Cooperation/ChatWidget.ui" line="230"/> <source>Clear</source> <translation>Pulisci</translation> </message> @@ -2963,7 +2963,7 @@ <context> <name>ClickToFlashWhitelistDialog</name> <message> - <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.py" line="54"/> + <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.ui" line="14"/> <source>ClickToFlash Whitelist</source> <translation>Lista privilegiata ClickToFlash</translation> </message> @@ -4289,22 +4289,22 @@ <translation>&Sincronizza barre di scorrimento orizzontali</translation> </message> <message> - <location filename="../UI/CompareDialog.py" line="356"/> + <location filename="../UI/CompareDialog.py" line="354"/> <source>Total: {0}</source> <translation>Totale: {0}</translation> </message> <message> + <location filename="../UI/CompareDialog.py" line="356"/> + <source>Changed: {0}</source> + <translation>Modificati: {0}</translation> + </message> + <message> + <location filename="../UI/CompareDialog.py" line="357"/> + <source>Added: {0}</source> + <translation>Aggiunti: {0}</translation> + </message> + <message> <location filename="../UI/CompareDialog.py" line="358"/> - <source>Changed: {0}</source> - <translation>Modificati: {0}</translation> - </message> - <message> - <location filename="../UI/CompareDialog.py" line="359"/> - <source>Added: {0}</source> - <translation>Aggiunti: {0}</translation> - </message> - <message> - <location filename="../UI/CompareDialog.py" line="360"/> <source>Deleted: {0}</source> <translation>Cancellati: {0}</translation> </message> @@ -4927,7 +4927,7 @@ <translation type="unfinished">Dominio:</translation> </message> <message> - <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="177"/> + <location filename="../WebBrowser/CookieJar/CookiesDialog.ui" line="223"/> <source><no cookie selected></source> <translation type="unfinished"></translation> </message> @@ -7733,7 +7733,7 @@ <context> <name>DownloadManager</name> <message> - <location filename="../WebBrowser/Download/DownloadManager.py" line="363"/> + <location filename="../WebBrowser/Download/DownloadManager.ui" line="14"/> <source>Downloads</source> <translation>Downloads</translation> </message> @@ -8000,6 +8000,19 @@ </message> </context> <context> + <name>E5ListSelectionDialog</name> + <message> + <location filename="../E5Gui/E5ListSelectionDialog.ui" line="14"/> + <source>Select from List</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../E5Gui/E5ListSelectionDialog.ui" line="23"/> + <source>Select from the list below:</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>E5MainWindow</name> <message> <location filename="../E5Gui/E5MainWindow.py" line="56"/> @@ -8218,92 +8231,92 @@ <translation>Pulsanti standard</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="41"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="257"/> <source>Abort</source> <translation>Termina</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="42"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="264"/> <source>Apply</source> <translation>Applica</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="43"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="271"/> <source>Cancel</source> <translation>Cancella</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="44"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="278"/> <source>Close</source> <translation>Chiudi</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="45"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="285"/> <source>Discard</source> <translation>Dimentica</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="46"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="292"/> <source>Help</source> <translation>Aiuto</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="47"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="299"/> <source>Ignore</source> <translation>Ignora</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="48"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="306"/> <source>No</source> <translation>No</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="49"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="313"/> <source>No to all</source> <translation>No a tutto</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="50"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="320"/> <source>Ok</source> <translation>Ok</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="51"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="327"/> <source>Open</source> <translation>Apri</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="52"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="334"/> <source>Reset</source> <translation>Resetta</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="53"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="341"/> <source>Restore defaults</source> <translation>Ripristina default</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="54"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="348"/> <source>Retry</source> <translation>Ritenta</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="55"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="355"/> <source>Save</source> <translation>Salva</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="56"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="362"/> <source>Save all</source> <translation>Salva tutto</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="57"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="369"/> <source>Yes</source> <translation>Si</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="58"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="376"/> <source>Yes to all</source> <translation>Si a tutto</translation> </message> @@ -10357,7 +10370,7 @@ <translation>Premi per selezionare il file API dalla lista dei file API installati</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="184"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="132"/> <source>Add from installed APIs</source> <translation>Aggiungi dalle APIs installate</translation> </message> @@ -10367,7 +10380,7 @@ <translation>Premi per compilare le definizioni APIs selezionate</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="236"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="159"/> <source>Compile APIs</source> <translation>Compila APIs</translation> </message> @@ -10392,7 +10405,7 @@ <translation>Premi per selezionare un file delle API dalla lista di quelli installati dai plugins</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="203"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="142"/> <source>Add from Plugin APIs</source> <translation>Aggiungi dalle API dei plugin</translation> </message> @@ -11402,7 +11415,7 @@ <translation>Seleziona il riempimento di fine linea.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="113"/> <source>Fill to end of line</source> <translation>Riempi fino a fine linea</translation> </message> @@ -11447,7 +11460,7 @@ <translation>Seleziona il font.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="69"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="103"/> <source>Font</source> <translation>Font</translation> </message> @@ -12913,7 +12926,7 @@ <translation>Modo:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="58"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1080"/> <source>Disabled</source> <translation>Disabilitato</translation> </message> @@ -13697,7 +13710,7 @@ <context> <name>EmailDialog</name> <message> - <location filename="../UI/EmailDialog.py" line="339"/> + <location filename="../UI/EmailDialog.ui" line="13"/> <source>Send bug report</source> <translation>Invia un bug report</translation> </message> @@ -15150,12 +15163,12 @@ <translation type="unfinished">Notificazioni</translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="110"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="122"/> <source>Host</source> <translation type="unfinished">Host</translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="111"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="127"/> <source>Permission</source> <translation type="unfinished"></translation> </message> @@ -15170,7 +15183,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="51"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="97"/> <source>Geolocation</source> <translation type="unfinished"></translation> </message> @@ -16314,7 +16327,7 @@ <translation type="unfinished">Nome:</translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="193"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="158"/> <source><no flash cookie selected></source> <translation type="unfinished"></translation> </message> @@ -16324,7 +16337,7 @@ <translation type="unfinished">DImensione:</translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="122"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="137"/> <source>Origin:</source> <translation type="unfinished"></translation> </message> @@ -16359,7 +16372,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="213"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="225"/> <source>Remove Cookie</source> <translation type="unfinished"></translation> </message> @@ -16787,7 +16800,7 @@ <context> <name>GreaseMonkeyAddScriptDialog</name> <message> - <location filename="../WebBrowser/GreaseMonkey/GreaseMonkeyAddScriptDialog.py" line="105"/> + <location filename="../WebBrowser/GreaseMonkey/GreaseMonkeyAddScriptDialog.ui" line="14"/> <source>GreaseMonkey Script Installation</source> <translation>Installazione script GreaseMonkey</translation> </message> @@ -22503,7 +22516,7 @@ <context> <name>HgAddSubrepositoryDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.py" line="98"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.ui" line="14"/> <source>Add Sub-repository</source> <translation type="unfinished"></translation> </message> @@ -23592,7 +23605,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="247"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.ui" line="73"/> <source>Resolved</source> <translation type="unfinished"></translation> </message> @@ -23602,7 +23615,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="245"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.ui" line="83"/> <source>Unresolved</source> <translation type="unfinished"></translation> </message> @@ -24237,7 +24250,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="317"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.ui" line="55"/> <source>Revision</source> <translation>Revisione</translation> </message> @@ -24516,7 +24529,7 @@ <context> <name>HgLogBrowserDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="71"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="14"/> <source>Mercurial Log</source> <translation>Mercurial Log</translation> </message> @@ -24546,17 +24559,17 @@ <translation>Seleziona il campo su cui filtrare</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="96"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="181"/> <source>Revision</source> <translation>Revisione</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="97"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="191"/> <source>Author</source> <translation>Autore</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="98"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="201"/> <source>Message</source> <translation>Messaggio</translation> </message> @@ -28434,7 +28447,7 @@ <context> <name>HgStatusDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="313"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="14"/> <source>Mercurial Status</source> <translation>Mercurial Status</translation> </message> @@ -28576,7 +28589,7 @@ <translation>Il processo {0} non può essere avviato. Assicurarsi che sia nel path.</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="708"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="87"/> <source>Commit</source> <translation>Commit</translation> </message> @@ -28701,7 +28714,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="854"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="203"/> <source>Differences</source> <translation type="unfinished"></translation> </message> @@ -29460,7 +29473,7 @@ <translation>Premi per rimuovere gli elementi selezionati</translation> </message> <message> - <location filename="../WebBrowser/History/HistoryDialog.py" line="114"/> + <location filename="../WebBrowser/History/HistoryDialog.ui" line="75"/> <source>&Remove</source> <translation>&Rimuovi</translation> </message> @@ -35332,92 +35345,92 @@ <translation>Pulsanti standard</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="40"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="219"/> <source>Apply</source> <translation>Applica</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="39"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="226"/> <source>Abort</source> <translation>Termina</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="41"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="233"/> <source>Cancel</source> <translation>Cancella</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="45"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="240"/> <source>Ignore</source> <translation>Ignora</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="54"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="247"/> <source>Save all</source> <translation>Salva tutto</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="53"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="254"/> <source>Save</source> <translation>Salva</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="43"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="261"/> <source>Discard</source> <translation>Dimentica</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="56"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="268"/> <source>Yes to all</source> <translation>Si a tutto</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="49"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="275"/> <source>Open</source> <translation>Apri</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="50"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="282"/> <source>Reset</source> <translation>Resetta</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="48"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="289"/> <source>Ok</source> <translation>Ok</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="46"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="296"/> <source>No</source> <translation>No</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="44"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="303"/> <source>Help</source> <translation>Aiuto</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="47"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="310"/> <source>No to all</source> <translation>No a tutto</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="52"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="317"/> <source>Retry</source> <translation>Ritenta</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="51"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="324"/> <source>Restore defaults</source> <translation>Ripristina default</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="55"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="331"/> <source>Yes</source> <translation>Si</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="42"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="338"/> <source>Close</source> <translation>Chiudi</translation> </message> @@ -37184,7 +37197,7 @@ <context> <name>NoCacheHostsDialog</name> <message> - <location filename="../Helpviewer/Network/NoCacheHostsDialog.py" line="52"/> + <location filename="../Helpviewer/Network/NoCacheHostsDialog.ui" line="14"/> <source>Not Cached Hosts</source> <translation type="unfinished"></translation> </message> @@ -37292,7 +37305,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/NotificationsPage.py" line="81"/> + <location filename="../Preferences/ConfigurationPages/NotificationsPage.ui" line="146"/> <source>Visual Selection</source> <translation type="unfinished"></translation> </message> @@ -37964,7 +37977,7 @@ <context> <name>PasswordsDialog</name> <message> - <location filename="../WebBrowser/Passwords/PasswordsDialog.py" line="91"/> + <location filename="../WebBrowser/Passwords/PasswordsDialog.ui" line="14"/> <source>Saved Passwords</source> <translation>Password salvate</translation> </message> @@ -38528,7 +38541,7 @@ <translation>Alcuni plugin non possono essere installati.</translation> </message> <message> - <location filename="../PluginManager/PluginInstallDialog.py" line="470"/> + <location filename="../PluginManager/PluginInstallDialog.py" line="476"/> <source>Unspecific exception installing plugin.</source> <translation>Eccezione non specificata nell'installazione del plugin.</translation> </message> @@ -38591,7 +38604,7 @@ <translation><p>Il modulo plugin <b>{0}</b> esiste. Uscita...</p></translation> </message> <message> - <location filename="../PluginManager/PluginInstallDialog.py" line="463"/> + <location filename="../PluginManager/PluginInstallDialog.py" line="469"/> <source>Error installing plugin. Reason: {0}</source> <translation>Errore nell'installazione del plugin, Motivo: {0}</translation> </message> @@ -38614,7 +38627,7 @@ <translation>Il modulo manca dell'attributo 'pluginType' e/oppure 'pluginTypename'.</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1103"/> + <location filename="../PluginManager/PluginManager.py" line="1106"/> <source>Plugin Manager Error</source> <translation>Errore del gestore dei Plugin</translation> </message> @@ -38634,27 +38647,27 @@ <translation>Il modulo ha fallito il caricamento. Errore: {0}</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1103"/> + <location filename="../PluginManager/PluginManager.py" line="1106"/> <source><p>The plugin download directory <b>{0}</b> could not be created. Please configure it via the configuration dialog.</p><p>Reason: {1}</p></source> <translation><p>La directory di download dei plugin <b>{0}</b> non può essere creata. Per favore configurarla con il dialogo di configurazione.</p><p>Motivo: {1}</p></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1179"/> + <location filename="../PluginManager/PluginManager.py" line="1182"/> <source>Error downloading file</source> <translation>Errone nello scaricamento del file</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1179"/> + <location filename="../PluginManager/PluginManager.py" line="1182"/> <source><p>Could not download the requested file from {0}.</p><p>Error: {1}</p></source> <translation><p>Non posso scaricare il file richiesto da {0}</p><p>Errore: {1}</p></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1216"/> + <location filename="../PluginManager/PluginManager.py" line="1219"/> <source>New plugin versions available</source> <translation>E' disponibile una nuova versione del plug-in</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1216"/> + <location filename="../PluginManager/PluginManager.py" line="1219"/> <source><p>There are new plug-ins or plug-in updates available. Use the plug-in repository dialog to get them.</p></source> <translation type="unfinished"><p>Sono disponibili nuovi plug-in o aggiornamenti di plug-in. Usa la finestra di dialogo del repository di plug-in per ottenerli.</p></translation> </message> @@ -39580,757 +39593,757 @@ <context> <name>Project</name> <message> - <location filename="../Project/Project.py" line="699"/> + <location filename="../Project/Project.py" line="701"/> <source>Read project file</source> <translation>Leggi file progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="799"/> + <location filename="../Project/Project.py" line="801"/> <source>Save project file</source> <translation>Salva file progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="917"/> + <location filename="../Project/Project.py" line="919"/> <source>Read project session</source> <translation>Leggi sessione del progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="1139"/> + <location filename="../Project/Project.py" line="1141"/> <source>Please save the project first.</source> <translation>Prima salvare il progetto.</translation> </message> <message> - <location filename="../Project/Project.py" line="953"/> + <location filename="../Project/Project.py" line="955"/> <source>Save project session</source> <translation>Salva sessione di progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="1261"/> + <location filename="../Project/Project.py" line="1263"/> <source>Add Language</source> <translation>Aggiungi Lingua</translation> </message> <message> - <location filename="../Project/Project.py" line="1383"/> + <location filename="../Project/Project.py" line="1385"/> <source>Delete translation</source> <translation>Cancella traduzione</translation> </message> <message> - <location filename="../Project/Project.py" line="1534"/> + <location filename="../Project/Project.py" line="1536"/> <source>Add file</source> <translation>Aggiungi file</translation> </message> <message> - <location filename="../Project/Project.py" line="1651"/> + <location filename="../Project/Project.py" line="1653"/> <source>The target directory must not be empty.</source> <translation>La directory di destinazione non deve essere vuota.</translation> </message> <message> - <location filename="../Project/Project.py" line="1662"/> + <location filename="../Project/Project.py" line="1664"/> <source>Add directory</source> <translation>Aggiungi directory</translation> </message> <message> - <location filename="../Project/Project.py" line="1662"/> + <location filename="../Project/Project.py" line="1664"/> <source>The source directory must not be empty.</source> <translation>La directory sorgente non deve essere vuota.</translation> </message> <message> - <location filename="../Project/Project.py" line="2046"/> + <location filename="../Project/Project.py" line="2048"/> <source>Delete file</source> <translation>Cancella file</translation> </message> <message> - <location filename="../Project/Project.py" line="2157"/> + <location filename="../Project/Project.py" line="2159"/> <source>Create project directory</source> <translation>Crea la directory del progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="3441"/> + <location filename="../Project/Project.py" line="3443"/> <source>New project</source> <translation>Nuovo progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="3455"/> + <location filename="../Project/Project.py" line="3457"/> <source>Open project</source> <translation>Apri progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="3492"/> + <location filename="../Project/Project.py" line="3494"/> <source>Save project as</source> <translation>Salva progetto come</translation> </message> <message> - <location filename="../Project/Project.py" line="2832"/> + <location filename="../Project/Project.py" line="2834"/> <source>Save File</source> <translation>Salva file</translation> </message> <message> - <location filename="../Project/Project.py" line="2868"/> + <location filename="../Project/Project.py" line="2870"/> <source>Close Project</source> <translation>Chiudi progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="2868"/> + <location filename="../Project/Project.py" line="2870"/> <source>The current project has unsaved changes.</source> <translation>Il progetto attuale ha delle modifiche non salvate.</translation> </message> <message> - <location filename="../Project/Project.py" line="3671"/> + <location filename="../Project/Project.py" line="3673"/> <source>&Save</source> <translation>&Salva</translation> </message> <message> - <location filename="../Project/Project.py" line="3441"/> + <location filename="../Project/Project.py" line="3443"/> <source>&New...</source> <translation>&Nuovo...</translation> </message> <message> - <location filename="../Project/Project.py" line="3446"/> + <location filename="../Project/Project.py" line="3448"/> <source>Generate a new project</source> <translation>Genera un nuovo progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="3447"/> + <location filename="../Project/Project.py" line="3449"/> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>Nuovo...</b><p>Apre un dialogo per l'inserimento delle informazioni per un nuovo progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3455"/> + <location filename="../Project/Project.py" line="3457"/> <source>&Open...</source> <translation>&Apri...</translation> </message> <message> - <location filename="../Project/Project.py" line="3460"/> + <location filename="../Project/Project.py" line="3462"/> <source>Open an existing project</source> <translation>Apri un progetto esistente</translation> </message> <message> - <location filename="../Project/Project.py" line="3461"/> + <location filename="../Project/Project.py" line="3463"/> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>Apri...</b><p>Apre un progetto esistente.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3468"/> + <location filename="../Project/Project.py" line="3470"/> <source>Close project</source> <translation>Chiudi progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="3468"/> + <location filename="../Project/Project.py" line="3470"/> <source>&Close</source> <translation>&Chiudi</translation> </message> <message> - <location filename="../Project/Project.py" line="3472"/> + <location filename="../Project/Project.py" line="3474"/> <source>Close the current project</source> <translation>Chiudi il progetto corrente</translation> </message> <message> - <location filename="../Project/Project.py" line="3473"/> + <location filename="../Project/Project.py" line="3475"/> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>Chiudi</b><p>Chiude l'attuale progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3480"/> + <location filename="../Project/Project.py" line="3482"/> <source>Save project</source> <translation>Salva progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="3484"/> + <location filename="../Project/Project.py" line="3486"/> <source>Save the current project</source> <translation>Salva il progetto corrente</translation> </message> <message> - <location filename="../Project/Project.py" line="3485"/> + <location filename="../Project/Project.py" line="3487"/> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>Salva</b><p>Salva l'attuale progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3492"/> + <location filename="../Project/Project.py" line="3494"/> <source>Save &as...</source> <translation>S&alva come...</translation> </message> <message> - <location filename="../Project/Project.py" line="3496"/> - <source>Save the current project to a new file</source> - <translation>Salva il progetto attuale come un nuovo file</translation> - </message> - <message> <location filename="../Project/Project.py" line="3498"/> + <source>Save the current project to a new file</source> + <translation>Salva il progetto attuale come un nuovo file</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3500"/> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>Salva as </b><p>Salva l'attuale progetto come nuovo.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3538"/> + <location filename="../Project/Project.py" line="3540"/> <source>Add translation to project</source> <translation>Aggiungi le traduzioni al progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="3538"/> + <location filename="../Project/Project.py" line="3540"/> <source>Add &translation...</source> <translation>Aggiungi &traduzione...</translation> </message> <message> - <location filename="../Project/Project.py" line="3543"/> - <source>Add a translation to the current project</source> - <translation>Aggiungi le traduzioni al progetto corrente</translation> - </message> - <message> <location filename="../Project/Project.py" line="3545"/> + <source>Add a translation to the current project</source> + <translation>Aggiungi le traduzioni al progetto corrente</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3547"/> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation><b>Aggiungi traduzione...</b><p>Apre un dialogo per aggiungere una traduzione al progetto corrente.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3553"/> + <location filename="../Project/Project.py" line="3555"/> <source>Search new files</source> <translation>Cerca nuovi file</translation> </message> <message> - <location filename="../Project/Project.py" line="3553"/> + <location filename="../Project/Project.py" line="3555"/> <source>Searc&h new files...</source> <translation>Cerca &nuovi file...</translation> </message> <message> - <location filename="../Project/Project.py" line="3557"/> + <location filename="../Project/Project.py" line="3559"/> <source>Search new files in the project directory.</source> <translation>Cerca nei file nella directory del progetto.</translation> </message> <message> - <location filename="../Project/Project.py" line="3582"/> + <location filename="../Project/Project.py" line="3584"/> <source>Project properties</source> <translation>Proprietà del progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="3582"/> + <location filename="../Project/Project.py" line="3584"/> <source>&Properties...</source> <translation>&Proprietà...</translation> </message> <message> - <location filename="../Project/Project.py" line="3587"/> + <location filename="../Project/Project.py" line="3589"/> <source>Show the project properties</source> <translation>Mostra le proprietà del progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="3588"/> + <location filename="../Project/Project.py" line="3590"/> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation><b>Proprietà...</b><p>Mosta un dialogo per modificare le proprietà di un progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3710"/> + <location filename="../Project/Project.py" line="3712"/> <source>Load session</source> <translation>Carica sessione</translation> </message> <message> - <location filename="../Project/Project.py" line="3714"/> + <location filename="../Project/Project.py" line="3716"/> <source>Load the projects session file.</source> <translation>Carica il file di sessione del progetto.</translation> </message> <message> - <location filename="../Project/Project.py" line="3715"/> + <location filename="../Project/Project.py" line="3717"/> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Carica sessione</b><p>Questo carica la sessione del progetto.La sessione è composta dai seguenti dati.<br>- tutti i file sorgente aperti<br>- tutti i breakpoint<br>- gli argomenti alla riga di comango<br>- la directory di lavoro<br>- il flag di segnalazione delle eccezioni</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3728"/> + <location filename="../Project/Project.py" line="3730"/> <source>Save session</source> <translation>Salva sessione</translation> </message> <message> - <location filename="../Project/Project.py" line="3732"/> + <location filename="../Project/Project.py" line="3734"/> <source>Save the projects session file.</source> <translation>Salva il file sessione del progetto.</translation> </message> <message> - <location filename="../Project/Project.py" line="3733"/> + <location filename="../Project/Project.py" line="3735"/> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Salva sessione</b><p>Questo carica la sessione del progetto.La sessione è composta dai seguenti dati.<br>- tutti i file sorgente aperti<br>- tutti i breakpoint<br>- gli argomenti alla riga di comango<br>- la directory di lavoro<br>- il flag di segnalazione delle eccezioni</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3760"/> + <location filename="../Project/Project.py" line="3762"/> <source>Code Metrics</source> <translation>Statistiche codice</translation> </message> <message> - <location filename="../Project/Project.py" line="3760"/> + <location filename="../Project/Project.py" line="3762"/> <source>&Code Metrics...</source> <translation>Statistiche &codice...</translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> - <source>Show some code metrics for the project.</source> - <translation>Mostra alcune statistiche del codice per il progetto.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3766"/> + <source>Show some code metrics for the project.</source> + <translation>Mostra alcune statistiche del codice per il progetto.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3768"/> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation><b>Statistiche codice...</b><p>Mostra alcune statistiche di tutti i file Python nel progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3774"/> + <location filename="../Project/Project.py" line="3776"/> <source>Python Code Coverage</source> <translation>Analisi codice Python</translation> </message> <message> - <location filename="../Project/Project.py" line="3774"/> + <location filename="../Project/Project.py" line="3776"/> <source>Code Co&verage...</source> <translation>A&nalisi codice...</translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> - <source>Show code coverage information for the project.</source> - <translation>Mostra le informazioni dell'analisi del codice del progetto.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3780"/> + <source>Show code coverage information for the project.</source> + <translation>Mostra le informazioni dell'analisi del codice del progetto.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3782"/> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation><b>Analisi codice...</b><p>Mostra le analisi del codice di tutti i file Python nel progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4564"/> + <location filename="../Project/Project.py" line="4568"/> <source>Profile Data</source> <translation>Profilazione dati</translation> </message> <message> - <location filename="../Project/Project.py" line="3788"/> + <location filename="../Project/Project.py" line="3790"/> <source>&Profile Data...</source> <translation>&Profilazione dati...</translation> </message> <message> - <location filename="../Project/Project.py" line="3792"/> - <source>Show profiling data for the project.</source> - <translation>Mostra la profilazione dei dati per il progetto.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3794"/> + <source>Show profiling data for the project.</source> + <translation>Mostra la profilazione dei dati per il progetto.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3796"/> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation><b>Profilazione dati...</b><p>Mostra la profilazione dei dati per il progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4618"/> + <location filename="../Project/Project.py" line="4622"/> <source>Application Diagram</source> <translation>Diagrammi dell'applicazione</translation> </message> <message> - <location filename="../Project/Project.py" line="3803"/> + <location filename="../Project/Project.py" line="3805"/> <source>&Application Diagram...</source> <translation>Diagramma dell' &Applicazione...</translation> </message> <message> - <location filename="../Project/Project.py" line="3807"/> - <source>Show a diagram of the project.</source> - <translation>Mostra un diagramma del progetto.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3809"/> + <source>Show a diagram of the project.</source> + <translation>Mostra un diagramma del progetto.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3811"/> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>Diagrammi dell'applicazione...</b><p>Mostra un diagramma del progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3901"/> + <location filename="../Project/Project.py" line="3905"/> <source>Open &Recent Projects</source> <translation>Apri un progetto &recente</translation> </message> <message> - <location filename="../Project/Project.py" line="3909"/> + <location filename="../Project/Project.py" line="3913"/> <source>&Diagrams</source> <translation>&Diagrammi</translation> </message> <message> + <location filename="../Project/Project.py" line="3910"/> + <source>Chec&k</source> + <translation>&Controlla</translation> + </message> + <message> <location filename="../Project/Project.py" line="3906"/> - <source>Chec&k</source> - <translation>&Controlla</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3902"/> <source>&Version Control</source> <translation>Controllo di &Versione</translation> </message> <message> - <location filename="../Project/Project.py" line="3908"/> + <location filename="../Project/Project.py" line="3912"/> <source>Sho&w</source> <translation>&Mostra</translation> </message> <message> - <location filename="../Project/Project.py" line="3911"/> + <location filename="../Project/Project.py" line="3915"/> <source>Source &Documentation</source> <translation>&Documentazione sorgenti</translation> </message> <message> - <location filename="../Project/Project.py" line="4227"/> + <location filename="../Project/Project.py" line="4231"/> <source>Search New Files</source> <translation>Cerca Nuovi File</translation> </message> <message> - <location filename="../Project/Project.py" line="4227"/> + <location filename="../Project/Project.py" line="4231"/> <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="4373"/> + <location filename="../Project/Project.py" line="4377"/> <source>Version Control System</source> <translation>Version Control System</translation> </message> <message> - <location filename="../Project/Project.py" line="4491"/> + <location filename="../Project/Project.py" line="4495"/> <source>Coverage Data</source> <translation>Dati Analisi</translation> </message> <message> - <location filename="../Project/Project.py" line="4541"/> + <location filename="../Project/Project.py" line="4545"/> <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="1786"/> + <location filename="../Project/Project.py" line="1788"/> <source>Rename file</source> <translation>Rinomina file</translation> </message> <message> - <location filename="../Project/Project.py" line="1810"/> + <location filename="../Project/Project.py" line="1812"/> <source>Rename File</source> <translation>Rinomina File</translation> </message> <message> - <location filename="../Project/Project.py" line="2681"/> + <location filename="../Project/Project.py" line="2683"/> <source>New Project</source> <translation>Nuovo Progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="2233"/> + <location filename="../Project/Project.py" line="2235"/> <source>Add existing files to the project?</source> <translation>Aggiungi file esistenti al progetto ?</translation> </message> <message> - <location filename="../Project/Project.py" line="2352"/> + <location filename="../Project/Project.py" line="2354"/> <source>Would you like to edit the VCS command options?</source> <translation>Vuoi modificare le opzioni del comando VCS ?</translation> </message> <message> - <location filename="../Project/Project.py" line="2300"/> + <location filename="../Project/Project.py" line="2302"/> <source>Shall the project file be added to the repository?</source> <translation>Il file progetto deve essere aggiunto al repository ?</translation> </message> <message> - <location filename="../Project/Project.py" line="2324"/> + <location filename="../Project/Project.py" line="2326"/> <source>Select version control system for the project</source> <translation>Seleziona il version control system per il progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="3523"/> + <location filename="../Project/Project.py" line="3525"/> <source>Add directory to project</source> <translation>Aggiungi directory al progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="3523"/> + <location filename="../Project/Project.py" line="3525"/> <source>Add directory...</source> <translation>Aggiungi directory...</translation> </message> <message> - <location filename="../Project/Project.py" line="3528"/> - <source>Add a directory to the current project</source> - <translation>Aggiungi una directory al progetto corrente</translation> - </message> - <message> <location filename="../Project/Project.py" line="3530"/> + <source>Add a directory to the current project</source> + <translation>Aggiungi una directory al progetto corrente</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3532"/> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>Aggiungi directory...</b><p>Apre un dialogo per aggiungere una directory al progetto corrente.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4514"/> + <location filename="../Project/Project.py" line="4518"/> <source>Code Coverage</source> <translation>Analisi codice</translation> </message> <message> - <location filename="../Project/Project.py" line="4514"/> + <location filename="../Project/Project.py" line="4518"/> <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="4564"/> + <location filename="../Project/Project.py" line="4568"/> <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="982"/> + <location filename="../Project/Project.py" line="984"/> <source>Delete project session</source> <translation>Cancella sessione di progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="3746"/> + <location filename="../Project/Project.py" line="3748"/> <source>Delete session</source> <translation>Cancella sessione</translation> </message> <message> - <location filename="../Project/Project.py" line="3750"/> + <location filename="../Project/Project.py" line="3752"/> <source>Delete the projects session file.</source> <translation>Cancella il file di sessione del progetto.</translation> </message> <message> - <location filename="../Project/Project.py" line="3751"/> + <location filename="../Project/Project.py" line="3753"/> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation><b>Cancella sessione</b><p>Cancella la sessione del progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="164"/> + <location filename="../Project/Project.py" line="166"/> <source>Ruby Files (*.rb);;</source> <translation>File Ruby (*.rb);;</translation> </message> <message> - <location filename="../Project/Project.py" line="3559"/> + <location filename="../Project/Project.py" line="3561"/> <source><b>Search new files...</b><p>This searches for new files (sources, *.ui, *.idl) in the project directory and registered subdirectories.</p></source> <translation><b>Cerca nuovi file...</b><p>Cerca per nuovi file (sorgenti, *.ui, *.idl) nella directory del progetto e in tutte le sottodirectory registrate.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="245"/> + <location filename="../Project/Project.py" line="247"/> <source>Console</source> <translation>Console</translation> </message> <message> - <location filename="../Project/Project.py" line="246"/> + <location filename="../Project/Project.py" line="248"/> <source>Other</source> <translation>Altro</translation> </message> <message> - <location filename="../Project/Project.py" line="4618"/> + <location filename="../Project/Project.py" line="4622"/> <source>Include module names?</source> <translation>Includi i nomi dei moduli ?</translation> </message> <message> - <location filename="../Project/Project.py" line="2075"/> + <location filename="../Project/Project.py" line="2077"/> <source>Delete directory</source> <translation>Cancella directory</translation> </message> <message> - <location filename="../Project/Project.py" line="1016"/> + <location filename="../Project/Project.py" line="1018"/> <source>Read tasks</source> <translation>Leggi tesk</translation> </message> <message> - <location filename="../Project/Project.py" line="1036"/> + <location filename="../Project/Project.py" line="1038"/> <source>Save tasks</source> <translation>Salva task</translation> </message> <message> - <location filename="../Project/Project.py" line="1093"/> + <location filename="../Project/Project.py" line="1095"/> <source>Read debugger properties</source> <translation>Leggi le proprietà del debugger</translation> </message> <message> - <location filename="../Project/Project.py" line="1127"/> + <location filename="../Project/Project.py" line="1129"/> <source>Save debugger properties</source> <translation>Salva le proprietà del debugger</translation> </message> <message> - <location filename="../Project/Project.py" line="1153"/> + <location filename="../Project/Project.py" line="1155"/> <source>Delete debugger properties</source> <translation>Cancella le proprietà del debugger</translation> </message> <message> - <location filename="../Project/Project.py" line="3646"/> + <location filename="../Project/Project.py" line="3648"/> <source>Debugger Properties</source> <translation>Proprietà Debugger</translation> </message> <message> - <location filename="../Project/Project.py" line="3646"/> + <location filename="../Project/Project.py" line="3648"/> <source>Debugger &Properties...</source> <translation>&Proprietà Debugger...</translation> </message> <message> - <location filename="../Project/Project.py" line="3650"/> + <location filename="../Project/Project.py" line="3652"/> <source>Show the debugger properties</source> <translation>Mostra le proprietàd el debugger</translation> </message> <message> - <location filename="../Project/Project.py" line="3651"/> + <location filename="../Project/Project.py" line="3653"/> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation><b>Proprietà debugger...</b><p>Mostra un dialogo per modificare le impostazioni specifiche per il progetto del debugger.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3659"/> + <location filename="../Project/Project.py" line="3661"/> <source>Load</source> <translation>Carica</translation> </message> <message> - <location filename="../Project/Project.py" line="3659"/> + <location filename="../Project/Project.py" line="3661"/> <source>&Load</source> <translation>&Carica</translation> </message> <message> - <location filename="../Project/Project.py" line="3663"/> + <location filename="../Project/Project.py" line="3665"/> <source>Load the debugger properties</source> <translation>Carica le proprietàd el debugger</translation> </message> <message> - <location filename="../Project/Project.py" line="3671"/> + <location filename="../Project/Project.py" line="3673"/> <source>Save</source> <translation>Salva</translation> </message> <message> - <location filename="../Project/Project.py" line="3675"/> + <location filename="../Project/Project.py" line="3677"/> <source>Save the debugger properties</source> <translation>Salva le proprietà del debugger</translation> </message> <message> - <location filename="../Project/Project.py" line="3683"/> + <location filename="../Project/Project.py" line="3685"/> <source>Delete</source> <translation>Cancella</translation> </message> <message> - <location filename="../Project/Project.py" line="3683"/> + <location filename="../Project/Project.py" line="3685"/> <source>&Delete</source> <translation>&Cancella</translation> </message> <message> - <location filename="../Project/Project.py" line="3687"/> + <location filename="../Project/Project.py" line="3689"/> <source>Delete the debugger properties</source> <translation>Cancella le proprietà del debugger</translation> </message> <message> - <location filename="../Project/Project.py" line="3696"/> + <location filename="../Project/Project.py" line="3698"/> <source>Reset</source> <translation>Resetta</translation> </message> <message> - <location filename="../Project/Project.py" line="3696"/> + <location filename="../Project/Project.py" line="3698"/> <source>&Reset</source> <translation>&Resetta</translation> </message> <message> - <location filename="../Project/Project.py" line="3700"/> + <location filename="../Project/Project.py" line="3702"/> <source>Reset the debugger properties</source> <translation>Resetta le proprietà del debugger</translation> </message> <message> - <location filename="../Project/Project.py" line="3913"/> + <location filename="../Project/Project.py" line="3917"/> <source>Debugger</source> <translation>Debugger</translation> </message> <message> - <location filename="../Project/Project.py" line="3910"/> + <location filename="../Project/Project.py" line="3914"/> <source>Session</source> <translation>Sessione</translation> </message> <message> - <location filename="../Project/Project.py" line="3664"/> + <location filename="../Project/Project.py" line="3666"/> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation><b>Carica le proprietà del debugger</b><p>Carica le proprietà del debugger specifiche per il progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3676"/> + <location filename="../Project/Project.py" line="3678"/> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation><b>Salva le proprietà del debugger</b><p>Salva le proprietà del debugger specifiche per il progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3688"/> + <location filename="../Project/Project.py" line="3690"/> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation><b>Cancella le proprietà del debugger</b><p>Cancella il file che contiene le proprietà del debugger specifiche per il progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3701"/> + <location filename="../Project/Project.py" line="3703"/> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation><b>Azzera le proprietà del debugger</b><p>Azzera le proprietà del debugger specifiche per il progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3610"/> + <location filename="../Project/Project.py" line="3612"/> <source>Filetype Associations</source> <translation>Associazione tipi file</translation> </message> <message> - <location filename="../Project/Project.py" line="3610"/> + <location filename="../Project/Project.py" line="3612"/> <source>Filetype Associations...</source> <translation>Associazione tipi file...</translation> </message> <message> - <location filename="../Project/Project.py" line="3614"/> - <source>Show the project filetype associations</source> - <translation>Mostra le associazioni dei tipi di file del progetto</translation> - </message> - <message> <location filename="../Project/Project.py" line="3616"/> + <source>Show the project filetype associations</source> + <translation>Mostra le associazioni dei tipi di file del progetto</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3618"/> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the filetype associations of the project. These associations determine the type (source, form, interface or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation><b>Associazione tipi file...</b><p>Mostra un dialogo per modificare le associazioni dei tipi file del progetto. Queste associazioni determinano il tipo (codice sorgente, interfaccia o altro) con un pattern del nome file. Sono usati quando aggiungi un file al progetto e quanto esegui una ricerca per nuovi file.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3914"/> + <location filename="../Project/Project.py" line="3918"/> <source>Pac&kagers</source> <translation>Pac&kagers</translation> </message> <message> - <location filename="../Project/Project.py" line="3507"/> + <location filename="../Project/Project.py" line="3509"/> <source>Add files to project</source> <translation>Aggiungi file al progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="3507"/> + <location filename="../Project/Project.py" line="3509"/> <source>Add &files...</source> <translation>Aggiungi &files...</translation> </message> <message> - <location filename="../Project/Project.py" line="3512"/> - <source>Add files to the current project</source> - <translation>Aggiungi file al progetto corrente</translation> - </message> - <message> <location filename="../Project/Project.py" line="3514"/> + <source>Add files to the current project</source> + <translation>Aggiungi file al progetto corrente</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3516"/> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation><b>Aggiungi files...</b><p>Apre un dialogo per aggiungere file al progetto corrente. Il posto dove aggiungerli è determinato dall'estensione.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2817"/> + <location filename="../Project/Project.py" line="2819"/> <source>Project Files (*.e4p)</source> <translation>File progetto (*.e4p)</translation> </message> <message> - <location filename="../Project/Project.py" line="3900"/> + <location filename="../Project/Project.py" line="3904"/> <source>&Project</source> <translation>&Progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="4022"/> + <location filename="../Project/Project.py" line="4026"/> <source>Project</source> <translation>Progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="4088"/> + <location filename="../Project/Project.py" line="4092"/> <source>&Clear</source> <translation>Pulis&ci</translation> </message> <message> - <location filename="../Project/Project.py" line="835"/> + <location filename="../Project/Project.py" line="837"/> <source>Read user project properties</source> <translation>Leggi le proprietà utente del progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="859"/> + <location filename="../Project/Project.py" line="861"/> <source>Save user project properties</source> <translation>Salva le proprietà utente del progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="3595"/> + <location filename="../Project/Project.py" line="3597"/> <source>User project properties</source> <translation>Proprietà utente del progetto</translation> </message> <message> - <location filename="../Project/Project.py" line="3595"/> + <location filename="../Project/Project.py" line="3597"/> <source>&User Properties...</source> <translation>Proprietà &utente...</translation> </message> <message> - <location filename="../Project/Project.py" line="3600"/> - <source>Show the user specific project properties</source> - <translation>Mostra le proprietà del multiprogetto specifiche dell'utente</translation> - </message> - <message> <location filename="../Project/Project.py" line="3602"/> + <source>Show the user specific project properties</source> + <translation>Mostra le proprietà del multiprogetto specifiche dell'utente</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3604"/> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation><b>Proprietà utente...</b><p>Mosta un dialogo per modificare le proprietà utente di un progetto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3033"/> + <location filename="../Project/Project.py" line="3035"/> <source>Syntax errors detected</source> <translation>Errore di sintassi rilevato</translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="3033"/> + <location filename="../Project/Project.py" line="3035"/> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>Il progetto contiene %n file con errori di sintassi.</numerusform> @@ -40338,419 +40351,494 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="4776"/> + <location filename="../Project/Project.py" line="4780"/> <source>Create Package List</source> <translation>Crea lista del package</translation> </message> <message> - <location filename="../Project/Project.py" line="3832"/> + <location filename="../Project/Project.py" line="3834"/> <source>Create &Package List</source> <translation>Crea lista del &package</translation> </message> <message> - <location filename="../Project/Project.py" line="5003"/> + <location filename="../Project/Project.py" line="5027"/> <source>Create Plugin Archive</source> <translation>Crea un archivio per il plugin</translation> </message> <message> <location filename="../Project/Project.py" line="3848"/> <source>Create Plugin &Archive</source> - <translation>Crea un &archivio per il plugin</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4736"/> + <translation type="obsolete">Crea un &archivio per il plugin</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4740"/> <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="4815"/> <source><p>The file <b>PKGLIST</b> does not exist. Aborting...</p></source> - <translation><p>Il file <b>PKGLIST </b> non esiste. Uscita...</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4823"/> + <translation type="obsolete"><p>Il file <b>PKGLIST </b> non esiste. Uscita...</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4799"/> <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="1565"/> + <location filename="../Project/Project.py" line="1567"/> <source><p>The source directory doesn't contain any files belonging to the selected category.</p></source> <translation><p>La directory di partenza non contiene nessun file appartenente alla categoria selezionata.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2681"/> + <location filename="../Project/Project.py" line="2683"/> <source>Select Version Control System</source> <translation>Selezione il Sistema di Controllo della Versione (VCS)</translation> </message> <message> - <location filename="../Project/Project.py" line="2331"/> + <location filename="../Project/Project.py" line="2333"/> <source>None</source> <translation>Nessuno</translation> </message> <message> - <location filename="../Project/Project.py" line="344"/> + <location filename="../Project/Project.py" line="346"/> <source>Registering Project Type</source> <translation>Registrazione tipo progetto</translation> </message> <message> <location filename="../Project/Project.py" line="3864"/> <source>Create Plugin Archive (Snapshot)</source> - <translation>Crea un archivio per il plugin (Snapshot)</translation> + <translation type="obsolete">Crea un archivio per il plugin (Snapshot)</translation> </message> <message> <location filename="../Project/Project.py" line="3864"/> <source>Create Plugin Archive (&Snapshot)</source> - <translation>Crea un archivio per il plugin (&Snapshot)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="1261"/> + <translation type="obsolete">Crea un archivio per il plugin (&Snapshot)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="1263"/> <source>You have to specify a translation pattern first.</source> <translation>Devi prima specificare un pattern di traduzione.</translation> </message> <message> - <location filename="../Project/Project.py" line="2430"/> + <location filename="../Project/Project.py" line="2432"/> <source>Translation Pattern</source> <translation>Pattern di traduzione</translation> </message> <message> - <location filename="../Project/Project.py" line="2430"/> + <location filename="../Project/Project.py" line="2432"/> <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source> <translation>Inserisci il path per il file di traduzione (usa '%language% al posto del codice lingua):</translation> </message> <message> - <location filename="../Project/Project.py" line="3628"/> + <location filename="../Project/Project.py" line="3630"/> <source>Lexer Associations</source> <translation>Associazioni analizzatore lessicale</translation> </message> <message> - <location filename="../Project/Project.py" line="3628"/> + <location filename="../Project/Project.py" line="3630"/> <source>Lexer Associations...</source> <translation>Associazioni analizzatore lessicale...</translation> </message> <message> - <location filename="../Project/Project.py" line="3632"/> - <source>Show the project lexer associations (overriding defaults)</source> - <translation>Mostra le associazioni degli analizzatori lessicali del progetto (sovrascrivendo i default)</translation> - </message> - <message> <location filename="../Project/Project.py" line="3634"/> + <source>Show the project lexer associations (overriding defaults)</source> + <translation>Mostra le associazioni degli analizzatori lessicali del progetto (sovrascrivendo i default)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3636"/> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation><b>Associazioni analizzatore lessicale...</b><p>Mostra un dialogo per modificare le associazioni degli analizzatori lessicali dei progetti. Queste associazioni sovrascrivono the impostazioni globali. Gli analizzatori lessicali sono utilizzati per l'evidenziazione del testo nell'editor.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="260"/> + <location filename="../Project/Project.py" line="262"/> <source>PySide GUI</source> <translation>GUI PySide</translation> </message> <message> - <location filename="../Project/Project.py" line="261"/> + <location filename="../Project/Project.py" line="263"/> <source>PySide Console</source> <translation>Console PySide</translation> </message> <message> - <location filename="../Project/Project.py" line="161"/> + <location filename="../Project/Project.py" line="163"/> <source>Python3 Files (*.py *.py3);;Python3 GUI Files (*.pyw *.pyw3);;</source> <translation>Python3 Files (*.py *.py3);;Python3 GUI Files (*.pyw *.pyw3);;</translation> </message> <message> - <location filename="../Project/Project.py" line="699"/> + <location filename="../Project/Project.py" line="701"/> <source><p>The project file <b>{0}</b> could not be read.</p></source> <translation><p>Il file progetto <b>{0}</b> non può essere letto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="799"/> + <location filename="../Project/Project.py" line="801"/> <source><p>The project file <b>{0}</b> could not be written.</p></source> <translation><p>Il file progetto <b{0}</b> non può essere scritto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="835"/> + <location filename="../Project/Project.py" line="837"/> <source><p>The user specific project properties file <b>{0}</b> could not be read.</p></source> <translation><p>Il file delle proprietà specifiche dell'utente del progetto <b>{0}</b> non può essere letto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="859"/> + <location filename="../Project/Project.py" line="861"/> <source><p>The user specific project properties file <b>{0}</b> could not be written.</p></source> <translation><p>Il file delle proprietà specifiche dell'utente del progetto <b>{0}</b> non può essere scritto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="917"/> + <location filename="../Project/Project.py" line="919"/> <source><p>The project session file <b>{0}</b> could not be read.</p></source> <translation><p>La sessione del progetto <b>{0}</b> non può essere letta.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="953"/> + <location filename="../Project/Project.py" line="955"/> <source><p>The project session file <b>{0}</b> could not be written.</p></source> <translation><p>La sessione del progetto <b>{0}</b> non può essere scritta.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="982"/> + <location filename="../Project/Project.py" line="984"/> <source><p>The project session file <b>{0}</b> could not be deleted.</p></source> <translation><p>La sessione del progetto <b>{0}</b> non può essere cancellato.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1016"/> + <location filename="../Project/Project.py" line="1018"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation><p>Il file task <b>{0}</b> non può essere letto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1036"/> + <location filename="../Project/Project.py" line="1038"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation><p>Il file task <b>{0}</b> non può essere scritto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1093"/> + <location filename="../Project/Project.py" line="1095"/> <source><p>The project debugger properties file <b>{0}</b> could not be read.</p></source> <translation><p>Il file delle proprietà del debugger del progetto<b>{0}</b> non può essere letto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1127"/> + <location filename="../Project/Project.py" line="1129"/> <source><p>The project debugger properties file <b>{0}</b> could not be written.</p></source> <translation><p>Il file delle proprietà del debugger del progetto<b>{0}</b> non può essere scritto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1153"/> + <location filename="../Project/Project.py" line="1155"/> <source><p>The project debugger properties file <b>{0}</b> could not be deleted.</p></source> <translation><p>Il file delle proprietà del debugger del progetto<b>{0}</b> non può essere cancellato.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1383"/> + <location filename="../Project/Project.py" line="1385"/> <source><p>The selected translation file <b>{0}</b> could not be deleted.</p></source> <translation><p>Il file di traduzione selezionato <b>{0}</b> non può essere cancellato.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1596"/> + <location filename="../Project/Project.py" line="1598"/> <source><p>The file <b>{0}</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Il file <b>{0}</b> esiste già.</p><p>Sovrascriverlo?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2832"/> + <location filename="../Project/Project.py" line="2834"/> <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="../Project/Project.py" line="1810"/> + <location filename="../Project/Project.py" line="1812"/> <source><p>The file <b>{0}</b> could not be renamed.<br />Reason: {1}</p></source> <translation><p>Il file <b>{0}</b> non può essere rinominato.<br />Motivo: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2046"/> + <location filename="../Project/Project.py" line="2048"/> <source><p>The selected file <b>{0}</b> could not be deleted.</p></source> <translation><p>Il file selezionato <b>{0}</b> non può essere cancellato.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2075"/> + <location filename="../Project/Project.py" line="2077"/> <source><p>The selected directory <b>{0}</b> could not be deleted.</p></source> <translation><p>La directory selezionata <b>{0}</b> non può essere cancellata.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2157"/> + <location filename="../Project/Project.py" line="2159"/> <source><p>The project directory <b>{0}</b> could not be created.</p></source> <translation><p>La directory del progetto <b>{0}</b> non può essere creata.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4373"/> + <location filename="../Project/Project.py" line="4377"/> <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="4776"/> + <location filename="../Project/Project.py" line="4780"/> <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="4836"/> <source><p>The file <b>PKGLIST</b> could not be read.</p><p>Reason: {0}</p></source> - <translation><p>Il file <b>PKGLIST</b> non può essere letto.<br />Motivo: {0}</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4892"/> + <translation type="obsolete"><p>Il file <b>PKGLIST</b> non può essere letto.<br />Motivo: {0}</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4911"/> <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="4961"/> + <location filename="../Project/Project.py" line="4985"/> <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="1522"/> + <location filename="../Project/Project.py" line="1524"/> <source><p>The selected file <b>{0}</b> could not be added to <b>{1}</b>.</p><p>Reason: {2}</p></source> <translation><p>Il file selezionato <b>{0}</b> non può essere aggiunto a <b>{1}</b>.</p><p>Motivo: {2}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1578"/> + <location filename="../Project/Project.py" line="1580"/> <source><p>The target directory <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>La directory di destinazione<b>{0}</b> non può essere creata.</p><p>Motivo: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="158"/> + <location filename="../Project/Project.py" line="160"/> <source>Python2 Files (*.py2);;Python2 GUI Files (*.pyw2);;</source> <translation>Python Files (*.py2);;Python GUI Files (*.pyw2);;</translation> </message> <message> - <location filename="../Project/Project.py" line="2220"/> + <location filename="../Project/Project.py" line="2222"/> <source>Create main script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2220"/> + <location filename="../Project/Project.py" line="2222"/> <source><p>The mainscript <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3817"/> + <location filename="../Project/Project.py" line="3819"/> <source>Load Diagram</source> <translation type="unfinished">Carico Diagramma</translation> </message> <message> - <location filename="../Project/Project.py" line="3817"/> + <location filename="../Project/Project.py" line="3819"/> <source>&Load Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3821"/> - <source>Load a diagram from file.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3823"/> + <source>Load a diagram from file.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3825"/> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="321"/> + <location filename="../Project/Project.py" line="323"/> <source><p>The Programming Language <b>{0}</b> is not supported.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="344"/> + <location filename="../Project/Project.py" line="346"/> <source><p>The Project type <b>{0}</b> is already registered.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="332"/> + <location filename="../Project/Project.py" line="334"/> <source><p>The Project type <b>{0}</b> is already registered with Programming Language <b>{1}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="242"/> + <location filename="../Project/Project.py" line="244"/> <source>PyQt5 GUI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="243"/> + <location filename="../Project/Project.py" line="245"/> <source>PyQt5 Console</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4361"/> + <location filename="../Project/Project.py" line="4365"/> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5003"/> + <location filename="../Project/Project.py" line="5027"/> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3837"/> - <source>Create an initial PKGLIST file for an eric6 plugin.</source> - <translation type="unfinished">Crea un PKGLIST iniziale per un plugin di eric5. {6 ?}</translation> - </message> - <message> <location filename="../Project/Project.py" line="3839"/> + <source>Create an initial PKGLIST file for an eric6 plugin.</source> + <translation type="unfinished">Crea un PKGLIST iniziale per un plugin di eric5. {6 ?}</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3841"/> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric6 plugin archive. The list is created from the project file.</p></source> <translation type="unfinished"><b>Crea la lista del Package<b><p>Crea una lista iniziale dei file da includere nell'archivio di un plugin di eric5. La lista è creata partendo dal file progetto.</p> {6 ?}</translation> </message> <message> <location filename="../Project/Project.py" line="3853"/> <source>Create an eric6 plugin archive file.</source> - <translation type="unfinished">Crea un file archivio per il plugin di eric5. {6 ?}</translation> + <translation type="obsolete">Crea un file archivio per il plugin di eric5. {6 ?}</translation> </message> <message> <location filename="../Project/Project.py" line="3855"/> <source><b>Create Plugin Archive</b><p>This creates an eric6 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name.</p></source> - <translation type="unfinished"><b>Crea Archivio Plugin</b><p>Crea un archivio per il plugin eric5 usando la lista dei file fornita nel file PKGLIST. Il nome dell'archivio è costruito dal nome dello script.</p> {6 ?}</translation> + <translation type="obsolete"><b>Crea Archivio Plugin</b><p>Crea un archivio per il plugin eric5 usando la lista dei file fornita nel file PKGLIST. Il nome dell'archivio è costruito dal nome dello script.</p> {6 ?}</translation> </message> <message> <location filename="../Project/Project.py" line="3869"/> <source>Create an eric6 plugin archive file (snapshot release).</source> - <translation type="unfinished">Crea un file archivio per il plugin di eric5 (snapshot release). {6 ?}</translation> + <translation type="obsolete">Crea un file archivio per il plugin di eric5 (snapshot release). {6 ?}</translation> </message> <message> <location filename="../Project/Project.py" line="3871"/> <source><b>Create Plugin Archive (Snapshot)</b><p>This creates an eric6 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name. The version entry of the main script is modified to reflect a snapshot release.</p></source> - <translation type="unfinished"><b>Crea un archivio plugin (Snapshot)</b><p>Crea un file archivio di un plugin eric5 usando la lista di file fornita nel file PKGLIST. Il nome dell'archivio è determinato dal nome dello script principale. La versione dello script principale viene modificata per riflettere la release dello snapshot.</p> {6 ?}</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4866"/> + <translation type="obsolete"><b>Crea un archivio plugin (Snapshot)</b><p>Crea un file archivio di un plugin eric5 usando la lista di file fornita nel file PKGLIST. Il nome dell'archivio è determinato dal nome dello script principale. La versione dello script principale viene modificata per riflettere la release dello snapshot.</p> {6 ?}</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4881"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"><p>Il file archivio del plugin di eric5<b>{0}</b> non può essere creato.<br />Motivo: {1}</p> {6 ?} {0}?} {1}?}</translation> </message> <message> <location filename="../Project/Project.py" line="4915"/> <source><p>The eric6 plugin archive file <b>{0}</b> was created successfully.</p></source> - <translation type="unfinished"><p>Il file archivio del plugin di eric5<b>{0} </b> è stato creato con successo.</p> {6 ?} {0}?}</translation> - </message> - <message> - <location filename="../Project/Project.py" line="240"/> + <translation type="obsolete"><p>Il file archivio del plugin di eric5<b>{0} </b> è stato creato con successo.</p> {6 ?} {0}?}</translation> + </message> + <message> + <location filename="../Project/Project.py" line="242"/> <source>PyQt4 GUI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="241"/> + <location filename="../Project/Project.py" line="243"/> <source>PyQt4 Console</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="244"/> + <location filename="../Project/Project.py" line="246"/> <source>Eric6 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2651"/> + <location filename="../Project/Project.py" line="2653"/> <source>Create project management directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2651"/> + <location filename="../Project/Project.py" line="2653"/> <source><p>The project directory <b>{0}</b> is not writable.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3567"/> + <location filename="../Project/Project.py" line="3569"/> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3573"/> - <source>Search for a file in the project list of files.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3575"/> + <source>Search for a file in the project list of files.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3577"/> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3567"/> + <location filename="../Project/Project.py" line="3569"/> <source>Search Project File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3567"/> + <location filename="../Project/Project.py" line="3569"/> <source>Search Project File...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4799"/> - <source>Select a package list file:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4806"/> - <source><p>No package list file selected. Aborting...</p></source> + <location filename="../Project/Project.py" line="4834"/> + <source>Create Plugin Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3850"/> + <source>Create Plugin &Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3855"/> + <source>Create eric6 plugin archive files.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3857"/> + <source><b>Create Plugin Archives</b><p>This creates eric6 plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3867"/> + <source>Create Plugin Archives (Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3867"/> + <source>Create Plugin Archives (&Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3872"/> + <source>Create eric6 plugin archive files (snapshot releases).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3874"/> + <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric6 plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4813"/> + <source>Select package lists:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>Creating plugin archives...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>Abort</source> + <translation type="unfinished">Termina</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>%v/%m Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4834"/> + <source>Coverage</source> + <translation type="obsolete">Coverage</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4847"/> + <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4930"/> + <source><p>The eric6 plugin archive files were created with some errors.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4933"/> + <source><p>The eric6 plugin archive files were created successfully.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4823"/> + <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished"></translation> </message> </context> @@ -42787,7 +42875,7 @@ <translation>Eseguite</translation> </message> <message> - <location filename="../DataViews/PyCoverageDialog.py" line="349"/> + <location filename="../DataViews/PyCoverageDialog.ui" line="172"/> <source>Coverage</source> <translation>Coverage</translation> </message> @@ -42837,7 +42925,7 @@ </translation> </message> <message> - <location filename="../DataViews/PyCoverageDialog.py" line="345"/> + <location filename="../DataViews/PyCoverageDialog.ui" line="192"/> <source>%v/%m Files</source> <translation type="unfinished"></translation> </message> @@ -42865,7 +42953,7 @@ <translation>Cancella tutte le informazioni</translation> </message> <message> - <location filename="../DataViews/PyProfileDialog.py" line="233"/> + <location filename="../DataViews/PyProfileDialog.ui" line="20"/> <source>Profile Results</source> <translation>Risultati profilazione</translation> </message> @@ -47490,7 +47578,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.py" line="150"/> + <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.ui" line="89"/> <source>Remove Filters</source> <translation type="unfinished"></translation> </message> @@ -47500,7 +47588,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.py" line="178"/> + <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.ui" line="99"/> <source>Remove Attributes</source> <translation type="unfinished"></translation> </message> @@ -48968,7 +49056,7 @@ <context> <name>SendRefererWhitelistDialog</name> <message> - <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="52"/> + <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.ui" line="14"/> <source>Send Referer Whitelist</source> <translation type="unfinished"></translation> </message> @@ -50172,7 +50260,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Snapshot/SnapWidget.py" line="531"/> + <location filename="../Snapshot/SnapWidget.ui" line="20"/> <source>eric6 Snapshot</source> <translation type="unfinished"></translation> </message> @@ -52784,7 +52872,7 @@ <context> <name>SvnDiffDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="171"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.ui" line="14"/> <source>Subversion Diff</source> <translation>Subversion Diff</translation> </message> @@ -53062,12 +53150,12 @@ <translation>Log Subversion</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="621"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="112"/> <source>Revision</source> <translation>Revisione</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="618"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="117"/> <source>Author</source> <translation>Autore</translation> </message> @@ -53077,7 +53165,7 @@ <translation>Data</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="141"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="127"/> <source>Message</source> <translation>Messaggio</translation> </message> @@ -53564,7 +53652,7 @@ <translation>&Protocollo:</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="128"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.ui" line="45"/> <source>&URL:</source> <translation>&URL:</translation> </message> @@ -53675,7 +53763,7 @@ <translation>Seleziona il protocollo per accedere al repository</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.py" line="95"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.ui" line="45"/> <source>&URL:</source> <translation>&URL:</translation> </message> @@ -54975,7 +55063,7 @@ <translation>ignorato</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="394"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="14"/> <source>Subversion Status</source> <translation>Stato Subversion</translation> </message> @@ -54985,7 +55073,7 @@ <translation>Committa modifiche nel repository...</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="711"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="80"/> <source>Commit</source> <translation>Commit</translation> </message> @@ -60524,7 +60612,7 @@ <context> <name>UnittestDialog</name> <message> - <location filename="../PyUnit/UnittestDialog.py" line="400"/> + <location filename="../PyUnit/UnittestDialog.ui" line="14"/> <source>Unittest</source> <translation>Unittest</translation> </message> @@ -63412,62 +63500,62 @@ <context> <name>VariablesViewer</name> <message> - <location filename="../Debugger/VariablesViewer.py" line="354"/> + <location filename="../Debugger/VariablesViewer.py" line="358"/> <source>Global Variables</source> <translation>Variabili globali</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="355"/> - <source>Globals</source> - <translation>Globali</translation> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="359"/> + <source>Globals</source> + <translation>Globali</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="363"/> <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="365"/> + <location filename="../Debugger/VariablesViewer.py" line="369"/> <source>Local Variables</source> <translation>Variabili locali</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="366"/> - <source>Locals</source> - <translation>Locali</translation> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="370"/> + <source>Locals</source> + <translation>Locali</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="374"/> <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="366"/> + <location filename="../Debugger/VariablesViewer.py" line="370"/> <source>Value</source> <translation>Valore</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="366"/> + <location filename="../Debugger/VariablesViewer.py" line="370"/> <source>Type</source> <translation>Tipo</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="401"/> + <location filename="../Debugger/VariablesViewer.py" line="405"/> <source>Show Details...</source> <translation>Mostra dettagli...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="409"/> + <location filename="../Debugger/VariablesViewer.py" line="413"/> <source>Configure...</source> <translation>Configura...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="629"/> + <location filename="../Debugger/VariablesViewer.py" line="633"/> <source>{0} items</source> <translation>{0} elementi</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="407"/> + <location filename="../Debugger/VariablesViewer.py" line="411"/> <source>Refresh</source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric6_pt.ts Sun Oct 16 12:20:30 2016 +0200 +++ b/i18n/eric6_pt.ts Sun Oct 16 14:42:46 2016 +0200 @@ -390,7 +390,7 @@ <context> <name>AddBookmarkDialog</name> <message> - <location filename="../WebBrowser/Bookmarks/AddBookmarkDialog.py" line="198"/> + <location filename="../WebBrowser/Bookmarks/AddBookmarkDialog.ui" line="26"/> <source>Add Bookmark</source> <translation>Adicionar Marcador</translation> </message> @@ -1767,7 +1767,7 @@ <translation>Pressionar para apagar as entradas selecionadas</translation> </message> <message> - <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="169"/> + <location filename="../WebBrowser/Bookmarks/BookmarksDialog.ui" line="75"/> <source>&Delete</source> <translation>&Apagar</translation> </message> @@ -2504,12 +2504,12 @@ <translation>Pressionar para gravar o rastreio de chamadas como ficheiro de texto</translation> </message> <message> - <location filename="../Debugger/CallTraceViewer.py" line="54"/> + <location filename="../Debugger/CallTraceViewer.ui" line="109"/> <source>From</source> <translation>Desde</translation> </message> <message> - <location filename="../Debugger/CallTraceViewer.py" line="54"/> + <location filename="../Debugger/CallTraceViewer.ui" line="114"/> <source>To</source> <translation>Para</translation> </message> @@ -2617,7 +2617,7 @@ <translation>Pressionar para limpar a lista de anfitriões</translation> </message> <message> - <location filename="../Cooperation/ChatWidget.py" line="513"/> + <location filename="../Cooperation/ChatWidget.ui" line="230"/> <source>Clear</source> <translation>Limpar</translation> </message> @@ -2969,7 +2969,7 @@ <context> <name>ClickToFlashWhitelistDialog</name> <message> - <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.py" line="54"/> + <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.ui" line="14"/> <source>ClickToFlash Whitelist</source> <translation>Lista de Confiança de ClickToFlash</translation> </message> @@ -4286,22 +4286,22 @@ <translation>Pressionar para executar comparação de dois ficheiros</translation> </message> <message> - <location filename="../UI/CompareDialog.py" line="356"/> + <location filename="../UI/CompareDialog.py" line="354"/> <source>Total: {0}</source> <translation></translation> </message> <message> + <location filename="../UI/CompareDialog.py" line="356"/> + <source>Changed: {0}</source> + <translation>Alterado: {0}</translation> + </message> + <message> + <location filename="../UI/CompareDialog.py" line="357"/> + <source>Added: {0}</source> + <translation>Adicionado: {0}</translation> + </message> + <message> <location filename="../UI/CompareDialog.py" line="358"/> - <source>Changed: {0}</source> - <translation>Alterado: {0}</translation> - </message> - <message> - <location filename="../UI/CompareDialog.py" line="359"/> - <source>Added: {0}</source> - <translation>Adicionado: {0}</translation> - </message> - <message> - <location filename="../UI/CompareDialog.py" line="360"/> <source>Deleted: {0}</source> <translation>Apagado: {0}</translation> </message> @@ -4929,7 +4929,7 @@ <translation type="unfinished">Domínio:</translation> </message> <message> - <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="177"/> + <location filename="../WebBrowser/CookieJar/CookiesDialog.ui" line="223"/> <source><no cookie selected></source> <translation type="unfinished"></translation> </message> @@ -7747,7 +7747,7 @@ <context> <name>DownloadManager</name> <message> - <location filename="../WebBrowser/Download/DownloadManager.py" line="363"/> + <location filename="../WebBrowser/Download/DownloadManager.ui" line="14"/> <source>Downloads</source> <translation>Descargas</translation> </message> @@ -7975,6 +7975,19 @@ </message> </context> <context> + <name>E5ListSelectionDialog</name> + <message> + <location filename="../E5Gui/E5ListSelectionDialog.ui" line="14"/> + <source>Select from List</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../E5Gui/E5ListSelectionDialog.ui" line="23"/> + <source>Select from the list below:</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>E5MainWindow</name> <message> <location filename="../E5Gui/E5MainWindow.py" line="56"/> @@ -8193,92 +8206,92 @@ <translation>Botões Padrão</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="41"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="257"/> <source>Abort</source> <translation>Cancelar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="42"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="264"/> <source>Apply</source> <translation>Aplicar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="43"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="271"/> <source>Cancel</source> <translation>Cancelar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="44"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="278"/> <source>Close</source> <translation>Fechar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="45"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="285"/> <source>Discard</source> <translation>Descartar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="46"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="292"/> <source>Help</source> <translation>Ajuda</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="47"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="299"/> <source>Ignore</source> <translation>Ignorar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="48"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="306"/> <source>No</source> <translation>Não</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="49"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="313"/> <source>No to all</source> <translation>Não a tudo</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="50"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="320"/> <source>Ok</source> <translation></translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="51"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="327"/> <source>Open</source> <translation>Abrir</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="52"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="334"/> <source>Reset</source> <translation>Reinicializar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="53"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="341"/> <source>Restore defaults</source> <translation>Repor predefinições</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="54"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="348"/> <source>Retry</source> <translation>Tentar de Novo</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="55"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="355"/> <source>Save</source> <translation>Gravar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="56"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="362"/> <source>Save all</source> <translation>Gravar tudo</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="57"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="369"/> <source>Yes</source> <translation>Sim</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="58"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="376"/> <source>Yes to all</source> <translation>Sim a tudo</translation> </message> @@ -10326,7 +10339,7 @@ <translation>Pressionar para selecionar um ficheiro API da lista de ficheiros API instalados</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="184"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="132"/> <source>Add from installed APIs</source> <translation>Adicionar desde APIs instalados</translation> </message> @@ -10336,7 +10349,7 @@ <translation>Pressionar para selecionar um ficheiro API da lista de ficheiros API instalados pelos complementos</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="203"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="142"/> <source>Add from Plugin APIs</source> <translation>Adicionar desde APIs de Complementos</translation> </message> @@ -10346,7 +10359,7 @@ <translation>Pressionar para compilar a definição de APIs selecionada</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="236"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="159"/> <source>Compile APIs</source> <translation>Compilar APIs</translation> </message> @@ -11400,7 +11413,7 @@ <translation>Selecionar tipo de letra.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="69"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="103"/> <source>Font</source> <translation>Tipo de Letra</translation> </message> @@ -11410,7 +11423,7 @@ <translation>Selecionar preenchimento até ao fim de linha.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="113"/> <source>Fill to end of line</source> <translation>Preencher até fim de linha</translation> </message> @@ -12961,7 +12974,7 @@ <translation>Modo:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="58"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1080"/> <source>Disabled</source> <translation>Inabilitado</translation> </message> @@ -13670,7 +13683,7 @@ <context> <name>EmailDialog</name> <message> - <location filename="../UI/EmailDialog.py" line="339"/> + <location filename="../UI/EmailDialog.ui" line="13"/> <source>Send bug report</source> <translation>Enviar relatório de falho</translation> </message> @@ -15122,12 +15135,12 @@ <translation type="unfinished">Notificações</translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="110"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="122"/> <source>Host</source> <translation type="unfinished">Anfitrião</translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="111"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="127"/> <source>Permission</source> <translation type="unfinished"></translation> </message> @@ -15142,7 +15155,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="51"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="97"/> <source>Geolocation</source> <translation type="unfinished"></translation> </message> @@ -16286,7 +16299,7 @@ <translation type="unfinished">Nome:</translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="193"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="158"/> <source><no flash cookie selected></source> <translation type="unfinished"></translation> </message> @@ -16296,7 +16309,7 @@ <translation type="unfinished">Tamanho:</translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="122"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="137"/> <source>Origin:</source> <translation type="unfinished"></translation> </message> @@ -16331,7 +16344,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="213"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="225"/> <source>Remove Cookie</source> <translation type="unfinished"></translation> </message> @@ -16759,7 +16772,7 @@ <context> <name>GreaseMonkeyAddScriptDialog</name> <message> - <location filename="../WebBrowser/GreaseMonkey/GreaseMonkeyAddScriptDialog.py" line="105"/> + <location filename="../WebBrowser/GreaseMonkey/GreaseMonkeyAddScriptDialog.ui" line="14"/> <source>GreaseMonkey Script Installation</source> <translation>Instalação de Script GreaseMonkey</translation> </message> @@ -22474,7 +22487,7 @@ <context> <name>HgAddSubrepositoryDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.py" line="98"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.ui" line="14"/> <source>Add Sub-repository</source> <translation type="unfinished"></translation> </message> @@ -23581,7 +23594,7 @@ <translation>Pressionar para maracar as entradas selecionadas como 'resolvido'</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="247"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.ui" line="73"/> <source>Resolved</source> <translation>Resolvido</translation> </message> @@ -23591,7 +23604,7 @@ <translation>Pressionar para marcar as entradas selecionadas como 'sem resolver'</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="245"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.ui" line="83"/> <source>Unresolved</source> <translation>Sem resolver</translation> </message> @@ -24233,7 +24246,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="317"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.ui" line="55"/> <source>Revision</source> <translation>Revisão</translation> </message> @@ -24512,7 +24525,7 @@ <context> <name>HgLogBrowserDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="71"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="14"/> <source>Mercurial Log</source> <translation>Registo de Mercurial</translation> </message> @@ -24552,17 +24565,17 @@ <translation>Selecionar o campo a filtrar</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="96"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="181"/> <source>Revision</source> <translation>Revisão</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="97"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="191"/> <source>Author</source> <translation>Autor</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="98"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="201"/> <source>Message</source> <translation>Mensagem</translation> </message> @@ -28416,7 +28429,7 @@ <context> <name>HgStatusDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="313"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="14"/> <source>Mercurial Status</source> <translation>Estado de Mercurial</translation> </message> @@ -28558,7 +28571,7 @@ <translation>Não pôde iniciar {0}.<br>Certifique-se de que está na rota de pesquisa.</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="708"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="87"/> <source>Commit</source> <translation>Cometido</translation> </message> @@ -28678,7 +28691,7 @@ <translation>tudo</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="854"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="203"/> <source>Differences</source> <translation>Diferenças</translation> </message> @@ -29453,7 +29466,7 @@ <translation>Pressionar para retirar as entradas selecionadas</translation> </message> <message> - <location filename="../WebBrowser/History/HistoryDialog.py" line="114"/> + <location filename="../WebBrowser/History/HistoryDialog.ui" line="75"/> <source>&Remove</source> <translation>&Retirar</translation> </message> @@ -35339,92 +35352,92 @@ <translation>Botões Padrão</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="40"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="219"/> <source>Apply</source> <translation>Aplicar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="39"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="226"/> <source>Abort</source> <translation>Terminar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="41"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="233"/> <source>Cancel</source> <translation>Cancelar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="45"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="240"/> <source>Ignore</source> <translation>Ignorar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="54"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="247"/> <source>Save all</source> <translation>Gravar tudo</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="53"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="254"/> <source>Save</source> <translation>Gravar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="43"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="261"/> <source>Discard</source> <translation>Descartar</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="56"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="268"/> <source>Yes to all</source> <translation>Sim a tudo</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="49"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="275"/> <source>Open</source> <translation>Abrir</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="50"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="282"/> <source>Reset</source> <translation>Restablecer</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="48"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="289"/> <source>Ok</source> <translation>Ok</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="46"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="296"/> <source>No</source> <translation>Não</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="44"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="303"/> <source>Help</source> <translation>Ajuda</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="47"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="310"/> <source>No to all</source> <translation>Não a tudo</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="52"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="317"/> <source>Retry</source> <translation>Tentar de Novo</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="51"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="324"/> <source>Restore defaults</source> <translation>Repor predefinições</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="55"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="331"/> <source>Yes</source> <translation>Sim</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="42"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="338"/> <source>Close</source> <translation>Fechar</translation> </message> @@ -37124,7 +37137,7 @@ <context> <name>NoCacheHostsDialog</name> <message> - <location filename="../Helpviewer/Network/NoCacheHostsDialog.py" line="52"/> + <location filename="../Helpviewer/Network/NoCacheHostsDialog.ui" line="14"/> <source>Not Cached Hosts</source> <translation type="unfinished"></translation> </message> @@ -37232,7 +37245,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/NotificationsPage.py" line="81"/> + <location filename="../Preferences/ConfigurationPages/NotificationsPage.ui" line="146"/> <source>Visual Selection</source> <translation>Seleção Visual</translation> </message> @@ -37902,7 +37915,7 @@ <context> <name>PasswordsDialog</name> <message> - <location filename="../WebBrowser/Passwords/PasswordsDialog.py" line="91"/> + <location filename="../WebBrowser/Passwords/PasswordsDialog.ui" line="14"/> <source>Saved Passwords</source> <translation>Senhas Gravadas</translation> </message> @@ -38524,12 +38537,12 @@ <translation><p>Existe o módulo de complemento <b>{0}</b>. A cancelar...</p></translation> </message> <message> - <location filename="../PluginManager/PluginInstallDialog.py" line="463"/> + <location filename="../PluginManager/PluginInstallDialog.py" line="469"/> <source>Error installing plugin. Reason: {0}</source> <translation>Erro ao instalar complemento. Motivo: {0}</translation> </message> <message> - <location filename="../PluginManager/PluginInstallDialog.py" line="470"/> + <location filename="../PluginManager/PluginInstallDialog.py" line="476"/> <source>Unspecific exception installing plugin.</source> <translation>Exceção não especificada ao instalar complemento.</translation> </message> @@ -38567,32 +38580,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1103"/> + <location filename="../PluginManager/PluginManager.py" line="1106"/> <source>Plugin Manager Error</source> <translation>Erro do Gestor de Complementos</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1103"/> + <location filename="../PluginManager/PluginManager.py" line="1106"/> <source><p>The plugin download directory <b>{0}</b> could not be created. Please configure it via the configuration dialog.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1179"/> + <location filename="../PluginManager/PluginManager.py" line="1182"/> <source>Error downloading file</source> <translation>Erro ao descarregar ficheiro</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1179"/> + <location filename="../PluginManager/PluginManager.py" line="1182"/> <source><p>Could not download the requested file from {0}.</p><p>Error: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1216"/> + <location filename="../PluginManager/PluginManager.py" line="1219"/> <source>New plugin versions available</source> <translation>Disponível novas versões de complementos</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1216"/> + <location filename="../PluginManager/PluginManager.py" line="1219"/> <source><p>There are new plug-ins or plug-in updates available. Use the plug-in repository dialog to get them.</p></source> <translation type="unfinished"></translation> </message> @@ -39502,362 +39515,362 @@ <context> <name>Project</name> <message> - <location filename="../Project/Project.py" line="161"/> + <location filename="../Project/Project.py" line="163"/> <source>Python3 Files (*.py *.py3);;Python3 GUI Files (*.pyw *.pyw3);;</source> <translation>Ficheiros Python3 (*.py *.py3);;Ficheiros GUI Python3 (*.pyw *.pyw3);;</translation> </message> <message> - <location filename="../Project/Project.py" line="164"/> + <location filename="../Project/Project.py" line="166"/> <source>Ruby Files (*.rb);;</source> <translation>Ficheiros Ruby (*.rb);;</translation> </message> <message> - <location filename="../Project/Project.py" line="245"/> + <location filename="../Project/Project.py" line="247"/> <source>Console</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="246"/> + <location filename="../Project/Project.py" line="248"/> <source>Other</source> <translation>Outro</translation> </message> <message> - <location filename="../Project/Project.py" line="260"/> + <location filename="../Project/Project.py" line="262"/> <source>PySide GUI</source> <translation>GUI de PySide</translation> </message> <message> - <location filename="../Project/Project.py" line="261"/> + <location filename="../Project/Project.py" line="263"/> <source>PySide Console</source> <translation>Consola de PySide</translation> </message> <message> - <location filename="../Project/Project.py" line="344"/> + <location filename="../Project/Project.py" line="346"/> <source>Registering Project Type</source> <translation>A registar Tipo de Projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="699"/> + <location filename="../Project/Project.py" line="701"/> <source>Read project file</source> <translation>Ler ficheiro de projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="699"/> + <location filename="../Project/Project.py" line="701"/> <source><p>The project file <b>{0}</b> could not be read.</p></source> <translation><p>Não se pôde ler o ficheiro de projeto <b>{0}</b>.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="799"/> + <location filename="../Project/Project.py" line="801"/> <source>Save project file</source> <translation>Gravar ficheiro de projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="799"/> + <location filename="../Project/Project.py" line="801"/> <source><p>The project file <b>{0}</b> could not be written.</p></source> <translation><p>Não se pôde escrever o ficheiro de projeto <b>{0}</b>.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="835"/> + <location filename="../Project/Project.py" line="837"/> <source>Read user project properties</source> <translation>Ler propriedades de projeto do usuário</translation> </message> <message> - <location filename="../Project/Project.py" line="835"/> + <location filename="../Project/Project.py" line="837"/> <source><p>The user specific project properties file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="859"/> + <location filename="../Project/Project.py" line="861"/> <source>Save user project properties</source> <translation>Gravar propriedades de projeto do usuário</translation> </message> <message> - <location filename="../Project/Project.py" line="859"/> + <location filename="../Project/Project.py" line="861"/> <source><p>The user specific project properties file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="917"/> + <location filename="../Project/Project.py" line="919"/> <source>Read project session</source> <translation>Ler sessão de projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="1139"/> + <location filename="../Project/Project.py" line="1141"/> <source>Please save the project first.</source> <translation>Guarde primeiro o projeto por favor.</translation> </message> <message> - <location filename="../Project/Project.py" line="917"/> + <location filename="../Project/Project.py" line="919"/> <source><p>The project session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="953"/> + <location filename="../Project/Project.py" line="955"/> <source>Save project session</source> <translation>Gravar a sessão do projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="953"/> + <location filename="../Project/Project.py" line="955"/> <source><p>The project session file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="982"/> + <location filename="../Project/Project.py" line="984"/> <source>Delete project session</source> <translation>Apagar a sessão do projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="982"/> + <location filename="../Project/Project.py" line="984"/> <source><p>The project session file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1016"/> + <location filename="../Project/Project.py" line="1018"/> <source>Read tasks</source> <translation>Ler tarefas</translation> </message> <message> - <location filename="../Project/Project.py" line="1016"/> + <location filename="../Project/Project.py" line="1018"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1036"/> + <location filename="../Project/Project.py" line="1038"/> <source>Save tasks</source> <translation>Gravar tarefas</translation> </message> <message> - <location filename="../Project/Project.py" line="1036"/> + <location filename="../Project/Project.py" line="1038"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1093"/> + <location filename="../Project/Project.py" line="1095"/> <source>Read debugger properties</source> <translation>Ler propriedades do depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="1093"/> + <location filename="../Project/Project.py" line="1095"/> <source><p>The project debugger properties file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1127"/> + <location filename="../Project/Project.py" line="1129"/> <source>Save debugger properties</source> <translation>Gravar propriedades do depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="1127"/> + <location filename="../Project/Project.py" line="1129"/> <source><p>The project debugger properties file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1153"/> + <location filename="../Project/Project.py" line="1155"/> <source>Delete debugger properties</source> <translation>Apagar propriedades do depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="1153"/> + <location filename="../Project/Project.py" line="1155"/> <source><p>The project debugger properties file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1261"/> + <location filename="../Project/Project.py" line="1263"/> <source>Add Language</source> <translation>Adicionar Idioma</translation> </message> <message> - <location filename="../Project/Project.py" line="1261"/> + <location filename="../Project/Project.py" line="1263"/> <source>You have to specify a translation pattern first.</source> <translation>Primeiro tem que especificar um padrão de tradução.</translation> </message> <message> - <location filename="../Project/Project.py" line="1383"/> + <location filename="../Project/Project.py" line="1385"/> <source>Delete translation</source> <translation>Apagar a Tradução</translation> </message> <message> - <location filename="../Project/Project.py" line="1383"/> + <location filename="../Project/Project.py" line="1385"/> <source><p>The selected translation file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1534"/> + <location filename="../Project/Project.py" line="1536"/> <source>Add file</source> <translation>Adicionar ficheiro</translation> </message> <message> - <location filename="../Project/Project.py" line="1596"/> + <location filename="../Project/Project.py" line="1598"/> <source><p>The file <b>{0}</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>O ficheiro <b>{0}</b> já existe. </p><p>Sobreescrever?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1522"/> + <location filename="../Project/Project.py" line="1524"/> <source><p>The selected file <b>{0}</b> could not be added to <b>{1}</b>.</p><p>Reason: {2}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1651"/> + <location filename="../Project/Project.py" line="1653"/> <source>The target directory must not be empty.</source> <translation>O diretório de destino não pode estar vazio.</translation> </message> <message> - <location filename="../Project/Project.py" line="1662"/> + <location filename="../Project/Project.py" line="1664"/> <source>Add directory</source> <translation>Adicionar diretório</translation> </message> <message> - <location filename="../Project/Project.py" line="1565"/> + <location filename="../Project/Project.py" line="1567"/> <source><p>The source directory doesn't contain any files belonging to the selected category.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1578"/> + <location filename="../Project/Project.py" line="1580"/> <source><p>The target directory <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1662"/> + <location filename="../Project/Project.py" line="1664"/> <source>The source directory must not be empty.</source> <translation>O diretório fonte não pode estar vazio.</translation> </message> <message> - <location filename="../Project/Project.py" line="1786"/> + <location filename="../Project/Project.py" line="1788"/> <source>Rename file</source> <translation>Renomear ficheiro</translation> </message> <message> - <location filename="../Project/Project.py" line="1810"/> + <location filename="../Project/Project.py" line="1812"/> <source>Rename File</source> <translation>Renomear Ficheiro</translation> </message> <message> - <location filename="../Project/Project.py" line="2832"/> + <location filename="../Project/Project.py" line="2834"/> <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="../Project/Project.py" line="1810"/> + <location filename="../Project/Project.py" line="1812"/> <source><p>The file <b>{0}</b> could not be renamed.<br />Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2046"/> + <location filename="../Project/Project.py" line="2048"/> <source>Delete file</source> <translation>Apagar ficheiro</translation> </message> <message> - <location filename="../Project/Project.py" line="2046"/> + <location filename="../Project/Project.py" line="2048"/> <source><p>The selected file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2075"/> + <location filename="../Project/Project.py" line="2077"/> <source>Delete directory</source> <translation>Apagar diretório</translation> </message> <message> - <location filename="../Project/Project.py" line="2075"/> + <location filename="../Project/Project.py" line="2077"/> <source><p>The selected directory <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2157"/> + <location filename="../Project/Project.py" line="2159"/> <source>Create project directory</source> <translation>Criar diretório de projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="2157"/> + <location filename="../Project/Project.py" line="2159"/> <source><p>The project directory <b>{0}</b> could not be created.</p></source> <translation><p>O diretorio do projeto <b>{0}</b> não se pôde criar.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2681"/> + <location filename="../Project/Project.py" line="2683"/> <source>New Project</source> <translation>Projeto Novo</translation> </message> <message> - <location filename="../Project/Project.py" line="2233"/> + <location filename="../Project/Project.py" line="2235"/> <source>Add existing files to the project?</source> <translation>Adicionar os ficheiros existentes ao projeto?</translation> </message> <message> - <location filename="../Project/Project.py" line="2681"/> + <location filename="../Project/Project.py" line="2683"/> <source>Select Version Control System</source> <translation>Selecionar o Sistema de Control de Versão</translation> </message> <message> - <location filename="../Project/Project.py" line="2352"/> + <location filename="../Project/Project.py" line="2354"/> <source>Would you like to edit the VCS command options?</source> <translation>Quer editar as opções de commandos VCS?</translation> </message> <message> - <location filename="../Project/Project.py" line="3441"/> + <location filename="../Project/Project.py" line="3443"/> <source>New project</source> <translation>Projeto novo</translation> </message> <message> - <location filename="../Project/Project.py" line="2300"/> + <location filename="../Project/Project.py" line="2302"/> <source>Shall the project file be added to the repository?</source> <translation>Deve adicionar-se o ficheiro de projeto ao repositório?</translation> </message> <message> - <location filename="../Project/Project.py" line="2331"/> + <location filename="../Project/Project.py" line="2333"/> <source>None</source> <translation>Nenhum</translation> </message> <message> - <location filename="../Project/Project.py" line="2324"/> + <location filename="../Project/Project.py" line="2326"/> <source>Select version control system for the project</source> <translation>Selecionar o sistema de control de versão para o projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="2430"/> + <location filename="../Project/Project.py" line="2432"/> <source>Translation Pattern</source> <translation>Padrão de Tradução</translation> </message> <message> - <location filename="../Project/Project.py" line="2430"/> + <location filename="../Project/Project.py" line="2432"/> <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source> <translation>Introduzir o padrão para os ficheiros de tradução (usar '%language%' em lugar do código de idioma):</translation> </message> <message> - <location filename="../Project/Project.py" line="3455"/> + <location filename="../Project/Project.py" line="3457"/> <source>Open project</source> <translation>Abrir projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="2817"/> + <location filename="../Project/Project.py" line="2819"/> <source>Project Files (*.e4p)</source> <translation>Ficheiros de Projeto (*.e4p)</translation> </message> <message> - <location filename="../Project/Project.py" line="3492"/> + <location filename="../Project/Project.py" line="3494"/> <source>Save project as</source> <translation>Gravar projeto como</translation> </message> <message> - <location filename="../Project/Project.py" line="2832"/> + <location filename="../Project/Project.py" line="2834"/> <source>Save File</source> <translation>Gravar Ficheiro</translation> </message> <message> - <location filename="../Project/Project.py" line="2868"/> + <location filename="../Project/Project.py" line="2870"/> <source>Close Project</source> <translation>Fechar Projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="2868"/> + <location filename="../Project/Project.py" line="2870"/> <source>The current project has unsaved changes.</source> <translation>O projeto atual tem alterações por gravar.</translation> </message> <message> - <location filename="../Project/Project.py" line="3033"/> + <location filename="../Project/Project.py" line="3035"/> <source>Syntax errors detected</source> <translation>Detetados erros de sintaxe</translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="3033"/> + <location filename="../Project/Project.py" line="3035"/> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>O projeto tem um ficheiro com erros de síntaxe.</numerusform> @@ -39865,814 +39878,839 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="3441"/> + <location filename="../Project/Project.py" line="3443"/> <source>&New...</source> <translation>&Novo...</translation> </message> <message> - <location filename="../Project/Project.py" line="3446"/> + <location filename="../Project/Project.py" line="3448"/> <source>Generate a new project</source> <translation>Criar um projeto novo</translation> </message> <message> - <location filename="../Project/Project.py" line="3447"/> + <location filename="../Project/Project.py" line="3449"/> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>Novo...</b><p>Abre uma caixa de diálogo para introduzir a informação para um projeto novo.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3455"/> + <location filename="../Project/Project.py" line="3457"/> <source>&Open...</source> <translation>&Abrir...</translation> </message> <message> - <location filename="../Project/Project.py" line="3460"/> + <location filename="../Project/Project.py" line="3462"/> <source>Open an existing project</source> <translation>Abrir um projeto existente</translation> </message> <message> - <location filename="../Project/Project.py" line="3461"/> + <location filename="../Project/Project.py" line="3463"/> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>Abrir...</b><p>Isto abre um projeto existente.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3468"/> + <location filename="../Project/Project.py" line="3470"/> <source>Close project</source> <translation>Fechar projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="3468"/> + <location filename="../Project/Project.py" line="3470"/> <source>&Close</source> <translation>&Fechar</translation> </message> <message> - <location filename="../Project/Project.py" line="3472"/> + <location filename="../Project/Project.py" line="3474"/> <source>Close the current project</source> <translation>Fechar o projeto atual</translation> </message> <message> - <location filename="../Project/Project.py" line="3473"/> + <location filename="../Project/Project.py" line="3475"/> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>Fechar</b><p>Fecha o projeto atual</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3480"/> + <location filename="../Project/Project.py" line="3482"/> <source>Save project</source> <translation>Gravar projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="3671"/> + <location filename="../Project/Project.py" line="3673"/> <source>&Save</source> <translation>&Gravar</translation> </message> <message> - <location filename="../Project/Project.py" line="3484"/> + <location filename="../Project/Project.py" line="3486"/> <source>Save the current project</source> <translation>Gravar o projeto actual</translation> </message> <message> - <location filename="../Project/Project.py" line="3485"/> + <location filename="../Project/Project.py" line="3487"/> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>Gravar</b><p>Guarda o projeto atual.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3492"/> + <location filename="../Project/Project.py" line="3494"/> <source>Save &as...</source> <translation>Gravar &como...</translation> </message> <message> - <location filename="../Project/Project.py" line="3496"/> - <source>Save the current project to a new file</source> - <translation>Gravar o projeto atual para um ficheiro novo</translation> - </message> - <message> <location filename="../Project/Project.py" line="3498"/> + <source>Save the current project to a new file</source> + <translation>Gravar o projeto atual para um ficheiro novo</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3500"/> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>Gravar como</b><p>Guarda o projeto atual para um ficheiro novo.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3507"/> + <location filename="../Project/Project.py" line="3509"/> <source>Add files to project</source> <translation>Adicionar ficheiros ao projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="3507"/> + <location filename="../Project/Project.py" line="3509"/> <source>Add &files...</source> <translation>Adicionar &ficheiros...</translation> </message> <message> - <location filename="../Project/Project.py" line="3512"/> - <source>Add files to the current project</source> - <translation>Adicionar ficheiros ao projeto atual</translation> - </message> - <message> <location filename="../Project/Project.py" line="3514"/> + <source>Add files to the current project</source> + <translation>Adicionar ficheiros ao projeto atual</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3516"/> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation><b>Adicionar ficheiros...</b><p>Abre uma caixa de diálogo para adicionar ficheiros ao projeto atual. O lugar para adicionar determina-se pela extensão de ficheiro.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3523"/> + <location filename="../Project/Project.py" line="3525"/> <source>Add directory to project</source> <translation>Adicionar diretório ao projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="3523"/> + <location filename="../Project/Project.py" line="3525"/> <source>Add directory...</source> <translation>Adicionar diretório...</translation> </message> <message> - <location filename="../Project/Project.py" line="3528"/> - <source>Add a directory to the current project</source> - <translation>Adicionar um diretório ao projeto atual</translation> - </message> - <message> <location filename="../Project/Project.py" line="3530"/> + <source>Add a directory to the current project</source> + <translation>Adicionar um diretório ao projeto atual</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3532"/> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>Adicionar diretório</b><p>Abre uma caixa de diálogo para adicionar um diretório ao projeto atual.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3538"/> + <location filename="../Project/Project.py" line="3540"/> <source>Add translation to project</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3538"/> + <location filename="../Project/Project.py" line="3540"/> <source>Add &translation...</source> <translation>Adicionar &tradução...</translation> </message> <message> - <location filename="../Project/Project.py" line="3543"/> - <source>Add a translation to the current project</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3545"/> + <source>Add a translation to the current project</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3547"/> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3553"/> + <location filename="../Project/Project.py" line="3555"/> <source>Search new files</source> <translation>Procurar ficheiros novos</translation> </message> <message> - <location filename="../Project/Project.py" line="3553"/> + <location filename="../Project/Project.py" line="3555"/> <source>Searc&h new files...</source> <translation>&Procurar ficheiros novos...</translation> </message> <message> - <location filename="../Project/Project.py" line="3557"/> - <source>Search new files in the project directory.</source> - <translation>Procurar ficheiros novos no diretório do projeto.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3559"/> + <source>Search new files in the project directory.</source> + <translation>Procurar ficheiros novos no diretório do projeto.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3561"/> <source><b>Search new files...</b><p>This searches for new files (sources, *.ui, *.idl) in the project directory and registered subdirectories.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3582"/> + <location filename="../Project/Project.py" line="3584"/> <source>Project properties</source> <translation>Propriedades do projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="3582"/> + <location filename="../Project/Project.py" line="3584"/> <source>&Properties...</source> <translation>&Propriedades...</translation> </message> <message> - <location filename="../Project/Project.py" line="3587"/> + <location filename="../Project/Project.py" line="3589"/> <source>Show the project properties</source> <translation>Mostrar as propriedades do projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="3588"/> + <location filename="../Project/Project.py" line="3590"/> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3595"/> + <location filename="../Project/Project.py" line="3597"/> <source>User project properties</source> <translation>Propriedades de projecto do usuário</translation> </message> <message> - <location filename="../Project/Project.py" line="3595"/> + <location filename="../Project/Project.py" line="3597"/> <source>&User Properties...</source> <translation>Propriedades de &Usuário...</translation> </message> <message> - <location filename="../Project/Project.py" line="3600"/> - <source>Show the user specific project properties</source> - <translation>Mostrar as propriedades do projeto específicas do usuário</translation> - </message> - <message> <location filename="../Project/Project.py" line="3602"/> + <source>Show the user specific project properties</source> + <translation>Mostrar as propriedades do projeto específicas do usuário</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3604"/> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3610"/> + <location filename="../Project/Project.py" line="3612"/> <source>Filetype Associations</source> <translation>Associações de Tipos de Ficheiros</translation> </message> <message> - <location filename="../Project/Project.py" line="3610"/> + <location filename="../Project/Project.py" line="3612"/> <source>Filetype Associations...</source> <translation>Associações de Tipos de Ficheiros...</translation> </message> <message> - <location filename="../Project/Project.py" line="3614"/> - <source>Show the project filetype associations</source> - <translation>Mostrar as associações de tipos de ficheiros do projeto</translation> - </message> - <message> <location filename="../Project/Project.py" line="3616"/> + <source>Show the project filetype associations</source> + <translation>Mostrar as associações de tipos de ficheiros do projeto</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3618"/> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the filetype associations of the project. These associations determine the type (source, form, interface or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3628"/> + <location filename="../Project/Project.py" line="3630"/> <source>Lexer Associations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3628"/> + <location filename="../Project/Project.py" line="3630"/> <source>Lexer Associations...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3632"/> - <source>Show the project lexer associations (overriding defaults)</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3634"/> + <source>Show the project lexer associations (overriding defaults)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3636"/> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3646"/> + <location filename="../Project/Project.py" line="3648"/> <source>Debugger Properties</source> <translation>Propriedades do Depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="3646"/> + <location filename="../Project/Project.py" line="3648"/> <source>Debugger &Properties...</source> <translation>&Propriedades do Depurador...</translation> </message> <message> - <location filename="../Project/Project.py" line="3650"/> + <location filename="../Project/Project.py" line="3652"/> <source>Show the debugger properties</source> <translation>Mostrar as propriedades do depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="3651"/> + <location filename="../Project/Project.py" line="3653"/> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3659"/> + <location filename="../Project/Project.py" line="3661"/> <source>Load</source> <translation>Carregar</translation> </message> <message> - <location filename="../Project/Project.py" line="3659"/> + <location filename="../Project/Project.py" line="3661"/> <source>&Load</source> <translation>&Carregar</translation> </message> <message> - <location filename="../Project/Project.py" line="3663"/> + <location filename="../Project/Project.py" line="3665"/> <source>Load the debugger properties</source> <translation>Carregar propriedades do depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="3664"/> + <location filename="../Project/Project.py" line="3666"/> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3671"/> + <location filename="../Project/Project.py" line="3673"/> <source>Save</source> <translation>Gravar</translation> </message> <message> - <location filename="../Project/Project.py" line="3675"/> + <location filename="../Project/Project.py" line="3677"/> <source>Save the debugger properties</source> <translation>Gravar propriedades do depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="3676"/> + <location filename="../Project/Project.py" line="3678"/> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3683"/> + <location filename="../Project/Project.py" line="3685"/> <source>Delete</source> <translation>Apagar</translation> </message> <message> - <location filename="../Project/Project.py" line="3683"/> + <location filename="../Project/Project.py" line="3685"/> <source>&Delete</source> <translation>&Apagar</translation> </message> <message> - <location filename="../Project/Project.py" line="3687"/> + <location filename="../Project/Project.py" line="3689"/> <source>Delete the debugger properties</source> <translation>Apagar as propriedades do depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="3688"/> + <location filename="../Project/Project.py" line="3690"/> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3696"/> + <location filename="../Project/Project.py" line="3698"/> <source>Reset</source> <translation>Reinicializar</translation> </message> <message> - <location filename="../Project/Project.py" line="3696"/> + <location filename="../Project/Project.py" line="3698"/> <source>&Reset</source> <translation>&Reinicializar</translation> </message> <message> - <location filename="../Project/Project.py" line="3700"/> + <location filename="../Project/Project.py" line="3702"/> <source>Reset the debugger properties</source> <translation>Reinicializar as propriedades do depurador</translation> </message> <message> - <location filename="../Project/Project.py" line="3701"/> + <location filename="../Project/Project.py" line="3703"/> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3710"/> + <location filename="../Project/Project.py" line="3712"/> <source>Load session</source> <translation>Carregar sessão</translation> </message> <message> - <location filename="../Project/Project.py" line="3714"/> + <location filename="../Project/Project.py" line="3716"/> <source>Load the projects session file.</source> <translation>Carregar o ficheiro de sessão do projeto.</translation> </message> <message> - <location filename="../Project/Project.py" line="3715"/> + <location filename="../Project/Project.py" line="3717"/> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3728"/> + <location filename="../Project/Project.py" line="3730"/> <source>Save session</source> <translation>Guargar sessão</translation> </message> <message> - <location filename="../Project/Project.py" line="3732"/> + <location filename="../Project/Project.py" line="3734"/> <source>Save the projects session file.</source> <translation>Gravar ficheiro de sessão do projeto.</translation> </message> <message> - <location filename="../Project/Project.py" line="3733"/> + <location filename="../Project/Project.py" line="3735"/> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3746"/> + <location filename="../Project/Project.py" line="3748"/> <source>Delete session</source> <translation>Apagar sessão</translation> </message> <message> - <location filename="../Project/Project.py" line="3750"/> + <location filename="../Project/Project.py" line="3752"/> <source>Delete the projects session file.</source> <translation>Apagar o ficheiro de sessão do projeto.</translation> </message> <message> - <location filename="../Project/Project.py" line="3751"/> + <location filename="../Project/Project.py" line="3753"/> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3760"/> + <location filename="../Project/Project.py" line="3762"/> <source>Code Metrics</source> <translation type="unfinished">Métricas de Código</translation> </message> <message> - <location filename="../Project/Project.py" line="3760"/> + <location filename="../Project/Project.py" line="3762"/> <source>&Code Metrics...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> - <source>Show some code metrics for the project.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3766"/> + <source>Show some code metrics for the project.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3768"/> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3774"/> + <location filename="../Project/Project.py" line="3776"/> <source>Python Code Coverage</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3774"/> + <location filename="../Project/Project.py" line="3776"/> <source>Code Co&verage...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> - <source>Show code coverage information for the project.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3780"/> + <source>Show code coverage information for the project.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3782"/> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4564"/> + <location filename="../Project/Project.py" line="4568"/> <source>Profile Data</source> <translation type="unfinished">Dados de Perfil</translation> </message> <message> - <location filename="../Project/Project.py" line="3788"/> + <location filename="../Project/Project.py" line="3790"/> <source>&Profile Data...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3792"/> - <source>Show profiling data for the project.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3794"/> + <source>Show profiling data for the project.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3796"/> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4618"/> + <location filename="../Project/Project.py" line="4622"/> <source>Application Diagram</source> <translation>Diagrama da Aplicação</translation> </message> <message> - <location filename="../Project/Project.py" line="3803"/> + <location filename="../Project/Project.py" line="3805"/> <source>&Application Diagram...</source> <translation>Diagrama da &Aplicação...</translation> </message> <message> - <location filename="../Project/Project.py" line="3807"/> - <source>Show a diagram of the project.</source> - <translation>Mostrar o diagrama do projeto.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3809"/> + <source>Show a diagram of the project.</source> + <translation>Mostrar o diagrama do projeto.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3811"/> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>Diagrama da Aplicação...</b><p>Mostra um diagrama do projeto.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4776"/> + <location filename="../Project/Project.py" line="4780"/> <source>Create Package List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3832"/> + <location filename="../Project/Project.py" line="3834"/> <source>Create &Package List</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5003"/> + <location filename="../Project/Project.py" line="5027"/> <source>Create Plugin Archive</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3848"/> - <source>Create Plugin &Archive</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3864"/> - <source>Create Plugin Archive (Snapshot)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3864"/> - <source>Create Plugin Archive (&Snapshot)</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3900"/> + <location filename="../Project/Project.py" line="3904"/> <source>&Project</source> <translation>&Projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="3901"/> + <location filename="../Project/Project.py" line="3905"/> <source>Open &Recent Projects</source> <translation>Abrir Projetos &Recentes</translation> </message> <message> - <location filename="../Project/Project.py" line="3902"/> - <source>&Version Control</source> - <translation>Contro&l de Versão</translation> - </message> - <message> <location filename="../Project/Project.py" line="3906"/> - <source>Chec&k</source> - <translation>&Verificar</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3908"/> - <source>Sho&w</source> - <translation>&Mostrar</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3909"/> - <source>&Diagrams</source> - <translation>&Diagramas</translation> + <source>&Version Control</source> + <translation>Contro&l de Versão</translation> </message> <message> <location filename="../Project/Project.py" line="3910"/> - <source>Session</source> - <translation>Sessão</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3911"/> - <source>Source &Documentation</source> - <translation>&Documentação Fonte</translation> + <source>Chec&k</source> + <translation>&Verificar</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3912"/> + <source>Sho&w</source> + <translation>&Mostrar</translation> </message> <message> <location filename="../Project/Project.py" line="3913"/> - <source>Debugger</source> - <translation>Depurador</translation> + <source>&Diagrams</source> + <translation>&Diagramas</translation> </message> <message> <location filename="../Project/Project.py" line="3914"/> + <source>Session</source> + <translation>Sessão</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3915"/> + <source>Source &Documentation</source> + <translation>&Documentação Fonte</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3917"/> + <source>Debugger</source> + <translation>Depurador</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3918"/> <source>Pac&kagers</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4022"/> + <location filename="../Project/Project.py" line="4026"/> <source>Project</source> <translation>Projeto</translation> </message> <message> - <location filename="../Project/Project.py" line="4088"/> + <location filename="../Project/Project.py" line="4092"/> <source>&Clear</source> <translation>&Limpar</translation> </message> <message> - <location filename="../Project/Project.py" line="4227"/> + <location filename="../Project/Project.py" line="4231"/> <source>Search New Files</source> <translation>Procurar Ficheiros Novos</translation> </message> <message> - <location filename="../Project/Project.py" line="4227"/> + <location filename="../Project/Project.py" line="4231"/> <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="4373"/> + <location filename="../Project/Project.py" line="4377"/> <source>Version Control System</source> <translation>Sistema de Control de Versão</translation> </message> <message> - <location filename="../Project/Project.py" line="4373"/> + <location filename="../Project/Project.py" line="4377"/> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4491"/> + <location filename="../Project/Project.py" line="4495"/> <source>Coverage Data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4541"/> + <location filename="../Project/Project.py" line="4545"/> <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="4514"/> + <location filename="../Project/Project.py" line="4518"/> <source>Code Coverage</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4514"/> + <location filename="../Project/Project.py" line="4518"/> <source>Please select a coverage file</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4564"/> + <location filename="../Project/Project.py" line="4568"/> <source>Please select a profile file</source> <translation>Escolha um ficheiro de perfil por favor</translation> </message> <message> - <location filename="../Project/Project.py" line="4618"/> + <location filename="../Project/Project.py" line="4622"/> <source>Include module names?</source> <translation>Incluir nomes de módulos?</translation> </message> <message> - <location filename="../Project/Project.py" line="4736"/> + <location filename="../Project/Project.py" line="4740"/> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4776"/> + <location filename="../Project/Project.py" line="4780"/> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4815"/> - <source><p>The file <b>PKGLIST</b> does not exist. Aborting...</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4823"/> + <location filename="../Project/Project.py" line="4799"/> <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="4836"/> - <source><p>The file <b>PKGLIST</b> could not be read.</p><p>Reason: {0}</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4892"/> + <location filename="../Project/Project.py" line="4911"/> <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"></translation> </message> <message> - <location filename="../Project/Project.py" line="4961"/> + <location filename="../Project/Project.py" line="4985"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="158"/> + <location filename="../Project/Project.py" line="160"/> <source>Python2 Files (*.py2);;Python2 GUI Files (*.pyw2);;</source> <translation>Ficheiros Python2 (*.py2);;Ficheiros GUI Python2 (*.pyw2);;</translation> </message> <message> - <location filename="../Project/Project.py" line="2220"/> + <location filename="../Project/Project.py" line="2222"/> <source>Create main script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2220"/> + <location filename="../Project/Project.py" line="2222"/> <source><p>The mainscript <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3817"/> + <location filename="../Project/Project.py" line="3819"/> <source>Load Diagram</source> <translation>Carregar Diagrama</translation> </message> <message> - <location filename="../Project/Project.py" line="3817"/> + <location filename="../Project/Project.py" line="3819"/> <source>&Load Diagram...</source> <translation>&Carregar Diagrama...</translation> </message> <message> - <location filename="../Project/Project.py" line="3821"/> - <source>Load a diagram from file.</source> - <translation>Carregar um diagrama desde um ficheiro.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3823"/> + <source>Load a diagram from file.</source> + <translation>Carregar um diagrama desde um ficheiro.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3825"/> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation><b>Carregar Diagrama...</b><p>Carga um diagrama desde um ficheiro.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="321"/> + <location filename="../Project/Project.py" line="323"/> <source><p>The Programming Language <b>{0}</b> is not supported.</p></source> <translation><p>A Linguagem de Programação <b>{0}</b> não está suportada.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="344"/> + <location filename="../Project/Project.py" line="346"/> <source><p>The Project type <b>{0}</b> is already registered.</p></source> <translation><p>O tipo de Projeto <b>{0}</b> já está registado.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="332"/> + <location filename="../Project/Project.py" line="334"/> <source><p>The Project type <b>{0}</b> is already registered with Programming Language <b>{1}</b>.</p></source> <translation><p>O tipo de Projeto <b>{0}</b> já está registado com a Linguagem de Programação <b>{1}</b>.</p></translation> </message> <message> + <location filename="../Project/Project.py" line="244"/> + <source>PyQt5 GUI</source> + <translation>GUI de PyQt5</translation> + </message> + <message> + <location filename="../Project/Project.py" line="245"/> + <source>PyQt5 Console</source> + <translation>Consola de PyQt5</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4365"/> + <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="5027"/> + <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="../Project/Project.py" line="242"/> - <source>PyQt5 GUI</source> - <translation>GUI de PyQt5</translation> + <source>PyQt4 GUI</source> + <translation>GUI de PyQt4</translation> </message> <message> <location filename="../Project/Project.py" line="243"/> - <source>PyQt5 Console</source> - <translation>Consola de PyQt5</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4361"/> - <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="5003"/> - <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="240"/> - <source>PyQt4 GUI</source> - <translation>GUI de PyQt4</translation> - </message> - <message> - <location filename="../Project/Project.py" line="241"/> <source>PyQt4 Console</source> <translation>Consola de PyQt4</translation> </message> <message> - <location filename="../Project/Project.py" line="244"/> + <location filename="../Project/Project.py" line="246"/> <source>Eric6 Plugin</source> <translation>Complemento de Eric6</translation> </message> <message> - <location filename="../Project/Project.py" line="3837"/> - <source>Create an initial PKGLIST file for an eric6 plugin.</source> - <translation>Criar um ficheiro PKGLIST inicial para complemento eric6.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3839"/> + <source>Create an initial PKGLIST file for an eric6 plugin.</source> + <translation>Criar um ficheiro PKGLIST inicial para complemento eric6.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3841"/> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric6 plugin archive. The list is created from the project file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3853"/> - <source>Create an eric6 plugin archive file.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3855"/> - <source><b>Create Plugin Archive</b><p>This creates an eric6 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3869"/> - <source>Create an eric6 plugin archive file (snapshot release).</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3871"/> - <source><b>Create Plugin Archive (Snapshot)</b><p>This creates an eric6 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name. The version entry of the main script is modified to reflect a snapshot release.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4866"/> + <location filename="../Project/Project.py" line="4881"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> <location filename="../Project/Project.py" line="4915"/> <source><p>The eric6 plugin archive file <b>{0}</b> was created successfully.</p></source> - <translation><p>O ficheiro de complemento de eric6 <b>{0}</b> foi criado com êxito.</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="2651"/> + <translation type="obsolete"><p>O ficheiro de complemento de eric6 <b>{0}</b> foi criado com êxito.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="2653"/> <source>Create project management directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2651"/> + <location filename="../Project/Project.py" line="2653"/> <source><p>The project directory <b>{0}</b> is not writable.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3567"/> + <location filename="../Project/Project.py" line="3569"/> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3573"/> - <source>Search for a file in the project list of files.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3575"/> + <source>Search for a file in the project list of files.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3577"/> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3567"/> + <location filename="../Project/Project.py" line="3569"/> <source>Search Project File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3567"/> + <location filename="../Project/Project.py" line="3569"/> <source>Search Project File...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4799"/> - <source>Select a package list file:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4806"/> - <source><p>No package list file selected. Aborting...</p></source> + <location filename="../Project/Project.py" line="4834"/> + <source>Create Plugin Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3850"/> + <source>Create Plugin &Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3855"/> + <source>Create eric6 plugin archive files.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3857"/> + <source><b>Create Plugin Archives</b><p>This creates eric6 plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3867"/> + <source>Create Plugin Archives (Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3867"/> + <source>Create Plugin Archives (&Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3872"/> + <source>Create eric6 plugin archive files (snapshot releases).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3874"/> + <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric6 plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4813"/> + <source>Select package lists:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>Creating plugin archives...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>Abort</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>%v/%m Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4847"/> + <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="4930"/> + <source><p>The eric6 plugin archive files were created with some errors.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4933"/> + <source><p>The eric6 plugin archive files were created successfully.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4823"/> + <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished"></translation> </message> </context> @@ -42677,7 +42715,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../DataViews/PyCoverageDialog.py" line="349"/> + <location filename="../DataViews/PyCoverageDialog.ui" line="172"/> <source>Coverage</source> <translation type="unfinished"></translation> </message> @@ -42756,7 +42794,7 @@ </translation> </message> <message> - <location filename="../DataViews/PyCoverageDialog.py" line="345"/> + <location filename="../DataViews/PyCoverageDialog.ui" line="192"/> <source>%v/%m Files</source> <translation type="unfinished"></translation> </message> @@ -42764,7 +42802,7 @@ <context> <name>PyProfileDialog</name> <message> - <location filename="../DataViews/PyProfileDialog.py" line="233"/> + <location filename="../DataViews/PyProfileDialog.ui" line="20"/> <source>Profile Results</source> <translation type="unfinished"></translation> </message> @@ -47299,7 +47337,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.py" line="150"/> + <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.ui" line="89"/> <source>Remove Filters</source> <translation type="unfinished"></translation> </message> @@ -47309,7 +47347,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.py" line="178"/> + <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.ui" line="99"/> <source>Remove Attributes</source> <translation type="unfinished"></translation> </message> @@ -48772,7 +48810,7 @@ <context> <name>SendRefererWhitelistDialog</name> <message> - <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="52"/> + <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.ui" line="14"/> <source>Send Referer Whitelist</source> <translation>Lista de Confiança para Envío de Referer</translation> </message> @@ -49972,7 +50010,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Snapshot/SnapWidget.py" line="531"/> + <location filename="../Snapshot/SnapWidget.ui" line="20"/> <source>eric6 Snapshot</source> <translation type="unfinished"></translation> </message> @@ -52458,7 +52496,7 @@ <context> <name>SvnDiffDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="171"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.ui" line="14"/> <source>Subversion Diff</source> <translation type="unfinished"></translation> </message> @@ -52760,17 +52798,17 @@ <translation type="unfinished">Selecionar o campo a filtrar</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="621"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="112"/> <source>Revision</source> <translation>Revisão</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="618"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="117"/> <source>Author</source> <translation>Autor</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="141"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="127"/> <source>Message</source> <translation>Mensagem</translation> </message> @@ -53224,7 +53262,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="128"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.ui" line="45"/> <source>&URL:</source> <translation>&URL:</translation> </message> @@ -53328,7 +53366,7 @@ <translation type="unfinished">Selecionar o protocolo para aceder ao repositorio</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.py" line="95"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.ui" line="45"/> <source>&URL:</source> <translation type="unfinished">&URL:</translation> </message> @@ -54545,7 +54583,7 @@ <context> <name>SvnStatusDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="394"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="14"/> <source>Subversion Status</source> <translation type="unfinished"></translation> </message> @@ -54821,7 +54859,7 @@ <translation>Não pôde iniciar {0}.<br>Certifique-se de que está na rota de pesquisa.</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="711"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="80"/> <source>Commit</source> <translation type="unfinished">Cometido</translation> </message> @@ -60140,7 +60178,7 @@ <context> <name>UnittestDialog</name> <message> - <location filename="../PyUnit/UnittestDialog.py" line="400"/> + <location filename="../PyUnit/UnittestDialog.ui" line="14"/> <source>Unittest</source> <translation>Teste Unitário</translation> </message> @@ -63024,62 +63062,62 @@ <context> <name>VariablesViewer</name> <message> - <location filename="../Debugger/VariablesViewer.py" line="354"/> + <location filename="../Debugger/VariablesViewer.py" line="358"/> <source>Global Variables</source> <translation>Variáveis Globais</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="355"/> - <source>Globals</source> - <translation>Globais</translation> - </message> - <message> - <location filename="../Debugger/VariablesViewer.py" line="366"/> - <source>Value</source> - <translation>Valor</translation> - </message> - <message> - <location filename="../Debugger/VariablesViewer.py" line="366"/> - <source>Type</source> - <translation>Tipo</translation> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="359"/> + <source>Globals</source> + <translation>Globais</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="370"/> + <source>Value</source> + <translation>Valor</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="370"/> + <source>Type</source> + <translation>Tipo</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="363"/> <source><b>The Global Variables Viewer Window</b><p>This window displays the global variables of the debugged program.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="365"/> + <location filename="../Debugger/VariablesViewer.py" line="369"/> <source>Local Variables</source> <translation>Variáveis Locais</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="366"/> - <source>Locals</source> - <translation>Locais</translation> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="370"/> + <source>Locals</source> + <translation>Locais</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="374"/> <source><b>The Local Variables Viewer Window</b><p>This window displays the local variables of the debugged program.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="401"/> + <location filename="../Debugger/VariablesViewer.py" line="405"/> <source>Show Details...</source> <translation>Mostrar Detalhes...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="409"/> + <location filename="../Debugger/VariablesViewer.py" line="413"/> <source>Configure...</source> <translation>Configurar...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="629"/> + <location filename="../Debugger/VariablesViewer.py" line="633"/> <source>{0} items</source> <translation>{0} elementos</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="407"/> + <location filename="../Debugger/VariablesViewer.py" line="411"/> <source>Refresh</source> <translation type="unfinished">Atualizar</translation> </message>
--- a/i18n/eric6_ru.ts Sun Oct 16 12:20:30 2016 +0200 +++ b/i18n/eric6_ru.ts Sun Oct 16 14:42:46 2016 +0200 @@ -390,7 +390,7 @@ <context> <name>AddBookmarkDialog</name> <message> - <location filename="../WebBrowser/Bookmarks/AddBookmarkDialog.py" line="198"/> + <location filename="../WebBrowser/Bookmarks/AddBookmarkDialog.ui" line="26"/> <source>Add Bookmark</source> <translation>Добавить закладку</translation> </message> @@ -1680,7 +1680,7 @@ <translation>Удалить выбранные элементы</translation> </message> <message> - <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="169"/> + <location filename="../WebBrowser/Bookmarks/BookmarksDialog.ui" line="75"/> <source>&Delete</source> <translation>&Удалить</translation> </message> @@ -2403,12 +2403,12 @@ <translation>Сохранить трассировку вызовов как текстовый файл</translation> </message> <message> - <location filename="../Debugger/CallTraceViewer.py" line="54"/> + <location filename="../Debugger/CallTraceViewer.ui" line="109"/> <source>From</source> <translation>От</translation> </message> <message> - <location filename="../Debugger/CallTraceViewer.py" line="54"/> + <location filename="../Debugger/CallTraceViewer.ui" line="114"/> <source>To</source> <translation>До</translation> </message> @@ -2516,7 +2516,7 @@ <translation>Очистить список хостов</translation> </message> <message> - <location filename="../Cooperation/ChatWidget.py" line="513"/> + <location filename="../Cooperation/ChatWidget.ui" line="230"/> <source>Clear</source> <translation>Очистить</translation> </message> @@ -2874,7 +2874,7 @@ <context> <name>ClickToFlashWhitelistDialog</name> <message> - <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.py" line="54"/> + <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.ui" line="14"/> <source>ClickToFlash Whitelist</source> <translation>Белый список ClickToFlash</translation> </message> @@ -4168,22 +4168,22 @@ <translation>Выполнить сравнение двух файлов</translation> </message> <message> - <location filename="../UI/CompareDialog.py" line="356"/> + <location filename="../UI/CompareDialog.py" line="354"/> <source>Total: {0}</source> <translation>Всего: {0}</translation> </message> <message> + <location filename="../UI/CompareDialog.py" line="356"/> + <source>Changed: {0}</source> + <translation>Изменено: {0}</translation> + </message> + <message> + <location filename="../UI/CompareDialog.py" line="357"/> + <source>Added: {0}</source> + <translation>Добавлено: {0}</translation> + </message> + <message> <location filename="../UI/CompareDialog.py" line="358"/> - <source>Changed: {0}</source> - <translation>Изменено: {0}</translation> - </message> - <message> - <location filename="../UI/CompareDialog.py" line="359"/> - <source>Added: {0}</source> - <translation>Добавлено: {0}</translation> - </message> - <message> - <location filename="../UI/CompareDialog.py" line="360"/> <source>Deleted: {0}</source> <translation>Удалено: {0}</translation> </message> @@ -4801,7 +4801,7 @@ <translation>Домен:</translation> </message> <message> - <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="177"/> + <location filename="../WebBrowser/CookieJar/CookiesDialog.ui" line="223"/> <source><no cookie selected></source> <translation><куки не выбраны></translation> </message> @@ -7528,7 +7528,7 @@ <context> <name>DownloadManager</name> <message> - <location filename="../WebBrowser/Download/DownloadManager.py" line="363"/> + <location filename="../WebBrowser/Download/DownloadManager.ui" line="14"/> <source>Downloads</source> <translation>Загрузки</translation> </message> @@ -7761,6 +7761,19 @@ </message> </context> <context> + <name>E5ListSelectionDialog</name> + <message> + <location filename="../E5Gui/E5ListSelectionDialog.ui" line="14"/> + <source>Select from List</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../E5Gui/E5ListSelectionDialog.ui" line="23"/> + <source>Select from the list below:</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>E5MainWindow</name> <message> <location filename="../E5Gui/E5MainWindow.py" line="56"/> @@ -7979,92 +7992,92 @@ <translation>Стандартные кнопки</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="41"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="257"/> <source>Abort</source> <translation>Прервать</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="42"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="264"/> <source>Apply</source> <translation>Применить</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="43"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="271"/> <source>Cancel</source> <translation>Отмена</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="44"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="278"/> <source>Close</source> <translation>Закрыть</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="45"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="285"/> <source>Discard</source> <translation>Сбросить</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="46"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="292"/> <source>Help</source> <translation>Справка</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="47"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="299"/> <source>Ignore</source> <translation>Игнорировать</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="48"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="306"/> <source>No</source> <translation>Нет</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="49"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="313"/> <source>No to all</source> <translation>Нет для всех</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="50"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="320"/> <source>Ok</source> <translation>Ok</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="51"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="327"/> <source>Open</source> <translation>Открыть</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="52"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="334"/> <source>Reset</source> <translation>Сбросить</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="53"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="341"/> <source>Restore defaults</source> <translation>Восстановить умолчания</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="54"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="348"/> <source>Retry</source> <translation>Повтор</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="55"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="355"/> <source>Save</source> <translation>Сохранить</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="56"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="362"/> <source>Save all</source> <translation>Сохранить всё</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="57"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="369"/> <source>Yes</source> <translation>Да</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="58"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="376"/> <source>Yes to all</source> <translation>Да для всех</translation> </message> @@ -10083,7 +10096,7 @@ <translation>Выбор API-файла из списка установленных файлов</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="184"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="132"/> <source>Add from installed APIs</source> <translation>Добавить из списка установленных файлов API</translation> </message> @@ -10093,7 +10106,7 @@ <translation>Выбор API-файла из списка API-файлов установленных плагинов</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="203"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="142"/> <source>Add from Plugin APIs</source> <translation>Добавить из списка файлов API, установленных с помощью плагинов</translation> </message> @@ -10103,7 +10116,7 @@ <translation>Компиляция выбранных определений API</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="236"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="159"/> <source>Compile APIs</source> <translation>Компилировать API</translation> </message> @@ -11148,7 +11161,7 @@ <translation>Выберите шрифт.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="69"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="103"/> <source>Font</source> <translation>Шрифт</translation> </message> @@ -11158,7 +11171,7 @@ <translation>Разрешить заливку фона до конца строки.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="113"/> <source>Fill to end of line</source> <translation>Заливка до конца строки</translation> </message> @@ -12680,7 +12693,7 @@ <translation>Режим:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="58"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1080"/> <source>Disabled</source> <translation>Отключена</translation> </message> @@ -13389,7 +13402,7 @@ <context> <name>EmailDialog</name> <message> - <location filename="../UI/EmailDialog.py" line="339"/> + <location filename="../UI/EmailDialog.ui" line="13"/> <source>Send bug report</source> <translation>Отправить сообщение об ошибке</translation> </message> @@ -14794,12 +14807,12 @@ <translation>Уведомления</translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="110"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="122"/> <source>Host</source> <translation>Хост</translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="111"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="127"/> <source>Permission</source> <translation>Разрешение</translation> </message> @@ -14814,7 +14827,7 @@ <translation>Удалить все</translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="51"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="97"/> <source>Geolocation</source> <translation>Геолокация</translation> </message> @@ -15941,7 +15954,7 @@ <translation>Имя:</translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="193"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="158"/> <source><no flash cookie selected></source> <translation><нет выделенных флэш-куки></translation> </message> @@ -15951,7 +15964,7 @@ <translation>Размер:</translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="122"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="137"/> <source>Origin:</source> <translation>Источник:</translation> </message> @@ -15986,7 +15999,7 @@ <translation>Удалить выбранные флэш-куки</translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="213"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="225"/> <source>Remove Cookie</source> <translation>Удалить куки</translation> </message> @@ -16415,7 +16428,7 @@ <context> <name>GreaseMonkeyAddScriptDialog</name> <message> - <location filename="../WebBrowser/GreaseMonkey/GreaseMonkeyAddScriptDialog.py" line="105"/> + <location filename="../WebBrowser/GreaseMonkey/GreaseMonkeyAddScriptDialog.ui" line="14"/> <source>GreaseMonkey Script Installation</source> <translation>Инсталляция GreaseMonkey скрипта</translation> </message> @@ -22023,7 +22036,7 @@ <context> <name>HgAddSubrepositoryDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.py" line="98"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.ui" line="14"/> <source>Add Sub-repository</source> <translation>Добавить субрепозиторий</translation> </message> @@ -23114,7 +23127,7 @@ <translation>Пометить выбранные конфликты как 'разрешенные'</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="247"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.ui" line="73"/> <source>Resolved</source> <translation>Разрешённые</translation> </message> @@ -23124,7 +23137,7 @@ <translation>Пометить выбранные конфликты как 'неразрешенные'</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="245"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.ui" line="83"/> <source>Unresolved</source> <translation>Неразрешённые</translation> </message> @@ -23717,7 +23730,7 @@ <translation>Задайте поле, по которому фильтровать</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="317"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.ui" line="55"/> <source>Revision</source> <translation>Ревизия</translation> </message> @@ -23997,7 +24010,7 @@ <context> <name>HgLogBrowserDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="71"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="14"/> <source>Mercurial Log</source> <translation>Mercurial: Журнал</translation> </message> @@ -24037,17 +24050,17 @@ <translation>Задайте поле, по которому фильтровать</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="96"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="181"/> <source>Revision</source> <translation>Ревизия</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="97"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="191"/> <source>Author</source> <translation>Автор</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="98"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="201"/> <source>Message</source> <translation>Сообщение</translation> </message> @@ -27895,7 +27908,7 @@ <context> <name>HgStatusDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="313"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="14"/> <source>Mercurial Status</source> <translation>Mercurial: Статус </translation> </message> @@ -28037,7 +28050,7 @@ <translation>Невозможно запустить процесс {0}. Убедитесь, что он находится в путях поиска.</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="708"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="87"/> <source>Commit</source> <translation>Фиксация</translation> </message> @@ -28157,7 +28170,7 @@ <translation>все</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="854"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="203"/> <source>Differences</source> <translation>Различия</translation> </message> @@ -28928,7 +28941,7 @@ <translation>Удалить выбранные записи</translation> </message> <message> - <location filename="../WebBrowser/History/HistoryDialog.py" line="114"/> + <location filename="../WebBrowser/History/HistoryDialog.ui" line="75"/> <source>&Remove</source> <translation>&Удалить</translation> </message> @@ -34798,92 +34811,92 @@ <translation>Стандартные кнопки</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="40"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="219"/> <source>Apply</source> <translation>Применить</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="39"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="226"/> <source>Abort</source> <translation>Прервать</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="41"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="233"/> <source>Cancel</source> <translation>Отмена</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="45"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="240"/> <source>Ignore</source> <translation>Игнорировать</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="54"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="247"/> <source>Save all</source> <translation>Сохранить всё</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="53"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="254"/> <source>Save</source> <translation>Сохранить</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="43"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="261"/> <source>Discard</source> <translation>Сбросить</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="56"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="268"/> <source>Yes to all</source> <translation>Да для всех</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="49"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="275"/> <source>Open</source> <translation>Открыть</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="50"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="282"/> <source>Reset</source> <translation>Сбросить</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="48"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="289"/> <source>Ok</source> <translation>Ok</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="46"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="296"/> <source>No</source> <translation>Нет</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="44"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="303"/> <source>Help</source> <translation>Справка</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="47"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="310"/> <source>No to all</source> <translation>Нет для всех</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="52"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="317"/> <source>Retry</source> <translation>Повтор</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="51"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="324"/> <source>Restore defaults</source> <translation>Восстановить умолчания</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="55"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="331"/> <source>Yes</source> <translation>Да</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="42"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="338"/> <source>Close</source> <translation>Закрыть</translation> </message> @@ -36585,7 +36598,7 @@ <context> <name>NoCacheHostsDialog</name> <message> - <location filename="../Helpviewer/Network/NoCacheHostsDialog.py" line="52"/> + <location filename="../Helpviewer/Network/NoCacheHostsDialog.ui" line="14"/> <source>Not Cached Hosts</source> <translation>Некэшированные хосты</translation> </message> @@ -36693,7 +36706,7 @@ <translation>Задать координаты визуально</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/NotificationsPage.py" line="81"/> + <location filename="../Preferences/ConfigurationPages/NotificationsPage.ui" line="146"/> <source>Visual Selection</source> <translation>Визуальный выбор</translation> </message> @@ -37366,7 +37379,7 @@ <context> <name>PasswordsDialog</name> <message> - <location filename="../WebBrowser/Passwords/PasswordsDialog.py" line="91"/> + <location filename="../WebBrowser/Passwords/PasswordsDialog.ui" line="14"/> <source>Saved Passwords</source> <translation>Сохранённые пароли</translation> </message> @@ -37989,12 +38002,12 @@ <translation><p>Модуль плагина <b>{0}</b> существует. Прерывание...</p></translation> </message> <message> - <location filename="../PluginManager/PluginInstallDialog.py" line="463"/> + <location filename="../PluginManager/PluginInstallDialog.py" line="469"/> <source>Error installing plugin. Reason: {0}</source> <translation>Ошибка установки плагина. Причина: {0}</translation> </message> <message> - <location filename="../PluginManager/PluginInstallDialog.py" line="470"/> + <location filename="../PluginManager/PluginInstallDialog.py" line="476"/> <source>Unspecific exception installing plugin.</source> <translation>Неизвестное исключение при установке плагина.</translation> </message> @@ -38032,32 +38045,32 @@ <translation>Несовместимый метод активации плагина.</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1103"/> + <location filename="../PluginManager/PluginManager.py" line="1106"/> <source>Plugin Manager Error</source> <translation>Ошибка менеджера плагинов</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1103"/> + <location filename="../PluginManager/PluginManager.py" line="1106"/> <source><p>The plugin download directory <b>{0}</b> could not be created. Please configure it via the configuration dialog.</p><p>Reason: {1}</p></source> <translation><p>Директория для загрузки плагинов <b>{0}</b> не может быть создана. Задайте её посредством диалога конфигурации.</p><p>Причина:{1}</p></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1179"/> + <location filename="../PluginManager/PluginManager.py" line="1182"/> <source>Error downloading file</source> <translation>Ошибка загрузки файла</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1179"/> + <location filename="../PluginManager/PluginManager.py" line="1182"/> <source><p>Could not download the requested file from {0}.</p><p>Error: {1}</p></source> <translation><p>Ошибка загрузки файла из {0}.</p><p>Ошибка: {1}</p></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1216"/> + <location filename="../PluginManager/PluginManager.py" line="1219"/> <source>New plugin versions available</source> <translation>Новые версииплагинов доступны для загрузки</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1216"/> + <location filename="../PluginManager/PluginManager.py" line="1219"/> <source><p>There are new plug-ins or plug-in updates available. Use the plug-in repository dialog to get them.</p></source> <translation><p>Имеются новые плагины или их обновления. Воспользуйтесь диалогом репозитория плагинов для их загрузки.</p></translation> </message> @@ -38968,362 +38981,362 @@ <context> <name>Project</name> <message> - <location filename="../Project/Project.py" line="161"/> + <location filename="../Project/Project.py" line="163"/> <source>Python3 Files (*.py *.py3);;Python3 GUI Files (*.pyw *.pyw3);;</source> <translation>Python3 файлы (*.py3);;Python3 GUI файлы (*.pyw3);;</translation> </message> <message> - <location filename="../Project/Project.py" line="164"/> + <location filename="../Project/Project.py" line="166"/> <source>Ruby Files (*.rb);;</source> <translation>Ruby файлы (*.rb);;</translation> </message> <message> - <location filename="../Project/Project.py" line="245"/> + <location filename="../Project/Project.py" line="247"/> <source>Console</source> <translation>Консоль</translation> </message> <message> - <location filename="../Project/Project.py" line="246"/> + <location filename="../Project/Project.py" line="248"/> <source>Other</source> <translation>Другое</translation> </message> <message> - <location filename="../Project/Project.py" line="260"/> + <location filename="../Project/Project.py" line="262"/> <source>PySide GUI</source> <translation>PySide GUI</translation> </message> <message> - <location filename="../Project/Project.py" line="261"/> + <location filename="../Project/Project.py" line="263"/> <source>PySide Console</source> <translation>Консоль PySide</translation> </message> <message> - <location filename="../Project/Project.py" line="344"/> + <location filename="../Project/Project.py" line="346"/> <source>Registering Project Type</source> <translation>Регистрация типа проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="699"/> + <location filename="../Project/Project.py" line="701"/> <source>Read project file</source> <translation>Загрузить файл проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="699"/> + <location filename="../Project/Project.py" line="701"/> <source><p>The project file <b>{0}</b> could not be read.</p></source> <translation><p>Невозможно прочитать файл проекта: <b>{0}</b></p></translation> </message> <message> - <location filename="../Project/Project.py" line="799"/> + <location filename="../Project/Project.py" line="801"/> <source>Save project file</source> <translation>Сохранить файл проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="799"/> + <location filename="../Project/Project.py" line="801"/> <source><p>The project file <b>{0}</b> could not be written.</p></source> <translation><p>Невозможно сохранить файл проекта: <b>{0}</b></p></translation> </message> <message> - <location filename="../Project/Project.py" line="835"/> + <location filename="../Project/Project.py" line="837"/> <source>Read user project properties</source> <translation>Прочитать пользовательские настройки проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="835"/> + <location filename="../Project/Project.py" line="837"/> <source><p>The user specific project properties file <b>{0}</b> could not be read.</p></source> <translation><p>Невозможно прочитать файл пользовательских настроек <b>{0}</b>.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="859"/> + <location filename="../Project/Project.py" line="861"/> <source>Save user project properties</source> <translation>Сохранить пользовательские свойства проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="859"/> + <location filename="../Project/Project.py" line="861"/> <source><p>The user specific project properties file <b>{0}</b> could not be written.</p></source> <translation><p>Невозможно записать файл пользовательских настроек <b>{0}</b>.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="917"/> + <location filename="../Project/Project.py" line="919"/> <source>Read project session</source> <translation>Загрузить сессию проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="1139"/> + <location filename="../Project/Project.py" line="1141"/> <source>Please save the project first.</source> <translation>Пожалуйста, сначала сохраните проект.</translation> </message> <message> - <location filename="../Project/Project.py" line="917"/> + <location filename="../Project/Project.py" line="919"/> <source><p>The project session file <b>{0}</b> could not be read.</p></source> <translation><p>Невозможно прочитать файл с сессией проекта: <b>{0}</b></p></translation> </message> <message> - <location filename="../Project/Project.py" line="953"/> + <location filename="../Project/Project.py" line="955"/> <source>Save project session</source> <translation>Сохранить сессию проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="953"/> + <location filename="../Project/Project.py" line="955"/> <source><p>The project session file <b>{0}</b> could not be written.</p></source> <translation><p>Невозможно сохранить файл с сессией проекта: <b>{0}</b></p></translation> </message> <message> - <location filename="../Project/Project.py" line="982"/> + <location filename="../Project/Project.py" line="984"/> <source>Delete project session</source> <translation>Удалить сессию проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="982"/> + <location filename="../Project/Project.py" line="984"/> <source><p>The project session file <b>{0}</b> could not be deleted.</p></source> <translation><p>Невозможно удалить выбранный файл с сессией: <b>{0}</b>.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1016"/> + <location filename="../Project/Project.py" line="1018"/> <source>Read tasks</source> <translation>Прочитать задачи</translation> </message> <message> - <location filename="../Project/Project.py" line="1016"/> + <location filename="../Project/Project.py" line="1018"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation><p>Невозможно прочитать файл с задачами: <b>{0}</b></p></translation> </message> <message> - <location filename="../Project/Project.py" line="1036"/> + <location filename="../Project/Project.py" line="1038"/> <source>Save tasks</source> <translation>Сохранить задачи</translation> </message> <message> - <location filename="../Project/Project.py" line="1036"/> + <location filename="../Project/Project.py" line="1038"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation><p>Невозможно сохранить файл с задачами: <b>{0}</b></p></translation> </message> <message> - <location filename="../Project/Project.py" line="1093"/> + <location filename="../Project/Project.py" line="1095"/> <source>Read debugger properties</source> <translation>Прочитать свойства отладчика</translation> </message> <message> - <location filename="../Project/Project.py" line="1093"/> + <location filename="../Project/Project.py" line="1095"/> <source><p>The project debugger properties file <b>{0}</b> could not be read.</p></source> <translation><p>Невозможно прочитать файл свойств отладчика <b>{0}</b>.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1127"/> + <location filename="../Project/Project.py" line="1129"/> <source>Save debugger properties</source> <translation>Сохранить свойства отладчика</translation> </message> <message> - <location filename="../Project/Project.py" line="1127"/> + <location filename="../Project/Project.py" line="1129"/> <source><p>The project debugger properties file <b>{0}</b> could not be written.</p></source> <translation><p>Невозможно сохранить файл свойств отладчика <b>{0}</b>.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1153"/> + <location filename="../Project/Project.py" line="1155"/> <source>Delete debugger properties</source> <translation>Удалить свойства отладчика</translation> </message> <message> - <location filename="../Project/Project.py" line="1153"/> + <location filename="../Project/Project.py" line="1155"/> <source><p>The project debugger properties file <b>{0}</b> could not be deleted.</p></source> <translation><p>Невозможно удалить файл свойств отладчика <b>{0}</b>.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1261"/> + <location filename="../Project/Project.py" line="1263"/> <source>Add Language</source> <translation>Добавить язык перевода</translation> </message> <message> - <location filename="../Project/Project.py" line="1261"/> + <location filename="../Project/Project.py" line="1263"/> <source>You have to specify a translation pattern first.</source> <translation>Необходимо сначала задать шаблон перевода.</translation> </message> <message> - <location filename="../Project/Project.py" line="1383"/> + <location filename="../Project/Project.py" line="1385"/> <source>Delete translation</source> <translation>Удалить перевод</translation> </message> <message> - <location filename="../Project/Project.py" line="1383"/> + <location filename="../Project/Project.py" line="1385"/> <source><p>The selected translation file <b>{0}</b> could not be deleted.</p></source> <translation><p>Невозможно удалить выбранный файл с переводом: <b>{0}</b>.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1534"/> + <location filename="../Project/Project.py" line="1536"/> <source>Add file</source> <translation>Добавить файл</translation> </message> <message> - <location filename="../Project/Project.py" line="1596"/> + <location filename="../Project/Project.py" line="1598"/> <source><p>The file <b>{0}</b> already exists.</p><p>Overwrite it?</p></source> <translation><p>Файл <b>{0}</b> уже существует. Переписать?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1522"/> + <location filename="../Project/Project.py" line="1524"/> <source><p>The selected file <b>{0}</b> could not be added to <b>{1}</b>.</p><p>Reason: {2}</p></source> <translation><p>Невозможно добавить выделенный файл <b>{0}</b> в архив <b>{1}</b>. </p><p>Причина: {2}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1651"/> + <location filename="../Project/Project.py" line="1653"/> <source>The target directory must not be empty.</source> <translation>Целевая директория не должна быть пустой.</translation> </message> <message> - <location filename="../Project/Project.py" line="1662"/> + <location filename="../Project/Project.py" line="1664"/> <source>Add directory</source> <translation>Добавление директории</translation> </message> <message> - <location filename="../Project/Project.py" line="1565"/> + <location filename="../Project/Project.py" line="1567"/> <source><p>The source directory doesn't contain any files belonging to the selected category.</p></source> <translation><p>Директория не содержит ни одного файла, принадлежащего к заданной категории.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1578"/> + <location filename="../Project/Project.py" line="1580"/> <source><p>The target directory <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>Невозможно создать директорию <b>{0}</b> </p><p>Причина: {1}</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1662"/> + <location filename="../Project/Project.py" line="1664"/> <source>The source directory must not be empty.</source> <translation>Исходная директория не должна быть пустой.</translation> </message> <message> - <location filename="../Project/Project.py" line="1786"/> + <location filename="../Project/Project.py" line="1788"/> <source>Rename file</source> <translation>Переименовать файл</translation> </message> <message> - <location filename="../Project/Project.py" line="1810"/> + <location filename="../Project/Project.py" line="1812"/> <source>Rename File</source> <translation>Переименовать файл</translation> </message> <message> - <location filename="../Project/Project.py" line="2832"/> + <location filename="../Project/Project.py" line="2834"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation><p>Файл <b>{0}</b> уже существует. Переписать?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1810"/> + <location filename="../Project/Project.py" line="1812"/> <source><p>The file <b>{0}</b> could not be renamed.<br />Reason: {1}</p></source> <translation><p>Невозможно переименовать файл <b>{0}</b>:<br>Причина: {1}.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2046"/> + <location filename="../Project/Project.py" line="2048"/> <source>Delete file</source> <translation>Удалить файл</translation> </message> <message> - <location filename="../Project/Project.py" line="2046"/> + <location filename="../Project/Project.py" line="2048"/> <source><p>The selected file <b>{0}</b> could not be deleted.</p></source> <translation><p>Невозможно удалить выбранный файл <b>{0}</b>.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2075"/> + <location filename="../Project/Project.py" line="2077"/> <source>Delete directory</source> <translation>Удалить директорию</translation> </message> <message> - <location filename="../Project/Project.py" line="2075"/> + <location filename="../Project/Project.py" line="2077"/> <source><p>The selected directory <b>{0}</b> could not be deleted.</p></source> <translation><p>Невозможно удалить выбранную директорию <b>{0}</b>.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2157"/> + <location filename="../Project/Project.py" line="2159"/> <source>Create project directory</source> <translation>Создать директорию проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="2157"/> + <location filename="../Project/Project.py" line="2159"/> <source><p>The project directory <b>{0}</b> could not be created.</p></source> <translation><p>Невозможно создать директорию проекта <b>{0}</b>.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2681"/> + <location filename="../Project/Project.py" line="2683"/> <source>New Project</source> <translation>Новый проект</translation> </message> <message> - <location filename="../Project/Project.py" line="2233"/> + <location filename="../Project/Project.py" line="2235"/> <source>Add existing files to the project?</source> <translation>Добавить существующие файлы в проект?</translation> </message> <message> - <location filename="../Project/Project.py" line="2681"/> + <location filename="../Project/Project.py" line="2683"/> <source>Select Version Control System</source> <translation>Выберите систему контроля версий (VCS)</translation> </message> <message> - <location filename="../Project/Project.py" line="2352"/> + <location filename="../Project/Project.py" line="2354"/> <source>Would you like to edit the VCS command options?</source> <translation>Вы хотите редактировать опции команд VCS?</translation> </message> <message> - <location filename="../Project/Project.py" line="3441"/> + <location filename="../Project/Project.py" line="3443"/> <source>New project</source> <translation>Новый проект</translation> </message> <message> - <location filename="../Project/Project.py" line="2300"/> + <location filename="../Project/Project.py" line="2302"/> <source>Shall the project file be added to the repository?</source> <translation>Добавить файл проекта в репозиторий?</translation> </message> <message> - <location filename="../Project/Project.py" line="2331"/> + <location filename="../Project/Project.py" line="2333"/> <source>None</source> <translation>None</translation> </message> <message> - <location filename="../Project/Project.py" line="2324"/> + <location filename="../Project/Project.py" line="2326"/> <source>Select version control system for the project</source> <translation>Выберите систему контроля версий для проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="2430"/> + <location filename="../Project/Project.py" line="2432"/> <source>Translation Pattern</source> <translation>Шаблон перевода</translation> </message> <message> - <location filename="../Project/Project.py" line="2430"/> + <location filename="../Project/Project.py" line="2432"/> <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source> <translation>Введите шаблон пути для файлов переводов (используйте '%language%' вместо language code):</translation> </message> <message> - <location filename="../Project/Project.py" line="3455"/> + <location filename="../Project/Project.py" line="3457"/> <source>Open project</source> <translation>Открыть проект</translation> </message> <message> - <location filename="../Project/Project.py" line="2817"/> + <location filename="../Project/Project.py" line="2819"/> <source>Project Files (*.e4p)</source> <translation>Файлы проектов (*.e4p)</translation> </message> <message> - <location filename="../Project/Project.py" line="3492"/> + <location filename="../Project/Project.py" line="3494"/> <source>Save project as</source> <translation>Сохранить проект как</translation> </message> <message> - <location filename="../Project/Project.py" line="2832"/> + <location filename="../Project/Project.py" line="2834"/> <source>Save File</source> <translation>Сохранить файл</translation> </message> <message> - <location filename="../Project/Project.py" line="2868"/> + <location filename="../Project/Project.py" line="2870"/> <source>Close Project</source> <translation>Закрыть проект</translation> </message> <message> - <location filename="../Project/Project.py" line="2868"/> + <location filename="../Project/Project.py" line="2870"/> <source>The current project has unsaved changes.</source> <translation>Изменения в текущем проекте не сохранены.</translation> </message> <message> - <location filename="../Project/Project.py" line="3033"/> + <location filename="../Project/Project.py" line="3035"/> <source>Syntax errors detected</source> <translation>Найдены синтаксические ошибки</translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="3033"/> + <location filename="../Project/Project.py" line="3035"/> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>Проект содержит %n файл с синтаксической ошибкой.</numerusform> @@ -39332,362 +39345,362 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="3441"/> + <location filename="../Project/Project.py" line="3443"/> <source>&New...</source> <translation>&Новый...</translation> </message> <message> - <location filename="../Project/Project.py" line="3446"/> + <location filename="../Project/Project.py" line="3448"/> <source>Generate a new project</source> <translation>Создать новый проект</translation> </message> <message> - <location filename="../Project/Project.py" line="3447"/> + <location filename="../Project/Project.py" line="3449"/> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>Новый...</b><p>Открытие диалога ввода информации о новом проекте.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3455"/> + <location filename="../Project/Project.py" line="3457"/> <source>&Open...</source> <translation>&Открыть...</translation> </message> <message> - <location filename="../Project/Project.py" line="3460"/> + <location filename="../Project/Project.py" line="3462"/> <source>Open an existing project</source> <translation>Открыть существующий проект</translation> </message> <message> - <location filename="../Project/Project.py" line="3461"/> + <location filename="../Project/Project.py" line="3463"/> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>Открыть...</b><p>Открытие существующего проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3468"/> + <location filename="../Project/Project.py" line="3470"/> <source>Close project</source> <translation>Закрыть проект</translation> </message> <message> - <location filename="../Project/Project.py" line="3468"/> + <location filename="../Project/Project.py" line="3470"/> <source>&Close</source> <translation>&Закрыть</translation> </message> <message> - <location filename="../Project/Project.py" line="3472"/> + <location filename="../Project/Project.py" line="3474"/> <source>Close the current project</source> <translation>Закрыть текущий проект</translation> </message> <message> - <location filename="../Project/Project.py" line="3473"/> + <location filename="../Project/Project.py" line="3475"/> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>Закрыть</b><p>Закрытие текущего проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3480"/> + <location filename="../Project/Project.py" line="3482"/> <source>Save project</source> <translation>Сохранить проект</translation> </message> <message> - <location filename="../Project/Project.py" line="3671"/> + <location filename="../Project/Project.py" line="3673"/> <source>&Save</source> <translation>&Сохранить</translation> </message> <message> - <location filename="../Project/Project.py" line="3484"/> + <location filename="../Project/Project.py" line="3486"/> <source>Save the current project</source> <translation>Сохранить текущий проект</translation> </message> <message> - <location filename="../Project/Project.py" line="3485"/> + <location filename="../Project/Project.py" line="3487"/> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>Сохранить</b><p>Сохранение текущего проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3492"/> + <location filename="../Project/Project.py" line="3494"/> <source>Save &as...</source> <translation>Сохранить &как...</translation> </message> <message> - <location filename="../Project/Project.py" line="3496"/> - <source>Save the current project to a new file</source> - <translation>Сохранить текущий проект в новый файл</translation> - </message> - <message> <location filename="../Project/Project.py" line="3498"/> + <source>Save the current project to a new file</source> + <translation>Сохранить текущий проект в новый файл</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3500"/> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>Сохранить как</b><p> Сохранение текущего проекта в новый файл.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3507"/> + <location filename="../Project/Project.py" line="3509"/> <source>Add files to project</source> <translation>Добавить файлы в проект</translation> </message> <message> - <location filename="../Project/Project.py" line="3507"/> + <location filename="../Project/Project.py" line="3509"/> <source>Add &files...</source> <translation>Добавить &файлы...</translation> </message> <message> - <location filename="../Project/Project.py" line="3512"/> - <source>Add files to the current project</source> - <translation>Добавить файлы в текущий проект</translation> - </message> - <message> <location filename="../Project/Project.py" line="3514"/> + <source>Add files to the current project</source> + <translation>Добавить файлы в текущий проект</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3516"/> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation><b>Добавить файлы</b> <p>Открытие диалога добавления файлов в текущий проект. Место добавления определяется расширением файла.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3523"/> + <location filename="../Project/Project.py" line="3525"/> <source>Add directory to project</source> <translation>Добавить директорию в проект</translation> </message> <message> - <location filename="../Project/Project.py" line="3523"/> + <location filename="../Project/Project.py" line="3525"/> <source>Add directory...</source> <translation>Добавить директорию...</translation> </message> <message> - <location filename="../Project/Project.py" line="3528"/> - <source>Add a directory to the current project</source> - <translation>Добавить директорию в текущий проект</translation> - </message> - <message> <location filename="../Project/Project.py" line="3530"/> + <source>Add a directory to the current project</source> + <translation>Добавить директорию в текущий проект</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3532"/> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>Добавить директорию...</b> <p>Открытие диалога добавления директории к текущему проекту.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3538"/> + <location filename="../Project/Project.py" line="3540"/> <source>Add translation to project</source> <translation>Добавить перевод в проект</translation> </message> <message> - <location filename="../Project/Project.py" line="3538"/> + <location filename="../Project/Project.py" line="3540"/> <source>Add &translation...</source> <translation>Добавить &перевод...</translation> </message> <message> - <location filename="../Project/Project.py" line="3543"/> - <source>Add a translation to the current project</source> - <translation>Добавить перевод в текущий проект</translation> - </message> - <message> <location filename="../Project/Project.py" line="3545"/> + <source>Add a translation to the current project</source> + <translation>Добавить перевод в текущий проект</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3547"/> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation><b>Добавить перевод...</b><p>Открытие диалога добавления перевода в текущий проект.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3553"/> + <location filename="../Project/Project.py" line="3555"/> <source>Search new files</source> <translation>Поиск новых файлов</translation> </message> <message> - <location filename="../Project/Project.py" line="3553"/> + <location filename="../Project/Project.py" line="3555"/> <source>Searc&h new files...</source> <translation>Поис&к новых файлов...</translation> </message> <message> - <location filename="../Project/Project.py" line="3557"/> - <source>Search new files in the project directory.</source> - <translation>Поиск новых файлов в директории проекта.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3559"/> + <source>Search new files in the project directory.</source> + <translation>Поиск новых файлов в директории проекта.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3561"/> <source><b>Search new files...</b><p>This searches for new files (sources, *.ui, *.idl) in the project directory and registered subdirectories.</p></source> <translation><b>Искать новые файлы...</b><p>Поиск новых файлов (исходников, *.ui, *.idl) в директории проекта и зарегистрированных поддиректориях.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3582"/> + <location filename="../Project/Project.py" line="3584"/> <source>Project properties</source> <translation>Свойства проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="3582"/> + <location filename="../Project/Project.py" line="3584"/> <source>&Properties...</source> <translation>&Свойства...</translation> </message> <message> - <location filename="../Project/Project.py" line="3587"/> + <location filename="../Project/Project.py" line="3589"/> <source>Show the project properties</source> <translation>Показать свойства проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="3588"/> + <location filename="../Project/Project.py" line="3590"/> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation><b>Свойства...</b><p>Отображение диалога для редактирования свойств проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3595"/> + <location filename="../Project/Project.py" line="3597"/> <source>User project properties</source> <translation>Пользовательские настройки проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="3595"/> + <location filename="../Project/Project.py" line="3597"/> <source>&User Properties...</source> <translation>&Пользовательские свойства...</translation> </message> <message> - <location filename="../Project/Project.py" line="3600"/> - <source>Show the user specific project properties</source> - <translation>Показать пользовательские свойства проекта</translation> - </message> - <message> <location filename="../Project/Project.py" line="3602"/> + <source>Show the user specific project properties</source> + <translation>Показать пользовательские свойства проекта</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3604"/> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation><b>Пользовательские свойства...</b><p>Отображает диалог редактирования пользовательских свойств проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3610"/> + <location filename="../Project/Project.py" line="3612"/> <source>Filetype Associations</source> <translation>Ассоциации типа файлов</translation> </message> <message> - <location filename="../Project/Project.py" line="3610"/> + <location filename="../Project/Project.py" line="3612"/> <source>Filetype Associations...</source> <translation>Ассоциации для типа файлов...</translation> </message> <message> - <location filename="../Project/Project.py" line="3614"/> - <source>Show the project filetype associations</source> - <translation>Показать ассоциации типов файлов для проекта</translation> - </message> - <message> <location filename="../Project/Project.py" line="3616"/> + <source>Show the project filetype associations</source> + <translation>Показать ассоциации типов файлов для проекта</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3618"/> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the filetype associations of the project. These associations determine the type (source, form, interface or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation><b>Ассоциации типов файлов...</b> <p>Отображение диалога для редактирования ассоциаций типов файлов проекта. Эти ассоциации связывают тип файла (исходник, форма, интерфейс и т.д.) с шаблоном имени файла. Они используются при добавлении файлов в проект и при поиске новых файлов.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3628"/> + <location filename="../Project/Project.py" line="3630"/> <source>Lexer Associations</source> <translation>Ассоциации для лексеров</translation> </message> <message> - <location filename="../Project/Project.py" line="3628"/> + <location filename="../Project/Project.py" line="3630"/> <source>Lexer Associations...</source> <translation>Ассоциации для лексеров...</translation> </message> <message> - <location filename="../Project/Project.py" line="3632"/> - <source>Show the project lexer associations (overriding defaults)</source> - <translation>Показать ассоциации для лексеров</translation> - </message> - <message> <location filename="../Project/Project.py" line="3634"/> + <source>Show the project lexer associations (overriding defaults)</source> + <translation>Показать ассоциации для лексеров</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3636"/> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation><b>Ассоциации для лексеров...</b><p>Показать ассоциации лексеров для проекта. Лексеры используются для подсвечивания текста в редакторе.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3646"/> + <location filename="../Project/Project.py" line="3648"/> <source>Debugger Properties</source> <translation>Свойства отладчика</translation> </message> <message> - <location filename="../Project/Project.py" line="3646"/> + <location filename="../Project/Project.py" line="3648"/> <source>Debugger &Properties...</source> <translation>&Свойства отладчика...</translation> </message> <message> - <location filename="../Project/Project.py" line="3650"/> + <location filename="../Project/Project.py" line="3652"/> <source>Show the debugger properties</source> <translation>Показать свойства отладчика</translation> </message> <message> - <location filename="../Project/Project.py" line="3651"/> + <location filename="../Project/Project.py" line="3653"/> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation><b>Свойства отладчика...</b> <p>Отображение диалога редактирования свойств отладчика, специфичных для данного проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3659"/> + <location filename="../Project/Project.py" line="3661"/> <source>Load</source> <translation>Загрузить</translation> </message> <message> - <location filename="../Project/Project.py" line="3659"/> + <location filename="../Project/Project.py" line="3661"/> <source>&Load</source> <translation>&Загрузить</translation> </message> <message> - <location filename="../Project/Project.py" line="3663"/> + <location filename="../Project/Project.py" line="3665"/> <source>Load the debugger properties</source> <translation>Загрузить свойства отладчика</translation> </message> <message> - <location filename="../Project/Project.py" line="3664"/> + <location filename="../Project/Project.py" line="3666"/> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation><b>Загрузить свойства отладчика</b> <p>Загрузить свойства отладчика, специфичные для данного проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3671"/> + <location filename="../Project/Project.py" line="3673"/> <source>Save</source> <translation>Сохранить</translation> </message> <message> - <location filename="../Project/Project.py" line="3675"/> + <location filename="../Project/Project.py" line="3677"/> <source>Save the debugger properties</source> <translation>Сохранить свойства отладчика</translation> </message> <message> - <location filename="../Project/Project.py" line="3676"/> + <location filename="../Project/Project.py" line="3678"/> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation><b>Сохранить свойства отладчика</b><p>Сохранить свойства отладчика, специфичные для данного проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3683"/> + <location filename="../Project/Project.py" line="3685"/> <source>Delete</source> <translation>Удалить</translation> </message> <message> - <location filename="../Project/Project.py" line="3683"/> + <location filename="../Project/Project.py" line="3685"/> <source>&Delete</source> <translation>&Удалить</translation> </message> <message> - <location filename="../Project/Project.py" line="3687"/> + <location filename="../Project/Project.py" line="3689"/> <source>Delete the debugger properties</source> <translation>Удалить свойства отладчика</translation> </message> <message> - <location filename="../Project/Project.py" line="3688"/> + <location filename="../Project/Project.py" line="3690"/> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation><b>Удалить свойства отладчика</b><p>Удалить свойства отладчика, специфичные для данного проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3696"/> + <location filename="../Project/Project.py" line="3698"/> <source>Reset</source> <translation>Сбросить</translation> </message> <message> - <location filename="../Project/Project.py" line="3696"/> + <location filename="../Project/Project.py" line="3698"/> <source>&Reset</source> <translation>&Сбросить</translation> </message> <message> - <location filename="../Project/Project.py" line="3700"/> + <location filename="../Project/Project.py" line="3702"/> <source>Reset the debugger properties</source> <translation>Сбросить свойства отладчика</translation> </message> <message> - <location filename="../Project/Project.py" line="3701"/> + <location filename="../Project/Project.py" line="3703"/> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation><b>Сбросить свойства отладчика</b><p>Сбросить свойства отладчика, специфичные для данного проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3710"/> + <location filename="../Project/Project.py" line="3712"/> <source>Load session</source> <translation>Загрузить сессию</translation> </message> <message> - <location filename="../Project/Project.py" line="3714"/> + <location filename="../Project/Project.py" line="3716"/> <source>Load the projects session file.</source> <translation>Загрузить файл с сессией проекта.</translation> </message> <message> - <location filename="../Project/Project.py" line="3715"/> + <location filename="../Project/Project.py" line="3717"/> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Загрузить сессию</b> <p>Загрузить файл с сессией проекта. Сессия содержит следующие данные:<br> @@ -39699,17 +39712,17 @@ </p></translation> </message> <message> - <location filename="../Project/Project.py" line="3728"/> + <location filename="../Project/Project.py" line="3730"/> <source>Save session</source> <translation>Сохранить сессию</translation> </message> <message> - <location filename="../Project/Project.py" line="3732"/> + <location filename="../Project/Project.py" line="3734"/> <source>Save the projects session file.</source> <translation>Сохранить файл с сессией проекта.</translation> </message> <message> - <location filename="../Project/Project.py" line="3733"/> + <location filename="../Project/Project.py" line="3735"/> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>Сохранить сессию</b> <p>Сохранить файл с сессией проекта. Сессия содержит следующие данные:<br> @@ -39721,444 +39734,519 @@ </p></translation> </message> <message> - <location filename="../Project/Project.py" line="3746"/> + <location filename="../Project/Project.py" line="3748"/> <source>Delete session</source> <translation>Удалить сессию</translation> </message> <message> - <location filename="../Project/Project.py" line="3750"/> + <location filename="../Project/Project.py" line="3752"/> <source>Delete the projects session file.</source> <translation>Удалить файл с сессией проекта.</translation> </message> <message> - <location filename="../Project/Project.py" line="3751"/> + <location filename="../Project/Project.py" line="3753"/> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation><b>Удалить сессию</b><p>Удалить файл с сессией проекта</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3760"/> + <location filename="../Project/Project.py" line="3762"/> <source>Code Metrics</source> <translation>Статистика кода</translation> </message> <message> - <location filename="../Project/Project.py" line="3760"/> + <location filename="../Project/Project.py" line="3762"/> <source>&Code Metrics...</source> <translation>&Статистика кода...</translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> - <source>Show some code metrics for the project.</source> - <translation>Отображение статистики кода проекта.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3766"/> + <source>Show some code metrics for the project.</source> + <translation>Отображение статистики кода проекта.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3768"/> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation><b>Статистика кода...</b><p>Отображение статистики кода проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3774"/> + <location filename="../Project/Project.py" line="3776"/> <source>Python Code Coverage</source> <translation>Охват кода Python</translation> </message> <message> - <location filename="../Project/Project.py" line="3774"/> + <location filename="../Project/Project.py" line="3776"/> <source>Code Co&verage...</source> <translation>&Заключения по коду...</translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> - <source>Show code coverage information for the project.</source> - <translation>Показать заключение охвата по коду проекта.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3780"/> + <source>Show code coverage information for the project.</source> + <translation>Показать заключение охвата по коду проекта.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3782"/> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation><b>Заключение по охвату коду...</b><p>Показать заключение охвата по коду всех файлов проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4564"/> + <location filename="../Project/Project.py" line="4568"/> <source>Profile Data</source> <translation>Данные профайлера</translation> </message> <message> - <location filename="../Project/Project.py" line="3788"/> + <location filename="../Project/Project.py" line="3790"/> <source>&Profile Data...</source> <translation>&Данные профайлера...</translation> </message> <message> - <location filename="../Project/Project.py" line="3792"/> - <source>Show profiling data for the project.</source> - <translation>Отображение результатов профилирования проекта.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3794"/> + <source>Show profiling data for the project.</source> + <translation>Отображение результатов профилирования проекта.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3796"/> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation><b>Данные профайлера...</b><p>Отображение результатов профилирования проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4618"/> + <location filename="../Project/Project.py" line="4622"/> <source>Application Diagram</source> <translation>Диаграмма приложения</translation> </message> <message> - <location filename="../Project/Project.py" line="3803"/> + <location filename="../Project/Project.py" line="3805"/> <source>&Application Diagram...</source> <translation>&Диаграмма приложения...</translation> </message> <message> - <location filename="../Project/Project.py" line="3807"/> - <source>Show a diagram of the project.</source> - <translation>Показать диаграмму проекта.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3809"/> + <source>Show a diagram of the project.</source> + <translation>Показать диаграмму проекта.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3811"/> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>Диаграмма приложения...</b><p>Отображает диаграмму проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4776"/> + <location filename="../Project/Project.py" line="4780"/> <source>Create Package List</source> <translation>Создать список пакетов</translation> </message> <message> - <location filename="../Project/Project.py" line="3832"/> + <location filename="../Project/Project.py" line="3834"/> <source>Create &Package List</source> <translation>&Создать список пакетов</translation> </message> <message> - <location filename="../Project/Project.py" line="5003"/> + <location filename="../Project/Project.py" line="5027"/> <source>Create Plugin Archive</source> <translation>Создать архив плагина</translation> </message> <message> <location filename="../Project/Project.py" line="3848"/> <source>Create Plugin &Archive</source> - <translation>Создать &архив плагина</translation> + <translation type="obsolete">Создать &архив плагина</translation> </message> <message> <location filename="../Project/Project.py" line="3864"/> <source>Create Plugin Archive (Snapshot)</source> - <translation>Создать архив плагинов (снимок)</translation> + <translation type="obsolete">Создать архив плагинов (снимок)</translation> </message> <message> <location filename="../Project/Project.py" line="3864"/> <source>Create Plugin Archive (&Snapshot)</source> - <translation>Создать архив плагинов (&Snapshot)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3900"/> + <translation type="obsolete">Создать архив плагинов (&Snapshot)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3904"/> <source>&Project</source> <translation>&Проект</translation> </message> <message> - <location filename="../Project/Project.py" line="3901"/> + <location filename="../Project/Project.py" line="3905"/> <source>Open &Recent Projects</source> <translation>Открыть &недавние проекты</translation> </message> <message> - <location filename="../Project/Project.py" line="3902"/> - <source>&Version Control</source> - <translation>Контроль &версий</translation> - </message> - <message> <location filename="../Project/Project.py" line="3906"/> - <source>Chec&k</source> - <translation>&Проверки</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3908"/> - <source>Sho&w</source> - <translation>По&казать</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3909"/> - <source>&Diagrams</source> - <translation>&Диаграммы</translation> + <source>&Version Control</source> + <translation>Контроль &версий</translation> </message> <message> <location filename="../Project/Project.py" line="3910"/> - <source>Session</source> - <translation>Сессия</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3911"/> - <source>Source &Documentation</source> - <translation>&Документация исходников</translation> + <source>Chec&k</source> + <translation>&Проверки</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3912"/> + <source>Sho&w</source> + <translation>По&казать</translation> </message> <message> <location filename="../Project/Project.py" line="3913"/> - <source>Debugger</source> - <translation>Отладка</translation> + <source>&Diagrams</source> + <translation>&Диаграммы</translation> </message> <message> <location filename="../Project/Project.py" line="3914"/> + <source>Session</source> + <translation>Сессия</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3915"/> + <source>Source &Documentation</source> + <translation>&Документация исходников</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3917"/> + <source>Debugger</source> + <translation>Отладка</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3918"/> <source>Pac&kagers</source> <translation>У&паковщики</translation> </message> <message> - <location filename="../Project/Project.py" line="4022"/> + <location filename="../Project/Project.py" line="4026"/> <source>Project</source> <translation>Проект</translation> </message> <message> - <location filename="../Project/Project.py" line="4088"/> + <location filename="../Project/Project.py" line="4092"/> <source>&Clear</source> <translation>&Очистить</translation> </message> <message> - <location filename="../Project/Project.py" line="4227"/> + <location filename="../Project/Project.py" line="4231"/> <source>Search New Files</source> <translation>Поиск новых файлов</translation> </message> <message> - <location filename="../Project/Project.py" line="4227"/> + <location filename="../Project/Project.py" line="4231"/> <source>There were no new files found to be added.</source> <translation>Не найдено файлов для добавления.</translation> </message> <message> - <location filename="../Project/Project.py" line="4373"/> + <location filename="../Project/Project.py" line="4377"/> <source>Version Control System</source> <translation>Система контроля версий</translation> </message> <message> - <location filename="../Project/Project.py" line="4373"/> + <location filename="../Project/Project.py" line="4377"/> <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="4491"/> + <location filename="../Project/Project.py" line="4495"/> <source>Coverage Data</source> <translation>Данные охвата</translation> </message> <message> - <location filename="../Project/Project.py" line="4541"/> + <location filename="../Project/Project.py" line="4545"/> <source>There is no main script defined for the current project. Aborting</source> <translation>Для текущего проекта не определён главный сценарий. Отмена</translation> </message> <message> - <location filename="../Project/Project.py" line="4514"/> + <location filename="../Project/Project.py" line="4518"/> <source>Code Coverage</source> <translation>Охват кода</translation> </message> <message> - <location filename="../Project/Project.py" line="4514"/> + <location filename="../Project/Project.py" line="4518"/> <source>Please select a coverage file</source> <translation>Пожалуйста, выберите файл для информации охвата</translation> </message> <message> - <location filename="../Project/Project.py" line="4564"/> + <location filename="../Project/Project.py" line="4568"/> <source>Please select a profile file</source> <translation>Пожалуйста, выберите файл профиля</translation> </message> <message> - <location filename="../Project/Project.py" line="4618"/> + <location filename="../Project/Project.py" line="4622"/> <source>Include module names?</source> <translation>Включать имена модулей?</translation> </message> <message> - <location filename="../Project/Project.py" line="4736"/> + <location filename="../Project/Project.py" line="4740"/> <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="4776"/> + <location filename="../Project/Project.py" line="4780"/> <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="4815"/> <source><p>The file <b>PKGLIST</b> does not exist. Aborting...</p></source> - <translation><p>Файл <b>PKGLIST</b> не существует. Отмена...</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4823"/> + <translation type="obsolete"><p>Файл <b>PKGLIST</b> не существует. Отмена...</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4799"/> <source>The project does not have a main script defined. Aborting...</source> <translation>Для текущего проекта не определён главный сценарий. Отмена...</translation> </message> <message> <location filename="../Project/Project.py" line="4836"/> <source><p>The file <b>PKGLIST</b> could not be read.</p><p>Reason: {0}</p></source> - <translation><p>Невозможно прочитать файл <b>PKGLIST</b>.</p><p>Причина: {0}</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4892"/> + <translation type="obsolete"><p>Невозможно прочитать файл <b>PKGLIST</b>.</p><p>Причина: {0}</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4911"/> <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="4961"/> + <location filename="../Project/Project.py" line="4985"/> <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="158"/> + <location filename="../Project/Project.py" line="160"/> <source>Python2 Files (*.py2);;Python2 GUI Files (*.pyw2);;</source> <translation>Python2 файлы (*.py2);;Python2 GUI файлы (*.pyw2);;</translation> </message> <message> - <location filename="../Project/Project.py" line="2220"/> + <location filename="../Project/Project.py" line="2222"/> <source>Create main script</source> <translation>Создать главный сценарий</translation> </message> <message> - <location filename="../Project/Project.py" line="2220"/> + <location filename="../Project/Project.py" line="2222"/> <source><p>The mainscript <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation><p>Невозможно создать главный файл проекта<b>{0}</b>.<br>Причина: {1}.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3817"/> + <location filename="../Project/Project.py" line="3819"/> <source>Load Diagram</source> <translation>Загрузить диаграмму</translation> </message> <message> - <location filename="../Project/Project.py" line="3817"/> + <location filename="../Project/Project.py" line="3819"/> <source>&Load Diagram...</source> <translation>&Загрузить диаграмму...</translation> </message> <message> - <location filename="../Project/Project.py" line="3821"/> - <source>Load a diagram from file.</source> - <translation>Загрузить диаграмму из файла.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3823"/> + <source>Load a diagram from file.</source> + <translation>Загрузить диаграмму из файла.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3825"/> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation><b>Загрузить диаграмму...</b><p>Загрузить диаграмму из файла.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="321"/> + <location filename="../Project/Project.py" line="323"/> <source><p>The Programming Language <b>{0}</b> is not supported.</p></source> <translation><p>Язык программирования <b>{0}</b> не поддерживается.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="344"/> + <location filename="../Project/Project.py" line="346"/> <source><p>The Project type <b>{0}</b> is already registered.</p></source> <translation><p>Тип проекта <b>{0}</b> уже зарегистрирован.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="332"/> + <location filename="../Project/Project.py" line="334"/> <source><p>The Project type <b>{0}</b> is already registered with Programming Language <b>{1}</b>.</p></source> <translation><p>Тип проекта <b>{0}</b> уже зарегистрирован для языка программирования <b>{1}</b>.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="242"/> + <location filename="../Project/Project.py" line="244"/> <source>PyQt5 GUI</source> <translation>PyQt5 GUI</translation> </message> <message> - <location filename="../Project/Project.py" line="243"/> + <location filename="../Project/Project.py" line="245"/> <source>PyQt5 Console</source> <translation>Консоль PyQt5</translation> </message> <message> - <location filename="../Project/Project.py" line="4361"/> + <location filename="../Project/Project.py" line="4365"/> <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="5003"/> + <location filename="../Project/Project.py" line="5027"/> <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="3837"/> - <source>Create an initial PKGLIST file for an eric6 plugin.</source> - <translation>Создать первичный файл PKGLIST для плагина Eric6.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3839"/> + <source>Create an initial PKGLIST file for an eric6 plugin.</source> + <translation>Создать первичный файл PKGLIST для плагина Eric6.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3841"/> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric6 plugin archive. The list is created from the project file.</p></source> <translation><b>Создать список пакетов</b><p>Создаёт начальный список файлов для включения в архив плагина Eric6. Список создаётся из файла проекта.</p></translation> </message> <message> <location filename="../Project/Project.py" line="3853"/> <source>Create an eric6 plugin archive file.</source> - <translation>Создать архивный файл плагина Eric6.</translation> + <translation type="obsolete">Создать архивный файл плагина Eric6.</translation> </message> <message> <location filename="../Project/Project.py" line="3855"/> <source><b>Create Plugin Archive</b><p>This creates an eric6 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name.</p></source> - <translation><b>Создать архив плагина</b><p>Создаёт файл архива плагина Eric6, используя список файлов, приведенный в файле PKGLIST. Имя архива берётся из имени главного сценария.</p></translation> + <translation type="obsolete"><b>Создать архив плагина</b><p>Создаёт файл архива плагина Eric6, используя список файлов, приведенный в файле PKGLIST. Имя архива берётся из имени главного сценария.</p></translation> </message> <message> <location filename="../Project/Project.py" line="3869"/> <source>Create an eric6 plugin archive file (snapshot release).</source> - <translation>Создать файл архива плагинов Eric6 (снимок релиза).</translation> + <translation type="obsolete">Создать файл архива плагинов Eric6 (снимок релиза).</translation> </message> <message> <location filename="../Project/Project.py" line="3871"/> <source><b>Create Plugin Archive (Snapshot)</b><p>This creates an eric6 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name. The version entry of the main script is modified to reflect a snapshot release.</p></source> - <translation><b>Создать файл архива плагинов (снимок выпуска)</b><p>Создаёт файл архива плагинов Eric6, используя список файлов, указанный в файле PKGLIST. Имя архива строится из имени главного сценария. Версия главного сценария меняется, чтобы соответствовать версии выпуска снимка.</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4866"/> + <translation type="obsolete"><b>Создать файл архива плагинов (снимок выпуска)</b><p>Создаёт файл архива плагинов Eric6, используя список файлов, указанный в файле PKGLIST. Имя архива строится из имени главного сценария. Версия главного сценария меняется, чтобы соответствовать версии выпуска снимка.</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4881"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation><p>Невозможно создать архив плагина <b>{0}</b> Eric6.</p><p>Причина: {1}</p> {0}?} {1}?}</translation> </message> <message> <location filename="../Project/Project.py" line="4915"/> <source><p>The eric6 plugin archive file <b>{0}</b> was created successfully.</p></source> - <translation><p>Архив плагина eric6 <b>{0}</b> был успешно создан.</p> {0}?}</translation> - </message> - <message> - <location filename="../Project/Project.py" line="240"/> + <translation type="obsolete"><p>Архив плагина eric6 <b>{0}</b> был успешно создан.</p> {0}?}</translation> + </message> + <message> + <location filename="../Project/Project.py" line="242"/> <source>PyQt4 GUI</source> <translation>PyQt4 GUI</translation> </message> <message> - <location filename="../Project/Project.py" line="241"/> + <location filename="../Project/Project.py" line="243"/> <source>PyQt4 Console</source> <translation>Консоль PyQt4</translation> </message> <message> - <location filename="../Project/Project.py" line="244"/> + <location filename="../Project/Project.py" line="246"/> <source>Eric6 Plugin</source> <translation>Плагин Eric6</translation> </message> <message> - <location filename="../Project/Project.py" line="2651"/> + <location filename="../Project/Project.py" line="2653"/> <source>Create project management directory</source> <translation>Создать служебную директорию проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="2651"/> + <location filename="../Project/Project.py" line="2653"/> <source><p>The project directory <b>{0}</b> is not writable.</p></source> <translation><p>Директория проекта <b>{0}</b> не доступна для записи.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3567"/> + <location filename="../Project/Project.py" line="3569"/> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation>Alt+Ctrl+P</translation> </message> <message> - <location filename="../Project/Project.py" line="3573"/> + <location filename="../Project/Project.py" line="3575"/> <source>Search for a file in the project list of files.</source> <translation>Поиск файла в списке файлов проекта.</translation> </message> <message> - <location filename="../Project/Project.py" line="3575"/> + <location filename="../Project/Project.py" line="3577"/> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation><b>Поиск файла проекта</b><p>Поиск файла в списке файлов проекта.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3567"/> + <location filename="../Project/Project.py" line="3569"/> <source>Search Project File</source> <translation>Поиск файла проекта</translation> </message> <message> - <location filename="../Project/Project.py" line="3567"/> + <location filename="../Project/Project.py" line="3569"/> <source>Search Project File...</source> <translation>Поиск файла проекта...</translation> </message> <message> - <location filename="../Project/Project.py" line="4799"/> - <source>Select a package list file:</source> + <location filename="../Project/Project.py" line="4834"/> + <source>Create Plugin Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3850"/> + <source>Create Plugin &Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3855"/> + <source>Create eric6 plugin archive files.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3857"/> + <source><b>Create Plugin Archives</b><p>This creates eric6 plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3867"/> + <source>Create Plugin Archives (Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3867"/> + <source>Create Plugin Archives (&Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3872"/> + <source>Create eric6 plugin archive files (snapshot releases).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3874"/> + <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric6 plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4806"/> - <source><p>No package list file selected. Aborting...</p></source> + <location filename="../Project/Project.py" line="4813"/> + <source>Select package lists:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>Creating plugin archives...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>Abort</source> + <translation type="unfinished">Прервать</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>%v/%m Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4834"/> + <source>Coverage</source> + <translation type="obsolete">Охват</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4847"/> + <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> + <translation type="unfinished"><p>Невозможно прочитать файл <b>{0}</b>.</p><p>Причина: {1}</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4930"/> + <source><p>The eric6 plugin archive files were created with some errors.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4933"/> + <source><p>The eric6 plugin archive files were created successfully.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4823"/> + <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished"></translation> </message> </context> @@ -42134,7 +42222,7 @@ <translation>Выполнено</translation> </message> <message> - <location filename="../DataViews/PyCoverageDialog.py" line="349"/> + <location filename="../DataViews/PyCoverageDialog.ui" line="172"/> <source>Coverage</source> <translation>Охват</translation> </message> @@ -42215,7 +42303,7 @@ </translation> </message> <message> - <location filename="../DataViews/PyCoverageDialog.py" line="345"/> + <location filename="../DataViews/PyCoverageDialog.ui" line="192"/> <source>%v/%m Files</source> <translation>%v из %m файлов</translation> </message> @@ -42223,7 +42311,7 @@ <context> <name>PyProfileDialog</name> <message> - <location filename="../DataViews/PyProfileDialog.py" line="233"/> + <location filename="../DataViews/PyProfileDialog.ui" line="20"/> <source>Profile Results</source> <translation>Результаты профайлера</translation> </message> @@ -46955,7 +47043,7 @@ <translation>Удалить выделенные фильтры</translation> </message> <message> - <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.py" line="150"/> + <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.ui" line="89"/> <source>Remove Filters</source> <translation>Удалить фильтры</translation> </message> @@ -46965,7 +47053,7 @@ <translation>Удалить выбранные атрибуты</translation> </message> <message> - <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.py" line="178"/> + <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.ui" line="99"/> <source>Remove Attributes</source> <translation>Удалить атрибуты</translation> </message> @@ -48480,7 +48568,7 @@ <context> <name>SendRefererWhitelistDialog</name> <message> - <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="52"/> + <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.ui" line="14"/> <source>Send Referer Whitelist</source> <translation>Отправить реферер белого списка</translation> </message> @@ -49695,7 +49783,7 @@ <translation>К&опировать превью</translation> </message> <message> - <location filename="../Snapshot/SnapWidget.py" line="531"/> + <location filename="../Snapshot/SnapWidget.ui" line="20"/> <source>eric6 Snapshot</source> <translation>Снимки eric6</translation> </message> @@ -52179,7 +52267,7 @@ <context> <name>SvnDiffDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="171"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.ui" line="14"/> <source>Subversion Diff</source> <translation>Subversion: Отображение различий</translation> </message> @@ -52482,17 +52570,17 @@ <translation>Выберите поле, по которому фильтровать</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="621"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="112"/> <source>Revision</source> <translation>Ревизия</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="618"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="117"/> <source>Author</source> <translation>Автор</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="141"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="127"/> <source>Message</source> <translation>Сообщение</translation> </message> @@ -52955,7 +53043,7 @@ <translation><b>URL</b><p>Задайте URL модуля. Репозиторий со стандартной раскладкой не должен содержать части trunk, tags или branches.</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="128"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.ui" line="45"/> <source>&URL:</source> <translation>&URL репозитория:</translation> </message> @@ -53050,7 +53138,7 @@ <translation>Задайте протокол доступа к репозиторию</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.py" line="95"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.ui" line="45"/> <source>&URL:</source> <translation>&URL репозитория:</translation> </message> @@ -54260,7 +54348,7 @@ <context> <name>SvnStatusDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="394"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="14"/> <source>Subversion Status</source> <translation>Subversion: Статус</translation> </message> @@ -54537,7 +54625,7 @@ <translation>Невозможно запустить процесс {0}. Убедитесь, что он находится в путях поиска.</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="711"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="80"/> <source>Commit</source> <translation>Фиксация</translation> </message> @@ -59769,7 +59857,7 @@ <context> <name>UnittestDialog</name> <message> - <location filename="../PyUnit/UnittestDialog.py" line="400"/> + <location filename="../PyUnit/UnittestDialog.ui" line="14"/> <source>Unittest</source> <translation>Unittest</translation> </message> @@ -62672,64 +62760,64 @@ <context> <name>VariablesViewer</name> <message> - <location filename="../Debugger/VariablesViewer.py" line="354"/> + <location filename="../Debugger/VariablesViewer.py" line="358"/> <source>Global Variables</source> <translation>Глобальные переменные</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="355"/> - <source>Globals</source> - <translation>Глобальные переменные</translation> - </message> - <message> - <location filename="../Debugger/VariablesViewer.py" line="366"/> - <source>Value</source> - <translation>Значение</translation> - </message> - <message> - <location filename="../Debugger/VariablesViewer.py" line="366"/> - <source>Type</source> - <translation>Тип</translation> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="359"/> + <source>Globals</source> + <translation>Глобальные переменные</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="370"/> + <source>Value</source> + <translation>Значение</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="370"/> + <source>Type</source> + <translation>Тип</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="363"/> <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="365"/> + <location filename="../Debugger/VariablesViewer.py" line="369"/> <source>Local Variables</source> <translation>Локальные переменные</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="366"/> - <source>Locals</source> - <translation>Локальные переменные</translation> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="370"/> + <source>Locals</source> + <translation>Локальные переменные</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="374"/> <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="401"/> + <location filename="../Debugger/VariablesViewer.py" line="405"/> <source>Show Details...</source> <translation>Показать подробности...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="409"/> + <location filename="../Debugger/VariablesViewer.py" line="413"/> <source>Configure...</source> <translation>Настроить...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="629"/> + <location filename="../Debugger/VariablesViewer.py" line="633"/> <source>{0} items</source> <translation>{0} элементов</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="407"/> + <location filename="../Debugger/VariablesViewer.py" line="411"/> <source>Refresh</source> <translation type="unfinished">Освежить</translation> </message>
--- a/i18n/eric6_tr.ts Sun Oct 16 12:20:30 2016 +0200 +++ b/i18n/eric6_tr.ts Sun Oct 16 14:42:46 2016 +0200 @@ -390,7 +390,7 @@ <context> <name>AddBookmarkDialog</name> <message> - <location filename="../WebBrowser/Bookmarks/AddBookmarkDialog.py" line="198"/> + <location filename="../WebBrowser/Bookmarks/AddBookmarkDialog.ui" line="26"/> <source>Add Bookmark</source> <translation>Yerimi Ekle</translation> </message> @@ -1750,7 +1750,7 @@ <translation>Seçilen girişi silmek için basınız</translation> </message> <message> - <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="169"/> + <location filename="../WebBrowser/Bookmarks/BookmarksDialog.ui" line="75"/> <source>&Delete</source> <translation>&Sil</translation> </message> @@ -2468,12 +2468,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/CallTraceViewer.py" line="54"/> + <location filename="../Debugger/CallTraceViewer.ui" line="109"/> <source>From</source> <translation type="unfinished">Den</translation> </message> <message> - <location filename="../Debugger/CallTraceViewer.py" line="54"/> + <location filename="../Debugger/CallTraceViewer.ui" line="114"/> <source>To</source> <translation type="unfinished">E</translation> </message> @@ -2581,7 +2581,7 @@ <translation>Sunucu listesini temizlemek için basınız</translation> </message> <message> - <location filename="../Cooperation/ChatWidget.py" line="513"/> + <location filename="../Cooperation/ChatWidget.ui" line="230"/> <source>Clear</source> <translation>Temizle</translation> </message> @@ -2938,7 +2938,7 @@ <context> <name>ClickToFlashWhitelistDialog</name> <message> - <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.py" line="54"/> + <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.ui" line="14"/> <source>ClickToFlash Whitelist</source> <translation type="unfinished"></translation> </message> @@ -4229,22 +4229,22 @@ <translation>İki dosya arasındaki karşılaştırmayı başlatmak için basınız</translation> </message> <message> - <location filename="../UI/CompareDialog.py" line="356"/> + <location filename="../UI/CompareDialog.py" line="354"/> <source>Total: {0}</source> <translation>Toplam: {0}</translation> </message> <message> + <location filename="../UI/CompareDialog.py" line="356"/> + <source>Changed: {0}</source> + <translation>Değişti: {0}</translation> + </message> + <message> + <location filename="../UI/CompareDialog.py" line="357"/> + <source>Added: {0}</source> + <translation>Eklendi: {0}</translation> + </message> + <message> <location filename="../UI/CompareDialog.py" line="358"/> - <source>Changed: {0}</source> - <translation>Değişti: {0}</translation> - </message> - <message> - <location filename="../UI/CompareDialog.py" line="359"/> - <source>Added: {0}</source> - <translation>Eklendi: {0}</translation> - </message> - <message> - <location filename="../UI/CompareDialog.py" line="360"/> <source>Deleted: {0}</source> <translation>Silindi: {0}</translation> </message> @@ -4872,7 +4872,7 @@ <translation type="unfinished">Etki Alanı:</translation> </message> <message> - <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="177"/> + <location filename="../WebBrowser/CookieJar/CookiesDialog.ui" line="223"/> <source><no cookie selected></source> <translation type="unfinished"></translation> </message> @@ -7627,7 +7627,7 @@ <context> <name>DownloadManager</name> <message> - <location filename="../WebBrowser/Download/DownloadManager.py" line="363"/> + <location filename="../WebBrowser/Download/DownloadManager.ui" line="14"/> <source>Downloads</source> <translation type="unfinished"></translation> </message> @@ -7871,6 +7871,19 @@ </message> </context> <context> + <name>E5ListSelectionDialog</name> + <message> + <location filename="../E5Gui/E5ListSelectionDialog.ui" line="14"/> + <source>Select from List</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../E5Gui/E5ListSelectionDialog.ui" line="23"/> + <source>Select from the list below:</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>E5MainWindow</name> <message> <location filename="../E5Gui/E5MainWindow.py" line="56"/> @@ -8089,92 +8102,92 @@ <translation>Standart Düğmeler</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="41"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="257"/> <source>Abort</source> <translation>Vazgeç</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="42"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="264"/> <source>Apply</source> <translation>Kullan</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="43"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="271"/> <source>Cancel</source> <translation>Vazgeç</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="44"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="278"/> <source>Close</source> <translation>Kapat</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="45"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="285"/> <source>Discard</source> <translation>Iskartaya ayırmak</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="46"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="292"/> <source>Help</source> <translation>Yardım</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="47"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="299"/> <source>Ignore</source> <translation>Yoksay</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="48"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="306"/> <source>No</source> <translation>Hayır</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="49"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="313"/> <source>No to all</source> <translation>Hepsini değil</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="50"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="320"/> <source>Ok</source> <translation>Tamam</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="51"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="327"/> <source>Open</source> <translation>Aç</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="52"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="334"/> <source>Reset</source> <translation>Başadön</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="53"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="341"/> <source>Restore defaults</source> <translation>Öntanımlı değerlere geridön</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="54"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="348"/> <source>Retry</source> <translation>Tekrar Dene</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="55"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="355"/> <source>Save</source> <translation>Kaydet</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="56"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="362"/> <source>Save all</source> <translation>Hepsini kaydet</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="57"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="369"/> <source>Yes</source> <translation>Evet</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="58"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="376"/> <source>Yes to all</source> <translation>Evet hepsini</translation> </message> @@ -10219,7 +10232,7 @@ <translation>Kurulan API dosyalarının listesinden bir API dosyası seçmek için basınız</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="184"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="132"/> <source>Add from installed APIs</source> <translation>Kurulan API'lerden ekle</translation> </message> @@ -10229,7 +10242,7 @@ <translation>Kurulen eklentilerin API dosya listesinden bir API dosyası seçmek için basınız</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="203"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="142"/> <source>Add from Plugin APIs</source> <translation>Eklenti API'lerinden ekle</translation> </message> @@ -10239,7 +10252,7 @@ <translation>Seçilen API'lerin tanımlarının derlenmesi için basınız</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="236"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="159"/> <source>Compile APIs</source> <translation>API'leri Derle</translation> </message> @@ -11293,7 +11306,7 @@ <translation>Yazı tipini seç.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="69"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="103"/> <source>Font</source> <translation>Yazı Tipi</translation> </message> @@ -11303,7 +11316,7 @@ <translation>Satır sonuna kadar dolrurmak için seç.</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="113"/> <source>Fill to end of line</source> <translation>Satırın sonuna kadar doldur</translation> </message> @@ -12799,7 +12812,7 @@ <translation>Mod:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="58"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1080"/> <source>Disabled</source> <translation>Onaylanmamış</translation> </message> @@ -13533,7 +13546,7 @@ <context> <name>EmailDialog</name> <message> - <location filename="../UI/EmailDialog.py" line="339"/> + <location filename="../UI/EmailDialog.ui" line="13"/> <source>Send bug report</source> <translation>Hata raporu gönder</translation> </message> @@ -14982,12 +14995,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="110"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="122"/> <source>Host</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="111"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="127"/> <source>Permission</source> <translation type="unfinished"></translation> </message> @@ -15002,7 +15015,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="51"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="97"/> <source>Geolocation</source> <translation type="unfinished"></translation> </message> @@ -16144,7 +16157,7 @@ <translation type="unfinished">Adı:</translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="193"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="158"/> <source><no flash cookie selected></source> <translation type="unfinished"></translation> </message> @@ -16154,7 +16167,7 @@ <translation type="unfinished">Boyut:</translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="122"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="137"/> <source>Origin:</source> <translation type="unfinished"></translation> </message> @@ -16189,7 +16202,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="213"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="225"/> <source>Remove Cookie</source> <translation type="unfinished"></translation> </message> @@ -16615,7 +16628,7 @@ <context> <name>GreaseMonkeyAddScriptDialog</name> <message> - <location filename="../WebBrowser/GreaseMonkey/GreaseMonkeyAddScriptDialog.py" line="105"/> + <location filename="../WebBrowser/GreaseMonkey/GreaseMonkeyAddScriptDialog.ui" line="14"/> <source>GreaseMonkey Script Installation</source> <translation type="unfinished"></translation> </message> @@ -22298,7 +22311,7 @@ <context> <name>HgAddSubrepositoryDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.py" line="98"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.ui" line="14"/> <source>Add Sub-repository</source> <translation type="unfinished"></translation> </message> @@ -23384,7 +23397,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="247"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.ui" line="73"/> <source>Resolved</source> <translation type="unfinished"></translation> </message> @@ -23394,7 +23407,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="245"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.ui" line="83"/> <source>Unresolved</source> <translation type="unfinished"></translation> </message> @@ -24029,7 +24042,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="317"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.ui" line="55"/> <source>Revision</source> <translation type="unfinished">Gözden Geçirme</translation> </message> @@ -24308,7 +24321,7 @@ <context> <name>HgLogBrowserDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="71"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="14"/> <source>Mercurial Log</source> <translation>Mercurial Günlüğü</translation> </message> @@ -24338,17 +24351,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="96"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="181"/> <source>Revision</source> <translation>Gözden Geçirme</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="97"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="191"/> <source>Author</source> <translation>Yazar</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="98"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="201"/> <source>Message</source> <translation>Mesaj</translation> </message> @@ -28195,7 +28208,7 @@ <context> <name>HgStatusDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="313"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="14"/> <source>Mercurial Status</source> <translation>Mercurial Durumu</translation> </message> @@ -28337,7 +28350,7 @@ <translation>Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="708"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="87"/> <source>Commit</source> <translation>Teslimat</translation> </message> @@ -28457,7 +28470,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="854"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="203"/> <source>Differences</source> <translation type="unfinished"></translation> </message> @@ -29220,7 +29233,7 @@ <translation>Seçilen girişi kaldırmak için basınız</translation> </message> <message> - <location filename="../WebBrowser/History/HistoryDialog.py" line="114"/> + <location filename="../WebBrowser/History/HistoryDialog.ui" line="75"/> <source>&Remove</source> <translation>Kaldı&r</translation> </message> @@ -35087,92 +35100,92 @@ <translation>Standart Düğmeler</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="40"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="219"/> <source>Apply</source> <translation>Kullan</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="39"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="226"/> <source>Abort</source> <translation>Vazgeç</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="41"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="233"/> <source>Cancel</source> <translation>Vazgeç</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="45"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="240"/> <source>Ignore</source> <translation>Yoksay</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="54"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="247"/> <source>Save all</source> <translation>Hepsini kaydet</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="53"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="254"/> <source>Save</source> <translation>Kaydet</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="43"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="261"/> <source>Discard</source> <translation>Iskartaya ayırmak</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="56"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="268"/> <source>Yes to all</source> <translation>Evet hepsini</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="49"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="275"/> <source>Open</source> <translation>Aç</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="50"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="282"/> <source>Reset</source> <translation>Başadön</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="48"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="289"/> <source>Ok</source> <translation>Tamam</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="46"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="296"/> <source>No</source> <translation>Hayır</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="44"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="303"/> <source>Help</source> <translation>Yardım</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="47"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="310"/> <source>No to all</source> <translation>Hepsini değil</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="52"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="317"/> <source>Retry</source> <translation>Tekrar Dene</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="51"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="324"/> <source>Restore defaults</source> <translation>Öntanımlı değerlere geridön</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="55"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="331"/> <source>Yes</source> <translation>Evet</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="42"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="338"/> <source>Close</source> <translation>Kapat</translation> </message> @@ -36927,7 +36940,7 @@ <context> <name>NoCacheHostsDialog</name> <message> - <location filename="../Helpviewer/Network/NoCacheHostsDialog.py" line="52"/> + <location filename="../Helpviewer/Network/NoCacheHostsDialog.ui" line="14"/> <source>Not Cached Hosts</source> <translation type="unfinished"></translation> </message> @@ -37035,7 +37048,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/NotificationsPage.py" line="81"/> + <location filename="../Preferences/ConfigurationPages/NotificationsPage.ui" line="146"/> <source>Visual Selection</source> <translation type="unfinished"></translation> </message> @@ -37706,7 +37719,7 @@ <context> <name>PasswordsDialog</name> <message> - <location filename="../WebBrowser/Passwords/PasswordsDialog.py" line="91"/> + <location filename="../WebBrowser/Passwords/PasswordsDialog.ui" line="14"/> <source>Saved Passwords</source> <translation>Kaydedilmiş Parolalar</translation> </message> @@ -38324,12 +38337,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../PluginManager/PluginInstallDialog.py" line="463"/> + <location filename="../PluginManager/PluginInstallDialog.py" line="469"/> <source>Error installing plugin. Reason: {0}</source> <translation>Eklenti kurulrmrunda hata. Sebep: {0}</translation> </message> <message> - <location filename="../PluginManager/PluginInstallDialog.py" line="470"/> + <location filename="../PluginManager/PluginInstallDialog.py" line="476"/> <source>Unspecific exception installing plugin.</source> <translation type="unfinished"></translation> </message> @@ -38367,32 +38380,32 @@ <translation>Eklenti etkinleştirme yöntemi uyuşmuyor.</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1103"/> + <location filename="../PluginManager/PluginManager.py" line="1106"/> <source>Plugin Manager Error</source> <translation>Eklenti Yöneticisi Hatası</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1103"/> + <location filename="../PluginManager/PluginManager.py" line="1106"/> <source><p>The plugin download directory <b>{0}</b> could not be created. Please configure it via the configuration dialog.</p><p>Reason: {1}</p></source> <translation><p>eklenti dizini <b>{0}</b> oluşturulamıyor. Lütfen ayarlama diyaloğu aracılığı ile düzenleyin.</p><p>Sebep: {1}</p></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1179"/> + <location filename="../PluginManager/PluginManager.py" line="1182"/> <source>Error downloading file</source> <translation type="unfinished">Dosya yüklenirken hata</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1179"/> + <location filename="../PluginManager/PluginManager.py" line="1182"/> <source><p>Could not download the requested file from {0}.</p><p>Error: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1216"/> + <location filename="../PluginManager/PluginManager.py" line="1219"/> <source>New plugin versions available</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1216"/> + <location filename="../PluginManager/PluginManager.py" line="1219"/> <source><p>There are new plug-ins or plug-in updates available. Use the plug-in repository dialog to get them.</p></source> <translation type="unfinished"></translation> </message> @@ -39307,362 +39320,362 @@ <context> <name>Project</name> <message> - <location filename="../Project/Project.py" line="161"/> + <location filename="../Project/Project.py" line="163"/> <source>Python3 Files (*.py *.py3);;Python3 GUI Files (*.pyw *.pyw3);;</source> <translation>Python3 Dosyaları (*.py *.py3);;Python3 GUI Dosyaları (*.pyw *.pyw3);;</translation> </message> <message> - <location filename="../Project/Project.py" line="164"/> + <location filename="../Project/Project.py" line="166"/> <source>Ruby Files (*.rb);;</source> <translation>Ruby Dosyaları (*.rb);;</translation> </message> <message> - <location filename="../Project/Project.py" line="245"/> + <location filename="../Project/Project.py" line="247"/> <source>Console</source> <translation>Konsol- kumanda birimi</translation> </message> <message> - <location filename="../Project/Project.py" line="246"/> + <location filename="../Project/Project.py" line="248"/> <source>Other</source> <translation>Diğer</translation> </message> <message> - <location filename="../Project/Project.py" line="260"/> + <location filename="../Project/Project.py" line="262"/> <source>PySide GUI</source> <translation>PySide GUI</translation> </message> <message> - <location filename="../Project/Project.py" line="261"/> + <location filename="../Project/Project.py" line="263"/> <source>PySide Console</source> <translation>Pyside-Konsolu</translation> </message> <message> - <location filename="../Project/Project.py" line="344"/> + <location filename="../Project/Project.py" line="346"/> <source>Registering Project Type</source> <translation>Kaydedilmiş Proje Türü</translation> </message> <message> - <location filename="../Project/Project.py" line="699"/> + <location filename="../Project/Project.py" line="701"/> <source>Read project file</source> <translation>Proje dosyasını oku</translation> </message> <message> - <location filename="../Project/Project.py" line="699"/> + <location filename="../Project/Project.py" line="701"/> <source><p>The project file <b>{0}</b> could not be read.</p></source> <translation><p>Proje dosyası <b>{0}</b> okunamdı.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="799"/> + <location filename="../Project/Project.py" line="801"/> <source>Save project file</source> <translation>Proje dosyasını kaydet</translation> </message> <message> - <location filename="../Project/Project.py" line="799"/> + <location filename="../Project/Project.py" line="801"/> <source><p>The project file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="835"/> + <location filename="../Project/Project.py" line="837"/> <source>Read user project properties</source> <translation>Kullanıcı projesinin özelliklerini oku</translation> </message> <message> - <location filename="../Project/Project.py" line="835"/> + <location filename="../Project/Project.py" line="837"/> <source><p>The user specific project properties file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="859"/> + <location filename="../Project/Project.py" line="861"/> <source>Save user project properties</source> <translation>Kullanıcı projesinin özelliklerini kaydet</translation> </message> <message> - <location filename="../Project/Project.py" line="859"/> + <location filename="../Project/Project.py" line="861"/> <source><p>The user specific project properties file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="917"/> + <location filename="../Project/Project.py" line="919"/> <source>Read project session</source> <translation>Proje oturumunu oku</translation> </message> <message> - <location filename="../Project/Project.py" line="1139"/> + <location filename="../Project/Project.py" line="1141"/> <source>Please save the project first.</source> <translation>Lütfen ilkolarak projeyi kaydedin.</translation> </message> <message> - <location filename="../Project/Project.py" line="917"/> + <location filename="../Project/Project.py" line="919"/> <source><p>The project session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="953"/> + <location filename="../Project/Project.py" line="955"/> <source>Save project session</source> <translation>Proje oturumunu kaydet</translation> </message> <message> - <location filename="../Project/Project.py" line="953"/> + <location filename="../Project/Project.py" line="955"/> <source><p>The project session file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="982"/> + <location filename="../Project/Project.py" line="984"/> <source>Delete project session</source> <translation>Proje oturumunu sil</translation> </message> <message> - <location filename="../Project/Project.py" line="982"/> + <location filename="../Project/Project.py" line="984"/> <source><p>The project session file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1016"/> + <location filename="../Project/Project.py" line="1018"/> <source>Read tasks</source> <translation>Görevler Okunuyor</translation> </message> <message> - <location filename="../Project/Project.py" line="1016"/> + <location filename="../Project/Project.py" line="1018"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1036"/> + <location filename="../Project/Project.py" line="1038"/> <source>Save tasks</source> <translation>Görevleri kaydet</translation> </message> <message> - <location filename="../Project/Project.py" line="1036"/> + <location filename="../Project/Project.py" line="1038"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1093"/> + <location filename="../Project/Project.py" line="1095"/> <source>Read debugger properties</source> <translation>Hata ayıklayıcı özelliklerini oku</translation> </message> <message> - <location filename="../Project/Project.py" line="1093"/> + <location filename="../Project/Project.py" line="1095"/> <source><p>The project debugger properties file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1127"/> + <location filename="../Project/Project.py" line="1129"/> <source>Save debugger properties</source> <translation>Hata ayıklayıcı özelliklerini kaydet</translation> </message> <message> - <location filename="../Project/Project.py" line="1127"/> + <location filename="../Project/Project.py" line="1129"/> <source><p>The project debugger properties file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1153"/> + <location filename="../Project/Project.py" line="1155"/> <source>Delete debugger properties</source> <translation>Hata ayıklayıcı özelliklerini sil</translation> </message> <message> - <location filename="../Project/Project.py" line="1153"/> + <location filename="../Project/Project.py" line="1155"/> <source><p>The project debugger properties file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1261"/> + <location filename="../Project/Project.py" line="1263"/> <source>Add Language</source> <translation>Dil Ekle</translation> </message> <message> - <location filename="../Project/Project.py" line="1261"/> + <location filename="../Project/Project.py" line="1263"/> <source>You have to specify a translation pattern first.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1383"/> + <location filename="../Project/Project.py" line="1385"/> <source>Delete translation</source> <translation>Çeviriyi silin</translation> </message> <message> - <location filename="../Project/Project.py" line="1383"/> + <location filename="../Project/Project.py" line="1385"/> <source><p>The selected translation file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1534"/> + <location filename="../Project/Project.py" line="1536"/> <source>Add file</source> <translation>Dosya ekle</translation> </message> <message> - <location filename="../Project/Project.py" line="1596"/> + <location filename="../Project/Project.py" line="1598"/> <source><p>The file <b>{0}</b> already exists.</p><p>Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1522"/> + <location filename="../Project/Project.py" line="1524"/> <source><p>The selected file <b>{0}</b> could not be added to <b>{1}</b>.</p><p>Reason: {2}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1651"/> + <location filename="../Project/Project.py" line="1653"/> <source>The target directory must not be empty.</source> <translation>Hedef dizin boş olamaz.</translation> </message> <message> - <location filename="../Project/Project.py" line="1662"/> + <location filename="../Project/Project.py" line="1664"/> <source>Add directory</source> <translation>Dizin Ekle</translation> </message> <message> - <location filename="../Project/Project.py" line="1565"/> + <location filename="../Project/Project.py" line="1567"/> <source><p>The source directory doesn't contain any files belonging to the selected category.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1578"/> + <location filename="../Project/Project.py" line="1580"/> <source><p>The target directory <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1662"/> + <location filename="../Project/Project.py" line="1664"/> <source>The source directory must not be empty.</source> <translation>Kaynak dizin boş olamaz.</translation> </message> <message> - <location filename="../Project/Project.py" line="1786"/> + <location filename="../Project/Project.py" line="1788"/> <source>Rename file</source> <translation>Dosya adını değiştir</translation> </message> <message> - <location filename="../Project/Project.py" line="1810"/> + <location filename="../Project/Project.py" line="1812"/> <source>Rename File</source> <translation>Dosya adını Değiştir</translation> </message> <message> - <location filename="../Project/Project.py" line="2832"/> + <location filename="../Project/Project.py" line="2834"/> <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="../Project/Project.py" line="1810"/> + <location filename="../Project/Project.py" line="1812"/> <source><p>The file <b>{0}</b> could not be renamed.<br />Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2046"/> + <location filename="../Project/Project.py" line="2048"/> <source>Delete file</source> <translation>Dosya sil</translation> </message> <message> - <location filename="../Project/Project.py" line="2046"/> + <location filename="../Project/Project.py" line="2048"/> <source><p>The selected file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2075"/> + <location filename="../Project/Project.py" line="2077"/> <source>Delete directory</source> <translation>Dizini sil</translation> </message> <message> - <location filename="../Project/Project.py" line="2075"/> + <location filename="../Project/Project.py" line="2077"/> <source><p>The selected directory <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2157"/> + <location filename="../Project/Project.py" line="2159"/> <source>Create project directory</source> <translation>Proje dizinin oluştur</translation> </message> <message> - <location filename="../Project/Project.py" line="2157"/> + <location filename="../Project/Project.py" line="2159"/> <source><p>The project directory <b>{0}</b> could not be created.</p></source> <translation><p>Proje dizini <b>{0}</b> oluşturulamıyor.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="2681"/> + <location filename="../Project/Project.py" line="2683"/> <source>New Project</source> <translation>Yeni Proje</translation> </message> <message> - <location filename="../Project/Project.py" line="2233"/> + <location filename="../Project/Project.py" line="2235"/> <source>Add existing files to the project?</source> <translation>Var olan dosyalar projeye eklensin mi?</translation> </message> <message> - <location filename="../Project/Project.py" line="2681"/> + <location filename="../Project/Project.py" line="2683"/> <source>Select Version Control System</source> <translation>Sürüm Kontrol Sistemini Seç</translation> </message> <message> - <location filename="../Project/Project.py" line="2352"/> + <location filename="../Project/Project.py" line="2354"/> <source>Would you like to edit the VCS command options?</source> <translation>VCS komut seçeneklerini düzenlemek istiyor musunuz?</translation> </message> <message> - <location filename="../Project/Project.py" line="3441"/> + <location filename="../Project/Project.py" line="3443"/> <source>New project</source> <translation>Yeni Proje</translation> </message> <message> - <location filename="../Project/Project.py" line="2300"/> + <location filename="../Project/Project.py" line="2302"/> <source>Shall the project file be added to the repository?</source> <translation>Proje dosyaları kaynak havuzuna aktarılacak mı?</translation> </message> <message> - <location filename="../Project/Project.py" line="2331"/> + <location filename="../Project/Project.py" line="2333"/> <source>None</source> <translation>Yok</translation> </message> <message> - <location filename="../Project/Project.py" line="2324"/> + <location filename="../Project/Project.py" line="2326"/> <source>Select version control system for the project</source> <translation>proje için sürüm kontrol sistemini seçin</translation> </message> <message> - <location filename="../Project/Project.py" line="2430"/> + <location filename="../Project/Project.py" line="2432"/> <source>Translation Pattern</source> <translation>Çeviri Kalıbı</translation> </message> <message> - <location filename="../Project/Project.py" line="2430"/> + <location filename="../Project/Project.py" line="2432"/> <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source> <translation>Çeviri dosylarınınyol kalıbını giriniz (kullanılan '% dil %'dil kodu):</translation> </message> <message> - <location filename="../Project/Project.py" line="3455"/> + <location filename="../Project/Project.py" line="3457"/> <source>Open project</source> <translation>Projeyi aç</translation> </message> <message> - <location filename="../Project/Project.py" line="2817"/> + <location filename="../Project/Project.py" line="2819"/> <source>Project Files (*.e4p)</source> <translation>Proje Dosyaları (*.e4p)</translation> </message> <message> - <location filename="../Project/Project.py" line="3492"/> + <location filename="../Project/Project.py" line="3494"/> <source>Save project as</source> <translation>projeyi farklı adda kaydet</translation> </message> <message> - <location filename="../Project/Project.py" line="2832"/> + <location filename="../Project/Project.py" line="2834"/> <source>Save File</source> <translation>Dosyayı Kaydet</translation> </message> <message> - <location filename="../Project/Project.py" line="2868"/> + <location filename="../Project/Project.py" line="2870"/> <source>Close Project</source> <translation>Projeyi Kapat</translation> </message> <message> - <location filename="../Project/Project.py" line="2868"/> + <location filename="../Project/Project.py" line="2870"/> <source>The current project has unsaved changes.</source> <translation>Geçerli projede kaydedilmemiş dosyalar var.</translation> </message> <message> - <location filename="../Project/Project.py" line="3033"/> + <location filename="../Project/Project.py" line="3035"/> <source>Syntax errors detected</source> <translation>Sözdizimi Hataları tespit edildi</translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="3033"/> + <location filename="../Project/Project.py" line="3035"/> <source>The project contains %n file(s) with syntax errors.</source> <translation type="unfinished"> <numerusform></numerusform> @@ -39670,814 +39683,859 @@ </translation> </message> <message> - <location filename="../Project/Project.py" line="3441"/> + <location filename="../Project/Project.py" line="3443"/> <source>&New...</source> <translation>Ye&ni...</translation> </message> <message> - <location filename="../Project/Project.py" line="3446"/> + <location filename="../Project/Project.py" line="3448"/> <source>Generate a new project</source> <translation>Yeni bir proje üret</translation> </message> <message> - <location filename="../Project/Project.py" line="3447"/> + <location filename="../Project/Project.py" line="3449"/> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>Yeni...</b><p>Bu yeni bir proje için bilgilerin girileceği bir diyalog açar.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3455"/> + <location filename="../Project/Project.py" line="3457"/> <source>&Open...</source> <translation>&Aç...</translation> </message> <message> - <location filename="../Project/Project.py" line="3460"/> + <location filename="../Project/Project.py" line="3462"/> <source>Open an existing project</source> <translation>Var olan bir projeyi aç</translation> </message> <message> - <location filename="../Project/Project.py" line="3461"/> + <location filename="../Project/Project.py" line="3463"/> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>Aç...</b><p>Bu varolan bir projeyi açar.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3468"/> + <location filename="../Project/Project.py" line="3470"/> <source>Close project</source> <translation>Projeyi kapat</translation> </message> <message> - <location filename="../Project/Project.py" line="3468"/> + <location filename="../Project/Project.py" line="3470"/> <source>&Close</source> <translation>&Kapat</translation> </message> <message> - <location filename="../Project/Project.py" line="3472"/> + <location filename="../Project/Project.py" line="3474"/> <source>Close the current project</source> <translation>Geçerli projeyi kapat</translation> </message> <message> - <location filename="../Project/Project.py" line="3473"/> + <location filename="../Project/Project.py" line="3475"/> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>Kapat</b><p>Bu geçerli projeyi kapatır.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3480"/> + <location filename="../Project/Project.py" line="3482"/> <source>Save project</source> <translation>Projeyi kaydet</translation> </message> <message> - <location filename="../Project/Project.py" line="3671"/> + <location filename="../Project/Project.py" line="3673"/> <source>&Save</source> <translation>&Kaydet</translation> </message> <message> - <location filename="../Project/Project.py" line="3484"/> + <location filename="../Project/Project.py" line="3486"/> <source>Save the current project</source> <translation>Geçerli projeyi kapat</translation> </message> <message> - <location filename="../Project/Project.py" line="3485"/> + <location filename="../Project/Project.py" line="3487"/> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>Kaydet</b><p>Bu geçerli projeyi kaydeder.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3492"/> + <location filename="../Project/Project.py" line="3494"/> <source>Save &as...</source> <translation>Farklı k&aydet...</translation> </message> <message> - <location filename="../Project/Project.py" line="3496"/> - <source>Save the current project to a new file</source> - <translation>Geçerli projeyi yeni bir dosya olarak kaydet</translation> - </message> - <message> <location filename="../Project/Project.py" line="3498"/> + <source>Save the current project to a new file</source> + <translation>Geçerli projeyi yeni bir dosya olarak kaydet</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3500"/> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>Farklı kaydet</b><p>Bu geçerli projeyi yeni bir dosya olarak kaydeder.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3507"/> + <location filename="../Project/Project.py" line="3509"/> <source>Add files to project</source> <translation>Projeye dosyalar ekle</translation> </message> <message> - <location filename="../Project/Project.py" line="3507"/> + <location filename="../Project/Project.py" line="3509"/> <source>Add &files...</source> <translation>Dosyaları &ekle...</translation> </message> <message> - <location filename="../Project/Project.py" line="3512"/> - <source>Add files to the current project</source> - <translation>Geçerli projeye dosyalar ekle</translation> - </message> - <message> <location filename="../Project/Project.py" line="3514"/> + <source>Add files to the current project</source> + <translation>Geçerli projeye dosyalar ekle</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3516"/> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation><b>Dosya ekle...</b><p>Bu geçerli projeye bir dosya eklemek için bir diyalog açar. Alana belirlenmiş uzantıda bir dosya eklenir.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3523"/> + <location filename="../Project/Project.py" line="3525"/> <source>Add directory to project</source> <translation>Projeye dizin ekle</translation> </message> <message> - <location filename="../Project/Project.py" line="3523"/> + <location filename="../Project/Project.py" line="3525"/> <source>Add directory...</source> <translation>Dizin ekle...</translation> </message> <message> - <location filename="../Project/Project.py" line="3528"/> - <source>Add a directory to the current project</source> - <translation>Geçerli projeye bir dizin ekleyiniz</translation> - </message> - <message> <location filename="../Project/Project.py" line="3530"/> + <source>Add a directory to the current project</source> + <translation>Geçerli projeye bir dizin ekleyiniz</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3532"/> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>Dizin Ekle...</b><p>Bu geçerli projeye bir dizin eklemek için bir diyalog açar.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3538"/> + <location filename="../Project/Project.py" line="3540"/> <source>Add translation to project</source> <translation>Projeye çeviri ekle</translation> </message> <message> - <location filename="../Project/Project.py" line="3538"/> + <location filename="../Project/Project.py" line="3540"/> <source>Add &translation...</source> <translation>Çeviri &ekle...</translation> </message> <message> - <location filename="../Project/Project.py" line="3543"/> - <source>Add a translation to the current project</source> - <translation>Geçerli projeye çeviri ekle</translation> - </message> - <message> <location filename="../Project/Project.py" line="3545"/> + <source>Add a translation to the current project</source> + <translation>Geçerli projeye çeviri ekle</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3547"/> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation><b>Çeviri ekle...</b><p>Bu geçerli projeye bir çeviri eklemek için bir diyalog açar.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3553"/> + <location filename="../Project/Project.py" line="3555"/> <source>Search new files</source> <translation>Yeni dosyaları ara</translation> </message> <message> - <location filename="../Project/Project.py" line="3553"/> + <location filename="../Project/Project.py" line="3555"/> <source>Searc&h new files...</source> <translation>Yeni dosyaları a&ra...</translation> </message> <message> - <location filename="../Project/Project.py" line="3557"/> - <source>Search new files in the project directory.</source> - <translation>Proje dizininde yeni dosyaları ara.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3559"/> + <source>Search new files in the project directory.</source> + <translation>Proje dizininde yeni dosyaları ara.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3561"/> <source><b>Search new files...</b><p>This searches for new files (sources, *.ui, *.idl) in the project directory and registered subdirectories.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3582"/> + <location filename="../Project/Project.py" line="3584"/> <source>Project properties</source> <translation>Proje özellikleri</translation> </message> <message> - <location filename="../Project/Project.py" line="3582"/> + <location filename="../Project/Project.py" line="3584"/> <source>&Properties...</source> <translation>&Özellikler...</translation> </message> <message> - <location filename="../Project/Project.py" line="3587"/> + <location filename="../Project/Project.py" line="3589"/> <source>Show the project properties</source> <translation>Proje özelliklerini göster</translation> </message> <message> - <location filename="../Project/Project.py" line="3588"/> + <location filename="../Project/Project.py" line="3590"/> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3595"/> + <location filename="../Project/Project.py" line="3597"/> <source>User project properties</source> <translation>Kullanıcı projesi özellikleri</translation> </message> <message> - <location filename="../Project/Project.py" line="3595"/> + <location filename="../Project/Project.py" line="3597"/> <source>&User Properties...</source> <translation>K&ullanıcı Özellikleri...</translation> </message> <message> - <location filename="../Project/Project.py" line="3600"/> - <source>Show the user specific project properties</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3602"/> + <source>Show the user specific project properties</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3604"/> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3610"/> + <location filename="../Project/Project.py" line="3612"/> <source>Filetype Associations</source> <translation>Dosyatipi Birleştirme</translation> </message> <message> - <location filename="../Project/Project.py" line="3610"/> + <location filename="../Project/Project.py" line="3612"/> <source>Filetype Associations...</source> <translation>Dosyatipi Birleştirme...</translation> </message> <message> - <location filename="../Project/Project.py" line="3614"/> - <source>Show the project filetype associations</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3616"/> + <source>Show the project filetype associations</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3618"/> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the filetype associations of the project. These associations determine the type (source, form, interface or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3628"/> + <location filename="../Project/Project.py" line="3630"/> <source>Lexer Associations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3628"/> + <location filename="../Project/Project.py" line="3630"/> <source>Lexer Associations...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3632"/> - <source>Show the project lexer associations (overriding defaults)</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3634"/> + <source>Show the project lexer associations (overriding defaults)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3636"/> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3646"/> + <location filename="../Project/Project.py" line="3648"/> <source>Debugger Properties</source> <translation>Hata Ayıklayıcı Özellikleri</translation> </message> <message> - <location filename="../Project/Project.py" line="3646"/> + <location filename="../Project/Project.py" line="3648"/> <source>Debugger &Properties...</source> <translation>Hata Ayıklayıcı &Özellikleri...</translation> </message> <message> - <location filename="../Project/Project.py" line="3650"/> + <location filename="../Project/Project.py" line="3652"/> <source>Show the debugger properties</source> <translation>Hata ayıklayıcı özelliklerini göster</translation> </message> <message> - <location filename="../Project/Project.py" line="3651"/> + <location filename="../Project/Project.py" line="3653"/> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3659"/> + <location filename="../Project/Project.py" line="3661"/> <source>Load</source> <translation>Yükle</translation> </message> <message> - <location filename="../Project/Project.py" line="3659"/> + <location filename="../Project/Project.py" line="3661"/> <source>&Load</source> <translation>Yük&le</translation> </message> <message> - <location filename="../Project/Project.py" line="3663"/> + <location filename="../Project/Project.py" line="3665"/> <source>Load the debugger properties</source> <translation>Hata ayıklayıcı özelliklerini yükle</translation> </message> <message> - <location filename="../Project/Project.py" line="3664"/> + <location filename="../Project/Project.py" line="3666"/> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3671"/> + <location filename="../Project/Project.py" line="3673"/> <source>Save</source> <translation>Kaydet</translation> </message> <message> - <location filename="../Project/Project.py" line="3675"/> + <location filename="../Project/Project.py" line="3677"/> <source>Save the debugger properties</source> <translation>Hata ayıklayıcı özelliklerini kaydet</translation> </message> <message> - <location filename="../Project/Project.py" line="3676"/> + <location filename="../Project/Project.py" line="3678"/> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3683"/> + <location filename="../Project/Project.py" line="3685"/> <source>Delete</source> <translation>Sil</translation> </message> <message> - <location filename="../Project/Project.py" line="3683"/> + <location filename="../Project/Project.py" line="3685"/> <source>&Delete</source> <translation>&Sil</translation> </message> <message> - <location filename="../Project/Project.py" line="3687"/> + <location filename="../Project/Project.py" line="3689"/> <source>Delete the debugger properties</source> <translation>Hata ayıklayıcı özelliklerini sil</translation> </message> <message> - <location filename="../Project/Project.py" line="3688"/> + <location filename="../Project/Project.py" line="3690"/> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3696"/> + <location filename="../Project/Project.py" line="3698"/> <source>Reset</source> <translation>Başadön</translation> </message> <message> - <location filename="../Project/Project.py" line="3696"/> + <location filename="../Project/Project.py" line="3698"/> <source>&Reset</source> <translation>Başad&ön</translation> </message> <message> - <location filename="../Project/Project.py" line="3700"/> + <location filename="../Project/Project.py" line="3702"/> <source>Reset the debugger properties</source> <translation>Hata ayıklayıcı özelliklerini başa döndür</translation> </message> <message> - <location filename="../Project/Project.py" line="3701"/> + <location filename="../Project/Project.py" line="3703"/> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3710"/> + <location filename="../Project/Project.py" line="3712"/> <source>Load session</source> <translation>Oturum yükleniyor</translation> </message> <message> - <location filename="../Project/Project.py" line="3714"/> + <location filename="../Project/Project.py" line="3716"/> <source>Load the projects session file.</source> <translation>Projelerin oturm dosyasını yükle.</translation> </message> <message> - <location filename="../Project/Project.py" line="3715"/> + <location filename="../Project/Project.py" line="3717"/> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3728"/> + <location filename="../Project/Project.py" line="3730"/> <source>Save session</source> <translation>Oturumu kaydet</translation> </message> <message> - <location filename="../Project/Project.py" line="3732"/> + <location filename="../Project/Project.py" line="3734"/> <source>Save the projects session file.</source> <translation>Proje oturum dosyasını kaydet.</translation> </message> <message> - <location filename="../Project/Project.py" line="3733"/> + <location filename="../Project/Project.py" line="3735"/> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3746"/> + <location filename="../Project/Project.py" line="3748"/> <source>Delete session</source> <translation>Oturumu sil</translation> </message> <message> - <location filename="../Project/Project.py" line="3750"/> + <location filename="../Project/Project.py" line="3752"/> <source>Delete the projects session file.</source> <translation>Proje oturum dosyasını sil.</translation> </message> <message> - <location filename="../Project/Project.py" line="3751"/> + <location filename="../Project/Project.py" line="3753"/> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation><b>Oturumu Sil</b><p>Bu proje dosya oturumunu siler</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3760"/> + <location filename="../Project/Project.py" line="3762"/> <source>Code Metrics</source> <translation>Metrik Kod</translation> </message> <message> - <location filename="../Project/Project.py" line="3760"/> + <location filename="../Project/Project.py" line="3762"/> <source>&Code Metrics...</source> <translation>Me&trik Kod...</translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> - <source>Show some code metrics for the project.</source> - <translation>Proje için bazı metrik kodları göster.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3766"/> + <source>Show some code metrics for the project.</source> + <translation>Proje için bazı metrik kodları göster.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3768"/> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation><b>Metrik Kodlar...</b><p>Bu proje içindeki tüm Python dosyalarının bazı metrik kodlarını gösterir.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3774"/> + <location filename="../Project/Project.py" line="3776"/> <source>Python Code Coverage</source> <translation>Python Kod Koruyucu</translation> </message> <message> - <location filename="../Project/Project.py" line="3774"/> + <location filename="../Project/Project.py" line="3776"/> <source>Code Co&verage...</source> <translation>Kod Koru&yucu...</translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> - <source>Show code coverage information for the project.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3780"/> + <source>Show code coverage information for the project.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3782"/> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4564"/> + <location filename="../Project/Project.py" line="4568"/> <source>Profile Data</source> <translation>Veri Kesiti</translation> </message> <message> - <location filename="../Project/Project.py" line="3788"/> + <location filename="../Project/Project.py" line="3790"/> <source>&Profile Data...</source> <translation>&Veri kesiti...</translation> </message> <message> - <location filename="../Project/Project.py" line="3792"/> - <source>Show profiling data for the project.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3794"/> + <source>Show profiling data for the project.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3796"/> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4618"/> + <location filename="../Project/Project.py" line="4622"/> <source>Application Diagram</source> <translation>Uygulama Şeması</translation> </message> <message> - <location filename="../Project/Project.py" line="3803"/> + <location filename="../Project/Project.py" line="3805"/> <source>&Application Diagram...</source> <translation>Uygulama Şem&ası...</translation> </message> <message> - <location filename="../Project/Project.py" line="3807"/> - <source>Show a diagram of the project.</source> - <translation>Projenin bir şemasını göster.</translation> - </message> - <message> <location filename="../Project/Project.py" line="3809"/> + <source>Show a diagram of the project.</source> + <translation>Projenin bir şemasını göster.</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3811"/> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>Uygulama Şeması...</b><p>Bu projenin bir şemasını gösterir.</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4776"/> + <location filename="../Project/Project.py" line="4780"/> <source>Create Package List</source> <translation>Paket Listesini Oluştur</translation> </message> <message> - <location filename="../Project/Project.py" line="3832"/> + <location filename="../Project/Project.py" line="3834"/> <source>Create &Package List</source> <translation>&Paket Listesini Üret</translation> </message> <message> - <location filename="../Project/Project.py" line="5003"/> + <location filename="../Project/Project.py" line="5027"/> <source>Create Plugin Archive</source> <translation>Eklenti Arşivi Oluştur</translation> </message> <message> <location filename="../Project/Project.py" line="3848"/> <source>Create Plugin &Archive</source> - <translation>Eklenti &Arşivi Oluştur</translation> + <translation type="obsolete">Eklenti &Arşivi Oluştur</translation> </message> <message> <location filename="../Project/Project.py" line="3864"/> <source>Create Plugin Archive (Snapshot)</source> - <translation>Eklenti arşivi oluştur (Şipşak)</translation> + <translation type="obsolete">Eklenti arşivi oluştur (Şipşak)</translation> </message> <message> <location filename="../Project/Project.py" line="3864"/> <source>Create Plugin Archive (&Snapshot)</source> - <translation>Eklenti Arşivi Oluştur (En&stantene)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3900"/> + <translation type="obsolete">Eklenti Arşivi Oluştur (En&stantene)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3904"/> <source>&Project</source> <translation>&Proje</translation> </message> <message> - <location filename="../Project/Project.py" line="3901"/> + <location filename="../Project/Project.py" line="3905"/> <source>Open &Recent Projects</source> <translation>Geçmiş P&rojeleri Aç</translation> </message> <message> - <location filename="../Project/Project.py" line="3902"/> - <source>&Version Control</source> - <translation>S&ürüm Kontrol</translation> - </message> - <message> <location filename="../Project/Project.py" line="3906"/> - <source>Chec&k</source> - <translation>&Kontrol</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3908"/> - <source>Sho&w</source> - <translation>G&öster</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3909"/> - <source>&Diagrams</source> - <translation>Şemalar &D</translation> + <source>&Version Control</source> + <translation>S&ürüm Kontrol</translation> </message> <message> <location filename="../Project/Project.py" line="3910"/> - <source>Session</source> - <translation>Oturum</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3911"/> - <source>Source &Documentation</source> - <translation>Kaynak Belgeleme &D</translation> + <source>Chec&k</source> + <translation>&Kontrol</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3912"/> + <source>Sho&w</source> + <translation>G&öster</translation> </message> <message> <location filename="../Project/Project.py" line="3913"/> - <source>Debugger</source> - <translation>Hata Ayıklayıcı</translation> + <source>&Diagrams</source> + <translation>Şemalar &D</translation> </message> <message> <location filename="../Project/Project.py" line="3914"/> + <source>Session</source> + <translation>Oturum</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3915"/> + <source>Source &Documentation</source> + <translation>Kaynak Belgeleme &D</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3917"/> + <source>Debugger</source> + <translation>Hata Ayıklayıcı</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3918"/> <source>Pac&kagers</source> <translation>Pa&ketleyici</translation> </message> <message> - <location filename="../Project/Project.py" line="4022"/> + <location filename="../Project/Project.py" line="4026"/> <source>Project</source> <translation>Proje</translation> </message> <message> - <location filename="../Project/Project.py" line="4088"/> + <location filename="../Project/Project.py" line="4092"/> <source>&Clear</source> <translation>T&emizle</translation> </message> <message> - <location filename="../Project/Project.py" line="4227"/> + <location filename="../Project/Project.py" line="4231"/> <source>Search New Files</source> <translation>Yeni Dosyaları Ara</translation> </message> <message> - <location filename="../Project/Project.py" line="4227"/> + <location filename="../Project/Project.py" line="4231"/> <source>There were no new files found to be added.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4373"/> + <location filename="../Project/Project.py" line="4377"/> <source>Version Control System</source> <translation>Sürüm Kontrol Sistemi</translation> </message> <message> - <location filename="../Project/Project.py" line="4373"/> + <location filename="../Project/Project.py" line="4377"/> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4491"/> + <location filename="../Project/Project.py" line="4495"/> <source>Coverage Data</source> <translation>Veri Kapsamı</translation> </message> <message> - <location filename="../Project/Project.py" line="4541"/> + <location filename="../Project/Project.py" line="4545"/> <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="4514"/> + <location filename="../Project/Project.py" line="4518"/> <source>Code Coverage</source> <translation>Kod Koruyucu</translation> </message> <message> - <location filename="../Project/Project.py" line="4514"/> + <location filename="../Project/Project.py" line="4518"/> <source>Please select a coverage file</source> <translation>Lütfen bir koruyucu dosya seçiniz</translation> </message> <message> - <location filename="../Project/Project.py" line="4564"/> + <location filename="../Project/Project.py" line="4568"/> <source>Please select a profile file</source> <translation>Lütfen kesit dosyasını seçiniz</translation> </message> <message> - <location filename="../Project/Project.py" line="4618"/> + <location filename="../Project/Project.py" line="4622"/> <source>Include module names?</source> <translation>Modül isimleri dahil edilsin mi?</translation> </message> <message> - <location filename="../Project/Project.py" line="4736"/> + <location filename="../Project/Project.py" line="4740"/> <source><p>The file <b>PKGLIST</b> already exists.</p><p>Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4776"/> + <location filename="../Project/Project.py" line="4780"/> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4815"/> - <source><p>The file <b>PKGLIST</b> does not exist. Aborting...</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4823"/> + <location filename="../Project/Project.py" line="4799"/> <source>The project does not have a main script defined. Aborting...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4836"/> - <source><p>The file <b>PKGLIST</b> could not be read.</p><p>Reason: {0}</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4892"/> + <location filename="../Project/Project.py" line="4911"/> <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"></translation> </message> <message> - <location filename="../Project/Project.py" line="4961"/> + <location filename="../Project/Project.py" line="4985"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="158"/> + <location filename="../Project/Project.py" line="160"/> <source>Python2 Files (*.py2);;Python2 GUI Files (*.pyw2);;</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2220"/> + <location filename="../Project/Project.py" line="2222"/> <source>Create main script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2220"/> + <location filename="../Project/Project.py" line="2222"/> <source><p>The mainscript <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3817"/> + <location filename="../Project/Project.py" line="3819"/> <source>Load Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3817"/> + <location filename="../Project/Project.py" line="3819"/> <source>&Load Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3821"/> - <source>Load a diagram from file.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3823"/> + <source>Load a diagram from file.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3825"/> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="321"/> + <location filename="../Project/Project.py" line="323"/> <source><p>The Programming Language <b>{0}</b> is not supported.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="344"/> + <location filename="../Project/Project.py" line="346"/> <source><p>The Project type <b>{0}</b> is already registered.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="332"/> + <location filename="../Project/Project.py" line="334"/> <source><p>The Project type <b>{0}</b> is already registered with Programming Language <b>{1}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="242"/> + <location filename="../Project/Project.py" line="244"/> <source>PyQt5 GUI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="243"/> + <location filename="../Project/Project.py" line="245"/> <source>PyQt5 Console</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4361"/> + <location filename="../Project/Project.py" line="4365"/> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5003"/> + <location filename="../Project/Project.py" line="5027"/> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3837"/> - <source>Create an initial PKGLIST file for an eric6 plugin.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3839"/> + <source>Create an initial PKGLIST file for an eric6 plugin.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3841"/> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric6 plugin archive. The list is created from the project file.</p></source> <translation type="unfinished"></translation> </message> <message> <location filename="../Project/Project.py" line="3853"/> <source>Create an eric6 plugin archive file.</source> - <translation type="unfinished">Eric5 eklenti arşiv dosyası oluştur. {6 ?}</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3855"/> - <source><b>Create Plugin Archive</b><p>This creates an eric6 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3869"/> - <source>Create an eric6 plugin archive file (snapshot release).</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="3871"/> - <source><b>Create Plugin Archive (Snapshot)</b><p>This creates an eric6 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name. The version entry of the main script is modified to reflect a snapshot release.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4866"/> + <translation type="obsolete">Eric5 eklenti arşiv dosyası oluştur. {6 ?}</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4881"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4915"/> - <source><p>The eric6 plugin archive file <b>{0}</b> was created successfully.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="240"/> + <location filename="../Project/Project.py" line="242"/> <source>PyQt4 GUI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="241"/> + <location filename="../Project/Project.py" line="243"/> <source>PyQt4 Console</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="244"/> + <location filename="../Project/Project.py" line="246"/> <source>Eric6 Plugin</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2651"/> + <location filename="../Project/Project.py" line="2653"/> <source>Create project management directory</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2651"/> + <location filename="../Project/Project.py" line="2653"/> <source><p>The project directory <b>{0}</b> is not writable.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3567"/> + <location filename="../Project/Project.py" line="3569"/> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3573"/> - <source>Search for a file in the project list of files.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3575"/> + <source>Search for a file in the project list of files.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3577"/> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3567"/> + <location filename="../Project/Project.py" line="3569"/> <source>Search Project File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3567"/> + <location filename="../Project/Project.py" line="3569"/> <source>Search Project File...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4799"/> - <source>Select a package list file:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4806"/> - <source><p>No package list file selected. Aborting...</p></source> + <location filename="../Project/Project.py" line="4834"/> + <source>Create Plugin Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3850"/> + <source>Create Plugin &Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3855"/> + <source>Create eric6 plugin archive files.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3857"/> + <source><b>Create Plugin Archives</b><p>This creates eric6 plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3867"/> + <source>Create Plugin Archives (Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3867"/> + <source>Create Plugin Archives (&Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3872"/> + <source>Create eric6 plugin archive files (snapshot releases).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3874"/> + <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric6 plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4813"/> + <source>Select package lists:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>Creating plugin archives...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>Abort</source> + <translation type="unfinished">Vazgeç</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>%v/%m Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4834"/> + <source>Coverage</source> + <translation type="obsolete">Kapsam</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4847"/> + <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4930"/> + <source><p>The eric6 plugin archive files were created with some errors.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4933"/> + <source><p>The eric6 plugin archive files were created successfully.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4823"/> + <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished"></translation> </message> </context> @@ -42482,7 +42540,7 @@ <translation>Gerçekleşen</translation> </message> <message> - <location filename="../DataViews/PyCoverageDialog.py" line="349"/> + <location filename="../DataViews/PyCoverageDialog.ui" line="172"/> <source>Coverage</source> <translation>Kapsam</translation> </message> @@ -42562,7 +42620,7 @@ </translation> </message> <message> - <location filename="../DataViews/PyCoverageDialog.py" line="345"/> + <location filename="../DataViews/PyCoverageDialog.ui" line="192"/> <source>%v/%m Files</source> <translation type="unfinished"></translation> </message> @@ -42570,7 +42628,7 @@ <context> <name>PyProfileDialog</name> <message> - <location filename="../DataViews/PyProfileDialog.py" line="233"/> + <location filename="../DataViews/PyProfileDialog.ui" line="20"/> <source>Profile Results</source> <translation>Kesit Sonucu</translation> </message> @@ -47098,7 +47156,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.py" line="150"/> + <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.ui" line="89"/> <source>Remove Filters</source> <translation type="unfinished"></translation> </message> @@ -47108,7 +47166,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.py" line="178"/> + <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.ui" line="99"/> <source>Remove Attributes</source> <translation type="unfinished"></translation> </message> @@ -48576,7 +48634,7 @@ <context> <name>SendRefererWhitelistDialog</name> <message> - <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="52"/> + <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.ui" line="14"/> <source>Send Referer Whitelist</source> <translation type="unfinished"></translation> </message> @@ -49780,7 +49838,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Snapshot/SnapWidget.py" line="531"/> + <location filename="../Snapshot/SnapWidget.ui" line="20"/> <source>eric6 Snapshot</source> <translation type="unfinished"></translation> </message> @@ -52345,7 +52403,7 @@ <context> <name>SvnDiffDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="171"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.ui" line="14"/> <source>Subversion Diff</source> <translation>Altsürüm farklılıkları</translation> </message> @@ -52648,17 +52706,17 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="621"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="112"/> <source>Revision</source> <translation>Gözden Geçirme</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="618"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="117"/> <source>Author</source> <translation>Yazar</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="141"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="127"/> <source>Message</source> <translation>Mesaj</translation> </message> @@ -53112,7 +53170,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="128"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.ui" line="45"/> <source>&URL:</source> <translation>&URL:</translation> </message> @@ -53214,7 +53272,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.py" line="95"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.ui" line="45"/> <source>&URL:</source> <translation>&URL:</translation> </message> @@ -54444,7 +54502,7 @@ <context> <name>SvnStatusDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="394"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="14"/> <source>Subversion Status</source> <translation>Altsürüm Durumu</translation> </message> @@ -54721,7 +54779,7 @@ <translation>Süreç {0} başlatılamadı. Bunun arama yolunda olduğundan emin olun.</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="711"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="80"/> <source>Commit</source> <translation>Teslimat</translation> </message> @@ -59973,7 +60031,7 @@ <context> <name>UnittestDialog</name> <message> - <location filename="../PyUnit/UnittestDialog.py" line="400"/> + <location filename="../PyUnit/UnittestDialog.ui" line="14"/> <source>Unittest</source> <translation>Birimtest</translation> </message> @@ -62851,62 +62909,62 @@ <context> <name>VariablesViewer</name> <message> - <location filename="../Debugger/VariablesViewer.py" line="354"/> + <location filename="../Debugger/VariablesViewer.py" line="358"/> <source>Global Variables</source> <translation>Evrensel Değişkenler</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="355"/> - <source>Globals</source> - <translation>Evrensel</translation> - </message> - <message> - <location filename="../Debugger/VariablesViewer.py" line="366"/> - <source>Value</source> - <translation>Değer</translation> - </message> - <message> - <location filename="../Debugger/VariablesViewer.py" line="366"/> - <source>Type</source> - <translation>Tip</translation> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="359"/> + <source>Globals</source> + <translation>Evrensel</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="370"/> + <source>Value</source> + <translation>Değer</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="370"/> + <source>Type</source> + <translation>Tip</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="363"/> <source><b>The Global Variables Viewer Window</b><p>This window displays the global variables of the debugged program.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="365"/> + <location filename="../Debugger/VariablesViewer.py" line="369"/> <source>Local Variables</source> <translation>Yerel Değişkenler</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="366"/> - <source>Locals</source> - <translation>Yereller</translation> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="370"/> + <source>Locals</source> + <translation>Yereller</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="374"/> <source><b>The Local Variables Viewer Window</b><p>This window displays the local variables of the debugged program.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="401"/> + <location filename="../Debugger/VariablesViewer.py" line="405"/> <source>Show Details...</source> <translation>Detayları Göster...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="409"/> + <location filename="../Debugger/VariablesViewer.py" line="413"/> <source>Configure...</source> <translation>Ayarlanıyor...</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="629"/> + <location filename="../Debugger/VariablesViewer.py" line="633"/> <source>{0} items</source> <translation>{0} madde</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="407"/> + <location filename="../Debugger/VariablesViewer.py" line="411"/> <source>Refresh</source> <translation type="unfinished">Tazele</translation> </message>
--- a/i18n/eric6_zh_CN.ts Sun Oct 16 12:20:30 2016 +0200 +++ b/i18n/eric6_zh_CN.ts Sun Oct 16 14:42:46 2016 +0200 @@ -390,7 +390,7 @@ <context> <name>AddBookmarkDialog</name> <message> - <location filename="../WebBrowser/Bookmarks/AddBookmarkDialog.py" line="198"/> + <location filename="../WebBrowser/Bookmarks/AddBookmarkDialog.ui" line="26"/> <source>Add Bookmark</source> <translation>添加书签</translation> </message> @@ -1787,7 +1787,7 @@ <translation>编辑地址(&A)</translation> </message> <message> - <location filename="../WebBrowser/Bookmarks/BookmarksDialog.py" line="169"/> + <location filename="../WebBrowser/Bookmarks/BookmarksDialog.ui" line="75"/> <source>&Delete</source> <translation>删除(&D)</translation> </message> @@ -2481,12 +2481,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/CallTraceViewer.py" line="54"/> + <location filename="../Debugger/CallTraceViewer.ui" line="109"/> <source>From</source> <translation type="unfinished">从</translation> </message> <message> - <location filename="../Debugger/CallTraceViewer.py" line="54"/> + <location filename="../Debugger/CallTraceViewer.ui" line="114"/> <source>To</source> <translation type="unfinished">到</translation> </message> @@ -2649,7 +2649,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Cooperation/ChatWidget.py" line="513"/> + <location filename="../Cooperation/ChatWidget.ui" line="230"/> <source>Clear</source> <translation>清除</translation> </message> @@ -2946,7 +2946,7 @@ <context> <name>ClickToFlashWhitelistDialog</name> <message> - <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.py" line="54"/> + <location filename="../Helpviewer/WebPlugins/ClickToFlash/ClickToFlashWhitelistDialog.ui" line="14"/> <source>ClickToFlash Whitelist</source> <translation type="unfinished"></translation> </message> @@ -4241,22 +4241,22 @@ <translation>同步水平滚动条(&S)</translation> </message> <message> - <location filename="../UI/CompareDialog.py" line="356"/> + <location filename="../UI/CompareDialog.py" line="354"/> <source>Total: {0}</source> <translation>总计:{0}</translation> </message> <message> + <location filename="../UI/CompareDialog.py" line="356"/> + <source>Changed: {0}</source> + <translation>已更改:{0}</translation> + </message> + <message> + <location filename="../UI/CompareDialog.py" line="357"/> + <source>Added: {0}</source> + <translation>已添加:{0}</translation> + </message> + <message> <location filename="../UI/CompareDialog.py" line="358"/> - <source>Changed: {0}</source> - <translation>已更改:{0}</translation> - </message> - <message> - <location filename="../UI/CompareDialog.py" line="359"/> - <source>Added: {0}</source> - <translation>已添加:{0}</translation> - </message> - <message> - <location filename="../UI/CompareDialog.py" line="360"/> <source>Deleted: {0}</source> <translation>已删除:{0}</translation> </message> @@ -4873,7 +4873,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/CookieJar/CookiesDialog.py" line="177"/> + <location filename="../WebBrowser/CookieJar/CookiesDialog.ui" line="223"/> <source><no cookie selected></source> <translation type="unfinished"></translation> </message> @@ -7647,7 +7647,7 @@ <context> <name>DownloadManager</name> <message> - <location filename="../WebBrowser/Download/DownloadManager.py" line="363"/> + <location filename="../WebBrowser/Download/DownloadManager.ui" line="14"/> <source>Downloads</source> <translation>下载</translation> </message> @@ -7866,6 +7866,19 @@ </message> </context> <context> + <name>E5ListSelectionDialog</name> + <message> + <location filename="../E5Gui/E5ListSelectionDialog.ui" line="14"/> + <source>Select from List</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../E5Gui/E5ListSelectionDialog.ui" line="23"/> + <source>Select from the list below:</source> + <translation type="unfinished"></translation> + </message> +</context> +<context> <name>E5MainWindow</name> <message> <location filename="../E5Gui/E5MainWindow.py" line="56"/> @@ -8084,92 +8097,92 @@ <translation type="unfinished">标准按钮</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="41"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="257"/> <source>Abort</source> <translation>终止</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="42"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="264"/> <source>Apply</source> <translation>应用</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="43"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="271"/> <source>Cancel</source> <translation>取消</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="44"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="278"/> <source>Close</source> <translation>关闭</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="45"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="285"/> <source>Discard</source> <translation>放弃</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="46"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="292"/> <source>Help</source> <translation>帮助</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="47"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="299"/> <source>Ignore</source> <translation>忽略</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="48"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="306"/> <source>No</source> <translation type="unfinished">否</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="49"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="313"/> <source>No to all</source> <translation type="unfinished">全部否</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="50"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="320"/> <source>Ok</source> <translation type="unfinished">确定</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="51"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="327"/> <source>Open</source> <translation type="unfinished">打开</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="52"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="334"/> <source>Reset</source> <translation type="unfinished">重置</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="53"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="341"/> <source>Restore defaults</source> <translation type="unfinished">恢复默认</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="54"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="348"/> <source>Retry</source> <translation type="unfinished">重试</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="55"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="355"/> <source>Save</source> <translation type="unfinished">保存</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="56"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="362"/> <source>Save all</source> <translation type="unfinished">全部保存</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="57"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="369"/> <source>Yes</source> <translation type="unfinished">是</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.py" line="58"/> + <location filename="../Plugins/WizardPlugins/E5MessageBoxWizard/E5MessageBoxWizardDialog.ui" line="376"/> <source>Yes to all</source> <translation type="unfinished">全部是</translation> </message> @@ -10214,7 +10227,7 @@ <translation>点击以从已安装的 AIP 文件列表中选择一个 API 文件</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="184"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="132"/> <source>Add from installed APIs</source> <translation>从已安装的 API 中添加</translation> </message> @@ -10224,7 +10237,7 @@ <translation>点击以从通过插件安装的 API 文件列表中选择一个 API 文件</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="203"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="142"/> <source>Add from Plugin APIs</source> <translation>从插件 API 中添加</translation> </message> @@ -10234,7 +10247,7 @@ <translation>点击编译已选 API 定义</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.py" line="236"/> + <location filename="../Preferences/ConfigurationPages/EditorAPIsPage.ui" line="159"/> <source>Compile APIs</source> <translation>编译 API</translation> </message> @@ -11288,7 +11301,7 @@ <translation>选择字体。</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="69"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="103"/> <source>Font</source> <translation>字体</translation> </message> @@ -11298,7 +11311,7 @@ <translation>选择行尾填充。</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.py" line="353"/> + <location filename="../Preferences/ConfigurationPages/EditorHighlightingStylesPage.ui" line="113"/> <source>Fill to end of line</source> <translation>填充到行尾</translation> </message> @@ -12819,7 +12832,7 @@ <translation>模式:</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/EditorStylesPage.py" line="58"/> + <location filename="../Preferences/ConfigurationPages/EditorStylesPage.ui" line="1080"/> <source>Disabled</source> <translation>已禁用</translation> </message> @@ -13558,7 +13571,7 @@ <context> <name>EmailDialog</name> <message> - <location filename="../UI/EmailDialog.py" line="339"/> + <location filename="../UI/EmailDialog.ui" line="13"/> <source>Send bug report</source> <translation>发送错误报告</translation> </message> @@ -15004,12 +15017,12 @@ <translation>通知</translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="110"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="122"/> <source>Host</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="111"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="127"/> <source>Permission</source> <translation type="unfinished"></translation> </message> @@ -15024,7 +15037,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FeaturePermissions/FeaturePermissionsDialog.py" line="51"/> + <location filename="../Helpviewer/FeaturePermissions/FeaturePermissionsDialog.ui" line="97"/> <source>Geolocation</source> <translation>地理位置</translation> </message> @@ -16164,7 +16177,7 @@ <translation type="unfinished">名称:</translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="193"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="158"/> <source><no flash cookie selected></source> <translation type="unfinished"></translation> </message> @@ -16174,7 +16187,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="122"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="137"/> <source>Origin:</source> <translation type="unfinished"></translation> </message> @@ -16209,7 +16222,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.py" line="213"/> + <location filename="../WebBrowser/FlashCookieManager/FlashCookieManagerDialog.ui" line="225"/> <source>Remove Cookie</source> <translation type="unfinished"></translation> </message> @@ -16635,7 +16648,7 @@ <context> <name>GreaseMonkeyAddScriptDialog</name> <message> - <location filename="../WebBrowser/GreaseMonkey/GreaseMonkeyAddScriptDialog.py" line="105"/> + <location filename="../WebBrowser/GreaseMonkey/GreaseMonkeyAddScriptDialog.ui" line="14"/> <source>GreaseMonkey Script Installation</source> <translation type="unfinished"></translation> </message> @@ -22286,7 +22299,7 @@ <context> <name>HgAddSubrepositoryDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.py" line="98"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgAddSubrepositoryDialog.ui" line="14"/> <source>Add Sub-repository</source> <translation type="unfinished"></translation> </message> @@ -23372,7 +23385,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="247"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.ui" line="73"/> <source>Resolved</source> <translation type="unfinished"></translation> </message> @@ -23382,7 +23395,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.py" line="245"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgConflictsListDialog.ui" line="83"/> <source>Unresolved</source> <translation type="unfinished"></translation> </message> @@ -24007,7 +24020,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.py" line="317"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/GpgExtension/HgGpgSignaturesDialog.ui" line="55"/> <source>Revision</source> <translation type="unfinished">修订</translation> </message> @@ -24286,7 +24299,7 @@ <context> <name>HgLogBrowserDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="71"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="14"/> <source>Mercurial Log</source> <translation type="unfinished"></translation> </message> @@ -24316,17 +24329,17 @@ <translation type="unfinished">选择要过滤的区域</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="96"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="181"/> <source>Revision</source> <translation type="unfinished">修订</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="97"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="191"/> <source>Author</source> <translation type="unfinished">作者</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.py" line="98"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgLogBrowserDialog.ui" line="201"/> <source>Message</source> <translation type="unfinished">消息</translation> </message> @@ -28188,7 +28201,7 @@ <context> <name>HgStatusDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="313"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="14"/> <source>Mercurial Status</source> <translation type="unfinished"></translation> </message> @@ -28329,7 +28342,7 @@ <translation type="unfinished">进程 {0} 无法启动。请保证它处在搜索路径中。</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="708"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="87"/> <source>Commit</source> <translation type="unfinished">提交</translation> </message> @@ -28449,7 +28462,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.py" line="854"/> + <location filename="../Plugins/VcsPlugins/vcsMercurial/HgStatusDialog.ui" line="203"/> <source>Differences</source> <translation type="unfinished"></translation> </message> @@ -29205,7 +29218,7 @@ <translation>点击移除选中的条目</translation> </message> <message> - <location filename="../WebBrowser/History/HistoryDialog.py" line="114"/> + <location filename="../WebBrowser/History/HistoryDialog.ui" line="75"/> <source>&Remove</source> <translation>移除(&R)</translation> </message> @@ -35058,92 +35071,92 @@ <translation>标准按钮</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="40"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="219"/> <source>Apply</source> <translation>应用</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="39"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="226"/> <source>Abort</source> <translation>终止</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="41"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="233"/> <source>Cancel</source> <translation>取消</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="45"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="240"/> <source>Ignore</source> <translation>忽略</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="54"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="247"/> <source>Save all</source> <translation>全部保存</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="53"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="254"/> <source>Save</source> <translation>保存</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="43"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="261"/> <source>Discard</source> <translation>放弃</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="56"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="268"/> <source>Yes to all</source> <translation>全部是</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="49"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="275"/> <source>Open</source> <translation>打开</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="50"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="282"/> <source>Reset</source> <translation>重置</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="48"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="289"/> <source>Ok</source> <translation>确定</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="46"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="296"/> <source>No</source> <translation>否</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="44"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="303"/> <source>Help</source> <translation>帮助</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="47"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="310"/> <source>No to all</source> <translation>全部否</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="52"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="317"/> <source>Retry</source> <translation>重试</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="51"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="324"/> <source>Restore defaults</source> <translation>恢复默认</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="55"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="331"/> <source>Yes</source> <translation>是</translation> </message> <message> - <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.py" line="42"/> + <location filename="../Plugins/WizardPlugins/MessageBoxWizard/MessageBoxWizardDialog.ui" line="338"/> <source>Close</source> <translation>关闭</translation> </message> @@ -36893,7 +36906,7 @@ <context> <name>NoCacheHostsDialog</name> <message> - <location filename="../Helpviewer/Network/NoCacheHostsDialog.py" line="52"/> + <location filename="../Helpviewer/Network/NoCacheHostsDialog.ui" line="14"/> <source>Not Cached Hosts</source> <translation type="unfinished"></translation> </message> @@ -37001,7 +37014,7 @@ <translation>按下以可视化地选择坐标,松开以得到坐标</translation> </message> <message> - <location filename="../Preferences/ConfigurationPages/NotificationsPage.py" line="81"/> + <location filename="../Preferences/ConfigurationPages/NotificationsPage.ui" line="146"/> <source>Visual Selection</source> <translation>可视化选择</translation> </message> @@ -37673,7 +37686,7 @@ <context> <name>PasswordsDialog</name> <message> - <location filename="../WebBrowser/Passwords/PasswordsDialog.py" line="91"/> + <location filename="../WebBrowser/Passwords/PasswordsDialog.ui" line="14"/> <source>Saved Passwords</source> <translation type="unfinished"></translation> </message> @@ -38237,7 +38250,7 @@ <translation>某些插件无法安装。</translation> </message> <message> - <location filename="../PluginManager/PluginInstallDialog.py" line="470"/> + <location filename="../PluginManager/PluginInstallDialog.py" line="476"/> <source>Unspecific exception installing plugin.</source> <translation>安装插件未指定异常。</translation> </message> @@ -38296,7 +38309,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../PluginManager/PluginInstallDialog.py" line="463"/> + <location filename="../PluginManager/PluginInstallDialog.py" line="469"/> <source>Error installing plugin. Reason: {0}</source> <translation>安装插件出错。原因:{0}</translation> </message> @@ -38319,7 +38332,7 @@ <translation>插件激活方法不兼容。</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1103"/> + <location filename="../PluginManager/PluginManager.py" line="1106"/> <source>Plugin Manager Error</source> <translation>插件管理错误</translation> </message> @@ -38339,27 +38352,27 @@ <translation>模块加载失败。错误:{0}</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1103"/> + <location filename="../PluginManager/PluginManager.py" line="1106"/> <source><p>The plugin download directory <b>{0}</b> could not be created. Please configure it via the configuration dialog.</p><p>Reason: {1}</p></source> <translation><p>插件下载目录 <b>{0}</b> 无法创建。请使用配置对话框进行配置。</p><p>原因:{1}</p></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1179"/> + <location filename="../PluginManager/PluginManager.py" line="1182"/> <source>Error downloading file</source> <translation>下载文件出错</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1179"/> + <location filename="../PluginManager/PluginManager.py" line="1182"/> <source><p>Could not download the requested file from {0}.</p><p>Error: {1}</p></source> <translation><p>无法从 {0} 下载指定文件。</p><p>错误:{1}</p></translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1216"/> + <location filename="../PluginManager/PluginManager.py" line="1219"/> <source>New plugin versions available</source> <translation>新插件版本可用</translation> </message> <message> - <location filename="../PluginManager/PluginManager.py" line="1216"/> + <location filename="../PluginManager/PluginManager.py" line="1219"/> <source><p>There are new plug-ins or plug-in updates available. Use the plug-in repository dialog to get them.</p></source> <translation><p>有新的插件或插件更新可用。请使用插件仓库对话框来获取它们。</p></translation> </message> @@ -39280,1176 +39293,1241 @@ <context> <name>Project</name> <message> - <location filename="../Project/Project.py" line="164"/> + <location filename="../Project/Project.py" line="166"/> <source>Ruby Files (*.rb);;</source> <translation>Ruby 文件 (*.rb);;</translation> </message> <message> - <location filename="../Project/Project.py" line="245"/> + <location filename="../Project/Project.py" line="247"/> <source>Console</source> <translation>控制台程序</translation> </message> <message> - <location filename="../Project/Project.py" line="246"/> + <location filename="../Project/Project.py" line="248"/> <source>Other</source> <translation>其它</translation> </message> <message> - <location filename="../Project/Project.py" line="344"/> + <location filename="../Project/Project.py" line="346"/> <source>Registering Project Type</source> <translation>注册项目类型</translation> </message> <message> - <location filename="../Project/Project.py" line="699"/> + <location filename="../Project/Project.py" line="701"/> <source>Read project file</source> <translation>读取项目文件</translation> </message> <message> - <location filename="../Project/Project.py" line="799"/> + <location filename="../Project/Project.py" line="801"/> <source>Save project file</source> <translation>保存项目文件</translation> </message> <message> - <location filename="../Project/Project.py" line="835"/> + <location filename="../Project/Project.py" line="837"/> <source>Read user project properties</source> <translation>读取用户项目属性</translation> </message> <message> - <location filename="../Project/Project.py" line="859"/> + <location filename="../Project/Project.py" line="861"/> <source>Save user project properties</source> <translation>保存用户项目属性</translation> </message> <message> - <location filename="../Project/Project.py" line="917"/> + <location filename="../Project/Project.py" line="919"/> <source>Read project session</source> <translation>读取项目会话</translation> </message> <message> - <location filename="../Project/Project.py" line="1139"/> + <location filename="../Project/Project.py" line="1141"/> <source>Please save the project first.</source> <translation>请先保存项目。</translation> </message> <message> - <location filename="../Project/Project.py" line="953"/> + <location filename="../Project/Project.py" line="955"/> <source>Save project session</source> <translation>保存项目会话</translation> </message> <message> - <location filename="../Project/Project.py" line="982"/> + <location filename="../Project/Project.py" line="984"/> <source>Delete project session</source> <translation>删除项目会话</translation> </message> <message> - <location filename="../Project/Project.py" line="1016"/> + <location filename="../Project/Project.py" line="1018"/> <source>Read tasks</source> <translation>读取任务</translation> </message> <message> - <location filename="../Project/Project.py" line="1036"/> + <location filename="../Project/Project.py" line="1038"/> <source>Save tasks</source> <translation>保存任务</translation> </message> <message> - <location filename="../Project/Project.py" line="1093"/> + <location filename="../Project/Project.py" line="1095"/> <source>Read debugger properties</source> <translation>读取调试器属性</translation> </message> <message> - <location filename="../Project/Project.py" line="1127"/> + <location filename="../Project/Project.py" line="1129"/> <source>Save debugger properties</source> <translation>保存调试器属性</translation> </message> <message> - <location filename="../Project/Project.py" line="1153"/> + <location filename="../Project/Project.py" line="1155"/> <source>Delete debugger properties</source> <translation>删除调试器属性</translation> </message> <message> - <location filename="../Project/Project.py" line="1261"/> + <location filename="../Project/Project.py" line="1263"/> <source>Add Language</source> <translation>添加语言</translation> </message> <message> - <location filename="../Project/Project.py" line="1261"/> + <location filename="../Project/Project.py" line="1263"/> <source>You have to specify a translation pattern first.</source> <translation>必须先指定一个翻译样式。</translation> </message> <message> - <location filename="../Project/Project.py" line="1383"/> + <location filename="../Project/Project.py" line="1385"/> <source>Delete translation</source> <translation>删除翻译</translation> </message> <message> - <location filename="../Project/Project.py" line="1534"/> + <location filename="../Project/Project.py" line="1536"/> <source>Add file</source> <translation>添加文件</translation> </message> <message> - <location filename="../Project/Project.py" line="1651"/> + <location filename="../Project/Project.py" line="1653"/> <source>The target directory must not be empty.</source> <translation>目标文件夹不能为空。</translation> </message> <message> - <location filename="../Project/Project.py" line="1662"/> + <location filename="../Project/Project.py" line="1664"/> <source>Add directory</source> <translation>添加文件夹</translation> </message> <message> - <location filename="../Project/Project.py" line="1565"/> + <location filename="../Project/Project.py" line="1567"/> <source><p>The source directory doesn't contain any files belonging to the selected category.</p></source> <translation><p>源文件夹不包含任何属于所选类别的文件。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1662"/> + <location filename="../Project/Project.py" line="1664"/> <source>The source directory must not be empty.</source> <translation>源文件夹不能为空。</translation> </message> <message> - <location filename="../Project/Project.py" line="1786"/> + <location filename="../Project/Project.py" line="1788"/> <source>Rename file</source> <translation>重命名文件</translation> </message> <message> - <location filename="../Project/Project.py" line="1810"/> + <location filename="../Project/Project.py" line="1812"/> <source>Rename File</source> <translation>重命名文件</translation> </message> <message> - <location filename="../Project/Project.py" line="2046"/> + <location filename="../Project/Project.py" line="2048"/> <source>Delete file</source> <translation>删除文件</translation> </message> <message> - <location filename="../Project/Project.py" line="2075"/> + <location filename="../Project/Project.py" line="2077"/> <source>Delete directory</source> <translation>删除文件夹</translation> </message> <message> - <location filename="../Project/Project.py" line="2157"/> + <location filename="../Project/Project.py" line="2159"/> <source>Create project directory</source> <translation>创建项目文件夹</translation> </message> <message> - <location filename="../Project/Project.py" line="2681"/> + <location filename="../Project/Project.py" line="2683"/> <source>New Project</source> <translation>新建项目</translation> </message> <message> - <location filename="../Project/Project.py" line="2233"/> + <location filename="../Project/Project.py" line="2235"/> <source>Add existing files to the project?</source> <translation>是否将已有文件添加到项目中?</translation> </message> <message> - <location filename="../Project/Project.py" line="2681"/> + <location filename="../Project/Project.py" line="2683"/> <source>Select Version Control System</source> <translation>选择版本控制系统</translation> </message> <message> - <location filename="../Project/Project.py" line="2352"/> + <location filename="../Project/Project.py" line="2354"/> <source>Would you like to edit the VCS command options?</source> <translation>是否编辑版本控制系统命令选项?</translation> </message> <message> - <location filename="../Project/Project.py" line="3441"/> + <location filename="../Project/Project.py" line="3443"/> <source>New project</source> <translation>新建项目</translation> </message> <message> - <location filename="../Project/Project.py" line="2300"/> + <location filename="../Project/Project.py" line="2302"/> <source>Shall the project file be added to the repository?</source> <translation>是否将项目文件添加到仓库?</translation> </message> <message> - <location filename="../Project/Project.py" line="2331"/> + <location filename="../Project/Project.py" line="2333"/> <source>None</source> <translation>无</translation> </message> <message> - <location filename="../Project/Project.py" line="2324"/> + <location filename="../Project/Project.py" line="2326"/> <source>Select version control system for the project</source> <translation>为项目选择版本控制系统</translation> </message> <message> - <location filename="../Project/Project.py" line="2430"/> + <location filename="../Project/Project.py" line="2432"/> <source>Translation Pattern</source> <translation>翻译样式</translation> </message> <message> - <location filename="../Project/Project.py" line="2430"/> + <location filename="../Project/Project.py" line="2432"/> <source>Enter the path pattern for translation files (use '%language%' in place of the language code):</source> <translation>为翻译文件输入路径样式(在语言代码的相应位置使用“'%language%”):</translation> </message> <message> - <location filename="../Project/Project.py" line="3455"/> + <location filename="../Project/Project.py" line="3457"/> <source>Open project</source> <translation>打开项目</translation> </message> <message> - <location filename="../Project/Project.py" line="2817"/> + <location filename="../Project/Project.py" line="2819"/> <source>Project Files (*.e4p)</source> <translation>项目文件 (*.e4p)</translation> </message> <message> - <location filename="../Project/Project.py" line="3492"/> + <location filename="../Project/Project.py" line="3494"/> <source>Save project as</source> <translation>项目另存为</translation> </message> <message> - <location filename="../Project/Project.py" line="2832"/> + <location filename="../Project/Project.py" line="2834"/> <source>Save File</source> <translation>保存文件</translation> </message> <message> - <location filename="../Project/Project.py" line="2868"/> + <location filename="../Project/Project.py" line="2870"/> <source>Close Project</source> <translation>关闭项目</translation> </message> <message> - <location filename="../Project/Project.py" line="2868"/> + <location filename="../Project/Project.py" line="2870"/> <source>The current project has unsaved changes.</source> <translation>当前项目的更改未保存。</translation> </message> <message> - <location filename="../Project/Project.py" line="3033"/> + <location filename="../Project/Project.py" line="3035"/> <source>Syntax errors detected</source> <translation>检测到语法错误</translation> </message> <message numerus="yes"> - <location filename="../Project/Project.py" line="3033"/> + <location filename="../Project/Project.py" line="3035"/> <source>The project contains %n file(s) with syntax errors.</source> <translation> <numerusform>项目包含 %n 文件有语法错误。</numerusform> </translation> </message> <message> - <location filename="../Project/Project.py" line="3441"/> + <location filename="../Project/Project.py" line="3443"/> <source>&New...</source> <translation>新建(&N)…</translation> </message> <message> - <location filename="../Project/Project.py" line="3446"/> + <location filename="../Project/Project.py" line="3448"/> <source>Generate a new project</source> <translation>生成新项目</translation> </message> <message> - <location filename="../Project/Project.py" line="3447"/> + <location filename="../Project/Project.py" line="3449"/> <source><b>New...</b><p>This opens a dialog for entering the info for a new project.</p></source> <translation><b>新建…</b><p>打开一个对话框为新项目输入信息。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3455"/> + <location filename="../Project/Project.py" line="3457"/> <source>&Open...</source> <translation>打开(&O)…</translation> </message> <message> - <location filename="../Project/Project.py" line="3460"/> + <location filename="../Project/Project.py" line="3462"/> <source>Open an existing project</source> <translation>打开一个已有项目</translation> </message> <message> - <location filename="../Project/Project.py" line="3461"/> + <location filename="../Project/Project.py" line="3463"/> <source><b>Open...</b><p>This opens an existing project.</p></source> <translation><b>打开…</b><p>打开一个已有项目。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3468"/> + <location filename="../Project/Project.py" line="3470"/> <source>Close project</source> <translation>关闭项目</translation> </message> <message> - <location filename="../Project/Project.py" line="3468"/> + <location filename="../Project/Project.py" line="3470"/> <source>&Close</source> <translation>关闭(&C)</translation> </message> <message> - <location filename="../Project/Project.py" line="3472"/> + <location filename="../Project/Project.py" line="3474"/> <source>Close the current project</source> <translation>关闭当前项目</translation> </message> <message> - <location filename="../Project/Project.py" line="3473"/> + <location filename="../Project/Project.py" line="3475"/> <source><b>Close</b><p>This closes the current project.</p></source> <translation><b>关闭</b><p>关闭当前项目。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3480"/> + <location filename="../Project/Project.py" line="3482"/> <source>Save project</source> <translation>保存项目</translation> </message> <message> - <location filename="../Project/Project.py" line="3671"/> + <location filename="../Project/Project.py" line="3673"/> <source>&Save</source> <translation>保存(&S)</translation> </message> <message> - <location filename="../Project/Project.py" line="3484"/> + <location filename="../Project/Project.py" line="3486"/> <source>Save the current project</source> <translation>保存当前项目</translation> </message> <message> - <location filename="../Project/Project.py" line="3485"/> + <location filename="../Project/Project.py" line="3487"/> <source><b>Save</b><p>This saves the current project.</p></source> <translation><b>保存</b><p>保存当前项目</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3492"/> + <location filename="../Project/Project.py" line="3494"/> <source>Save &as...</source> <translation>另存为(&A)…</translation> </message> <message> - <location filename="../Project/Project.py" line="3496"/> - <source>Save the current project to a new file</source> - <translation>将当前项目另存为一个新文件</translation> - </message> - <message> <location filename="../Project/Project.py" line="3498"/> + <source>Save the current project to a new file</source> + <translation>将当前项目另存为一个新文件</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3500"/> <source><b>Save as</b><p>This saves the current project to a new file.</p></source> <translation><b>另存为</b><p>将当前项目另存为一个新文件。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3507"/> + <location filename="../Project/Project.py" line="3509"/> <source>Add files to project</source> <translation>将文件添加到项目中</translation> </message> <message> - <location filename="../Project/Project.py" line="3507"/> + <location filename="../Project/Project.py" line="3509"/> <source>Add &files...</source> <translation>添加文件(&F)…</translation> </message> <message> - <location filename="../Project/Project.py" line="3512"/> - <source>Add files to the current project</source> - <translation>将文件添加到当前项目中</translation> - </message> - <message> <location filename="../Project/Project.py" line="3514"/> + <source>Add files to the current project</source> + <translation>将文件添加到当前项目中</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3516"/> <source><b>Add files...</b><p>This opens a dialog for adding files to the current project. The place to add is determined by the file extension.</p></source> <translation><b>添加文件…</b><p>打开一个对话框为当前项目添加文件。添加的位置由文件扩展名决定。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3523"/> + <location filename="../Project/Project.py" line="3525"/> <source>Add directory to project</source> <translation>将文件夹添加到项目中</translation> </message> <message> - <location filename="../Project/Project.py" line="3523"/> + <location filename="../Project/Project.py" line="3525"/> <source>Add directory...</source> <translation>添加文件夹…</translation> </message> <message> - <location filename="../Project/Project.py" line="3528"/> - <source>Add a directory to the current project</source> - <translation>为当前工程添加文件夹</translation> - </message> - <message> <location filename="../Project/Project.py" line="3530"/> + <source>Add a directory to the current project</source> + <translation>为当前工程添加文件夹</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3532"/> <source><b>Add directory...</b><p>This opens a dialog for adding a directory to the current project.</p></source> <translation><b>添加文件夹…</b><p>打开一个对话框将文件夹添加到当前项目中。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3538"/> + <location filename="../Project/Project.py" line="3540"/> <source>Add translation to project</source> <translation>将翻译添加到项目中</translation> </message> <message> - <location filename="../Project/Project.py" line="3538"/> + <location filename="../Project/Project.py" line="3540"/> <source>Add &translation...</source> <translation>添加翻译(&T)…</translation> </message> <message> - <location filename="../Project/Project.py" line="3543"/> - <source>Add a translation to the current project</source> - <translation>将翻译添加到当前项目中</translation> - </message> - <message> <location filename="../Project/Project.py" line="3545"/> + <source>Add a translation to the current project</source> + <translation>将翻译添加到当前项目中</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3547"/> <source><b>Add translation...</b><p>This opens a dialog for add a translation to the current project.</p></source> <translation><b>添加翻译…</b><p>打开一个对话框将翻译添加到当前项目中。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3553"/> + <location filename="../Project/Project.py" line="3555"/> <source>Search new files</source> <translation>搜索新文件</translation> </message> <message> - <location filename="../Project/Project.py" line="3553"/> + <location filename="../Project/Project.py" line="3555"/> <source>Searc&h new files...</source> <translation>搜索新文件(&H)…</translation> </message> <message> - <location filename="../Project/Project.py" line="3557"/> - <source>Search new files in the project directory.</source> - <translation>在项目文件夹中搜索新文件。</translation> - </message> - <message> <location filename="../Project/Project.py" line="3559"/> + <source>Search new files in the project directory.</source> + <translation>在项目文件夹中搜索新文件。</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3561"/> <source><b>Search new files...</b><p>This searches for new files (sources, *.ui, *.idl) in the project directory and registered subdirectories.</p></source> <translation><b>搜索新文件…</b><p>在项目文件夹和注册的子文件夹中搜索新文件(源文件, *.ui, *.idl)。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3582"/> + <location filename="../Project/Project.py" line="3584"/> <source>Project properties</source> <translation>项目属性</translation> </message> <message> - <location filename="../Project/Project.py" line="3582"/> + <location filename="../Project/Project.py" line="3584"/> <source>&Properties...</source> <translation>属性(&P)…</translation> </message> <message> - <location filename="../Project/Project.py" line="3587"/> + <location filename="../Project/Project.py" line="3589"/> <source>Show the project properties</source> <translation>显示项目属性</translation> </message> <message> - <location filename="../Project/Project.py" line="3588"/> + <location filename="../Project/Project.py" line="3590"/> <source><b>Properties...</b><p>This shows a dialog to edit the project properties.</p></source> <translation><b>属性…</b><p>显示一个对话框可编辑项目属性。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3595"/> + <location filename="../Project/Project.py" line="3597"/> <source>User project properties</source> <translation>用户项目属性</translation> </message> <message> - <location filename="../Project/Project.py" line="3595"/> + <location filename="../Project/Project.py" line="3597"/> <source>&User Properties...</source> <translation>用户属性(&U)…</translation> </message> <message> - <location filename="../Project/Project.py" line="3600"/> - <source>Show the user specific project properties</source> - <translation>显示用户指定的项目属性</translation> - </message> - <message> <location filename="../Project/Project.py" line="3602"/> + <source>Show the user specific project properties</source> + <translation>显示用户指定的项目属性</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3604"/> <source><b>User Properties...</b><p>This shows a dialog to edit the user specific project properties.</p></source> <translation><b>用户属性…</b><p>显示一个对话框可编辑用户指定的项目属性。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3610"/> + <location filename="../Project/Project.py" line="3612"/> <source>Filetype Associations</source> <translation>文件类型关联</translation> </message> <message> - <location filename="../Project/Project.py" line="3610"/> + <location filename="../Project/Project.py" line="3612"/> <source>Filetype Associations...</source> <translation>文件类型关联…</translation> </message> <message> - <location filename="../Project/Project.py" line="3614"/> - <source>Show the project filetype associations</source> - <translation>显示项目文件类型关联</translation> - </message> - <message> <location filename="../Project/Project.py" line="3616"/> + <source>Show the project filetype associations</source> + <translation>显示项目文件类型关联</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3618"/> <source><b>Filetype Associations...</b><p>This shows a dialog to edit the filetype associations of the project. These associations determine the type (source, form, interface or others) with a filename pattern. They are used when adding a file to the project and when performing a search for new files.</p></source> <translation><b>文件类型关联…</b><p>显示一个对话框可编辑项目的文件类型关联。这些关联以文件名样式决定类型(源代码、窗体、界面或其它)。在把一个文件添加到项目中和搜索新文件时使用。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3646"/> + <location filename="../Project/Project.py" line="3648"/> <source>Debugger Properties</source> <translation>调试器属性</translation> </message> <message> - <location filename="../Project/Project.py" line="3646"/> + <location filename="../Project/Project.py" line="3648"/> <source>Debugger &Properties...</source> <translation>调试器属性(&P)…</translation> </message> <message> - <location filename="../Project/Project.py" line="3650"/> + <location filename="../Project/Project.py" line="3652"/> <source>Show the debugger properties</source> <translation>显示调试器属性</translation> </message> <message> - <location filename="../Project/Project.py" line="3651"/> + <location filename="../Project/Project.py" line="3653"/> <source><b>Debugger Properties...</b><p>This shows a dialog to edit project specific debugger settings.</p></source> <translation><b>调试器属性…</b><p>显示一个对话框以编辑项目指定的调试器设定。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3659"/> + <location filename="../Project/Project.py" line="3661"/> <source>Load</source> <translation>载入</translation> </message> <message> - <location filename="../Project/Project.py" line="3659"/> + <location filename="../Project/Project.py" line="3661"/> <source>&Load</source> <translation>载入(&L)</translation> </message> <message> - <location filename="../Project/Project.py" line="3663"/> + <location filename="../Project/Project.py" line="3665"/> <source>Load the debugger properties</source> <translation>载入调试器属性</translation> </message> <message> - <location filename="../Project/Project.py" line="3664"/> + <location filename="../Project/Project.py" line="3666"/> <source><b>Load Debugger Properties</b><p>This loads the project specific debugger settings.</p></source> <translation><b>载入调试器属性</b><p>载入项目指定的调试器设定。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3671"/> + <location filename="../Project/Project.py" line="3673"/> <source>Save</source> <translation>保存</translation> </message> <message> - <location filename="../Project/Project.py" line="3675"/> + <location filename="../Project/Project.py" line="3677"/> <source>Save the debugger properties</source> <translation>保存调试器属性</translation> </message> <message> - <location filename="../Project/Project.py" line="3676"/> + <location filename="../Project/Project.py" line="3678"/> <source><b>Save Debugger Properties</b><p>This saves the project specific debugger settings.</p></source> <translation><b>保存调试器属性</b><p>保存项目指定的调试器设置。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3683"/> + <location filename="../Project/Project.py" line="3685"/> <source>Delete</source> <translation>删除</translation> </message> <message> - <location filename="../Project/Project.py" line="3683"/> + <location filename="../Project/Project.py" line="3685"/> <source>&Delete</source> <translation>删除(&D)</translation> </message> <message> - <location filename="../Project/Project.py" line="3687"/> + <location filename="../Project/Project.py" line="3689"/> <source>Delete the debugger properties</source> <translation>删除调试器属性</translation> </message> <message> - <location filename="../Project/Project.py" line="3688"/> + <location filename="../Project/Project.py" line="3690"/> <source><b>Delete Debugger Properties</b><p>This deletes the file containing the project specific debugger settings.</p></source> <translation><b>删除调试器属性</b><p>删除包含项目指定调试器设置的文件。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3696"/> + <location filename="../Project/Project.py" line="3698"/> <source>Reset</source> <translation>重置</translation> </message> <message> - <location filename="../Project/Project.py" line="3696"/> + <location filename="../Project/Project.py" line="3698"/> <source>&Reset</source> <translation>重置(&R)</translation> </message> <message> - <location filename="../Project/Project.py" line="3700"/> + <location filename="../Project/Project.py" line="3702"/> <source>Reset the debugger properties</source> <translation>重围调试器属性</translation> </message> <message> - <location filename="../Project/Project.py" line="3701"/> + <location filename="../Project/Project.py" line="3703"/> <source><b>Reset Debugger Properties</b><p>This resets the project specific debugger settings.</p></source> <translation><b>重置调试器属性</b><p>重置项目指定的调试器设置。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3710"/> + <location filename="../Project/Project.py" line="3712"/> <source>Load session</source> <translation>载入会话</translation> </message> <message> - <location filename="../Project/Project.py" line="3714"/> + <location filename="../Project/Project.py" line="3716"/> <source>Load the projects session file.</source> <translation>载入项目会话文件。</translation> </message> <message> - <location filename="../Project/Project.py" line="3715"/> + <location filename="../Project/Project.py" line="3717"/> <source><b>Load session</b><p>This loads the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>载入会话</b><p>载入项目会话文件。会话包括如下数据。<br>- 所有打开的源文件<br>- 所有断点<br>- 命令行参数<br>- 工作文件夹<br>- 异常报告标志</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3728"/> + <location filename="../Project/Project.py" line="3730"/> <source>Save session</source> <translation>保存会话</translation> </message> <message> - <location filename="../Project/Project.py" line="3732"/> + <location filename="../Project/Project.py" line="3734"/> <source>Save the projects session file.</source> <translation>保存项目会话文件。</translation> </message> <message> - <location filename="../Project/Project.py" line="3733"/> + <location filename="../Project/Project.py" line="3735"/> <source><b>Save session</b><p>This saves the projects session file. The session consists of the following data.<br>- all open source files<br>- all breakpoint<br>- the commandline arguments<br>- the working directory<br>- the exception reporting flag</p></source> <translation><b>保存会话</b><p>保存项目会话文件。会话包括如下数据。<br>- 所有打开的源文件<br>- 所有断点<br>- 命令行参数<br>- 工作文件夹<br>- 异常报告标志</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3746"/> + <location filename="../Project/Project.py" line="3748"/> <source>Delete session</source> <translation>删除会话</translation> </message> <message> - <location filename="../Project/Project.py" line="3750"/> + <location filename="../Project/Project.py" line="3752"/> <source>Delete the projects session file.</source> <translation>删除项目会话文件。</translation> </message> <message> - <location filename="../Project/Project.py" line="3751"/> + <location filename="../Project/Project.py" line="3753"/> <source><b>Delete session</b><p>This deletes the projects session file</p></source> <translation><b>删除会话</b><p>删除项目会话文件</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3760"/> + <location filename="../Project/Project.py" line="3762"/> <source>Code Metrics</source> <translation>代码度量</translation> </message> <message> - <location filename="../Project/Project.py" line="3760"/> + <location filename="../Project/Project.py" line="3762"/> <source>&Code Metrics...</source> <translation>代码度量(&C)…</translation> </message> <message> - <location filename="../Project/Project.py" line="3764"/> - <source>Show some code metrics for the project.</source> - <translation>显示项目的部分代码度量。</translation> - </message> - <message> <location filename="../Project/Project.py" line="3766"/> + <source>Show some code metrics for the project.</source> + <translation>显示项目的部分代码度量。</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3768"/> <source><b>Code Metrics...</b><p>This shows some code metrics for all Python files in the project.</p></source> <translation><b>代码度量…</b><p>显示项目中所有 Python 文件的部分代码度量。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3774"/> + <location filename="../Project/Project.py" line="3776"/> <source>Python Code Coverage</source> <translation>Python 代码覆盖率</translation> </message> <message> - <location filename="../Project/Project.py" line="3774"/> + <location filename="../Project/Project.py" line="3776"/> <source>Code Co&verage...</source> <translation>代码覆盖率(&v)…</translation> </message> <message> - <location filename="../Project/Project.py" line="3778"/> - <source>Show code coverage information for the project.</source> - <translation>显示项目的代码覆盖率信息。</translation> - </message> - <message> <location filename="../Project/Project.py" line="3780"/> + <source>Show code coverage information for the project.</source> + <translation>显示项目的代码覆盖率信息。</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3782"/> <source><b>Code Coverage...</b><p>This shows the code coverage information for all Python files in the project.</p></source> <translation><b>代码覆盖率…</b><p>显示项目中所有 Python 文件的代码覆盖率。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4564"/> + <location filename="../Project/Project.py" line="4568"/> <source>Profile Data</source> <translation>剖析数据</translation> </message> <message> - <location filename="../Project/Project.py" line="3788"/> + <location filename="../Project/Project.py" line="3790"/> <source>&Profile Data...</source> <translation>剖析数据(&P)…</translation> </message> <message> - <location filename="../Project/Project.py" line="3792"/> - <source>Show profiling data for the project.</source> - <translation>显示项目的剖析数据。</translation> - </message> - <message> <location filename="../Project/Project.py" line="3794"/> + <source>Show profiling data for the project.</source> + <translation>显示项目的剖析数据。</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3796"/> <source><b>Profile Data...</b><p>This shows the profiling data for the project.</p></source> <translation><b>剖析数据…</b><p>显示项目的剖析数据。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4618"/> + <location filename="../Project/Project.py" line="4622"/> <source>Application Diagram</source> <translation>应用程序图</translation> </message> <message> - <location filename="../Project/Project.py" line="3803"/> + <location filename="../Project/Project.py" line="3805"/> <source>&Application Diagram...</source> <translation>应用程序(&A)图…</translation> </message> <message> - <location filename="../Project/Project.py" line="3807"/> - <source>Show a diagram of the project.</source> - <translation>显示项目图表。</translation> - </message> - <message> <location filename="../Project/Project.py" line="3809"/> + <source>Show a diagram of the project.</source> + <translation>显示项目图表。</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3811"/> <source><b>Application Diagram...</b><p>This shows a diagram of the project.</p></source> <translation><b>应用程序图…</b><p>显示项目的图表。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="4776"/> + <location filename="../Project/Project.py" line="4780"/> <source>Create Package List</source> <translation>创建程序包列表</translation> </message> <message> - <location filename="../Project/Project.py" line="3832"/> + <location filename="../Project/Project.py" line="3834"/> <source>Create &Package List</source> <translation>创建程序包(&P)列表</translation> </message> <message> - <location filename="../Project/Project.py" line="5003"/> + <location filename="../Project/Project.py" line="5027"/> <source>Create Plugin Archive</source> <translation>创建插件存档</translation> </message> <message> <location filename="../Project/Project.py" line="3848"/> <source>Create Plugin &Archive</source> - <translation>创建插件存档(&A)</translation> + <translation type="obsolete">创建插件存档(&A)</translation> </message> <message> <location filename="../Project/Project.py" line="3864"/> <source>Create Plugin Archive (Snapshot)</source> - <translation>创建插件存档(临时)</translation> + <translation type="obsolete">创建插件存档(临时)</translation> </message> <message> <location filename="../Project/Project.py" line="3864"/> <source>Create Plugin Archive (&Snapshot)</source> - <translation>创建插件存档(临时(&S))</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3900"/> + <translation type="obsolete">创建插件存档(临时(&S))</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3904"/> <source>&Project</source> <translation>项目(&P)</translation> </message> <message> - <location filename="../Project/Project.py" line="3901"/> + <location filename="../Project/Project.py" line="3905"/> <source>Open &Recent Projects</source> <translation>打开最近的项目</translation> </message> <message> - <location filename="../Project/Project.py" line="3902"/> - <source>&Version Control</source> - <translation>版本控制(&V)</translation> - </message> - <message> <location filename="../Project/Project.py" line="3906"/> - <source>Chec&k</source> - <translation>检查(&K)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3908"/> - <source>Sho&w</source> - <translation>显示(&W)</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3909"/> - <source>&Diagrams</source> - <translation>图表(&D)</translation> + <source>&Version Control</source> + <translation>版本控制(&V)</translation> </message> <message> <location filename="../Project/Project.py" line="3910"/> - <source>Session</source> - <translation>会话</translation> - </message> - <message> - <location filename="../Project/Project.py" line="3911"/> - <source>Source &Documentation</source> - <translation>源文档(&D)</translation> + <source>Chec&k</source> + <translation>检查(&K)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3912"/> + <source>Sho&w</source> + <translation>显示(&W)</translation> </message> <message> <location filename="../Project/Project.py" line="3913"/> - <source>Debugger</source> - <translation>调试器</translation> + <source>&Diagrams</source> + <translation>图表(&D)</translation> </message> <message> <location filename="../Project/Project.py" line="3914"/> + <source>Session</source> + <translation>会话</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3915"/> + <source>Source &Documentation</source> + <translation>源文档(&D)</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3917"/> + <source>Debugger</source> + <translation>调试器</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3918"/> <source>Pac&kagers</source> <translation>打包程序(&K)</translation> </message> <message> - <location filename="../Project/Project.py" line="4022"/> + <location filename="../Project/Project.py" line="4026"/> <source>Project</source> <translation>项目</translation> </message> <message> - <location filename="../Project/Project.py" line="4088"/> + <location filename="../Project/Project.py" line="4092"/> <source>&Clear</source> <translation>清除(&C)</translation> </message> <message> - <location filename="../Project/Project.py" line="4227"/> + <location filename="../Project/Project.py" line="4231"/> <source>Search New Files</source> <translation>搜索新文件</translation> </message> <message> - <location filename="../Project/Project.py" line="4227"/> + <location filename="../Project/Project.py" line="4231"/> <source>There were no new files found to be added.</source> <translation>没有要添加的新文件。</translation> </message> <message> - <location filename="../Project/Project.py" line="4373"/> + <location filename="../Project/Project.py" line="4377"/> <source>Version Control System</source> <translation>版本控制系统</translation> </message> <message> - <location filename="../Project/Project.py" line="4491"/> + <location filename="../Project/Project.py" line="4495"/> <source>Coverage Data</source> <translation>覆盖率数据</translation> </message> <message> - <location filename="../Project/Project.py" line="4541"/> + <location filename="../Project/Project.py" line="4545"/> <source>There is no main script defined for the current project. Aborting</source> <translation>当前项目未定义主脚本。终止</translation> </message> <message> - <location filename="../Project/Project.py" line="4514"/> + <location filename="../Project/Project.py" line="4518"/> <source>Code Coverage</source> <translation>代码覆盖率</translation> </message> <message> - <location filename="../Project/Project.py" line="4514"/> + <location filename="../Project/Project.py" line="4518"/> <source>Please select a coverage file</source> <translation>请选择一个覆盖率文件</translation> </message> <message> - <location filename="../Project/Project.py" line="4564"/> + <location filename="../Project/Project.py" line="4568"/> <source>Please select a profile file</source> <translation>请选择一个剖析文件</translation> </message> <message> - <location filename="../Project/Project.py" line="4618"/> + <location filename="../Project/Project.py" line="4622"/> <source>Include module names?</source> <translation>包含模块名?</translation> </message> <message> - <location filename="../Project/Project.py" line="4736"/> + <location filename="../Project/Project.py" line="4740"/> <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="4815"/> <source><p>The file <b>PKGLIST</b> does not exist. Aborting...</p></source> - <translation><p>文件 <b>PKGLIST</b> 不存在。终止…</p></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4823"/> + <translation type="obsolete"><p>文件 <b>PKGLIST</b> 不存在。终止…</p></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4799"/> <source>The project does not have a main script defined. Aborting...</source> <translation>项目未定义主脚本。终止…</translation> </message> <message> - <location filename="../Project/Project.py" line="3628"/> + <location filename="../Project/Project.py" line="3630"/> <source>Lexer Associations</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3628"/> + <location filename="../Project/Project.py" line="3630"/> <source>Lexer Associations...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3632"/> - <source>Show the project lexer associations (overriding defaults)</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3634"/> + <source>Show the project lexer associations (overriding defaults)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3636"/> <source><b>Lexer Associations...</b><p>This shows a dialog to edit the lexer associations of the project. These associations override the global lexer associations. Lexers are used to highlight the editor text.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="260"/> + <location filename="../Project/Project.py" line="262"/> <source>PySide GUI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="261"/> + <location filename="../Project/Project.py" line="263"/> <source>PySide Console</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="161"/> + <location filename="../Project/Project.py" line="163"/> <source>Python3 Files (*.py *.py3);;Python3 GUI Files (*.pyw *.pyw3);;</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="699"/> + <location filename="../Project/Project.py" line="701"/> <source><p>The project file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="799"/> + <location filename="../Project/Project.py" line="801"/> <source><p>The project file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="835"/> + <location filename="../Project/Project.py" line="837"/> <source><p>The user specific project properties file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="859"/> + <location filename="../Project/Project.py" line="861"/> <source><p>The user specific project properties file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="917"/> + <location filename="../Project/Project.py" line="919"/> <source><p>The project session file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="953"/> + <location filename="../Project/Project.py" line="955"/> <source><p>The project session file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="982"/> + <location filename="../Project/Project.py" line="984"/> <source><p>The project session file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1016"/> + <location filename="../Project/Project.py" line="1018"/> <source><p>The tasks file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"><p>任务文件 <b>{0}</b> 无法读取。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1036"/> + <location filename="../Project/Project.py" line="1038"/> <source><p>The tasks file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"><p>任务文件 <b>{0}</b> 无法写入。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1093"/> + <location filename="../Project/Project.py" line="1095"/> <source><p>The project debugger properties file <b>{0}</b> could not be read.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1127"/> + <location filename="../Project/Project.py" line="1129"/> <source><p>The project debugger properties file <b>{0}</b> could not be written.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1153"/> + <location filename="../Project/Project.py" line="1155"/> <source><p>The project debugger properties file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1383"/> + <location filename="../Project/Project.py" line="1385"/> <source><p>The selected translation file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1596"/> + <location filename="../Project/Project.py" line="1598"/> <source><p>The file <b>{0}</b> already exists.</p><p>Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2832"/> + <location filename="../Project/Project.py" line="2834"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"><p>文件 <b>{0}</b> 已经存在。是否覆盖?</p></translation> </message> <message> - <location filename="../Project/Project.py" line="1810"/> + <location filename="../Project/Project.py" line="1812"/> <source><p>The file <b>{0}</b> could not be renamed.<br />Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2046"/> + <location filename="../Project/Project.py" line="2048"/> <source><p>The selected file <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2075"/> + <location filename="../Project/Project.py" line="2077"/> <source><p>The selected directory <b>{0}</b> could not be deleted.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2157"/> + <location filename="../Project/Project.py" line="2159"/> <source><p>The project directory <b>{0}</b> could not be created.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4373"/> + <location filename="../Project/Project.py" line="4377"/> <source><p>The selected VCS <b>{0}</b> could not be found.<br/>Disabling version control.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4776"/> + <location filename="../Project/Project.py" line="4780"/> <source><p>The file <b>PKGLIST</b> could not be created.</p><p>Reason: {0}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4836"/> - <source><p>The file <b>PKGLIST</b> could not be read.</p><p>Reason: {0}</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4892"/> + <location filename="../Project/Project.py" line="4911"/> <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"></translation> </message> <message> - <location filename="../Project/Project.py" line="4961"/> + <location filename="../Project/Project.py" line="4985"/> <source><p>The plugin file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1522"/> + <location filename="../Project/Project.py" line="1524"/> <source><p>The selected file <b>{0}</b> could not be added to <b>{1}</b>.</p><p>Reason: {2}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="1578"/> + <location filename="../Project/Project.py" line="1580"/> <source><p>The target directory <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="158"/> + <location filename="../Project/Project.py" line="160"/> <source>Python2 Files (*.py2);;Python2 GUI Files (*.pyw2);;</source> <translation>Python2 文件 (*.py2);;Python2 GUI 文件 (*.pyw2);;</translation> </message> <message> - <location filename="../Project/Project.py" line="2220"/> + <location filename="../Project/Project.py" line="2222"/> <source>Create main script</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="2220"/> + <location filename="../Project/Project.py" line="2222"/> <source><p>The mainscript <b>{0}</b> could not be created.<br/>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3817"/> + <location filename="../Project/Project.py" line="3819"/> <source>Load Diagram</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3817"/> + <location filename="../Project/Project.py" line="3819"/> <source>&Load Diagram...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3821"/> - <source>Load a diagram from file.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3823"/> + <source>Load a diagram from file.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3825"/> <source><b>Load Diagram...</b><p>This loads a diagram from file.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="321"/> + <location filename="../Project/Project.py" line="323"/> <source><p>The Programming Language <b>{0}</b> is not supported.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="344"/> + <location filename="../Project/Project.py" line="346"/> <source><p>The Project type <b>{0}</b> is already registered.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="332"/> + <location filename="../Project/Project.py" line="334"/> <source><p>The Project type <b>{0}</b> is already registered with Programming Language <b>{1}</b>.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="242"/> + <location filename="../Project/Project.py" line="244"/> <source>PyQt5 GUI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="243"/> + <location filename="../Project/Project.py" line="245"/> <source>PyQt5 Console</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4361"/> + <location filename="../Project/Project.py" line="4365"/> <source><p>The selected VCS <b>{0}</b> could not be found. <br/>Reverting override.</p><p>{1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="5003"/> + <location filename="../Project/Project.py" line="5027"/> <source><p>The plugin file <b>{0}</b> could not be read.</p> <p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3837"/> - <source>Create an initial PKGLIST file for an eric6 plugin.</source> - <translation>为 eric4 插件创建初始化 PKGLIST 文件。</translation> - </message> - <message> <location filename="../Project/Project.py" line="3839"/> + <source>Create an initial PKGLIST file for an eric6 plugin.</source> + <translation>为 eric4 插件创建初始化 PKGLIST 文件。</translation> + </message> + <message> + <location filename="../Project/Project.py" line="3841"/> <source><b>Create Package List</b><p>This creates an initial list of files to include in an eric6 plugin archive. The list is created from the project file.</p></source> <translation type="unfinished"><b>创建程序包列表</b><p>创建一个初始化文件列表并包含到 Eric4 插件存档中。该列表从项目文件创建。</p> {5 ?} {6 ?}</translation> </message> <message> <location filename="../Project/Project.py" line="3853"/> <source>Create an eric6 plugin archive file.</source> - <translation>创建一个 eric6 插件存档文件。</translation> + <translation type="obsolete">创建一个 eric6 插件存档文件。</translation> </message> <message> <location filename="../Project/Project.py" line="3855"/> <source><b>Create Plugin Archive</b><p>This creates an eric6 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name.</p></source> - <translation type="unfinished"><b>创建插件存档</b><p>通过 PKGLIST 文件给出的文件列表创建 Eric4 插件存档文件。存档名从主脚本名构建。</p> {5 ?} {6 ?}</translation> + <translation type="obsolete"><b>创建插件存档</b><p>通过 PKGLIST 文件给出的文件列表创建 Eric4 插件存档文件。存档名从主脚本名构建。</p> {5 ?} {6 ?}</translation> </message> <message> <location filename="../Project/Project.py" line="3869"/> <source>Create an eric6 plugin archive file (snapshot release).</source> - <translation>创建一个 eric6 插件存档文件(快照版本)。</translation> + <translation type="obsolete">创建一个 eric6 插件存档文件(快照版本)。</translation> </message> <message> <location filename="../Project/Project.py" line="3871"/> <source><b>Create Plugin Archive (Snapshot)</b><p>This creates an eric6 plugin archive file using the list of files given in the PKGLIST file. The archive name is built from the main script name. The version entry of the main script is modified to reflect a snapshot release.</p></source> - <translation type="unfinished">b>创建插件存档(临时)</b><p>通过 PKGLIST 文件给出的文件列表创建一个 Eric4 插件存档文件。存档名从主脚本名构建。修改主脚本的版本项以反映临时的版本。</p> {5 ?} {6 ?}</translation> - </message> - <message> - <location filename="../Project/Project.py" line="4866"/> + <translation type="obsolete">b>创建插件存档(临时)</b><p>通过 PKGLIST 文件给出的文件列表创建一个 Eric4 插件存档文件。存档名从主脚本名构建。修改主脚本的版本项以反映临时的版本。</p> {5 ?} {6 ?}</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4881"/> <source><p>The eric6 plugin archive file <b>{0}</b> could not be created.</p><p>Reason: {1}</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4915"/> - <source><p>The eric6 plugin archive file <b>{0}</b> was created successfully.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="240"/> + <location filename="../Project/Project.py" line="242"/> <source>PyQt4 GUI</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="241"/> + <location filename="../Project/Project.py" line="243"/> <source>PyQt4 Console</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="244"/> + <location filename="../Project/Project.py" line="246"/> <source>Eric6 Plugin</source> <translation>Eric6 插件</translation> </message> <message> - <location filename="../Project/Project.py" line="2651"/> + <location filename="../Project/Project.py" line="2653"/> <source>Create project management directory</source> <translation>创建项目管理目录</translation> </message> <message> - <location filename="../Project/Project.py" line="2651"/> + <location filename="../Project/Project.py" line="2653"/> <source><p>The project directory <b>{0}</b> is not writable.</p></source> <translation><p>项目目录 <b>{0}</b> 不可写。</p></translation> </message> <message> - <location filename="../Project/Project.py" line="3567"/> + <location filename="../Project/Project.py" line="3569"/> <source>Alt+Ctrl+P</source> <comment>Project|Search Project File</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3573"/> - <source>Search for a file in the project list of files.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="../Project/Project.py" line="3575"/> + <source>Search for a file in the project list of files.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3577"/> <source><b>Search Project File</b><p>This searches for a file in the project list of files.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3567"/> + <location filename="../Project/Project.py" line="3569"/> <source>Search Project File</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="3567"/> + <location filename="../Project/Project.py" line="3569"/> <source>Search Project File...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Project/Project.py" line="4799"/> - <source>Select a package list file:</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="../Project/Project.py" line="4806"/> - <source><p>No package list file selected. Aborting...</p></source> + <location filename="../Project/Project.py" line="4834"/> + <source>Create Plugin Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3850"/> + <source>Create Plugin &Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3855"/> + <source>Create eric6 plugin archive files.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3857"/> + <source><b>Create Plugin Archives</b><p>This creates eric6 plugin archive files using the list of files given in a PKGLIST* file. The archive name is built from the main script name if not designated in the package list file.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3867"/> + <source>Create Plugin Archives (Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3867"/> + <source>Create Plugin Archives (&Snapshot)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3872"/> + <source>Create eric6 plugin archive files (snapshot releases).</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="3874"/> + <source><b>Create Plugin Archives (Snapshot)</b><p>This creates eric6 plugin archive files using the list of files given in the PKGLIST* file. The archive name is built from the main script name if not designated in the package list file. The version entry of the main script is modified to reflect a snapshot release.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4813"/> + <source>Select package lists:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>Creating plugin archives...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>Abort</source> + <translation type="unfinished">终止</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4830"/> + <source>%v/%m Archives</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4834"/> + <source>Coverage</source> + <translation type="obsolete">覆盖率</translation> + </message> + <message> + <location filename="../Project/Project.py" line="4847"/> + <source><p>The file <b>{0}</b> could not be read.</p><p>Reason: {1}</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4930"/> + <source><p>The eric6 plugin archive files were created with some errors.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4933"/> + <source><p>The eric6 plugin archive files were created successfully.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="../Project/Project.py" line="4823"/> + <source><p>No package list files (PKGLIST*) available or selected. Aborting...</p></source> <translation type="unfinished"></translation> </message> </context> @@ -42454,7 +42532,7 @@ <translation>已执行</translation> </message> <message> - <location filename="../DataViews/PyCoverageDialog.py" line="349"/> + <location filename="../DataViews/PyCoverageDialog.ui" line="172"/> <source>Coverage</source> <translation>覆盖率</translation> </message> @@ -42533,7 +42611,7 @@ </translation> </message> <message> - <location filename="../DataViews/PyCoverageDialog.py" line="345"/> + <location filename="../DataViews/PyCoverageDialog.ui" line="192"/> <source>%v/%m Files</source> <translation type="unfinished">%v/%m 文件</translation> </message> @@ -42541,7 +42619,7 @@ <context> <name>PyProfileDialog</name> <message> - <location filename="../DataViews/PyProfileDialog.py" line="233"/> + <location filename="../DataViews/PyProfileDialog.ui" line="20"/> <source>Profile Results</source> <translation>剖析结果</translation> </message> @@ -47214,7 +47292,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.py" line="150"/> + <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.ui" line="89"/> <source>Remove Filters</source> <translation type="unfinished"></translation> </message> @@ -47224,7 +47302,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.py" line="178"/> + <location filename="../WebBrowser/QtHelp/QtHelpFiltersDialog.ui" line="99"/> <source>Remove Attributes</source> <translation type="unfinished"></translation> </message> @@ -48692,7 +48770,7 @@ <context> <name>SendRefererWhitelistDialog</name> <message> - <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.py" line="52"/> + <location filename="../WebBrowser/Network/SendRefererWhitelistDialog.ui" line="14"/> <source>Send Referer Whitelist</source> <translation type="unfinished"></translation> </message> @@ -49899,7 +49977,7 @@ <translation>复制预览(&P)</translation> </message> <message> - <location filename="../Snapshot/SnapWidget.py" line="531"/> + <location filename="../Snapshot/SnapWidget.ui" line="20"/> <source>eric6 Snapshot</source> <translation>eric6 快照</translation> </message> @@ -52470,7 +52548,7 @@ <context> <name>SvnDiffDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsPySvn/SvnDiffDialog.py" line="171"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnDiffDialog.ui" line="14"/> <source>Subversion Diff</source> <translation>Subversion 差异</translation> </message> @@ -52773,17 +52851,17 @@ <translation>选择要过滤的区域</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="621"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="112"/> <source>Revision</source> <translation>修订</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="618"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="117"/> <source>Author</source> <translation>作者</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.py" line="141"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnLogBrowserDialog.ui" line="127"/> <source>Message</source> <translation>消息</translation> </message> @@ -53244,7 +53322,7 @@ <translation><b>URL</b><p>输入模块的 URL 。由于仓库具有标准布局,则该 URL 必须包含主干、标签或分支部分。</p></translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.py" line="128"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnNewProjectOptionsDialog.ui" line="45"/> <source>&URL:</source> <translation>&URL:</translation> </message> @@ -53359,7 +53437,7 @@ <translation type="obsolete">通过文件夹选择对话框或储存库浏览器选择储存库 URL</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.py" line="95"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnOptionsDialog.ui" line="45"/> <source>&URL:</source> <translation>&URL:</translation> </message> @@ -54599,7 +54677,7 @@ <context> <name>SvnStatusDialog</name> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="394"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="14"/> <source>Subversion Status</source> <translation>Subversion 状态</translation> </message> @@ -54871,7 +54949,7 @@ <translation>进程生成错误</translation> </message> <message> - <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.py" line="711"/> + <location filename="../Plugins/VcsPlugins/vcsSubversion/SvnStatusDialog.ui" line="80"/> <source>Commit</source> <translation>提交</translation> </message> @@ -60159,7 +60237,7 @@ <context> <name>UnittestDialog</name> <message> - <location filename="../PyUnit/UnittestDialog.py" line="400"/> + <location filename="../PyUnit/UnittestDialog.ui" line="14"/> <source>Unittest</source> <translation>单元测试</translation> </message> @@ -63047,62 +63125,62 @@ <context> <name>VariablesViewer</name> <message> - <location filename="../Debugger/VariablesViewer.py" line="354"/> + <location filename="../Debugger/VariablesViewer.py" line="358"/> <source>Global Variables</source> <translation>全局变量</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="355"/> - <source>Globals</source> - <translation>全局</translation> - </message> - <message> - <location filename="../Debugger/VariablesViewer.py" line="366"/> - <source>Value</source> - <translation>值</translation> - </message> - <message> - <location filename="../Debugger/VariablesViewer.py" line="366"/> - <source>Type</source> - <translation>类型</translation> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="359"/> + <source>Globals</source> + <translation>全局</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="370"/> + <source>Value</source> + <translation>值</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="370"/> + <source>Type</source> + <translation>类型</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="363"/> <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="365"/> + <location filename="../Debugger/VariablesViewer.py" line="369"/> <source>Local Variables</source> <translation>局部变量</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="366"/> - <source>Locals</source> - <translation>局部</translation> - </message> - <message> <location filename="../Debugger/VariablesViewer.py" line="370"/> + <source>Locals</source> + <translation>局部</translation> + </message> + <message> + <location filename="../Debugger/VariablesViewer.py" line="374"/> <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="401"/> + <location filename="../Debugger/VariablesViewer.py" line="405"/> <source>Show Details...</source> <translation>显示细节…</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="409"/> + <location filename="../Debugger/VariablesViewer.py" line="413"/> <source>Configure...</source> <translation>配置…</translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="629"/> + <location filename="../Debugger/VariablesViewer.py" line="633"/> <source>{0} items</source> <translation type="unfinished"></translation> </message> <message> - <location filename="../Debugger/VariablesViewer.py" line="407"/> + <location filename="../Debugger/VariablesViewer.py" line="411"/> <source>Refresh</source> <translation type="unfinished">刷新</translation> </message>