Wed, 11 Apr 2012 19:11:49 +0200
Added a page to the site info dialog to show web databases of the site.
--- a/APIs/Python3/eric5.api Tue Apr 10 18:51:43 2012 +0200 +++ b/APIs/Python3/eric5.api Wed Apr 11 19:11:49 2012 +0200 @@ -2593,6 +2593,7 @@ eric5.Helpviewer.SearchWidget.SearchWidget?1(mainWindow, parent=None) eric5.Helpviewer.SiteInfo.SiteInfoDialog.SiteInfoDialog.nokStyle?7 eric5.Helpviewer.SiteInfo.SiteInfoDialog.SiteInfoDialog.okStyle?7 +eric5.Helpviewer.SiteInfo.SiteInfoDialog.SiteInfoDialog.on_databasesList_currentItemChanged?4(current, previous) eric5.Helpviewer.SiteInfo.SiteInfoDialog.SiteInfoDialog.on_imagesTree_currentItemChanged?4(current, previous) eric5.Helpviewer.SiteInfo.SiteInfoDialog.SiteInfoDialog.on_securityDetailsButton_clicked?4() eric5.Helpviewer.SiteInfo.SiteInfoDialog.SiteInfoDialog?1(browser, parent=None)
--- a/Documentation/Help/source.qhp Tue Apr 10 18:51:43 2012 +0200 +++ b/Documentation/Help/source.qhp Wed Apr 11 19:11:49 2012 +0200 @@ -8488,6 +8488,7 @@ <keyword name="SiteInfoDialog.__copyAction" id="SiteInfoDialog.__copyAction" ref="eric5.Helpviewer.SiteInfo.SiteInfoDialog.html#SiteInfoDialog.__copyAction" /> <keyword name="SiteInfoDialog.__imagesTreeContextMenuRequested" id="SiteInfoDialog.__imagesTreeContextMenuRequested" ref="eric5.Helpviewer.SiteInfo.SiteInfoDialog.html#SiteInfoDialog.__imagesTreeContextMenuRequested" /> <keyword name="SiteInfoDialog.__saveImage" id="SiteInfoDialog.__saveImage" ref="eric5.Helpviewer.SiteInfo.SiteInfoDialog.html#SiteInfoDialog.__saveImage" /> + <keyword name="SiteInfoDialog.on_databasesList_currentItemChanged" id="SiteInfoDialog.on_databasesList_currentItemChanged" ref="eric5.Helpviewer.SiteInfo.SiteInfoDialog.html#SiteInfoDialog.on_databasesList_currentItemChanged" /> <keyword name="SiteInfoDialog.on_imagesTree_currentItemChanged" id="SiteInfoDialog.on_imagesTree_currentItemChanged" ref="eric5.Helpviewer.SiteInfo.SiteInfoDialog.html#SiteInfoDialog.on_imagesTree_currentItemChanged" /> <keyword name="SiteInfoDialog.on_securityDetailsButton_clicked" id="SiteInfoDialog.on_securityDetailsButton_clicked" ref="eric5.Helpviewer.SiteInfo.SiteInfoDialog.html#SiteInfoDialog.on_securityDetailsButton_clicked" /> <keyword name="SnapWidget" id="SnapWidget" ref="eric5.Snapshot.SnapWidget.html#SnapWidget" />
--- a/Documentation/Source/eric5.Helpviewer.SiteInfo.SiteInfoDialog.html Tue Apr 10 18:51:43 2012 +0200 +++ b/Documentation/Source/eric5.Helpviewer.SiteInfo.SiteInfoDialog.html Wed Apr 11 19:11:49 2012 +0200 @@ -70,6 +70,9 @@ <td><a href="#SiteInfoDialog.__saveImage">__saveImage</a></td> <td>Private slot to save the selected image to disk.</td> </tr><tr> +<td><a href="#SiteInfoDialog.on_databasesList_currentItemChanged">on_databasesList_currentItemChanged</a></td> +<td>Private slot to show data about the selected database.</td> +</tr><tr> <td><a href="#SiteInfoDialog.on_imagesTree_currentItemChanged">on_imagesTree_currentItemChanged</a></td> <td>Private slot to show a preview of the selected image.</td> </tr><tr> @@ -114,7 +117,20 @@ <b>__saveImage</b>(<i></i>) <p> Private slot to save the selected image to disk. -</p><a NAME="SiteInfoDialog.on_imagesTree_currentItemChanged" ID="SiteInfoDialog.on_imagesTree_currentItemChanged"></a> +</p><a NAME="SiteInfoDialog.on_databasesList_currentItemChanged" ID="SiteInfoDialog.on_databasesList_currentItemChanged"></a> +<h4>SiteInfoDialog.on_databasesList_currentItemChanged</h4> +<b>on_databasesList_currentItemChanged</b>(<i>current, previous</i>) +<p> + Private slot to show data about the selected database. +</p><dl> +<dt><i>current</i></dt> +<dd> +current database entry (QTreeWidgetItem) +</dd><dt><i>previous</i></dt> +<dd> +old current entry (QTreeWidgetItem) +</dd> +</dl><a NAME="SiteInfoDialog.on_imagesTree_currentItemChanged" ID="SiteInfoDialog.on_imagesTree_currentItemChanged"></a> <h4>SiteInfoDialog.on_imagesTree_currentItemChanged</h4> <b>on_imagesTree_currentItemChanged</b>(<i>current, previous</i>) <p>
--- a/Helpviewer/SiteInfo/SiteInfoDialog.py Tue Apr 10 18:51:43 2012 +0200 +++ b/Helpviewer/SiteInfo/SiteInfoDialog.py Wed Apr 11 19:11:49 2012 +0200 @@ -11,7 +11,7 @@ from PyQt4.QtCore import pyqtSlot, QUrl, Qt, QFile from PyQt4.QtGui import QDialog, QTreeWidgetItem, QPixmap, QGraphicsScene, QMenu, \ - QCursor, QApplication, QFileDialog + QCursor, QApplication, QListWidgetItem from PyQt4.QtWebKit import QWebSettings from E5Gui import E5MessageBox, E5FileDialog @@ -45,20 +45,21 @@ # put icons self.tabWidget.setTabIcon(0, UI.PixmapCache.getIcon("siteinfo-general.png")) self.tabWidget.setTabIcon(1, UI.PixmapCache.getIcon("siteinfo-media.png")) - self.tabWidget.setTabIcon(2, UI.PixmapCache.getIcon("siteinfo-security.png")) + self.tabWidget.setTabIcon(2, UI.PixmapCache.getIcon("siteinfo-databases.png")) + self.tabWidget.setTabIcon(3, UI.PixmapCache.getIcon("siteinfo-security.png")) - frame = browser.page().mainFrame() + self.__mainFrame = browser.page().mainFrame() title = browser.title() sslInfo = browser.page().getSslInfo() # populate General tab self.heading.setText("<b>{0}</b>".format(title)) - self.siteAddressLabel.setText(frame.baseUrl().toString()) + self.siteAddressLabel.setText(self.__mainFrame.baseUrl().toString()) self.sizeLabel.setText(dataString(browser.page().totalBytes())) encoding = "" # populate Meta tags - meta = frame.findAllElements("meta") + meta = self.__mainFrame.findAllElements("meta") for element in meta: content = element.attribute("content") name = element.attribute("name") @@ -92,7 +93,7 @@ self.securityDetailsButton.setEnabled(False) # populate Media tab - images = frame.findAllElements("img") + images = self.__mainFrame.findAllElements("img") for element in images: src = element.attribute("src") alt = element.attribute("alt") @@ -117,6 +118,20 @@ self.imagesTree.setContextMenuPolicy(Qt.CustomContextMenu) self.imagesTree.customContextMenuRequested.connect( self.__imagesTreeContextMenuRequested) + + # populate the Databases tab + databases = self.__mainFrame.securityOrigin().databases() + counter = 0 + for database in databases: + itm = QListWidgetItem(self.databasesList) + itm.setText(database.displayName()) + itm.setData(Qt.UserRole, counter) + counter += 1 + + if counter == 0: + itm = QListWidgetItem(self.databasesList) + itm.setText(self.trUtf8("No databases are used by this page.")) + itm.setFlags(itm.flags() & Qt.ItemIsSelectable) @pyqtSlot() def on_securityDetailsButton_clicked(self): @@ -224,7 +239,7 @@ self.trUtf8("Save Image"), fn, self.trUtf8("All Files (*)"), - QFileDialog.Options(QFileDialog.DontConfirmOverwrite)) + E5FileDialog.Options(E5FileDialog.DontConfirmOverwrite)) if not filename: return @@ -238,3 +253,25 @@ return f.write(cacheData.readAll()) f.close() + + @pyqtSlot(QListWidgetItem, QListWidgetItem) + def on_databasesList_currentItemChanged(self, current, previous): + """ + Private slot to show data about the selected database. + + @param current current database entry (QTreeWidgetItem) + @param previous old current entry (QTreeWidgetItem) + """ + if current is None: + return + + id = current.data(Qt.UserRole) + databases = self.__mainFrame.securityOrigin().databases() + + if id >= len(databases): + return + + db = databases[id] + self.databaseName.setText("{0} ({1})".format(db.displayName(), db.name())) + self.databasePath.setText(db.fileName()) + self.databaseSize.setText(dataString(db.size()))
--- a/Helpviewer/SiteInfo/SiteInfoDialog.ui Tue Apr 10 18:51:43 2012 +0200 +++ b/Helpviewer/SiteInfo/SiteInfoDialog.ui Wed Apr 11 19:11:49 2012 +0200 @@ -236,6 +236,113 @@ </item> </layout> </widget> + <widget class="QWidget" name="databasesTab"> + <attribute name="title"> + <string>Databases</string> + </attribute> + <layout class="QVBoxLayout" name="verticalLayout_5"> + <item> + <widget class="QListWidget" name="databasesList"> + <property name="toolTip"> + <string>Shows a list of databases used by the site</string> + </property> + </widget> + </item> + <item> + <widget class="QLabel" name="label_10"> + <property name="text"> + <string><b>Database details</b></string> + </property> + </widget> + </item> + <item> + <layout class="QGridLayout" name="gridLayout_3"> + <item row="0" column="0"> + <widget class="QLabel" name="label_6"> + <property name="text"> + <string>Name:</string> + </property> + </widget> + </item> + <item row="0" column="1"> + <widget class="QLabel" name="databaseName"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Expanding" vsizetype="Preferred"> + <horstretch>0</horstretch> + <verstretch>0</verstretch> + </sizepolicy> + </property> + <property name="text"> + <string><database not selected></string> + </property> + <property name="textInteractionFlags"> + <set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse</set> + </property> + </widget> + </item> + <item row="1" column="0"> + <widget class="QLabel" name="label_7"> + <property name="text"> + <string>Path:</string> + </property> + </widget> + </item> + <item row="1" column="1"> + <widget class="QLabel" name="databasePath"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Expanding" vsizetype="Preferred"> + <horstretch>0</horstretch> + <verstretch>0</verstretch> + </sizepolicy> + </property> + <property name="text"> + <string><database not selected></string> + </property> + <property name="textInteractionFlags"> + <set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse</set> + </property> + </widget> + </item> + <item row="2" column="0"> + <widget class="QLabel" name="label_8"> + <property name="text"> + <string>Size:</string> + </property> + </widget> + </item> + <item row="2" column="1"> + <widget class="QLabel" name="databaseSize"> + <property name="sizePolicy"> + <sizepolicy hsizetype="Expanding" vsizetype="Preferred"> + <horstretch>0</horstretch> + <verstretch>0</verstretch> + </sizepolicy> + </property> + <property name="text"> + <string><database not selected></string> + </property> + <property name="textInteractionFlags"> + <set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByMouse</set> + </property> + </widget> + </item> + </layout> + </item> + <item> + <spacer name="verticalSpacer"> + <property name="orientation"> + <enum>Qt::Vertical</enum> + </property> + <property name="sizeHint" stdset="0"> + <size> + <width>20</width> + <height>161</height> + </size> + </property> + </spacer> + </item> + </layout> + </widget> <widget class="QWidget" name="securityTab"> <attribute name="title"> <string>Security</string> @@ -274,6 +381,7 @@ <tabstop>securityDetailsButton</tabstop> <tabstop>imagesTree</tabstop> <tabstop>imagePreview</tabstop> + <tabstop>databasesList</tabstop> <tabstop>buttonBox</tabstop> </tabstops> <resources/>
--- a/changelog Tue Apr 10 18:51:43 2012 +0200 +++ b/changelog Wed Apr 11 19:11:49 2012 +0200 @@ -41,6 +41,7 @@ -- added a bookmarks importer to get them directly from other browsers files -- extended bookmarks to hold a description and various timestamps -- added capability to manage the QtHelp filter attributes + -- added a page to the site info dialog to show web databases of the site - Third Party packages -- updated to Pygments 1.5
--- a/i18n/eric5_cs.ts Tue Apr 10 18:51:43 2012 +0200 +++ b/i18n/eric5_cs.ts Wed Apr 11 19:11:49 2012 +0200 @@ -36418,7 +36418,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="79"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="309"/> <source>Size:</source> <translation type="unfinished">Velikost:</translation> </message> @@ -36468,50 +36468,85 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="241"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="348"/> <source>Security</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="159"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="174"/> <source>Preview not available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="175"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="190"/> <source>Copy Image Location to Clipboard</source> <translation type="unfinished">Kopírovat cestu obrázku do schránky</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="178"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="193"/> <source>Copy Image Name to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="234"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="249"/> <source>Save Image</source> <translation type="unfinished">Uložit obrázek</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="214"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="229"/> <source>This image is not available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="222"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="237"/> <source>All Files (*)</source> <translation type="unfinished">Všechny soubory (*)</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="234"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="249"/> <source><p>Cannot write to file <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="241"/> + <source>Databases</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="254"/> + <source><b>Database details</b></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="263"/> + <source>Name:</source> + <translation type="unfinished">Jméno:</translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="322"/> + <source><database not selected></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="286"/> + <source>Path:</source> + <translation type="unfinished">Cesta:</translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="133"/> + <source>No databases are used by this page.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="247"/> + <source>Shows a list of databases used by the site</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>SnapWidget</name> <message> - <location filename="Snapshot/SnapWidget.py" line="475"/> + <location filename="Snapshot/SnapWidget.py" line="482"/> <source>eric5 Snapshot</source> <translation type="unfinished"></translation> </message> @@ -36556,107 +36591,107 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="57"/> + <location filename="Snapshot/SnapWidget.py" line="58"/> <source>Fullscreen</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="59"/> + <location filename="Snapshot/SnapWidget.py" line="60"/> <source>Rectangular Selection</source> <translation type="unfinished">Obdélníkový výběr</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="111"/> - <source>Windows Bitmap File (*.bmp)</source> - <translation type="unfinished">Windows Bitmap soubor (*.bmp)</translation> - </message> - <message> <location filename="Snapshot/SnapWidget.py" line="112"/> - <source>Graphic Interchange Format File (*.gif)</source> - <translation type="unfinished">Graphic Interchange Format soubor (*.gif)</translation> + <source>Windows Bitmap File (*.bmp)</source> + <translation type="unfinished">Windows Bitmap soubor (*.bmp)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="113"/> - <source>Windows Icon File (*.ico)</source> - <translation type="unfinished">Windows Icon soubor (*.ico)</translation> + <source>Graphic Interchange Format File (*.gif)</source> + <translation type="unfinished">Graphic Interchange Format soubor (*.gif)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="114"/> - <source>JPEG File (*.jpg)</source> - <translation type="unfinished">JPEG soubor (*.jpg)</translation> + <source>Windows Icon File (*.ico)</source> + <translation type="unfinished">Windows Icon soubor (*.ico)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="115"/> - <source>Multiple-Image Network Graphics File (*.mng)</source> - <translation type="unfinished">Multiple-Image Network Graphics soubor (*.mng)</translation> + <source>JPEG File (*.jpg)</source> + <translation type="unfinished">JPEG soubor (*.jpg)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="116"/> - <source>Portable Bitmap File (*.pbm)</source> - <translation type="unfinished">Portable Bitmap soubor (*.pbm)</translation> + <source>Multiple-Image Network Graphics File (*.mng)</source> + <translation type="unfinished">Multiple-Image Network Graphics soubor (*.mng)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="117"/> - <source>Paintbrush Bitmap File (*.pcx)</source> - <translation type="unfinished">Paintbrush Bitmap soubor (*.pcx)</translation> + <source>Portable Bitmap File (*.pbm)</source> + <translation type="unfinished">Portable Bitmap soubor (*.pbm)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="118"/> - <source>Portable Graymap File (*.pgm)</source> - <translation type="unfinished">Portable Graymap soubor (*.pgm)</translation> + <source>Paintbrush Bitmap File (*.pcx)</source> + <translation type="unfinished">Paintbrush Bitmap soubor (*.pcx)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="119"/> - <source>Portable Network Graphics File (*.png)</source> - <translation type="unfinished">Portable Network Graphics soubor (*.png)</translation> + <source>Portable Graymap File (*.pgm)</source> + <translation type="unfinished">Portable Graymap soubor (*.pgm)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="120"/> - <source>Portable Pixmap File (*.ppm)</source> - <translation type="unfinished">Portable Pixmap soubor (*.ppm)</translation> + <source>Portable Network Graphics File (*.png)</source> + <translation type="unfinished">Portable Network Graphics soubor (*.png)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="121"/> - <source>Silicon Graphics Image File (*.sgi)</source> - <translation type="unfinished">Silicon Graphics Image soubor (*.sgi)</translation> + <source>Portable Pixmap File (*.ppm)</source> + <translation type="unfinished">Portable Pixmap soubor (*.ppm)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="122"/> - <source>Scalable Vector Graphics File (*.svg)</source> - <translation type="unfinished">Scalable Vector Graphics soubor (*.svg)</translation> + <source>Silicon Graphics Image File (*.sgi)</source> + <translation type="unfinished">Silicon Graphics Image soubor (*.sgi)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="123"/> - <source>Targa Graphic File (*.tga)</source> - <translation type="unfinished">Targa Graphic soubor (*.tga)</translation> + <source>Scalable Vector Graphics File (*.svg)</source> + <translation type="unfinished">Scalable Vector Graphics soubor (*.svg)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="124"/> - <source>TIFF File (*.tif)</source> - <translation type="unfinished">TIFF soubor (*.tif)</translation> + <source>Targa Graphic File (*.tga)</source> + <translation type="unfinished">Targa Graphic soubor (*.tga)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="125"/> - <source>X11 Bitmap File (*.xbm)</source> - <translation type="unfinished">X11 Bitmap soubor (*.xbm)</translation> + <source>TIFF File (*.tif)</source> + <translation type="unfinished">TIFF soubor (*.tif)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="126"/> + <source>X11 Bitmap File (*.xbm)</source> + <translation type="unfinished">X11 Bitmap soubor (*.xbm)</translation> + </message> + <message> + <location filename="Snapshot/SnapWidget.py" line="127"/> <source>X11 Pixmap File (*.xpm)</source> <translation type="unfinished">X11 Pixmap soubor (*.xpm)</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="236"/> + <location filename="Snapshot/SnapWidget.py" line="237"/> <source>Save Snapshot</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="217"/> + <location filename="Snapshot/SnapWidget.py" line="218"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"><p>Soubor <b>{0}</b> již existuje.</p><p>Má se přepsat?</p></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="236"/> + <location filename="Snapshot/SnapWidget.py" line="237"/> <source>Cannot write file '{0}: {1}.</source> <translation type="unfinished">Nelze zapsat do souboru '{0}: @@ -36693,32 +36728,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="61"/> + <location filename="Snapshot/SnapWidget.py" line="62"/> <source>Ellipical Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="63"/> + <location filename="Snapshot/SnapWidget.py" line="64"/> <source>Freehand Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="66"/> + <location filename="Snapshot/SnapWidget.py" line="67"/> <source>Current Screen</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="77"/> + <location filename="Snapshot/SnapWidget.py" line="78"/> <source>snapshot</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="452"/> + <location filename="Snapshot/SnapWidget.py" line="459"/> <source>The application contains an unsaved snapshot.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="404"/> + <location filename="Snapshot/SnapWidget.py" line="411"/> <source>Preview of the snapshot image ({0:n} x {1:n})</source> <translation type="unfinished"></translation> </message> @@ -41750,7 +41785,7 @@ <translation>Nelze spustit Subversion proces.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="112"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="114"/> <source>Subversion status checked successfully (using pysvn)</source> <translation>Subversion status byl úspěšně zkontrolován (s použitím pysvn)</translation> </message>
--- a/i18n/eric5_de.ts Tue Apr 10 18:51:43 2012 +0200 +++ b/i18n/eric5_de.ts Wed Apr 11 19:11:49 2012 +0200 @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS><TS version="2.0" language="de" sourcelanguage=""> +<!DOCTYPE TS> +<TS version="2.0" language="de"> <context> <name>AboutDialog</name> <message> @@ -1762,8 +1763,8 @@ </message> <message> <location filename="Helpviewer/Bookmarks/BookmarksMenu.py" line="142"/> - <source>Open in New &Tab<byte value="x9"/>Ctrl+LMB</source> - <translation>In neuem &Register öffnen<byte value="x9"/>Strg+LMK</translation> + <source>Open in New &Tab Ctrl+LMB</source> + <translation>In neuem &Register öffnen Strg+LMK</translation> </message> <message> <location filename="Helpviewer/Bookmarks/BookmarksMenu.py" line="147"/> @@ -2004,7 +2005,7 @@ </message> <message> <location filename="Helpviewer/Bookmarks/BookmarksToolBar.py" line="90"/> - <source>Open in New &Tab<byte value="x9"/>Ctrl+LMB</source> + <source>Open in New &Tab Ctrl+LMB</source> <translation>In neuem &Register öffnen\tStrg+LMK</translation> </message> <message> @@ -13369,7 +13370,7 @@ </message> <message> <location filename="Helpviewer/HelpBrowserWV.py" line="909"/> - <source>Open Link in New Tab<byte value="x9"/>Ctrl+LMB</source> + <source>Open Link in New Tab Ctrl+LMB</source> <translation>Link in neuem Fenster öffnen\tStrg+LMK</translation> </message> <message> @@ -35471,7 +35472,7 @@ <translation>Kodierung:</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="79"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="309"/> <source>Size:</source> <translation>Größe:</translation> </message> @@ -35521,50 +35522,85 @@ <translation><b>Vorschau</b></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="241"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="348"/> <source>Security</source> <translation>Sicherheit</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="159"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="174"/> <source>Preview not available.</source> <translation>Vorschau nicht verfügbar.</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="175"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="190"/> <source>Copy Image Location to Clipboard</source> <translation>Bildadresse in die Zwischenablage kopieren</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="178"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="193"/> <source>Copy Image Name to Clipboard</source> <translation>Bildbezeichnung in die Zwischenablage kopieren</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="234"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="249"/> <source>Save Image</source> <translation>Bild speichern</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="214"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="229"/> <source>This image is not available.</source> <translation>Dieses Bild ist nicht verfügbar.</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="222"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="237"/> <source>All Files (*)</source> <translation>Alle Dateien (*)</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="234"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="249"/> <source><p>Cannot write to file <b>{0}</b>.</p></source> <translation><p>In die Datei <b>{0}</b> kann nicht geschrieben werden.</p></translation> </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="241"/> + <source>Databases</source> + <translation>Datenbanken</translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="254"/> + <source><b>Database details</b></source> + <translation><b>Datenbankdetails</b></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="263"/> + <source>Name:</source> + <translation>Name:</translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="322"/> + <source><database not selected></source> + <translation><keine Datenbank ausgewählt></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="286"/> + <source>Path:</source> + <translation>Pfad:</translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="133"/> + <source>No databases are used by this page.</source> + <translation>Diese Seite verwendet keine Datenbanken.</translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="247"/> + <source>Shows a list of databases used by the site</source> + <translation>Zeigt eine Liste von der Seite verwendeter Datenbanken</translation> + </message> </context> <context> <name>SnapWidget</name> <message> - <location filename="Snapshot/SnapWidget.py" line="475"/> + <location filename="Snapshot/SnapWidget.py" line="482"/> <source>eric5 Snapshot</source> <translation>eric5 Bildschirmfoto</translation> </message> @@ -35609,107 +35645,107 @@ <translation>Bildschirmfoto &aufnehmen ...</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="57"/> + <location filename="Snapshot/SnapWidget.py" line="58"/> <source>Fullscreen</source> <translation>Vollbild</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="59"/> + <location filename="Snapshot/SnapWidget.py" line="60"/> <source>Rectangular Selection</source> <translation>Rechteck-Auswahl</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="111"/> - <source>Windows Bitmap File (*.bmp)</source> - <translation>Windows Bitmap Datei (*.bmp)</translation> - </message> - <message> <location filename="Snapshot/SnapWidget.py" line="112"/> - <source>Graphic Interchange Format File (*.gif)</source> - <translation>Graphic Interchange Format Datei (*.gif)</translation> + <source>Windows Bitmap File (*.bmp)</source> + <translation>Windows Bitmap Datei (*.bmp)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="113"/> - <source>Windows Icon File (*.ico)</source> - <translation>Windows Icon Datei (*.ico)</translation> + <source>Graphic Interchange Format File (*.gif)</source> + <translation>Graphic Interchange Format Datei (*.gif)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="114"/> - <source>JPEG File (*.jpg)</source> - <translation>JPEG Datei (*.jpg)</translation> + <source>Windows Icon File (*.ico)</source> + <translation>Windows Icon Datei (*.ico)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="115"/> - <source>Multiple-Image Network Graphics File (*.mng)</source> - <translation>Multiple-Image Network Graphics Datei (*.mng)</translation> + <source>JPEG File (*.jpg)</source> + <translation>JPEG Datei (*.jpg)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="116"/> - <source>Portable Bitmap File (*.pbm)</source> - <translation>Portable Bitmap Datei (*.pbm)</translation> + <source>Multiple-Image Network Graphics File (*.mng)</source> + <translation>Multiple-Image Network Graphics Datei (*.mng)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="117"/> - <source>Paintbrush Bitmap File (*.pcx)</source> - <translation>Paintbrush Bitmap Datei (*.pcx)</translation> + <source>Portable Bitmap File (*.pbm)</source> + <translation>Portable Bitmap Datei (*.pbm)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="118"/> - <source>Portable Graymap File (*.pgm)</source> - <translation>Portable Graymap Datei (*.pgm)</translation> + <source>Paintbrush Bitmap File (*.pcx)</source> + <translation>Paintbrush Bitmap Datei (*.pcx)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="119"/> - <source>Portable Network Graphics File (*.png)</source> - <translation>Portable Network Graphics Datei (*.png)</translation> + <source>Portable Graymap File (*.pgm)</source> + <translation>Portable Graymap Datei (*.pgm)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="120"/> - <source>Portable Pixmap File (*.ppm)</source> - <translation>Portable Pixmap Datei (*.ppm)</translation> + <source>Portable Network Graphics File (*.png)</source> + <translation>Portable Network Graphics Datei (*.png)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="121"/> - <source>Silicon Graphics Image File (*.sgi)</source> - <translation>Silicon Graphics Bild Datei (*.sgi)</translation> + <source>Portable Pixmap File (*.ppm)</source> + <translation>Portable Pixmap Datei (*.ppm)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="122"/> - <source>Scalable Vector Graphics File (*.svg)</source> - <translation>Scalable Vector Graphics Datei (*.svg)</translation> + <source>Silicon Graphics Image File (*.sgi)</source> + <translation>Silicon Graphics Bild Datei (*.sgi)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="123"/> - <source>Targa Graphic File (*.tga)</source> - <translation>Targa Grapfik Datei (*.tga)</translation> + <source>Scalable Vector Graphics File (*.svg)</source> + <translation>Scalable Vector Graphics Datei (*.svg)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="124"/> - <source>TIFF File (*.tif)</source> - <translation>TIFF Datei (*.tif)</translation> + <source>Targa Graphic File (*.tga)</source> + <translation>Targa Grapfik Datei (*.tga)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="125"/> - <source>X11 Bitmap File (*.xbm)</source> - <translation>X11 Bitmap Datei (*.xbm)</translation> + <source>TIFF File (*.tif)</source> + <translation>TIFF Datei (*.tif)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="126"/> + <source>X11 Bitmap File (*.xbm)</source> + <translation>X11 Bitmap Datei (*.xbm)</translation> + </message> + <message> + <location filename="Snapshot/SnapWidget.py" line="127"/> <source>X11 Pixmap File (*.xpm)</source> <translation>X11 Pixmap Datei (*.xpm)</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="236"/> + <location filename="Snapshot/SnapWidget.py" line="237"/> <source>Save Snapshot</source> <translation>Bildschirmfoto speichern</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="217"/> + <location filename="Snapshot/SnapWidget.py" line="218"/> <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="Snapshot/SnapWidget.py" line="236"/> + <location filename="Snapshot/SnapWidget.py" line="237"/> <source>Cannot write file '{0}: {1}.</source> <translation>Datei {0} kann nicht geschrieben werden: @@ -35746,32 +35782,32 @@ <translation>Zeigt den Namen des zum Speichern verwendeten Verzeichnisses</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="61"/> + <location filename="Snapshot/SnapWidget.py" line="62"/> <source>Ellipical Selection</source> <translation>Elliptische Auswahl</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="63"/> + <location filename="Snapshot/SnapWidget.py" line="64"/> <source>Freehand Selection</source> <translation>Freihändige Auswahl</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="66"/> + <location filename="Snapshot/SnapWidget.py" line="67"/> <source>Current Screen</source> <translation>Aktueller Bildschirm</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="77"/> + <location filename="Snapshot/SnapWidget.py" line="78"/> <source>snapshot</source> <translation>bildschirmfoto</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="452"/> + <location filename="Snapshot/SnapWidget.py" line="459"/> <source>The application contains an unsaved snapshot.</source> <translation>Die Anwendung enthält ein nicht gespeichertes Bildschirmfoto.</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="404"/> + <location filename="Snapshot/SnapWidget.py" line="411"/> <source>Preview of the snapshot image ({0:n} x {1:n})</source> <translation>Vorschau des Bildschirmfotos ({0:n} x {1:n})</translation> </message> @@ -40808,7 +40844,7 @@ <translation>Subversion Status erfolgreich überprüft (mit svn)</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="112"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="114"/> <source>Subversion status checked successfully (using pysvn)</source> <translation>Subversion Status erfolgreich überprüft (mit pysvn)</translation> </message>
--- a/i18n/eric5_en.ts Tue Apr 10 18:51:43 2012 +0200 +++ b/i18n/eric5_en.ts Wed Apr 11 19:11:49 2012 +0200 @@ -35150,7 +35150,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="79"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="309"/> <source>Size:</source> <translation type="unfinished"></translation> </message> @@ -35200,50 +35200,85 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="241"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="348"/> <source>Security</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="159"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="174"/> <source>Preview not available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="175"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="190"/> <source>Copy Image Location to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="178"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="193"/> <source>Copy Image Name to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="234"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="249"/> <source>Save Image</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="214"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="229"/> <source>This image is not available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="222"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="237"/> <source>All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="234"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="249"/> <source><p>Cannot write to file <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="241"/> + <source>Databases</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="254"/> + <source><b>Database details</b></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="263"/> + <source>Name:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="322"/> + <source><database not selected></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="286"/> + <source>Path:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="133"/> + <source>No databases are used by this page.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="247"/> + <source>Shows a list of databases used by the site</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>SnapWidget</name> <message> - <location filename="Snapshot/SnapWidget.py" line="475"/> + <location filename="Snapshot/SnapWidget.py" line="482"/> <source>eric5 Snapshot</source> <translation type="unfinished"></translation> </message> @@ -35288,107 +35323,107 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="57"/> + <location filename="Snapshot/SnapWidget.py" line="58"/> <source>Fullscreen</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="59"/> + <location filename="Snapshot/SnapWidget.py" line="60"/> <source>Rectangular Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="111"/> - <source>Windows Bitmap File (*.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Snapshot/SnapWidget.py" line="112"/> - <source>Graphic Interchange Format File (*.gif)</source> + <source>Windows Bitmap File (*.bmp)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="113"/> - <source>Windows Icon File (*.ico)</source> + <source>Graphic Interchange Format File (*.gif)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="114"/> - <source>JPEG File (*.jpg)</source> + <source>Windows Icon File (*.ico)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="115"/> - <source>Multiple-Image Network Graphics File (*.mng)</source> + <source>JPEG File (*.jpg)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="116"/> - <source>Portable Bitmap File (*.pbm)</source> + <source>Multiple-Image Network Graphics File (*.mng)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="117"/> - <source>Paintbrush Bitmap File (*.pcx)</source> + <source>Portable Bitmap File (*.pbm)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="118"/> - <source>Portable Graymap File (*.pgm)</source> + <source>Paintbrush Bitmap File (*.pcx)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="119"/> - <source>Portable Network Graphics File (*.png)</source> + <source>Portable Graymap File (*.pgm)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="120"/> - <source>Portable Pixmap File (*.ppm)</source> + <source>Portable Network Graphics File (*.png)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="121"/> - <source>Silicon Graphics Image File (*.sgi)</source> + <source>Portable Pixmap File (*.ppm)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="122"/> - <source>Scalable Vector Graphics File (*.svg)</source> + <source>Silicon Graphics Image File (*.sgi)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="123"/> - <source>Targa Graphic File (*.tga)</source> + <source>Scalable Vector Graphics File (*.svg)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="124"/> - <source>TIFF File (*.tif)</source> + <source>Targa Graphic File (*.tga)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="125"/> - <source>X11 Bitmap File (*.xbm)</source> + <source>TIFF File (*.tif)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="126"/> + <source>X11 Bitmap File (*.xbm)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Snapshot/SnapWidget.py" line="127"/> <source>X11 Pixmap File (*.xpm)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="236"/> + <location filename="Snapshot/SnapWidget.py" line="237"/> <source>Save Snapshot</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="217"/> + <location filename="Snapshot/SnapWidget.py" line="218"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="236"/> + <location filename="Snapshot/SnapWidget.py" line="237"/> <source>Cannot write file '{0}: {1}.</source> <translation type="unfinished"></translation> @@ -35424,32 +35459,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="61"/> + <location filename="Snapshot/SnapWidget.py" line="62"/> <source>Ellipical Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="63"/> + <location filename="Snapshot/SnapWidget.py" line="64"/> <source>Freehand Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="66"/> + <location filename="Snapshot/SnapWidget.py" line="67"/> <source>Current Screen</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="77"/> + <location filename="Snapshot/SnapWidget.py" line="78"/> <source>snapshot</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="452"/> + <location filename="Snapshot/SnapWidget.py" line="459"/> <source>The application contains an unsaved snapshot.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="404"/> + <location filename="Snapshot/SnapWidget.py" line="411"/> <source>Preview of the snapshot image ({0:n} x {1:n})</source> <translation type="unfinished"></translation> </message> @@ -40415,7 +40450,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="112"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="114"/> <source>Subversion status checked successfully (using pysvn)</source> <translation type="unfinished"></translation> </message>
--- a/i18n/eric5_es.ts Tue Apr 10 18:51:43 2012 +0200 +++ b/i18n/eric5_es.ts Wed Apr 11 19:11:49 2012 +0200 @@ -36072,7 +36072,7 @@ <translation>Codificación:</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="79"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="309"/> <source>Size:</source> <translation>Tamaño:</translation> </message> @@ -36122,50 +36122,85 @@ <translation><b>Vista preliminar</b></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="241"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="348"/> <source>Security</source> <translation>Seguridad</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="159"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="174"/> <source>Preview not available.</source> <translation>Vista preliminar no disponible.</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="175"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="190"/> <source>Copy Image Location to Clipboard</source> <translation>Copiar Ubicación de la Imagen al Portapapeles</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="178"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="193"/> <source>Copy Image Name to Clipboard</source> <translation>Copiar Nombre de la Imagen al Portapapeles</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="234"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="249"/> <source>Save Image</source> <translation>Guardar imagen</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="214"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="229"/> <source>This image is not available.</source> <translation>Esta imagen no está disponible.</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="222"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="237"/> <source>All Files (*)</source> <translation>Todos los archivos (*)</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="234"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="249"/> <source><p>Cannot write to file <b>{0}</b>.</p></source> <translation><p>No es posible escribir en el archivo <b>{0}</b>.</p></translation> </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="241"/> + <source>Databases</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="254"/> + <source><b>Database details</b></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="263"/> + <source>Name:</source> + <translation type="unfinished">Nombre:</translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="322"/> + <source><database not selected></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="286"/> + <source>Path:</source> + <translation type="unfinished">Ruta:</translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="133"/> + <source>No databases are used by this page.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="247"/> + <source>Shows a list of databases used by the site</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>SnapWidget</name> <message> - <location filename="Snapshot/SnapWidget.py" line="475"/> + <location filename="Snapshot/SnapWidget.py" line="482"/> <source>eric5 Snapshot</source> <translation type="unfinished"></translation> </message> @@ -36210,107 +36245,107 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="57"/> + <location filename="Snapshot/SnapWidget.py" line="58"/> <source>Fullscreen</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="59"/> + <location filename="Snapshot/SnapWidget.py" line="60"/> <source>Rectangular Selection</source> <translation type="unfinished">Selección Rectangular</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="111"/> - <source>Windows Bitmap File (*.bmp)</source> - <translation type="unfinished">Archivo de Bitmap de Windows (*.bmp)</translation> - </message> - <message> <location filename="Snapshot/SnapWidget.py" line="112"/> - <source>Graphic Interchange Format File (*.gif)</source> - <translation type="unfinished">Archivo de Formato Gráfico de Intercambio (*.gif)</translation> + <source>Windows Bitmap File (*.bmp)</source> + <translation type="unfinished">Archivo de Bitmap de Windows (*.bmp)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="113"/> - <source>Windows Icon File (*.ico)</source> - <translation type="unfinished">Archivo de Icono de Windows (*.ico)</translation> + <source>Graphic Interchange Format File (*.gif)</source> + <translation type="unfinished">Archivo de Formato Gráfico de Intercambio (*.gif)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="114"/> - <source>JPEG File (*.jpg)</source> - <translation type="unfinished">Archivo JPEG (*.jpg)</translation> + <source>Windows Icon File (*.ico)</source> + <translation type="unfinished">Archivo de Icono de Windows (*.ico)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="115"/> - <source>Multiple-Image Network Graphics File (*.mng)</source> - <translation type="unfinished">Archivo de Multiple-Image Network Graphics (*.mng)</translation> + <source>JPEG File (*.jpg)</source> + <translation type="unfinished">Archivo JPEG (*.jpg)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="116"/> - <source>Portable Bitmap File (*.pbm)</source> - <translation type="unfinished">Archivo de Bitmap Portable (*.pbm)</translation> + <source>Multiple-Image Network Graphics File (*.mng)</source> + <translation type="unfinished">Archivo de Multiple-Image Network Graphics (*.mng)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="117"/> - <source>Paintbrush Bitmap File (*.pcx)</source> - <translation type="unfinished">Archivo de Bitmap de Pincel (*.pcx)</translation> + <source>Portable Bitmap File (*.pbm)</source> + <translation type="unfinished">Archivo de Bitmap Portable (*.pbm)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="118"/> - <source>Portable Graymap File (*.pgm)</source> - <translation type="unfinished">Archivo de Portable Graymap (*.pgm)</translation> + <source>Paintbrush Bitmap File (*.pcx)</source> + <translation type="unfinished">Archivo de Bitmap de Pincel (*.pcx)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="119"/> - <source>Portable Network Graphics File (*.png)</source> - <translation type="unfinished">Archivo Portable Network Graphics (*.png)</translation> + <source>Portable Graymap File (*.pgm)</source> + <translation type="unfinished">Archivo de Portable Graymap (*.pgm)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="120"/> - <source>Portable Pixmap File (*.ppm)</source> - <translation type="unfinished">Archivo de Portable Pixmap (*.ppm)</translation> + <source>Portable Network Graphics File (*.png)</source> + <translation type="unfinished">Archivo Portable Network Graphics (*.png)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="121"/> - <source>Silicon Graphics Image File (*.sgi)</source> - <translation type="unfinished">Archivo de Silicon Graphics Image (*.sgi)</translation> + <source>Portable Pixmap File (*.ppm)</source> + <translation type="unfinished">Archivo de Portable Pixmap (*.ppm)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="122"/> - <source>Scalable Vector Graphics File (*.svg)</source> - <translation type="unfinished">Archivo de Scalable Vector Graphics (*.svg)</translation> + <source>Silicon Graphics Image File (*.sgi)</source> + <translation type="unfinished">Archivo de Silicon Graphics Image (*.sgi)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="123"/> - <source>Targa Graphic File (*.tga)</source> - <translation type="unfinished">Archivo de Targa Graphic (*.tga)</translation> + <source>Scalable Vector Graphics File (*.svg)</source> + <translation type="unfinished">Archivo de Scalable Vector Graphics (*.svg)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="124"/> - <source>TIFF File (*.tif)</source> - <translation type="unfinished">Archivo TIFF (*.tif)</translation> + <source>Targa Graphic File (*.tga)</source> + <translation type="unfinished">Archivo de Targa Graphic (*.tga)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="125"/> - <source>X11 Bitmap File (*.xbm)</source> - <translation type="unfinished">Archivo de X11 Bitmap (*.xbm)</translation> + <source>TIFF File (*.tif)</source> + <translation type="unfinished">Archivo TIFF (*.tif)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="126"/> + <source>X11 Bitmap File (*.xbm)</source> + <translation type="unfinished">Archivo de X11 Bitmap (*.xbm)</translation> + </message> + <message> + <location filename="Snapshot/SnapWidget.py" line="127"/> <source>X11 Pixmap File (*.xpm)</source> <translation type="unfinished">Archivo de X11 Pixmap (*.xpm)</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="236"/> + <location filename="Snapshot/SnapWidget.py" line="237"/> <source>Save Snapshot</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="217"/> + <location filename="Snapshot/SnapWidget.py" line="218"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="236"/> + <location filename="Snapshot/SnapWidget.py" line="237"/> <source>Cannot write file '{0}: {1}.</source> <translation type="unfinished">No se puede guardar el archivo {0}: @@ -36347,32 +36382,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="61"/> + <location filename="Snapshot/SnapWidget.py" line="62"/> <source>Ellipical Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="63"/> + <location filename="Snapshot/SnapWidget.py" line="64"/> <source>Freehand Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="66"/> + <location filename="Snapshot/SnapWidget.py" line="67"/> <source>Current Screen</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="77"/> + <location filename="Snapshot/SnapWidget.py" line="78"/> <source>snapshot</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="452"/> + <location filename="Snapshot/SnapWidget.py" line="459"/> <source>The application contains an unsaved snapshot.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="404"/> + <location filename="Snapshot/SnapWidget.py" line="411"/> <source>Preview of the snapshot image ({0:n} x {1:n})</source> <translation type="unfinished"></translation> </message> @@ -41499,7 +41534,7 @@ <translation>No se pudo ejecutar el proceso Subversion.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="112"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="114"/> <source>Subversion status checked successfully (using pysvn)</source> <translation>Estado de Subversion verificado satisfactoriamente (utilizando pysvn)</translation> </message>
--- a/i18n/eric5_fr.ts Tue Apr 10 18:51:43 2012 +0200 +++ b/i18n/eric5_fr.ts Wed Apr 11 19:11:49 2012 +0200 @@ -38942,7 +38942,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="79"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="309"/> <source>Size:</source> <translation type="unfinished"></translation> </message> @@ -38992,50 +38992,85 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="241"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="348"/> <source>Security</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="159"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="174"/> <source>Preview not available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="175"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="190"/> <source>Copy Image Location to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="178"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="193"/> <source>Copy Image Name to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="234"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="249"/> <source>Save Image</source> <translation type="unfinished">Enregistrer l'image</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="214"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="229"/> <source>This image is not available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="222"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="237"/> <source>All Files (*)</source> <translation type="unfinished">Tous fichiers (*)</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="234"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="249"/> <source><p>Cannot write to file <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="241"/> + <source>Databases</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="254"/> + <source><b>Database details</b></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="263"/> + <source>Name:</source> + <translation type="unfinished">Nom:</translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="322"/> + <source><database not selected></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="286"/> + <source>Path:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="133"/> + <source>No databases are used by this page.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="247"/> + <source>Shows a list of databases used by the site</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>SnapWidget</name> <message> - <location filename="Snapshot/SnapWidget.py" line="475"/> + <location filename="Snapshot/SnapWidget.py" line="482"/> <source>eric5 Snapshot</source> <translation type="unfinished"></translation> </message> @@ -39080,107 +39115,107 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="57"/> + <location filename="Snapshot/SnapWidget.py" line="58"/> <source>Fullscreen</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="59"/> + <location filename="Snapshot/SnapWidget.py" line="60"/> <source>Rectangular Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="111"/> - <source>Windows Bitmap File (*.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Snapshot/SnapWidget.py" line="112"/> - <source>Graphic Interchange Format File (*.gif)</source> + <source>Windows Bitmap File (*.bmp)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="113"/> - <source>Windows Icon File (*.ico)</source> + <source>Graphic Interchange Format File (*.gif)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="114"/> - <source>JPEG File (*.jpg)</source> + <source>Windows Icon File (*.ico)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="115"/> - <source>Multiple-Image Network Graphics File (*.mng)</source> + <source>JPEG File (*.jpg)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="116"/> - <source>Portable Bitmap File (*.pbm)</source> + <source>Multiple-Image Network Graphics File (*.mng)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="117"/> - <source>Paintbrush Bitmap File (*.pcx)</source> + <source>Portable Bitmap File (*.pbm)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="118"/> - <source>Portable Graymap File (*.pgm)</source> + <source>Paintbrush Bitmap File (*.pcx)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="119"/> - <source>Portable Network Graphics File (*.png)</source> + <source>Portable Graymap File (*.pgm)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="120"/> - <source>Portable Pixmap File (*.ppm)</source> + <source>Portable Network Graphics File (*.png)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="121"/> - <source>Silicon Graphics Image File (*.sgi)</source> + <source>Portable Pixmap File (*.ppm)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="122"/> - <source>Scalable Vector Graphics File (*.svg)</source> + <source>Silicon Graphics Image File (*.sgi)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="123"/> - <source>Targa Graphic File (*.tga)</source> + <source>Scalable Vector Graphics File (*.svg)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="124"/> - <source>TIFF File (*.tif)</source> + <source>Targa Graphic File (*.tga)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="125"/> - <source>X11 Bitmap File (*.xbm)</source> + <source>TIFF File (*.tif)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="126"/> + <source>X11 Bitmap File (*.xbm)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Snapshot/SnapWidget.py" line="127"/> <source>X11 Pixmap File (*.xpm)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="236"/> + <location filename="Snapshot/SnapWidget.py" line="237"/> <source>Save Snapshot</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="217"/> + <location filename="Snapshot/SnapWidget.py" line="218"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="236"/> + <location filename="Snapshot/SnapWidget.py" line="237"/> <source>Cannot write file '{0}: {1}.</source> <translation type="unfinished"></translation> @@ -39216,32 +39251,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="61"/> + <location filename="Snapshot/SnapWidget.py" line="62"/> <source>Ellipical Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="63"/> + <location filename="Snapshot/SnapWidget.py" line="64"/> <source>Freehand Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="66"/> + <location filename="Snapshot/SnapWidget.py" line="67"/> <source>Current Screen</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="77"/> + <location filename="Snapshot/SnapWidget.py" line="78"/> <source>snapshot</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="452"/> + <location filename="Snapshot/SnapWidget.py" line="459"/> <source>The application contains an unsaved snapshot.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="404"/> + <location filename="Snapshot/SnapWidget.py" line="411"/> <source>Preview of the snapshot image ({0:n} x {1:n})</source> <translation type="unfinished"></translation> </message> @@ -44751,7 +44786,7 @@ <translation>Statut Subversion vérifié avec succès (en utilisant svn)</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="112"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="114"/> <source>Subversion status checked successfully (using pysvn)</source> <translation>Vérification de statut Subversion réussie (avec pysvn)</translation> </message>
--- a/i18n/eric5_it.ts Tue Apr 10 18:51:43 2012 +0200 +++ b/i18n/eric5_it.ts Wed Apr 11 19:11:49 2012 +0200 @@ -35920,7 +35920,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="79"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="309"/> <source>Size:</source> <translation type="unfinished">DImensione:</translation> </message> @@ -35970,50 +35970,85 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="241"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="348"/> <source>Security</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="159"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="174"/> <source>Preview not available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="175"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="190"/> <source>Copy Image Location to Clipboard</source> <translation type="unfinished">Copia la posizione dell'immagine nella Clipboard</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="178"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="193"/> <source>Copy Image Name to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="234"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="249"/> <source>Save Image</source> <translation type="unfinished">Salva immagine</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="214"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="229"/> <source>This image is not available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="222"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="237"/> <source>All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="234"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="249"/> <source><p>Cannot write to file <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="241"/> + <source>Databases</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="254"/> + <source><b>Database details</b></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="263"/> + <source>Name:</source> + <translation type="unfinished">Nome:</translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="322"/> + <source><database not selected></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="286"/> + <source>Path:</source> + <translation type="unfinished">Percorso:</translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="133"/> + <source>No databases are used by this page.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="247"/> + <source>Shows a list of databases used by the site</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>SnapWidget</name> <message> - <location filename="Snapshot/SnapWidget.py" line="475"/> + <location filename="Snapshot/SnapWidget.py" line="482"/> <source>eric5 Snapshot</source> <translation type="unfinished"></translation> </message> @@ -36058,107 +36093,107 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="57"/> + <location filename="Snapshot/SnapWidget.py" line="58"/> <source>Fullscreen</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="59"/> + <location filename="Snapshot/SnapWidget.py" line="60"/> <source>Rectangular Selection</source> <translation type="unfinished">Selezione rettangolare</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="111"/> - <source>Windows Bitmap File (*.bmp)</source> - <translation type="unfinished">Windows Bitmap File (*.bmp)</translation> - </message> - <message> <location filename="Snapshot/SnapWidget.py" line="112"/> - <source>Graphic Interchange Format File (*.gif)</source> - <translation type="unfinished">Graphic Interchange Format File (*.gif)</translation> + <source>Windows Bitmap File (*.bmp)</source> + <translation type="unfinished">Windows Bitmap File (*.bmp)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="113"/> - <source>Windows Icon File (*.ico)</source> - <translation type="unfinished">Windows Icon File (*.ico)</translation> + <source>Graphic Interchange Format File (*.gif)</source> + <translation type="unfinished">Graphic Interchange Format File (*.gif)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="114"/> - <source>JPEG File (*.jpg)</source> - <translation type="unfinished">JPEG File (*.jpg)</translation> + <source>Windows Icon File (*.ico)</source> + <translation type="unfinished">Windows Icon File (*.ico)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="115"/> - <source>Multiple-Image Network Graphics File (*.mng)</source> - <translation type="unfinished">Multiple-Image Network Graphics File (*.mng)</translation> + <source>JPEG File (*.jpg)</source> + <translation type="unfinished">JPEG File (*.jpg)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="116"/> - <source>Portable Bitmap File (*.pbm)</source> - <translation type="unfinished">Portable Bitmap File (*.pbm)</translation> + <source>Multiple-Image Network Graphics File (*.mng)</source> + <translation type="unfinished">Multiple-Image Network Graphics File (*.mng)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="117"/> - <source>Paintbrush Bitmap File (*.pcx)</source> + <source>Portable Bitmap File (*.pbm)</source> <translation type="unfinished">Portable Bitmap File (*.pbm)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="118"/> - <source>Portable Graymap File (*.pgm)</source> - <translation type="unfinished">Portable Graymap File (*.pgm)</translation> + <source>Paintbrush Bitmap File (*.pcx)</source> + <translation type="unfinished">Portable Bitmap File (*.pbm)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="119"/> - <source>Portable Network Graphics File (*.png)</source> - <translation type="unfinished">Portable Network Graphics File (*.png)</translation> + <source>Portable Graymap File (*.pgm)</source> + <translation type="unfinished">Portable Graymap File (*.pgm)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="120"/> - <source>Portable Pixmap File (*.ppm)</source> - <translation type="unfinished">Portable Pixmap File (*.ppm)</translation> + <source>Portable Network Graphics File (*.png)</source> + <translation type="unfinished">Portable Network Graphics File (*.png)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="121"/> - <source>Silicon Graphics Image File (*.sgi)</source> - <translation type="unfinished">Silicon Graphics Image File (*.sgi)</translation> + <source>Portable Pixmap File (*.ppm)</source> + <translation type="unfinished">Portable Pixmap File (*.ppm)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="122"/> - <source>Scalable Vector Graphics File (*.svg)</source> - <translation type="unfinished">Scalable Vector Graphics File (*.svg)</translation> + <source>Silicon Graphics Image File (*.sgi)</source> + <translation type="unfinished">Silicon Graphics Image File (*.sgi)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="123"/> - <source>Targa Graphic File (*.tga)</source> - <translation type="unfinished">Targa Graphic File (*.tga)</translation> + <source>Scalable Vector Graphics File (*.svg)</source> + <translation type="unfinished">Scalable Vector Graphics File (*.svg)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="124"/> - <source>TIFF File (*.tif)</source> - <translation type="unfinished">TIFF File (*.tif)</translation> + <source>Targa Graphic File (*.tga)</source> + <translation type="unfinished">Targa Graphic File (*.tga)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="125"/> - <source>X11 Bitmap File (*.xbm)</source> - <translation type="unfinished">X11 Bitmap File (*.xbm)</translation> + <source>TIFF File (*.tif)</source> + <translation type="unfinished">TIFF File (*.tif)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="126"/> + <source>X11 Bitmap File (*.xbm)</source> + <translation type="unfinished">X11 Bitmap File (*.xbm)</translation> + </message> + <message> + <location filename="Snapshot/SnapWidget.py" line="127"/> <source>X11 Pixmap File (*.xpm)</source> <translation type="unfinished">X11 Pixmap File (*.xpm)</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="236"/> + <location filename="Snapshot/SnapWidget.py" line="237"/> <source>Save Snapshot</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="217"/> + <location filename="Snapshot/SnapWidget.py" line="218"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"><p>Il file <b>{0}</b> esiste già. Sovrascriverlo ?</p></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="236"/> + <location filename="Snapshot/SnapWidget.py" line="237"/> <source>Cannot write file '{0}: {1}.</source> <translation type="unfinished">Impossibile scrivere il file {0}: @@ -36195,32 +36230,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="61"/> + <location filename="Snapshot/SnapWidget.py" line="62"/> <source>Ellipical Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="63"/> + <location filename="Snapshot/SnapWidget.py" line="64"/> <source>Freehand Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="66"/> + <location filename="Snapshot/SnapWidget.py" line="67"/> <source>Current Screen</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="77"/> + <location filename="Snapshot/SnapWidget.py" line="78"/> <source>snapshot</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="452"/> + <location filename="Snapshot/SnapWidget.py" line="459"/> <source>The application contains an unsaved snapshot.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="404"/> + <location filename="Snapshot/SnapWidget.py" line="411"/> <source>Preview of the snapshot image ({0:n} x {1:n})</source> <translation type="unfinished"></translation> </message> @@ -41341,7 +41376,7 @@ <translation>Controllo stato subversion eseguito con successo (usando svn)</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="112"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="114"/> <source>Subversion status checked successfully (using pysvn)</source> <translation>Controllo stato subversion eseguito con successo (usando pysvn)</translation> </message>
--- a/i18n/eric5_ru.ts Tue Apr 10 18:51:43 2012 +0200 +++ b/i18n/eric5_ru.ts Wed Apr 11 19:11:49 2012 +0200 @@ -36065,7 +36065,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="79"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="309"/> <source>Size:</source> <translation type="unfinished">Размер:</translation> </message> @@ -36115,50 +36115,85 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="241"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="348"/> <source>Security</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="159"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="174"/> <source>Preview not available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="175"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="190"/> <source>Copy Image Location to Clipboard</source> <translation type="unfinished">Скопировать адрес изображения</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="178"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="193"/> <source>Copy Image Name to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="234"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="249"/> <source>Save Image</source> <translation type="unfinished">Сохранить изображение</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="214"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="229"/> <source>This image is not available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="222"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="237"/> <source>All Files (*)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="234"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="249"/> <source><p>Cannot write to file <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="241"/> + <source>Databases</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="254"/> + <source><b>Database details</b></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="263"/> + <source>Name:</source> + <translation type="unfinished">Имя:</translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="322"/> + <source><database not selected></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="286"/> + <source>Path:</source> + <translation type="unfinished">Путь:</translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="133"/> + <source>No databases are used by this page.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="247"/> + <source>Shows a list of databases used by the site</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>SnapWidget</name> <message> - <location filename="Snapshot/SnapWidget.py" line="475"/> + <location filename="Snapshot/SnapWidget.py" line="482"/> <source>eric5 Snapshot</source> <translation type="unfinished"></translation> </message> @@ -36203,107 +36238,107 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="57"/> + <location filename="Snapshot/SnapWidget.py" line="58"/> <source>Fullscreen</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="59"/> + <location filename="Snapshot/SnapWidget.py" line="60"/> <source>Rectangular Selection</source> <translation type="unfinished">Прямоугольное выделение</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="111"/> - <source>Windows Bitmap File (*.bmp)</source> - <translation type="unfinished">Windows Bitmap файл (*.bmp)</translation> - </message> - <message> <location filename="Snapshot/SnapWidget.py" line="112"/> - <source>Graphic Interchange Format File (*.gif)</source> - <translation type="unfinished">GIF файл (*.gif)</translation> + <source>Windows Bitmap File (*.bmp)</source> + <translation type="unfinished">Windows Bitmap файл (*.bmp)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="113"/> - <source>Windows Icon File (*.ico)</source> - <translation type="unfinished">Файлы иконок (*.ico)</translation> + <source>Graphic Interchange Format File (*.gif)</source> + <translation type="unfinished">GIF файл (*.gif)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="114"/> - <source>JPEG File (*.jpg)</source> - <translation type="unfinished">JPEG файлы (*.jpg)</translation> + <source>Windows Icon File (*.ico)</source> + <translation type="unfinished">Файлы иконок (*.ico)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="115"/> - <source>Multiple-Image Network Graphics File (*.mng)</source> - <translation type="unfinished"></translation> + <source>JPEG File (*.jpg)</source> + <translation type="unfinished">JPEG файлы (*.jpg)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="116"/> - <source>Portable Bitmap File (*.pbm)</source> - <translation type="unfinished">Bitmap файл (*.bmp)</translation> + <source>Multiple-Image Network Graphics File (*.mng)</source> + <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="117"/> - <source>Paintbrush Bitmap File (*.pcx)</source> - <translation type="unfinished">Paintbrush Bitmap файл (*.pcx)</translation> + <source>Portable Bitmap File (*.pbm)</source> + <translation type="unfinished">Bitmap файл (*.bmp)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="118"/> - <source>Portable Graymap File (*.pgm)</source> - <translation type="unfinished">Graymap файл (*.pgm)</translation> + <source>Paintbrush Bitmap File (*.pcx)</source> + <translation type="unfinished">Paintbrush Bitmap файл (*.pcx)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="119"/> - <source>Portable Network Graphics File (*.png)</source> - <translation type="unfinished">PNG файл (*.png)</translation> + <source>Portable Graymap File (*.pgm)</source> + <translation type="unfinished">Graymap файл (*.pgm)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="120"/> - <source>Portable Pixmap File (*.ppm)</source> - <translation type="unfinished">Pixmap файл (*.ppm)</translation> + <source>Portable Network Graphics File (*.png)</source> + <translation type="unfinished">PNG файл (*.png)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="121"/> - <source>Silicon Graphics Image File (*.sgi)</source> - <translation type="unfinished">Silicon Graphics Image файл (*.sgi)</translation> + <source>Portable Pixmap File (*.ppm)</source> + <translation type="unfinished">Pixmap файл (*.ppm)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="122"/> - <source>Scalable Vector Graphics File (*.svg)</source> - <translation type="unfinished">SVG файл (*.svg)</translation> + <source>Silicon Graphics Image File (*.sgi)</source> + <translation type="unfinished">Silicon Graphics Image файл (*.sgi)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="123"/> - <source>Targa Graphic File (*.tga)</source> - <translation type="unfinished">Targa Graphic файл (*.tga)</translation> + <source>Scalable Vector Graphics File (*.svg)</source> + <translation type="unfinished">SVG файл (*.svg)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="124"/> - <source>TIFF File (*.tif)</source> - <translation type="unfinished">TIFF файл (*.tif)</translation> + <source>Targa Graphic File (*.tga)</source> + <translation type="unfinished">Targa Graphic файл (*.tga)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="125"/> - <source>X11 Bitmap File (*.xbm)</source> - <translation type="unfinished">X11 Bitmap файл (*.xbm)</translation> + <source>TIFF File (*.tif)</source> + <translation type="unfinished">TIFF файл (*.tif)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="126"/> + <source>X11 Bitmap File (*.xbm)</source> + <translation type="unfinished">X11 Bitmap файл (*.xbm)</translation> + </message> + <message> + <location filename="Snapshot/SnapWidget.py" line="127"/> <source>X11 Pixmap File (*.xpm)</source> <translation type="unfinished">X11 Pixmap файл (*.xpm)</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="236"/> + <location filename="Snapshot/SnapWidget.py" line="237"/> <source>Save Snapshot</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="217"/> + <location filename="Snapshot/SnapWidget.py" line="218"/> <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="Snapshot/SnapWidget.py" line="236"/> + <location filename="Snapshot/SnapWidget.py" line="237"/> <source>Cannot write file '{0}: {1}.</source> <translation type="unfinished">Невозможно записать файл {0}: @@ -36340,32 +36375,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="61"/> + <location filename="Snapshot/SnapWidget.py" line="62"/> <source>Ellipical Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="63"/> + <location filename="Snapshot/SnapWidget.py" line="64"/> <source>Freehand Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="66"/> + <location filename="Snapshot/SnapWidget.py" line="67"/> <source>Current Screen</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="77"/> + <location filename="Snapshot/SnapWidget.py" line="78"/> <source>snapshot</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="452"/> + <location filename="Snapshot/SnapWidget.py" line="459"/> <source>The application contains an unsaved snapshot.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="404"/> + <location filename="Snapshot/SnapWidget.py" line="411"/> <source>Preview of the snapshot image ({0:n} x {1:n})</source> <translation type="unfinished"></translation> </message> @@ -41507,7 +41542,7 @@ <translation>Статус Subversion успешно проверен (используется svn)</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="112"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="114"/> <source>Subversion status checked successfully (using pysvn)</source> <translation>Статус Subversion успешно проверен (используется pysvn)</translation> </message>
--- a/i18n/eric5_tr.ts Tue Apr 10 18:51:43 2012 +0200 +++ b/i18n/eric5_tr.ts Wed Apr 11 19:11:49 2012 +0200 @@ -36219,7 +36219,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="79"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="309"/> <source>Size:</source> <translation type="unfinished">Boyut:</translation> </message> @@ -36269,50 +36269,85 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="241"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="348"/> <source>Security</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="159"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="174"/> <source>Preview not available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="175"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="190"/> <source>Copy Image Location to Clipboard</source> <translation type="unfinished">Görüntünün Yerini Panoya kopyala</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="178"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="193"/> <source>Copy Image Name to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="234"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="249"/> <source>Save Image</source> <translation type="unfinished">Görüntüyü Kaydet</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="214"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="229"/> <source>This image is not available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="222"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="237"/> <source>All Files (*)</source> <translation type="unfinished">Tüm Dosyalar (*)</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="234"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="249"/> <source><p>Cannot write to file <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="241"/> + <source>Databases</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="254"/> + <source><b>Database details</b></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="263"/> + <source>Name:</source> + <translation type="unfinished">Adı:</translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="322"/> + <source><database not selected></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="286"/> + <source>Path:</source> + <translation type="unfinished">Yol:</translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="133"/> + <source>No databases are used by this page.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="247"/> + <source>Shows a list of databases used by the site</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>SnapWidget</name> <message> - <location filename="Snapshot/SnapWidget.py" line="475"/> + <location filename="Snapshot/SnapWidget.py" line="482"/> <source>eric5 Snapshot</source> <translation type="unfinished"></translation> </message> @@ -36357,107 +36392,107 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="57"/> + <location filename="Snapshot/SnapWidget.py" line="58"/> <source>Fullscreen</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="59"/> + <location filename="Snapshot/SnapWidget.py" line="60"/> <source>Rectangular Selection</source> <translation type="unfinished">Köşeli Seçim</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="111"/> - <source>Windows Bitmap File (*.bmp)</source> - <translation type="unfinished">Windows Bitmap Dosyası (*.bmp)</translation> - </message> - <message> <location filename="Snapshot/SnapWidget.py" line="112"/> - <source>Graphic Interchange Format File (*.gif)</source> - <translation type="unfinished">Graphic Interchange Format Dosyası (*.gif)</translation> + <source>Windows Bitmap File (*.bmp)</source> + <translation type="unfinished">Windows Bitmap Dosyası (*.bmp)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="113"/> - <source>Windows Icon File (*.ico)</source> - <translation type="unfinished">Windows İkon Dosyası (*.ico)</translation> + <source>Graphic Interchange Format File (*.gif)</source> + <translation type="unfinished">Graphic Interchange Format Dosyası (*.gif)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="114"/> - <source>JPEG File (*.jpg)</source> - <translation type="unfinished">JPEG Dosyası (*.jpg)</translation> + <source>Windows Icon File (*.ico)</source> + <translation type="unfinished">Windows İkon Dosyası (*.ico)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="115"/> - <source>Multiple-Image Network Graphics File (*.mng)</source> - <translation type="unfinished">Çoklu-Resim Ağ Grafik Dosyası (*.mng)</translation> + <source>JPEG File (*.jpg)</source> + <translation type="unfinished">JPEG Dosyası (*.jpg)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="116"/> - <source>Portable Bitmap File (*.pbm)</source> - <translation type="unfinished">Portable Bitmap Dosyası (*.pbm)</translation> + <source>Multiple-Image Network Graphics File (*.mng)</source> + <translation type="unfinished">Çoklu-Resim Ağ Grafik Dosyası (*.mng)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="117"/> - <source>Paintbrush Bitmap File (*.pcx)</source> - <translation type="unfinished">Paintbrush Bitmap Dosyası (*.pcx)</translation> + <source>Portable Bitmap File (*.pbm)</source> + <translation type="unfinished">Portable Bitmap Dosyası (*.pbm)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="118"/> - <source>Portable Graymap File (*.pgm)</source> - <translation type="unfinished">Portable Graymap Dosyası (*.pgm)</translation> + <source>Paintbrush Bitmap File (*.pcx)</source> + <translation type="unfinished">Paintbrush Bitmap Dosyası (*.pcx)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="119"/> - <source>Portable Network Graphics File (*.png)</source> - <translation type="unfinished">Portable Network Graphics Dosyası (*.png)</translation> + <source>Portable Graymap File (*.pgm)</source> + <translation type="unfinished">Portable Graymap Dosyası (*.pgm)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="120"/> - <source>Portable Pixmap File (*.ppm)</source> - <translation type="unfinished">Portable Pixmap Dosyası (*.ppm)</translation> + <source>Portable Network Graphics File (*.png)</source> + <translation type="unfinished">Portable Network Graphics Dosyası (*.png)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="121"/> - <source>Silicon Graphics Image File (*.sgi)</source> - <translation type="unfinished">Silikon Gragik Resim Dosyası (*.sgi)</translation> + <source>Portable Pixmap File (*.ppm)</source> + <translation type="unfinished">Portable Pixmap Dosyası (*.ppm)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="122"/> - <source>Scalable Vector Graphics File (*.svg)</source> - <translation type="unfinished">Ölçeklenebilir Vektörel Grafik Dosyası (*.svg)</translation> + <source>Silicon Graphics Image File (*.sgi)</source> + <translation type="unfinished">Silikon Gragik Resim Dosyası (*.sgi)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="123"/> - <source>Targa Graphic File (*.tga)</source> - <translation type="unfinished">Targa Gragik Dosyası (*.tga)</translation> + <source>Scalable Vector Graphics File (*.svg)</source> + <translation type="unfinished">Ölçeklenebilir Vektörel Grafik Dosyası (*.svg)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="124"/> - <source>TIFF File (*.tif)</source> - <translation type="unfinished">TIFF Dosyası (*.tif)</translation> + <source>Targa Graphic File (*.tga)</source> + <translation type="unfinished">Targa Gragik Dosyası (*.tga)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="125"/> - <source>X11 Bitmap File (*.xbm)</source> - <translation type="unfinished">X11 Bitmap Dosyası (*.xbm)</translation> + <source>TIFF File (*.tif)</source> + <translation type="unfinished">TIFF Dosyası (*.tif)</translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="126"/> + <source>X11 Bitmap File (*.xbm)</source> + <translation type="unfinished">X11 Bitmap Dosyası (*.xbm)</translation> + </message> + <message> + <location filename="Snapshot/SnapWidget.py" line="127"/> <source>X11 Pixmap File (*.xpm)</source> <translation type="unfinished">X11 Pixmap Dosyası (*.xpm)</translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="236"/> + <location filename="Snapshot/SnapWidget.py" line="237"/> <source>Save Snapshot</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="217"/> + <location filename="Snapshot/SnapWidget.py" line="218"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"><p><b>{0}</b> dosyası halen mevcut. Üzerine yazılsın mı?</p></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="236"/> + <location filename="Snapshot/SnapWidget.py" line="237"/> <source>Cannot write file '{0}: {1}.</source> <translation type="unfinished">Dosyaya yazılamıyor '{0}: @@ -36494,32 +36529,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="61"/> + <location filename="Snapshot/SnapWidget.py" line="62"/> <source>Ellipical Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="63"/> + <location filename="Snapshot/SnapWidget.py" line="64"/> <source>Freehand Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="66"/> + <location filename="Snapshot/SnapWidget.py" line="67"/> <source>Current Screen</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="77"/> + <location filename="Snapshot/SnapWidget.py" line="78"/> <source>snapshot</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="452"/> + <location filename="Snapshot/SnapWidget.py" line="459"/> <source>The application contains an unsaved snapshot.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="404"/> + <location filename="Snapshot/SnapWidget.py" line="411"/> <source>Preview of the snapshot image ({0:n} x {1:n})</source> <translation type="unfinished"></translation> </message> @@ -41533,7 +41568,7 @@ <translation>Altsürüm işlem süreci başlatılamıyor.</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="112"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="114"/> <source>Subversion status checked successfully (using pysvn)</source> <translation>Altsürüm durumu tam olarak kontrol edildi (pysvn kullanıldı)</translation> </message>
--- a/i18n/eric5_zh_CN.GB2312.ts Tue Apr 10 18:51:43 2012 +0200 +++ b/i18n/eric5_zh_CN.GB2312.ts Wed Apr 11 19:11:49 2012 +0200 @@ -38906,7 +38906,7 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="79"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="309"/> <source>Size:</source> <translation type="unfinished"></translation> </message> @@ -38956,50 +38956,85 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="241"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="348"/> <source>Security</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="159"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="174"/> <source>Preview not available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="175"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="190"/> <source>Copy Image Location to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="178"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="193"/> <source>Copy Image Name to Clipboard</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="234"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="249"/> <source>Save Image</source> <translation type="unfinished">保存图像</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="214"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="229"/> <source>This image is not available.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="222"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="237"/> <source>All Files (*)</source> <translation type="unfinished">所有文件 (*)</translation> </message> <message> - <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="234"/> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="249"/> <source><p>Cannot write to file <b>{0}</b>.</p></source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="241"/> + <source>Databases</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="254"/> + <source><b>Database details</b></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="263"/> + <source>Name:</source> + <translation type="unfinished">名称:</translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="322"/> + <source><database not selected></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="286"/> + <source>Path:</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.py" line="133"/> + <source>No databases are used by this page.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/SiteInfo/SiteInfoDialog.ui" line="247"/> + <source>Shows a list of databases used by the site</source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>SnapWidget</name> <message> - <location filename="Snapshot/SnapWidget.py" line="475"/> + <location filename="Snapshot/SnapWidget.py" line="482"/> <source>eric5 Snapshot</source> <translation type="unfinished"></translation> </message> @@ -39044,107 +39079,107 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="57"/> + <location filename="Snapshot/SnapWidget.py" line="58"/> <source>Fullscreen</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="59"/> + <location filename="Snapshot/SnapWidget.py" line="60"/> <source>Rectangular Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="111"/> - <source>Windows Bitmap File (*.bmp)</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Snapshot/SnapWidget.py" line="112"/> - <source>Graphic Interchange Format File (*.gif)</source> + <source>Windows Bitmap File (*.bmp)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="113"/> - <source>Windows Icon File (*.ico)</source> + <source>Graphic Interchange Format File (*.gif)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="114"/> - <source>JPEG File (*.jpg)</source> + <source>Windows Icon File (*.ico)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="115"/> - <source>Multiple-Image Network Graphics File (*.mng)</source> + <source>JPEG File (*.jpg)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="116"/> - <source>Portable Bitmap File (*.pbm)</source> + <source>Multiple-Image Network Graphics File (*.mng)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="117"/> - <source>Paintbrush Bitmap File (*.pcx)</source> + <source>Portable Bitmap File (*.pbm)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="118"/> - <source>Portable Graymap File (*.pgm)</source> + <source>Paintbrush Bitmap File (*.pcx)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="119"/> - <source>Portable Network Graphics File (*.png)</source> + <source>Portable Graymap File (*.pgm)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="120"/> - <source>Portable Pixmap File (*.ppm)</source> + <source>Portable Network Graphics File (*.png)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="121"/> - <source>Silicon Graphics Image File (*.sgi)</source> + <source>Portable Pixmap File (*.ppm)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="122"/> - <source>Scalable Vector Graphics File (*.svg)</source> + <source>Silicon Graphics Image File (*.sgi)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="123"/> - <source>Targa Graphic File (*.tga)</source> + <source>Scalable Vector Graphics File (*.svg)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="124"/> - <source>TIFF File (*.tif)</source> + <source>Targa Graphic File (*.tga)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="125"/> - <source>X11 Bitmap File (*.xbm)</source> + <source>TIFF File (*.tif)</source> <translation type="unfinished"></translation> </message> <message> <location filename="Snapshot/SnapWidget.py" line="126"/> + <source>X11 Bitmap File (*.xbm)</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Snapshot/SnapWidget.py" line="127"/> <source>X11 Pixmap File (*.xpm)</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="236"/> + <location filename="Snapshot/SnapWidget.py" line="237"/> <source>Save Snapshot</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="217"/> + <location filename="Snapshot/SnapWidget.py" line="218"/> <source><p>The file <b>{0}</b> already exists. Overwrite it?</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="236"/> + <location filename="Snapshot/SnapWidget.py" line="237"/> <source>Cannot write file '{0}: {1}.</source> <translation type="unfinished"></translation> @@ -39180,32 +39215,32 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="61"/> + <location filename="Snapshot/SnapWidget.py" line="62"/> <source>Ellipical Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="63"/> + <location filename="Snapshot/SnapWidget.py" line="64"/> <source>Freehand Selection</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="66"/> + <location filename="Snapshot/SnapWidget.py" line="67"/> <source>Current Screen</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="77"/> + <location filename="Snapshot/SnapWidget.py" line="78"/> <source>snapshot</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="452"/> + <location filename="Snapshot/SnapWidget.py" line="459"/> <source>The application contains an unsaved snapshot.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Snapshot/SnapWidget.py" line="404"/> + <location filename="Snapshot/SnapWidget.py" line="411"/> <source>Preview of the snapshot image ({0:n} x {1:n})</source> <translation type="unfinished"></translation> </message> @@ -44719,7 +44754,7 @@ <translation>无法开始版本控制进程。</translation> </message> <message> - <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="112"/> + <location filename="Plugins/VcsPlugins/vcsPySvn/SvnStatusMonitorThread.py" line="114"/> <source>Subversion status checked successfully (using pysvn)</source> <translation>版本控制状态检查成功(使用 pysvn)</translation> </message>