Sun, 30 May 2010 18:53:41 +0200
Added action to print to PDF to the web browser.
--- a/Documentation/Help/source.qhp Sun May 30 18:28:06 2010 +0200 +++ b/Documentation/Help/source.qhp Sun May 30 18:53:41 2010 +0200 @@ -2832,6 +2832,8 @@ <keyword name="HelpWindow.__pathSelected" id="HelpWindow.__pathSelected" ref="eric5.Helpviewer.HelpWindow.html#HelpWindow.__pathSelected" /> <keyword name="HelpWindow.__prevTab" id="HelpWindow.__prevTab" ref="eric5.Helpviewer.HelpWindow.html#HelpWindow.__prevTab" /> <keyword name="HelpWindow.__printFile" id="HelpWindow.__printFile" ref="eric5.Helpviewer.HelpWindow.html#HelpWindow.__printFile" /> + <keyword name="HelpWindow.__printFilePdf" id="HelpWindow.__printFilePdf" ref="eric5.Helpviewer.HelpWindow.html#HelpWindow.__printFilePdf" /> + <keyword name="HelpWindow.__printPdfRequested" id="HelpWindow.__printPdfRequested" ref="eric5.Helpviewer.HelpWindow.html#HelpWindow.__printPdfRequested" /> <keyword name="HelpWindow.__printPreview" id="HelpWindow.__printPreview" ref="eric5.Helpviewer.HelpWindow.html#HelpWindow.__printPreview" /> <keyword name="HelpWindow.__printPreviewFile" id="HelpWindow.__printPreviewFile" ref="eric5.Helpviewer.HelpWindow.html#HelpWindow.__printPreviewFile" /> <keyword name="HelpWindow.__printRequested" id="HelpWindow.__printRequested" ref="eric5.Helpviewer.HelpWindow.html#HelpWindow.__printRequested" /> @@ -2873,6 +2875,7 @@ <keyword name="HelpWindow.__tabContextMenuMoveLeft" id="HelpWindow.__tabContextMenuMoveLeft" ref="eric5.Helpviewer.HelpWindow.html#HelpWindow.__tabContextMenuMoveLeft" /> <keyword name="HelpWindow.__tabContextMenuMoveRight" id="HelpWindow.__tabContextMenuMoveRight" ref="eric5.Helpviewer.HelpWindow.html#HelpWindow.__tabContextMenuMoveRight" /> <keyword name="HelpWindow.__tabContextMenuPrint" id="HelpWindow.__tabContextMenuPrint" ref="eric5.Helpviewer.HelpWindow.html#HelpWindow.__tabContextMenuPrint" /> + <keyword name="HelpWindow.__tabContextMenuPrintPdf" id="HelpWindow.__tabContextMenuPrintPdf" ref="eric5.Helpviewer.HelpWindow.html#HelpWindow.__tabContextMenuPrintPdf" /> <keyword name="HelpWindow.__tabContextMenuPrintPreview" id="HelpWindow.__tabContextMenuPrintPreview" ref="eric5.Helpviewer.HelpWindow.html#HelpWindow.__tabContextMenuPrintPreview" /> <keyword name="HelpWindow.__titleChanged" id="HelpWindow.__titleChanged" ref="eric5.Helpviewer.HelpWindow.html#HelpWindow.__titleChanged" /> <keyword name="HelpWindow.__viewFullScreen" id="HelpWindow.__viewFullScreen" ref="eric5.Helpviewer.HelpWindow.html#HelpWindow.__viewFullScreen" />
--- a/Documentation/Source/eric5.Helpviewer.HelpWindow.html Sun May 30 18:28:06 2010 +0200 +++ b/Documentation/Source/eric5.Helpviewer.HelpWindow.html Sun May 30 18:53:41 2010 +0200 @@ -220,6 +220,12 @@ <td><a href="#HelpWindow.__printFile">__printFile</a></td> <td>Private slot called to print the displayed file.</td> </tr><tr> +<td><a href="#HelpWindow.__printFilePdf">__printFilePdf</a></td> +<td>Private slot called to print the displayed file to PDF.</td> +</tr><tr> +<td><a href="#HelpWindow.__printPdfRequested">__printPdfRequested</a></td> +<td>Private slot to handle a print to PDF request.</td> +</tr><tr> <td><a href="#HelpWindow.__printPreview">__printPreview</a></td> <td>Public slot to generate a print preview.</td> </tr><tr> @@ -343,6 +349,9 @@ <td><a href="#HelpWindow.__tabContextMenuPrint">__tabContextMenuPrint</a></td> <td>Private method to print the selected tab.</td> </tr><tr> +<td><a href="#HelpWindow.__tabContextMenuPrintPdf">__tabContextMenuPrintPdf</a></td> +<td>Private method to print the selected tab.</td> +</tr><tr> <td><a href="#HelpWindow.__tabContextMenuPrintPreview">__tabContextMenuPrintPreview</a></td> <td>Private method to show a print preview of the selected tab.</td> </tr><tr> @@ -852,6 +861,26 @@ <dd> reference to the browser to be printed (HelpBrowserWV) </dd> +</dl><a NAME="HelpWindow.__printFilePdf" ID="HelpWindow.__printFilePdf"></a> +<h4>HelpWindow.__printFilePdf</h4> +<b>__printFilePdf</b>(<i>browser = None</i>) +<p> + Private slot called to print the displayed file to PDF. +</p><dl> +<dt><i>browser</i></dt> +<dd> +reference to the browser to be printed (HelpBrowserWV) +</dd> +</dl><a NAME="HelpWindow.__printPdfRequested" ID="HelpWindow.__printPdfRequested"></a> +<h4>HelpWindow.__printPdfRequested</h4> +<b>__printPdfRequested</b>(<i>frame</i>) +<p> + Private slot to handle a print to PDF request. +</p><dl> +<dt><i>frame</i></dt> +<dd> +reference to the frame to be printed (QWebFrame) +</dd> </dl><a NAME="HelpWindow.__printPreview" ID="HelpWindow.__printPreview"></a> <h4>HelpWindow.__printPreview</h4> <b>__printPreview</b>(<i>printer</i>) @@ -1110,6 +1139,11 @@ <b>__tabContextMenuPrint</b>(<i></i>) <p> Private method to print the selected tab. +</p><a NAME="HelpWindow.__tabContextMenuPrintPdf" ID="HelpWindow.__tabContextMenuPrintPdf"></a> +<h4>HelpWindow.__tabContextMenuPrintPdf</h4> +<b>__tabContextMenuPrintPdf</b>(<i></i>) +<p> + Private method to print the selected tab. </p><a NAME="HelpWindow.__tabContextMenuPrintPreview" ID="HelpWindow.__tabContextMenuPrintPreview"></a> <h4>HelpWindow.__tabContextMenuPrintPreview</h4> <b>__tabContextMenuPrintPreview</b>(<i></i>)
--- a/Helpviewer/HelpWindow.py Sun May 30 18:28:06 2010 +0200 +++ b/Helpviewer/HelpWindow.py Sun May 30 18:53:41 2010 +0200 @@ -431,6 +431,18 @@ self.connect(self.printAct, SIGNAL('triggered()'), self.__printFile) self.__actions.append(self.printAct) + self.printPdfAct = E5Action(self.trUtf8('Print as PDF'), + UI.PixmapCache.getIcon("printPdf.png"), + self.trUtf8('Print as PDF'), + 0, 0, self, 'help_file_print_pdf') + self.printPdfAct.setStatusTip(self.trUtf8('Print the displayed help as PDF')) + self.printPdfAct.setWhatsThis(self.trUtf8( + """<b>Print as PDF</b>""" + """<p>Print the displayed help text as a PDF file.</p>""" + )) + self.connect(self.printPdfAct, SIGNAL('triggered()'), self.__printFilePdf) + self.__actions.append(self.printPdfAct) + self.printPreviewAct = E5Action(self.trUtf8('Print Preview'), UI.PixmapCache.getIcon("printPreview.png"), self.trUtf8('Print Preview'), @@ -1068,6 +1080,7 @@ menu.addSeparator() menu.addAction(self.printPreviewAct) menu.addAction(self.printAct) + menu.addAction(self.printPdfAct) menu.addSeparator() menu.addAction(self.closeAct) menu.addAction(self.closeAllAct) @@ -1200,6 +1213,8 @@ self.trUtf8('Print Preview'), self.__tabContextMenuPrintPreview) self.__tabContextMenu.addAction(UI.PixmapCache.getIcon("print.png"), self.trUtf8('Print'), self.__tabContextMenuPrint) + self.__tabContextMenu.addAction(UI.PixmapCache.getIcon("printPdf.png"), + self.trUtf8('Print as PDF'), self.__tabContextMenuPrintPdf) self.__tabContextMenu.addSeparator() self.__tabContextMenu.addAction(self.bookmarksAllTabsAct) @@ -1219,6 +1234,7 @@ filetb.addSeparator() filetb.addAction(self.printPreviewAct) filetb.addAction(self.printAct) + filetb.addAction(self.printPdfAct) filetb.addSeparator() filetb.addAction(self.closeAct) filetb.addAction(self.exitAct) @@ -1619,6 +1635,47 @@ """Please upgrade.</p>""")) return + def __printFilePdf(self, browser = None): + """ + Private slot called to print the displayed file to PDF. + + @param browser reference to the browser to be printed (HelpBrowserWV) + """ + if browser is None: + browser = self.currentBrowser() + + self.__printPdfRequested(browser.page().mainFrame()) + + def __printPdfRequested(self, frame): + """ + Private slot to handle a print to PDF request. + + @param frame reference to the frame to be printed (QWebFrame) + """ + printer = QPrinter(mode = QPrinter.HighResolution) + if Preferences.getPrinter("ColorMode"): + printer.setColorMode(QPrinter.Color) + else: + printer.setColorMode(QPrinter.GrayScale) + printer.setPrinterName(Preferences.getPrinter("PrinterName")) + printer.setOutputFormat(QPrinter.PdfFormat) + name = frame.url().path().rsplit('/', 1)[-1] + if name: + name = name.rsplit('.', 1)[0] + name += '.pdf' + printer.setOutputFileName(name) + + printDialog = QPrintDialog(printer, self) + if printDialog.exec_() == QDialog.Accepted: + try: + frame.print_(printer) + except AttributeError: + QMessageBox.critical(self, + self.trUtf8("Eric Web Browser"), + self.trUtf8("""<p>Printing is not available due to a bug in PyQt4.""" + """Please upgrade.</p>""")) + return + def __printPreviewFile(self, browser = None): """ Private slot called to show a print preview of the displayed file. @@ -2084,6 +2141,7 @@ self.__setPathComboBackground() self.printAct.setEnabled(hasattr(cb, 'print_')) + self.printPdfAct.setEnabled(hasattr(cb, 'print_')) if self.printPreviewAct: self.printPreviewAct.setEnabled(hasattr(cb, 'print_')) @@ -2150,6 +2208,13 @@ browser = self.tabWidget.widget(self.tabContextMenuIndex) self.__printFile(browser) + def __tabContextMenuPrintPdf(self): + """ + Private method to print the selected tab. + """ + browser = self.tabWidget.widget(self.tabContextMenuIndex) + self.__printFilePdf(browser) + def __tabContextMenuPrintPreview(self): """ Private method to show a print preview of the selected tab.
--- a/changelog Sun May 30 18:28:06 2010 +0200 +++ b/changelog Sun May 30 18:53:41 2010 +0200 @@ -5,6 +5,7 @@ - added an action to perform a 'hg push -f' to the Mercurial plug-in - added a handler for ftp: URLs to the web browser - added action to start a Mercurial server to the Mercurial plug-in +- added action to print to PDF to the web browser Version 5.0-snapshot-20100523: - bug fixes
--- a/i18n/eric5_cs.ts Sun May 30 18:28:06 2010 +0200 +++ b/i18n/eric5_cs.ts Sun May 30 18:53:41 2010 +0200 @@ -11800,24 +11800,24 @@ <context> <name>FtpReply</name> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="319"/> + <location filename="Helpviewer/Network/FtpReply.py" line="332"/> <source> <p><a class="link_parent" href="{0}">Change to parent directory</a></p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="332"/> + <location filename="Helpviewer/Network/FtpReply.py" line="345"/> <source> <tr><th align="left">Name</th><th>Size</th><th align="left">Last modified</th></tr> </source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="358"/> + <location filename="Helpviewer/Network/FtpReply.py" line="371"/> <source>{0} {1}</source> <comment>size unit</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="382"/> + <location filename="Helpviewer/Network/FtpReply.py" line="395"/> <source>Listing of {0}</source> <translation type="unfinished"></translation> </message> @@ -12011,17 +12011,17 @@ <translation type="obsolete">Při připojení na: %1.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>Check the address for errors such as <b>ww</b>.example.org instead of <b>www</b>.example.org</source> <translation>Zkontrolujte adresu na chyby jako je <b>ww</b>.example.org místo <b>www</b>.example.org</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>If the address is correct, try checking the network connection.</source> <translation>Je-li adresa vpořádku, prověřte síťové spojení.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source> <translation>Je-li vaše šíť chráněna firewallem nebo proxy, ujistěte se, že váš prohlížeč má na tuto síť povolen přístup.</translation> </message> @@ -12101,12 +12101,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="947"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="946"/> <source>Error loading page: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>When connecting to: {0}.</source> <translation type="unfinished"></translation> </message> @@ -12880,7 +12880,7 @@ <context> <name>HelpWindow</name> <message> - <location filename="Helpviewer/HelpWindow.py" line="453"/> + <location filename="Helpviewer/HelpWindow.py" line="465"/> <source>Close the current help window</source> <translation>Zavřít aktuální okno nápovědy</translation> </message> @@ -12985,325 +12985,325 @@ <translation><b>Tisk</b><p>Tisknout zobrazenou nápovědu.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="448"/> + <location filename="Helpviewer/HelpWindow.py" line="460"/> <source>&Close</source> <translation>&Zavřít</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="448"/> + <location filename="Helpviewer/HelpWindow.py" line="460"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="454"/> + <location filename="Helpviewer/HelpWindow.py" line="466"/> <source><b>Close</b><p>Closes the current help window.</p></source> <translation><b>Zavřít</b><p>Zavře aktuální okno s nápovědou.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="461"/> + <location filename="Helpviewer/HelpWindow.py" line="473"/> <source>Close &All</source> <translation>Z&avřít vše</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="465"/> + <location filename="Helpviewer/HelpWindow.py" line="477"/> <source><b>Close All</b><p>Closes all help windows except the first one.</p></source> <translation><b>Zavřít vše</b><p>Zavřít všechna okna s nápovědou kromě prvního.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="487"/> + <location filename="Helpviewer/HelpWindow.py" line="499"/> <source>&Quit</source> <translation>&Konec</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="487"/> + <location filename="Helpviewer/HelpWindow.py" line="499"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>&Backward</source> <translation>&Nazpět</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="510"/> + <location filename="Helpviewer/HelpWindow.py" line="522"/> <source>Move one help screen backward</source> <translation>Posun o jednu obrazovku nápovědy nazpět</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="511"/> + <location filename="Helpviewer/HelpWindow.py" line="523"/> <source><b>Backward</b><p>Moves one help screen backward. If none is available, this action is disabled.</p></source> <translation><b>Nazpět</b><p>Posun o jednu obrazovku nazpět. Pokud není taková k dispozici, je tato akce vypnuta.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>&Forward</source> <translation>&Dopředu</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="525"/> + <location filename="Helpviewer/HelpWindow.py" line="537"/> <source>Move one help screen forward</source> <translation>Posun o jednu obrazovku dopředu</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="526"/> + <location filename="Helpviewer/HelpWindow.py" line="538"/> <source><b>Forward</b><p>Moves one help screen forward. If none is available, this action is disabled.</p></source> <translation><b>Dopředu</b><p>Posun o jednu obrazovku dopředu. Pokud není taková k dispozici, je tato akce vypnuta.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="534"/> + <location filename="Helpviewer/HelpWindow.py" line="546"/> <source>&Home</source> <translation>&Hlavní strana</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="539"/> + <location filename="Helpviewer/HelpWindow.py" line="551"/> <source>Move to the initial help screen</source> <translation>Posun na hlavní stranu nápovědy</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="540"/> + <location filename="Helpviewer/HelpWindow.py" line="552"/> <source><b>Home</b><p>Moves to the initial help screen.</p></source> <translation><b>Hlavní strana</b><p>Posun na hlavní stranu nápovědy.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>&Reload</source> <translation>&Obnovit</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="553"/> + <location filename="Helpviewer/HelpWindow.py" line="565"/> <source>Reload the current help screen</source> <translation>Obsah aktuální nápovědy se obnoví</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="554"/> + <location filename="Helpviewer/HelpWindow.py" line="566"/> <source><b>Reload</b><p>Reloads the current help screen.</p></source> <translation><b>Obnovit</b><p>Znovu načte aktuální obrazovku nápovědy.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="588"/> + <location filename="Helpviewer/HelpWindow.py" line="600"/> <source>&Find...</source> <translation>&Hledat...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="593"/> + <location filename="Helpviewer/HelpWindow.py" line="605"/> <source>Find text in page</source> <translation>Hledat text na stránce</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="594"/> + <location filename="Helpviewer/HelpWindow.py" line="606"/> <source><b>Find</b><p>Find text in the current page.</p></source> <translation><b>Hledat</b><p>Hledá se text na aktuální straně.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="601"/> + <location filename="Helpviewer/HelpWindow.py" line="613"/> <source>Find &next</source> <translation>Hledat &následující</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="615"/> + <location filename="Helpviewer/HelpWindow.py" line="627"/> <source>Find &previous</source> <translation>Hledat &předchozí</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="686"/> + <location filename="Helpviewer/HelpWindow.py" line="698"/> <source>&What's This?</source> <translation>&Co je to?</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="691"/> - <source>Context sensitive help</source> - <translation>Kontextově senzitivní nápověda</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="692"/> - <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> - <translation><b>Zobrazit kontextově senzitivní nápovědu</b><p>V režimu "Co je to?" se nad různými prvky aplikace u kurzoru zobrazí otazník. Když pak kliknete na tyto prvky, zobrazí se krátký popis co daný prvek znamená a jak jej použít. V dialogových oknech se tato funkce spustí tlačítkem kontextové nápovědy na horní liště.</p></translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="703"/> + <source>Context sensitive help</source> + <translation>Kontextově senzitivní nápověda</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="704"/> + <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> + <translation><b>Zobrazit kontextově senzitivní nápovědu</b><p>V režimu "Co je to?" se nad různými prvky aplikace u kurzoru zobrazí otazník. Když pak kliknete na tyto prvky, zobrazí se krátký popis co daný prvek znamená a jak jej použít. V dialogových oknech se tato funkce spustí tlačítkem kontextové nápovědy na horní liště.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="715"/> <source>&About</source> <translation>O &aplikaci</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="706"/> + <location filename="Helpviewer/HelpWindow.py" line="718"/> <source>Display information about this software</source> <translation>Zobrazit informace a tomto software</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="707"/> - <source><b>About</b><p>Display some information about this software.</p></source> - <translation><b>O aplikaci</b><p>Zobrazí se informace o tomto software.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="714"/> - <source>About &Qt</source> - <translation>O &Qt</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="717"/> - <source>Display information about the Qt toolkit</source> - <translation>Zobrazit informace o Qt toolkitu</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="719"/> - <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> - <translation><b>A Qt</b><p>Zobrazit informace o Qt toolkitu.</p></translation> + <source><b>About</b><p>Display some information about this software.</p></source> + <translation><b>O aplikaci</b><p>Zobrazí se informace o tomto software.</p></translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="726"/> - <source>Zoom &in</source> - <translation>Př&iblížit</translation> + <source>About &Qt</source> + <translation>O &Qt</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="729"/> + <source>Display information about the Qt toolkit</source> + <translation>Zobrazit informace o Qt toolkitu</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="731"/> + <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> + <translation><b>A Qt</b><p>Zobrazit informace o Qt toolkitu.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="738"/> + <source>Zoom &in</source> + <translation>Př&iblížit</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="743"/> <source>Zoom in on the text</source> <translation>Zvětšovací lupa</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="732"/> - <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> - <translation><b>Přiblížit</b><p>Přiblížit text. Text bude větší.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="739"/> - <source>Zoom &out</source> - <translation>&Oddálit</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="744"/> + <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> + <translation><b>Přiblížit</b><p>Přiblížit text. Text bude větší.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="751"/> + <source>Zoom &out</source> + <translation>&Oddálit</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="756"/> <source>Zoom out on the text</source> <translation>Zmenšovací lupa</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="745"/> + <location filename="Helpviewer/HelpWindow.py" line="757"/> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation><b>Oddálit</b><p>Lupa na oddálení textu. Text bude menší.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="575"/> + <location filename="Helpviewer/HelpWindow.py" line="587"/> <source>&Copy</source> <translation>&Kopírovat</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="575"/> + <location filename="Helpviewer/HelpWindow.py" line="587"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="580"/> + <location filename="Helpviewer/HelpWindow.py" line="592"/> <source>Copy the selected text</source> <translation>Kopírovat vybraný text</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="581"/> + <location filename="Helpviewer/HelpWindow.py" line="593"/> <source><b>Copy</b><p>Copy the selected text to the clipboard.</p></source> <translation><b>Kopírovat</b><p>Kopírovat vybraný text do schránky.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1057"/> + <location filename="Helpviewer/HelpWindow.py" line="1069"/> <source>&File</source> <translation>S&oubor</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1079"/> + <location filename="Helpviewer/HelpWindow.py" line="1092"/> <source>&Edit</source> <translation>&Edit</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1087"/> + <location filename="Helpviewer/HelpWindow.py" line="1100"/> <source>&View</source> <translation>Poh&led</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1098"/> - <source>&Go</source> - <translation>&Jít</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="1111"/> + <source>&Go</source> + <translation>&Jít</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1124"/> <source>H&istory</source> <translation>H&istorie</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1120"/> + <location filename="Helpviewer/HelpWindow.py" line="1133"/> <source>&Bookmarks</source> <translation>&Záložky</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1165"/> + <location filename="Helpviewer/HelpWindow.py" line="1178"/> <source>&Help</source> <translation>&Nápověda</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1181"/> + <location filename="Helpviewer/HelpWindow.py" line="1194"/> <source>Move Left</source> <translation>Posun doleva</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1184"/> + <location filename="Helpviewer/HelpWindow.py" line="1197"/> <source>Move Right</source> <translation>Posun doprava</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1192"/> + <location filename="Helpviewer/HelpWindow.py" line="1205"/> <source>Close</source> <translation>Zavřít</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1201"/> + <location filename="Helpviewer/HelpWindow.py" line="1214"/> <source>Print</source> <translation>Tisk</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1210"/> + <location filename="Helpviewer/HelpWindow.py" line="1225"/> <source>File</source> <translation>Soubor</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1226"/> + <location filename="Helpviewer/HelpWindow.py" line="1242"/> <source>Edit</source> <translation>Editovat</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1231"/> + <location filename="Helpviewer/HelpWindow.py" line="1247"/> <source>View</source> <translation>Pohled</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1240"/> + <location filename="Helpviewer/HelpWindow.py" line="1256"/> <source>Find</source> <translation>Hledat</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1267"/> + <location filename="Helpviewer/HelpWindow.py" line="1283"/> <source>Help</source> <translation>Nápověda</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1274"/> + <location filename="Helpviewer/HelpWindow.py" line="1290"/> <source>Go</source> <translation>Jít</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1294"/> + <location filename="Helpviewer/HelpWindow.py" line="1310"/> <source><p>Enter the help file to be displayed directly into this edit field. Select a previously shown help file from the drop down list.</p></source> <translation><p>Zadání souboru s nápovědou, který se zobrazí přímo do tohoto editačního okna. Výběr předchozí zobrazené nápovědy z drop down seznamu.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1559"/> + <location filename="Helpviewer/HelpWindow.py" line="1575"/> <source>Open File</source> <translation>Otevřít soubor</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1559"/> + <location filename="Helpviewer/HelpWindow.py" line="1575"/> <source>Help Files (*.html *.htm);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source> <translation>Help soubory (*.html *.htm);;PDF soubory (*.pdf);;CHM soubory (*.chm);;Všechny soubory (*)</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2032"/> + <location filename="Helpviewer/HelpWindow.py" line="2087"/> <source>...</source> <translation>...</translation> </message> @@ -13323,259 +13323,259 @@ <translation>Otevřít soubor v novém tabu</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="461"/> + <location filename="Helpviewer/HelpWindow.py" line="473"/> <source>Close All</source> <translation>Zavřít vše</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="487"/> + <location filename="Helpviewer/HelpWindow.py" line="499"/> <source>Quit</source> <translation>Konec</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>Backward</source> <translation>Nazpět</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>Alt+Left</source> <comment>Go|Backward</comment> <translation></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>Backspace</source> <comment>Go|Backward</comment> <translation></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>Forward</source> <translation>Dopředu</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>Alt+Right</source> <comment>Go|Forward</comment> <translation></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>Shift+Backspace</source> <comment>Go|Forward</comment> <translation></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="534"/> + <location filename="Helpviewer/HelpWindow.py" line="546"/> <source>Home</source> <translation></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="534"/> + <location filename="Helpviewer/HelpWindow.py" line="546"/> <source>Ctrl+Home</source> <comment>Go|Home</comment> <translation></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>Reload</source> <translation>Obnovit</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>Ctrl+R</source> <comment>Go|Reload</comment> <translation></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="575"/> + <location filename="Helpviewer/HelpWindow.py" line="587"/> <source>Copy</source> <translation>Kopírovat</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="588"/> + <location filename="Helpviewer/HelpWindow.py" line="600"/> <source>Find...</source> <translation>Hledat...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="588"/> + <location filename="Helpviewer/HelpWindow.py" line="600"/> <source>Ctrl+F</source> <comment>Edit|Find</comment> <translation></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="601"/> + <location filename="Helpviewer/HelpWindow.py" line="613"/> <source>Find next</source> <translation>Najít další</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="601"/> + <location filename="Helpviewer/HelpWindow.py" line="613"/> <source>F3</source> <comment>Edit|Find next</comment> <translation></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="615"/> + <location filename="Helpviewer/HelpWindow.py" line="627"/> <source>Find previous</source> <translation>Najít předchozí</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="615"/> + <location filename="Helpviewer/HelpWindow.py" line="627"/> <source>Shift+F3</source> <comment>Edit|Find previous</comment> <translation></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="645"/> + <location filename="Helpviewer/HelpWindow.py" line="657"/> <source>Add Bookmark</source> <translation>Přidat záložku</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="686"/> + <location filename="Helpviewer/HelpWindow.py" line="698"/> <source>What's This?</source> <translation>Co je to?</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="686"/> + <location filename="Helpviewer/HelpWindow.py" line="698"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="703"/> + <location filename="Helpviewer/HelpWindow.py" line="715"/> <source>About</source> <translation>O aplikaci</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="714"/> - <source>About Qt</source> - <translation>O Qt</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="726"/> + <source>About Qt</source> + <translation>O Qt</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="738"/> <source>Zoom in</source> <translation>Přiblížit</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="726"/> + <location filename="Helpviewer/HelpWindow.py" line="738"/> <source>Ctrl++</source> <comment>View|Zoom in</comment> <translation></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="739"/> + <location filename="Helpviewer/HelpWindow.py" line="751"/> <source>Zoom out</source> <translation>Oddálit</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="739"/> + <location filename="Helpviewer/HelpWindow.py" line="751"/> <source>Ctrl+-</source> <comment>View|Zoom out</comment> <translation></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="606"/> + <location filename="Helpviewer/HelpWindow.py" line="618"/> <source>Find next occurrence of text in page</source> <translation>Hledat následující výskyt textu na straně</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="607"/> + <location filename="Helpviewer/HelpWindow.py" line="619"/> <source><b>Find next</b><p>Find the next occurrence of text in the current page.</p></source> <translation><b>Hledat následující</b><p>Vyhledá se následující výskyt textu na aktuální straně.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="620"/> + <location filename="Helpviewer/HelpWindow.py" line="632"/> <source>Find previous occurrence of text in page</source> <translation>Hledat předchozí výskyt textu na stránce</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="622"/> + <location filename="Helpviewer/HelpWindow.py" line="634"/> <source><b>Find previous</b><p>Find the previous occurrence of text in the current page.</p></source> <translation><b>Hledat předchozí</b><p>Vyhledá předchozí výskyt textu na aktuální straně.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1199"/> + <location filename="Helpviewer/HelpWindow.py" line="1212"/> <source>Print Preview</source> <translation>Náhled tisku</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="438"/> + <location filename="Helpviewer/HelpWindow.py" line="450"/> <source>Print preview of the displayed help</source> <translation>Tisknout náhled zobrazené nápovědy</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="440"/> + <location filename="Helpviewer/HelpWindow.py" line="452"/> <source><b>Print Preview</b><p>Print preview of the displayed help text.</p></source> <translation><b>Vytisknout náhled</b><p>Tisknout náhled zobrazeného textu nápovědy.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1660"/> + <location filename="Helpviewer/HelpWindow.py" line="1715"/> <source><p>Printing is not available due to a bug in PyQt4.Please upgrade.</p></source> <translation><p>Tisk není dostupný kvůli bugu v PyQt4.Please upgrade.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="805"/> + <location filename="Helpviewer/HelpWindow.py" line="817"/> <source>Show next tab</source> <translation>Zobrazit následující tab</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="805"/> + <location filename="Helpviewer/HelpWindow.py" line="817"/> <source>Ctrl+Alt+Tab</source> <translation></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="813"/> + <location filename="Helpviewer/HelpWindow.py" line="825"/> <source>Show previous tab</source> <translation>Zobrazit předchozí tab</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="813"/> + <location filename="Helpviewer/HelpWindow.py" line="825"/> <source>Shift+Ctrl+Alt+Tab</source> <translation></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="821"/> - <source>Switch between tabs</source> - <translation>Přepnout mezi taby</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="821"/> - <source>Ctrl+1</source> - <translation></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="970"/> - <source>Clear icons database</source> - <translation>Vyčistit ikony databáze</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="974"/> - <source>Clear the database of favicons</source> - <translation>Vyčistit databázi favicons</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="975"/> - <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> - <translation><b>Vyčistit databázi favicons</b><p>Vyčistit databázi favicons navštívených URL.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="829"/> - <source>Preferences</source> - <translation>Předvolby</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="829"/> - <source>&Preferences...</source> - <translation>&Předvolby...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="832"/> - <source>Set the prefered configuration</source> - <translation>Nastavit preferovanou konfiguraci</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="833"/> + <source>Switch between tabs</source> + <translation>Přepnout mezi taby</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="833"/> + <source>Ctrl+1</source> + <translation></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="982"/> + <source>Clear icons database</source> + <translation>Vyčistit ikony databáze</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="986"/> + <source>Clear the database of favicons</source> + <translation>Vyčistit databázi favicons</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="987"/> + <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> + <translation><b>Vyčistit databázi favicons</b><p>Vyčistit databázi favicons navštívených URL.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="841"/> + <source>Preferences</source> + <translation>Předvolby</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="841"/> + <source>&Preferences...</source> + <translation>&Předvolby...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="844"/> + <source>Set the prefered configuration</source> + <translation>Nastavit preferovanou konfiguraci</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="845"/> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation><b>Předvolby</b><p>Upravit položky konfigurace aplikace podle vašich předvoleb.</p></translation> </message> @@ -13585,152 +13585,152 @@ <translation>Obsah</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="464"/> + <location filename="Helpviewer/HelpWindow.py" line="476"/> <source>Close all help windows</source> <translation>Zavřít všechna okna s nápovědou</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="867"/> + <location filename="Helpviewer/HelpWindow.py" line="879"/> <source>Sync with Table of Contents</source> <translation>Sync obsahu</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="871"/> - <source>Synchronizes the table of contents with current page</source> - <translation>Synchronizuje obsah s aktuální stranou</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="873"/> - <source><b>Sync with Table of Contents</b><p>Synchronizes the table of contents with current page.</p></source> - <translation><b>Sync obsah</b><p>Synchronizuje obsah s aktuální stranou.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="880"/> - <source>Table of Contents</source> - <translation>Obsah</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="883"/> - <source>Shows the table of contents window</source> - <translation>Zobrazit okno s obsahem</translation> + <source>Synchronizes the table of contents with current page</source> + <translation>Synchronizuje obsah s aktuální stranou</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="885"/> + <source><b>Sync with Table of Contents</b><p>Synchronizes the table of contents with current page.</p></source> + <translation><b>Sync obsah</b><p>Synchronizuje obsah s aktuální stranou.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="892"/> + <source>Table of Contents</source> + <translation>Obsah</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="895"/> + <source>Shows the table of contents window</source> + <translation>Zobrazit okno s obsahem</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="897"/> <source><b>Table of Contents</b><p>Shows the table of contents window.</p></source> <translation><b>Obsah</b><p>Zobrazit okno s obsahem.</p></translation> </message> <message> + <location filename="Helpviewer/HelpWindow.py" line="928"/> + <source>Manage QtHelp Documents</source> + <translation>Uspořádat dokumenty QtNápovědy</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="931"/> + <source>Shows a dialog to manage the QtHelp documentation set</source> + <translation>Zobrazit dialog pro uspořádání QtNápovědy</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="933"/> + <source><b>Manage QtHelp Documents</b><p>Shows a dialog to manage the QtHelp documentation set.</p></source> + <translation><b>Uspořádat dokumenty QtNápovědy</b><p>Zobrazit dialog pro uspořádání QtNápovědy.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1170"/> + <source>&Window</source> + <translation>O&kno</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1263"/> + <source>Filter</source> + <translation>Filtr</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1268"/> + <source>Filtered by: </source> + <translation>Filtrováno: </translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="2415"/> + <source>Could not find an associated content.</source> + <translation>Asociovaný obsah nelze nalézt.</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="941"/> + <source>Manage QtHelp Filters</source> + <translation>Uspořádat filtry QtNápovědy</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="944"/> + <source>Shows a dialog to manage the QtHelp filters</source> + <translation>Zobrazit dialog pro uspořádání filtrů QtNápovědy</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="946"/> + <source><b>Manage QtHelp Filters</b><p>Shows a dialog to manage the QtHelp filters.</p></source> + <translation><b>Uspořádat filtry QtNápovědy</b><p>Zobrazit dialog pro uspořádání filtrů QtNápovědy.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="904"/> + <source>Index</source> + <translation>Index</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="907"/> + <source>Shows the index window</source> + <translation>Zobrazit index okna</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="909"/> + <source><b>Index</b><p>Shows the index window.</p></source> + <translation><b>Index</b><p>Zobrazit index okna.</p></translation> + </message> + <message> <location filename="Helpviewer/HelpWindow.py" line="916"/> - <source>Manage QtHelp Documents</source> - <translation>Uspořádat dokumenty QtNápovědy</translation> + <source>Search</source> + <translation>Hledat</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="919"/> - <source>Shows a dialog to manage the QtHelp documentation set</source> - <translation>Zobrazit dialog pro uspořádání QtNápovědy</translation> + <source>Shows the search window</source> + <translation>Zobrazit okno hledání</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="921"/> - <source><b>Manage QtHelp Documents</b><p>Shows a dialog to manage the QtHelp documentation set.</p></source> - <translation><b>Uspořádat dokumenty QtNápovědy</b><p>Zobrazit dialog pro uspořádání QtNápovědy.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1157"/> - <source>&Window</source> - <translation>O&kno</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1247"/> - <source>Filter</source> - <translation>Filtr</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1252"/> - <source>Filtered by: </source> - <translation>Filtrováno: </translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="2352"/> - <source>Could not find an associated content.</source> - <translation>Asociovaný obsah nelze nalézt.</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="929"/> - <source>Manage QtHelp Filters</source> - <translation>Uspořádat filtry QtNápovědy</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="932"/> - <source>Shows a dialog to manage the QtHelp filters</source> - <translation>Zobrazit dialog pro uspořádání filtrů QtNápovědy</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="934"/> - <source><b>Manage QtHelp Filters</b><p>Shows a dialog to manage the QtHelp filters.</p></source> - <translation><b>Uspořádat filtry QtNápovědy</b><p>Zobrazit dialog pro uspořádání filtrů QtNápovědy.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="892"/> - <source>Index</source> - <translation>Index</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="895"/> - <source>Shows the index window</source> - <translation>Zobrazit index okna</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="897"/> - <source><b>Index</b><p>Shows the index window.</p></source> - <translation><b>Index</b><p>Zobrazit index okna.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="904"/> - <source>Search</source> - <translation>Hledat</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="907"/> - <source>Shows the search window</source> - <translation>Zobrazit okno hledání</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="909"/> <source><b>Search</b><p>Shows the search window.</p></source> <translation><b>Hledání</b><p>Zobrazit okno hledání.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="942"/> + <location filename="Helpviewer/HelpWindow.py" line="954"/> <source>Reindex Documentation</source> <translation>Znovu indexovat dokumentaci</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="945"/> + <location filename="Helpviewer/HelpWindow.py" line="957"/> <source>Reindexes the documentation set</source> <translation>Přeindexuje dokumentaci</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="947"/> + <location filename="Helpviewer/HelpWindow.py" line="959"/> <source><b>Reindex Documentation</b><p>Reindexes the documentation set.</p></source> <translation><b>Znovu indexovat dokumentaci</b><p>Přeindexuje dokumentaci.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2468"/> + <location filename="Helpviewer/HelpWindow.py" line="2531"/> <source>Updating search index</source> <translation>Aktualizovat index pro hledání</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2522"/> + <location filename="Helpviewer/HelpWindow.py" line="2585"/> <source>Looking for Documentation...</source> <translation>Vyhledat dokumentaci...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2552"/> + <location filename="Helpviewer/HelpWindow.py" line="2615"/> <source>Unfiltered</source> <translation>Nefiltrováno</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2571"/> + <location filename="Helpviewer/HelpWindow.py" line="2634"/> <source>Help Engine</source> <translation>Engine nápovědy</translation> </message> @@ -13740,218 +13740,218 @@ <translation>Zobrazit menu navigace</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="476"/> + <location filename="Helpviewer/HelpWindow.py" line="488"/> <source>Private Browsing</source> <translation>Mód soukromí</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="472"/> + <location filename="Helpviewer/HelpWindow.py" line="484"/> <source>Private &Browsing</source> <translation>Mód &soukromí</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="477"/> + <location filename="Helpviewer/HelpWindow.py" line="489"/> <source><b>Private Browsing</b><p>Enables private browsing. In this mode no history is recorded anymore.</p></source> <translation><b>Mód soukromí</b><p>Zapne mód soukromí. V tomto módu není zaznamenávána historie stran.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2224"/> + <location filename="Helpviewer/HelpWindow.py" line="2287"/> <source>Loading...</source> <translation>Načítám...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2239"/> + <location filename="Helpviewer/HelpWindow.py" line="2302"/> <source>Finished loading</source> <translation>Načteno</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="796"/> + <location filename="Helpviewer/HelpWindow.py" line="808"/> <source>Full Screen</source> <translation>Celá obrazovka</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="796"/> + <location filename="Helpviewer/HelpWindow.py" line="808"/> <source>&Full Screen</source> <translation>&Celá obrazovka</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="796"/> + <location filename="Helpviewer/HelpWindow.py" line="808"/> <source>F11</source> <translation></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="916"/> + <location filename="Helpviewer/HelpWindow.py" line="928"/> <source>Manage QtHelp &Documents</source> <translation>Uspořádat QtHelp &dokumenty</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="929"/> + <location filename="Helpviewer/HelpWindow.py" line="941"/> <source>Manage QtHelp &Filters</source> <translation>Uspořádat QtHelp &filtry</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="942"/> + <location filename="Helpviewer/HelpWindow.py" line="954"/> <source>&Reindex Documentation</source> <translation>Přeinde&xovat dokumentaci</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="960"/> + <location filename="Helpviewer/HelpWindow.py" line="972"/> <source>Clear private data</source> <translation>Smazat soukromá data</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="956"/> + <location filename="Helpviewer/HelpWindow.py" line="968"/> <source>&Clear private data</source> <translation>Smazat &soukromá data</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="961"/> + <location filename="Helpviewer/HelpWindow.py" line="973"/> <source><b>Clear private data</b><p>Clears the private data like browsing history, search history or the favicons database.</p></source> <translation><b>Smazat soukromá data</b><p>Smaže soukromá data jako je historie prohlížení, vyhledávání a databáze favicon.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="970"/> + <location filename="Helpviewer/HelpWindow.py" line="982"/> <source>Clear &icons database</source> <translation>Smazat databázi &ikon</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1024"/> + <location filename="Helpviewer/HelpWindow.py" line="1036"/> <source>Show Network Monitor</source> <translation>Zobrazit monitor sítě</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1024"/> + <location filename="Helpviewer/HelpWindow.py" line="1036"/> <source>Show &Network Monitor</source> <translation>Zobrazit mo&nitor sítě</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1028"/> + <location filename="Helpviewer/HelpWindow.py" line="1040"/> <source>Show the network monitor dialog</source> <translation>Zobrazit dialog monitoru sítě</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1029"/> + <location filename="Helpviewer/HelpWindow.py" line="1041"/> <source><b>Show Network Monitor</b><p>Shows the network monitor dialog.</p></source> <translation><b>Zobrazit monitor sítě</b><p>Zobrazit dialog monitoru sítě.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1134"/> + <location filename="Helpviewer/HelpWindow.py" line="1147"/> <source>&Settings</source> <translation>Na&stavení</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1153"/> + <location filename="Helpviewer/HelpWindow.py" line="1166"/> <source>&Tools</source> <translation>&Nástroje</translation> </message> <message> + <location filename="Helpviewer/HelpWindow.py" line="795"/> + <source>Show page source</source> + <translation>Zobrazit zdroj strany</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="795"/> + <source>Ctrl+U</source> + <translation></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="799"/> + <source>Show the page source in an editor</source> + <translation>Zobrazit zdroj strany v editoru</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="800"/> + <source><b>Show page source</b><p>Show the page source in an editor.</p></source> + <translation><b>Zobrazit zdroj strany</b><p>Zobrazit zdroj strany v editoru.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="853"/> + <source>&Languages...</source> + <translation>&Jazyky...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="856"/> + <source>Configure the accepted languages for web pages</source> + <translation>Nastavit polovené jazyky pro web strany</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="858"/> + <source><b>Languages</b><p>Configure the accepted languages for web pages.</p></source> + <translation><b>Jazyky</b><p>Nastavit polovené jazyky pro web strany.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="853"/> + <source>Languages</source> + <translation>Jazyky</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="866"/> + <source>Cookies</source> + <translation></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="866"/> + <source>C&ookies...</source> + <translation>C&ookies...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="869"/> + <source>Configure cookies handling</source> + <translation>Nastavit ovládání cookies</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="871"/> + <source><b>Cookies</b><p>Configure cookies handling.</p></source> + <translation><b>Cookies</b><p>Nastavit ovládání cookies.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1276"/> + <source>Settings</source> + <translation>Nastavení</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="764"/> + <source>Zoom reset</source> + <translation>Resetovat lupu</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="764"/> + <source>Zoom &reset</source> + <translation>&Resetovat lupu</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="764"/> + <source>Ctrl+0</source> + <comment>View|Zoom reset</comment> + <translation></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="769"/> + <source>Reset the zoom of the text</source> + <translation>Resetovat lupu textu</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="779"/> + <source>Zoom text only</source> + <translation>Jen lupa textu</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="779"/> + <source>Zoom &text only</source> + <translation>Jen lupa &textu</translation> + </message> + <message> <location filename="Helpviewer/HelpWindow.py" line="783"/> - <source>Show page source</source> - <translation>Zobrazit zdroj strany</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="783"/> - <source>Ctrl+U</source> - <translation></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="787"/> - <source>Show the page source in an editor</source> - <translation>Zobrazit zdroj strany v editoru</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="788"/> - <source><b>Show page source</b><p>Show the page source in an editor.</p></source> - <translation><b>Zobrazit zdroj strany</b><p>Zobrazit zdroj strany v editoru.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="841"/> - <source>&Languages...</source> - <translation>&Jazyky...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="844"/> - <source>Configure the accepted languages for web pages</source> - <translation>Nastavit polovené jazyky pro web strany</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="846"/> - <source><b>Languages</b><p>Configure the accepted languages for web pages.</p></source> - <translation><b>Jazyky</b><p>Nastavit polovené jazyky pro web strany.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="841"/> - <source>Languages</source> - <translation>Jazyky</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="854"/> - <source>Cookies</source> - <translation></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="854"/> - <source>C&ookies...</source> - <translation>C&ookies...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="857"/> - <source>Configure cookies handling</source> - <translation>Nastavit ovládání cookies</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="859"/> - <source><b>Cookies</b><p>Configure cookies handling.</p></source> - <translation><b>Cookies</b><p>Nastavit ovládání cookies.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1260"/> - <source>Settings</source> - <translation>Nastavení</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="752"/> - <source>Zoom reset</source> - <translation>Resetovat lupu</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="752"/> - <source>Zoom &reset</source> - <translation>&Resetovat lupu</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="752"/> - <source>Ctrl+0</source> - <comment>View|Zoom reset</comment> - <translation></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="757"/> - <source>Reset the zoom of the text</source> - <translation>Resetovat lupu textu</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="767"/> - <source>Zoom text only</source> - <translation>Jen lupa textu</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="767"/> - <source>Zoom &text only</source> - <translation>Jen lupa &textu</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="771"/> <source>Zoom text only; pictures remain constant</source> <translation>Jen lupa textu; obrázky zůstávají beze změn</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="773"/> + <location filename="Helpviewer/HelpWindow.py" line="785"/> <source><b>Zoom text only</b><p>Zoom text only; pictures remain constant.</p></source> <translation><b>Jen lupa textu</b><p>Jen lupa textu; Obrázky zůstávají beze změn.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="758"/> + <location filename="Helpviewer/HelpWindow.py" line="770"/> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation><b>Reset lupy</b><p>Reset lupy pro text. Nastaví se lupa na hodnotu 100%.</p></translation> </message> @@ -14001,142 +14001,142 @@ <translation><b>Export záložek</b><p>Export záložek do souboru.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="631"/> + <location filename="Helpviewer/HelpWindow.py" line="643"/> <source>Manage Bookmarks</source> <translation>Správa záložek</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="631"/> + <location filename="Helpviewer/HelpWindow.py" line="643"/> <source>&Manage Bookmarks...</source> <translation>&Správa záložek...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="631"/> + <location filename="Helpviewer/HelpWindow.py" line="643"/> <source>Ctrl+Shift+B</source> <comment>Help|Manage bookmarks</comment> <translation></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="635"/> + <location filename="Helpviewer/HelpWindow.py" line="647"/> <source>Open a dialog to manage the bookmarks.</source> <translation>Otevřít dialog pro správu záložek.</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="637"/> + <location filename="Helpviewer/HelpWindow.py" line="649"/> <source><b>Manage Bookmarks...</b><p>Open a dialog to manage the bookmarks.</p></source> <translation><b>Správa záložek</b><p>Otevřít dialog pro správu záložek.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="645"/> + <location filename="Helpviewer/HelpWindow.py" line="657"/> <source>Add &Bookmark...</source> <translation>Přid&at záložku...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="645"/> + <location filename="Helpviewer/HelpWindow.py" line="657"/> <source>Ctrl+D</source> <comment>Help|Add bookmark</comment> <translation></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="651"/> + <location filename="Helpviewer/HelpWindow.py" line="663"/> <source>Open a dialog to add a bookmark.</source> <translation>Otevřít dialog pro přidání záložky.</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="652"/> - <source><b>Add Bookmark</b><p>Open a dialog to add the current URL as a bookmark.</p></source> - <translation><b>Přidat záložku</b><p>Otevřít dialog pro přidání aktuální URL jako záložky.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="659"/> - <source>Add Folder</source> - <translation>Přidat složku</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="659"/> - <source>Add &Folder...</source> - <translation>Přidat s&ložku...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="662"/> - <source>Open a dialog to add a new bookmarks folder.</source> - <translation>Otevřít dialog pro přidání nové složky záložek.</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="664"/> + <source><b>Add Bookmark</b><p>Open a dialog to add the current URL as a bookmark.</p></source> + <translation><b>Přidat záložku</b><p>Otevřít dialog pro přidání aktuální URL jako záložky.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="671"/> + <source>Add Folder</source> + <translation>Přidat složku</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="671"/> + <source>Add &Folder...</source> + <translation>Přidat s&ložku...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="674"/> + <source>Open a dialog to add a new bookmarks folder.</source> + <translation>Otevřít dialog pro přidání nové složky záložek.</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="676"/> <source><b>Add Folder...</b><p>Open a dialog to add a new bookmarks folder.</p></source> <translation><b>Přidat složku...</b><p>Otevřít dialog pro přidání nové složky záložek.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="672"/> + <location filename="Helpviewer/HelpWindow.py" line="684"/> <source>Bookmark All Tabs</source> <translation>Vytvořit záložky pro všechny taby</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="672"/> + <location filename="Helpviewer/HelpWindow.py" line="684"/> <source>Bookmark All Tabs...</source> <translation>Vytvořit záložky pro všechny taby...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="675"/> + <location filename="Helpviewer/HelpWindow.py" line="687"/> <source>Bookmark all open tabs.</source> <translation>Vytvořit záložky pro všechny otevřené taby.</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="677"/> + <location filename="Helpviewer/HelpWindow.py" line="689"/> <source><b>Bookmark All Tabs...</b><p>Open a dialog to add a new bookmarks folder for all open tabs.</p></source> <translation><b>Vytvořit záložky pro všechny taby...</b><p>Otevřít dialog pro přidání nové složky záložek pro všechny otevřené taby.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1753"/> + <location filename="Helpviewer/HelpWindow.py" line="1808"/> <source>Saved Tabs</source> <translation>Uložkt taby</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1195"/> + <location filename="Helpviewer/HelpWindow.py" line="1208"/> <source>Close Others</source> <translation>Zavřít ostatní</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>F5</source> <comment>Go|Reload</comment> <translation></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>Stop</source> <translation>Zastavit</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>&Stop</source> <translation>Za&stavit</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>Ctrl+.</source> <comment>Go|Stop</comment> <translation>Ctrl+.</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>Esc</source> <comment>Go|Stop</comment> <translation></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="567"/> + <location filename="Helpviewer/HelpWindow.py" line="579"/> <source>Stop loading</source> <translation>Zastavit načítání</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="568"/> + <location filename="Helpviewer/HelpWindow.py" line="580"/> <source><b>Stop</b><p>Stops loading of the current tab.</p></source> <translation><b>Zastavit</b><p>Zastavit načítání aktuálního tabu.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1188"/> + <location filename="Helpviewer/HelpWindow.py" line="1201"/> <source>Duplicate Page</source> <translation>Duplikovat stranu</translation> </message> @@ -14172,100 +14172,115 @@ <translation type="obsolete">eric4 web prohlížeč</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1679"/> + <location filename="Helpviewer/HelpWindow.py" line="1734"/> <source>Eric Web Browser</source> <translation>Eric web prohlížeč</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1670"/> + <location filename="Helpviewer/HelpWindow.py" line="1725"/> <source><h3>About Eric Web Browser</h3><p>The Eric Web Browser is a combined help file and HTML browser.</p></source> <translation><h3>O Eric web prohlížeči</h3><p>Eric web prohlížeč je kombinace souboru nápovědy a HTML prohlížeče.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="492"/> + <location filename="Helpviewer/HelpWindow.py" line="504"/> <source>Quit the web browser</source> <translation>Ukončit web prohlížeč</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="493"/> + <location filename="Helpviewer/HelpWindow.py" line="505"/> <source><b>Quit</b><p>Quit the web browser.</p></source> <translation><b>Ukončit</b><p>Ukončit web prohlížeč.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="982"/> + <location filename="Helpviewer/HelpWindow.py" line="994"/> <source>Configure Search Engines</source> <translation>Konfigurovat vyhledávací enginy</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="982"/> + <location filename="Helpviewer/HelpWindow.py" line="994"/> <source>Configure &Search Engines...</source> <translation>Konfigurovat vyhledávací &enginy...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="986"/> + <location filename="Helpviewer/HelpWindow.py" line="998"/> <source>Configure the available search engines</source> <translation>Konfigurovat dostupné vyhledávací enginy</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="988"/> - <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> - <translation><b>Konfigurivat vyhledávací enginy...</b><p>Otevře dialog pro konfiguraci dostupných vyhledávacích enginů.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="996"/> - <source>Manage Saved Passwords</source> - <translation>Spravovat uložená hesla</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="996"/> - <source>Manage Saved Passwords...</source> - <translation>Spravovat uložená hesla...</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="1000"/> + <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> + <translation><b>Konfigurivat vyhledávací enginy...</b><p>Otevře dialog pro konfiguraci dostupných vyhledávacích enginů.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1008"/> + <source>Manage Saved Passwords</source> + <translation>Spravovat uložená hesla</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1008"/> + <source>Manage Saved Passwords...</source> + <translation>Spravovat uložená hesla...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1012"/> <source>Manage the saved passwords</source> <translation>Spravovat vaše uložená hesla</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1002"/> - <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> - <translation><b>Spravovat uložená hesla...</b><p>Otevře dialog pro spravování uložených hesel.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1976"/> - <source><b>Are you sure you want to turn on private browsing?</b><p>When private browsing is turned on, web pages are not added to the history, searches are not added to the list of recent searches and web site icons and cookies are not stored. Until you close the window, you can still click the Back and Forward buttons to return to the web pages you have opened.</p></source> - <translation><b>Jste si jistí, že chcte zapnout soukromé prohlížení?</b><p>Když je soukromé prohlížení zapnuto, web strany se nepřidávají do historie, vyhledávání se nepřidává do seznamu posledních hledání a ikony webů a cookies nejsou ukládány. Dokud nezavřete okno, jsou tlačítka Zpět a Vpřed stále funkční pro strany, které jste před tím otevřeli.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1010"/> - <source>Ad Block</source> - <translation></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1010"/> - <source>&Ad Block...</source> - <translation>&Ad Block...</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="1014"/> + <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> + <translation><b>Spravovat uložená hesla...</b><p>Otevře dialog pro spravování uložených hesel.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="2031"/> + <source><b>Are you sure you want to turn on private browsing?</b><p>When private browsing is turned on, web pages are not added to the history, searches are not added to the list of recent searches and web site icons and cookies are not stored. Until you close the window, you can still click the Back and Forward buttons to return to the web pages you have opened.</p></source> + <translation><b>Jste si jistí, že chcte zapnout soukromé prohlížení?</b><p>Když je soukromé prohlížení zapnuto, web strany se nepřidávají do historie, vyhledávání se nepřidává do seznamu posledních hledání a ikony webů a cookies nejsou ukládány. Dokud nezavřete okno, jsou tlačítka Zpět a Vpřed stále funkční pro strany, které jste před tím otevřeli.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1022"/> + <source>Ad Block</source> + <translation></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1022"/> + <source>&Ad Block...</source> + <translation>&Ad Block...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1026"/> <source>Configure AdBlock subscriptions and rules</source> <translation>Konfigurovat AdBlock odebírání a pravidla</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1016"/> + <location filename="Helpviewer/HelpWindow.py" line="1028"/> <source><b>Ad Block...</b><p>Opens a dialog to configure AdBlock subscriptions and rules.</p></source> <translation><b>Ad Block...</b><p>Otevře dialog pro konfiguraci AdBlock odebírání a pravidel.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2531"/> + <location filename="Helpviewer/HelpWindow.py" line="2594"/> <source>eric5 Web Browser</source> <translation type="unfinished">eric4 web prohlížeč {5 ?}</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2241"/> + <location filename="Helpviewer/HelpWindow.py" line="2304"/> <source>Failed to load</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1216"/> + <source>Print as PDF</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="438"/> + <source>Print the displayed help as PDF</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="439"/> + <source><b>Print as PDF</b><p>Print the displayed help text as a PDF file.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Hg</name>
--- a/i18n/eric5_de.ts Sun May 30 18:28:06 2010 +0200 +++ b/i18n/eric5_de.ts Sun May 30 18:53:41 2010 +0200 @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<!DOCTYPE TS><TS version="1.1" language="de"> +<!DOCTYPE TS> +<TS version="2.0" language="de"> <context> <name>AboutDialog</name> <message> @@ -1549,8 +1550,8 @@ </message> <message> <location filename="Helpviewer/Bookmarks/BookmarksMenu.py" line="140"/> - <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="146"/> @@ -1600,7 +1601,7 @@ </message> <message> <location filename="Helpviewer/Bookmarks/BookmarksToolBar.py" line="72"/> - <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> </context> @@ -10937,25 +10938,25 @@ <context> <name>FtpReply</name> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="319"/> + <location filename="Helpviewer/Network/FtpReply.py" line="332"/> <source> <p><a class="link_parent" href="{0}">Change to parent directory</a></p></source> <translation> <p><a class="link_parent" href="{0}">In den übergeordneten Ordner wechseln</a></p></translation> </message> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="332"/> + <location filename="Helpviewer/Network/FtpReply.py" line="345"/> <source> <tr><th align="left">Name</th><th>Size</th><th align="left">Last modified</th></tr> </source> <translation> <tr><th align="left">Name</th><th>Größe</th><th align="left">Zuletzt verändert</th></tr> </translation> </message> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="358"/> + <location filename="Helpviewer/Network/FtpReply.py" line="371"/> <source>{0} {1}</source> <comment>size unit</comment> <translation>{0} {1}</translation> </message> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="382"/> + <location filename="Helpviewer/Network/FtpReply.py" line="395"/> <source>Listing of {0}</source> <translation>Index von {0}</translation> </message> @@ -11120,7 +11121,7 @@ </message> <message> <location filename="Helpviewer/HelpBrowserWV.py" line="627"/> - <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> @@ -11139,27 +11140,27 @@ <translation>Web Inspektor...</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="947"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="946"/> <source>Error loading page: {0}</source> <translation>Fehler beim Laden von: {0}</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>When connecting to: {0}.</source> <translation>Beim Verbinden zu: {0}.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>Check the address for errors such as <b>ww</b>.example.org instead of <b>www</b>.example.org</source> <translation>Überprüfen Sie die Adresse auf Fehler wie <b>ww</b>.example.org statt <b>www</b>.example.org</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>If the address is correct, try checking the network connection.</source> <translation>Falls die Adresse stimmt, versuchen Sie, die Netzwerkverbindung zu überprüfen.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source> <translation>Wenn Ihr Computer oder Ihr Netzwerk durch eine Firewall oder einen Proxy geschützt ist, stellen Sie sicher, dass der Browser auf das Netzwerk zugreifen darf.</translation> </message> @@ -11933,7 +11934,7 @@ <context> <name>HelpWindow</name> <message> - <location filename="Helpviewer/HelpWindow.py" line="1559"/> + <location filename="Helpviewer/HelpWindow.py" line="1575"/> <source>Open File</source> <translation>Datei öffnen</translation> </message> @@ -11968,207 +11969,207 @@ <translation><b>Drucken</b><p>Druckt den angezeigten Hilfetext.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="448"/> + <location filename="Helpviewer/HelpWindow.py" line="460"/> <source>&Close</source> <translation>Schl&ießen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="453"/> + <location filename="Helpviewer/HelpWindow.py" line="465"/> <source>Close the current help window</source> <translation>Schließt das aktuelle Fenster</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>&Backward</source> <translation>&Zurück</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="511"/> + <location filename="Helpviewer/HelpWindow.py" line="523"/> <source><b>Backward</b><p>Moves one help screen backward. If none is available, this action is disabled.</p></source> <translation><b>Zurück</b><p>Bewegt die Hilfeanzeige rückwärts. Falls keine Anzeige möglich ist, ist diese Aktion inaktiv.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>&Forward</source> <translation>&Vorwärts</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="525"/> + <location filename="Helpviewer/HelpWindow.py" line="537"/> <source>Move one help screen forward</source> <translation>Eine Hilfeseite vorwärts</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="526"/> + <location filename="Helpviewer/HelpWindow.py" line="538"/> <source><b>Forward</b><p>Moves one help screen forward. If none is available, this action is disabled.</p></source> <translation><b>Vorwärts</b><p>Bewegt die Hilfeanzeige vorwärts. Falls keine Anzeige möglich ist, ist diese Aktion inaktiv.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="534"/> + <location filename="Helpviewer/HelpWindow.py" line="546"/> <source>&Home</source> <translation>&Anfang</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="539"/> + <location filename="Helpviewer/HelpWindow.py" line="551"/> <source>Move to the initial help screen</source> <translation>Zur ersten Hilfeseite</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="540"/> + <location filename="Helpviewer/HelpWindow.py" line="552"/> <source><b>Home</b><p>Moves to the initial help screen.</p></source> <translation><b>Anfang</b><p>Zeigt die erste Hilfeseite an.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="691"/> - <source>Context sensitive help</source> - <translation>Kontextsensitive Hilfe</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="692"/> - <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> - <translation><b>Zeige kontextsensitive Hilfe an<b></p>Im "Was ist das?" Mode (der Mauszeiger stellt einen Pfeil mit Fragezeichen dar) wird auf einen Mausklick eine kurze Hilfebeschreibung zu dem ausgewählten MMI-Element angezeigt. In Dialogen kann diese Funktionalität durch den entsprechenden Knopf im Fensterkopf erreicht werden.</p></translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="703"/> + <source>Context sensitive help</source> + <translation>Kontextsensitive Hilfe</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="704"/> + <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> + <translation><b>Zeige kontextsensitive Hilfe an<b></p>Im "Was ist das?" Mode (der Mauszeiger stellt einen Pfeil mit Fragezeichen dar) wird auf einen Mausklick eine kurze Hilfebeschreibung zu dem ausgewählten MMI-Element angezeigt. In Dialogen kann diese Funktionalität durch den entsprechenden Knopf im Fensterkopf erreicht werden.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="715"/> <source>&About</source> <translation>&Über</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="706"/> + <location filename="Helpviewer/HelpWindow.py" line="718"/> <source>Display information about this software</source> <translation>Zeigt Informationen zu diesem Programm an</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="714"/> + <location filename="Helpviewer/HelpWindow.py" line="726"/> <source>About &Qt</source> <translation>Über &Qt</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="717"/> + <location filename="Helpviewer/HelpWindow.py" line="729"/> <source>Display information about the Qt toolkit</source> <translation>Zeige Informationen über das Qt Toolkit an</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1057"/> + <location filename="Helpviewer/HelpWindow.py" line="1069"/> <source>&File</source> <translation>&Datei</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1098"/> + <location filename="Helpviewer/HelpWindow.py" line="1111"/> <source>&Go</source> <translation>&Gehe zu</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1120"/> + <location filename="Helpviewer/HelpWindow.py" line="1133"/> <source>&Bookmarks</source> <translation>&Lesezeichen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1165"/> + <location filename="Helpviewer/HelpWindow.py" line="1178"/> <source>&Help</source> <translation>&Hilfe</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1294"/> + <location filename="Helpviewer/HelpWindow.py" line="1310"/> <source><p>Enter the help file to be displayed directly into this edit field. Select a previously shown help file from the drop down list.</p></source> <translation><p>Gib die anzuzeigende Hilfedatei in das Eingabefeld ein. Wähle eine bereits angezeigte Datei über die Auswahlliste aus.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="510"/> + <location filename="Helpviewer/HelpWindow.py" line="522"/> <source>Move one help screen backward</source> <translation>Eine Hilfeseite zurück</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="707"/> - <source><b>About</b><p>Display some information about this software.</p></source> - <translation><b>Über</b><p>Zeigt einige Informationen über dieses Programm an.</p></translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="719"/> - <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> - <translation><b>Über Qt</b><p>Zeige informationen über das Qt Toolkit an.</p></translation> + <source><b>About</b><p>Display some information about this software.</p></source> + <translation><b>Über</b><p>Zeigt einige Informationen über dieses Programm an.</p></translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="731"/> + <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> + <translation><b>Über Qt</b><p>Zeige informationen über das Qt Toolkit an.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="743"/> <source>Zoom in on the text</source> <translation>Text vergrößern</translation> </message> <message> + <location filename="Helpviewer/HelpWindow.py" line="756"/> + <source>Zoom out on the text</source> + <translation>Text verkleinern</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="587"/> + <source>&Copy</source> + <translation>&Kopieren</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="592"/> + <source>Copy the selected text</source> + <translation>Kopiert den ausgewählten Text</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="593"/> + <source><b>Copy</b><p>Copy the selected text to the clipboard.</p></source> + <translation><b>Kopieren</b><p>Kopiert den ausgewählten Text in die Zwischenablage.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1092"/> + <source>&Edit</source> + <translation>&Bearbeiten</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1100"/> + <source>&View</source> + <translation>&Ansicht</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="499"/> + <source>&Quit</source> + <translation>B&eenden</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="698"/> + <source>&What's This?</source> + <translation>&Was ist das?</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="738"/> + <source>Zoom &in</source> + <translation>Ver&größern</translation> + </message> + <message> <location filename="Helpviewer/HelpWindow.py" line="744"/> - <source>Zoom out on the text</source> - <translation>Text verkleinern</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="575"/> - <source>&Copy</source> - <translation>&Kopieren</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="580"/> - <source>Copy the selected text</source> - <translation>Kopiert den ausgewählten Text</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="581"/> - <source><b>Copy</b><p>Copy the selected text to the clipboard.</p></source> - <translation><b>Kopieren</b><p>Kopiert den ausgewählten Text in die Zwischenablage.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1079"/> - <source>&Edit</source> - <translation>&Bearbeiten</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1087"/> - <source>&View</source> - <translation>&Ansicht</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="487"/> - <source>&Quit</source> - <translation>B&eenden</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="686"/> - <source>&What's This?</source> - <translation>&Was ist das?</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="726"/> - <source>Zoom &in</source> - <translation>Ver&größern</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="732"/> <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> <translation><b>Vergrößern</b><p>Den angezeigten Text vergrößern.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="739"/> + <location filename="Helpviewer/HelpWindow.py" line="751"/> <source>Zoom &out</source> <translation>Ver&kleinern</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="745"/> + <location filename="Helpviewer/HelpWindow.py" line="757"/> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation><b>Verkleinern</b><p>Den angezeigten Text verkleinern.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1111"/> + <location filename="Helpviewer/HelpWindow.py" line="1124"/> <source>H&istory</source> <translation>H&istory</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>&Reload</source> <translation>E&rneut laden</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="553"/> + <location filename="Helpviewer/HelpWindow.py" line="565"/> <source>Reload the current help screen</source> <translation>Die aktuelle Hilfeseite ernaut laden</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="554"/> + <location filename="Helpviewer/HelpWindow.py" line="566"/> <source><b>Reload</b><p>Reloads the current help screen.</p></source> <translation><b>Erneut laden</b><p>Lädt die aktuelle Hilfeseite erneut.</p></translation> </message> @@ -12191,80 +12192,80 @@ <translation>Ctrl+P</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="448"/> + <location filename="Helpviewer/HelpWindow.py" line="460"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation>Ctrl+W</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="487"/> + <location filename="Helpviewer/HelpWindow.py" line="499"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="588"/> + <location filename="Helpviewer/HelpWindow.py" line="600"/> <source>&Find...</source> <translation>&Suchen...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="593"/> + <location filename="Helpviewer/HelpWindow.py" line="605"/> <source>Find text in page</source> <translation>Text in Seite suchen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="594"/> + <location filename="Helpviewer/HelpWindow.py" line="606"/> <source><b>Find</b><p>Find text in the current page.</p></source> <translation><b>Suchen</b><p>Text in der angezeigten Seite suchen.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="601"/> + <location filename="Helpviewer/HelpWindow.py" line="613"/> <source>Find &next</source> <translation>&Weitersuchen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="615"/> + <location filename="Helpviewer/HelpWindow.py" line="627"/> <source>Find &previous</source> <translation>&Rückwärtssuchen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="575"/> + <location filename="Helpviewer/HelpWindow.py" line="587"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1210"/> + <location filename="Helpviewer/HelpWindow.py" line="1225"/> <source>File</source> <translation>Datei</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1226"/> + <location filename="Helpviewer/HelpWindow.py" line="1242"/> <source>Edit</source> <translation>Bearbeiten</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1231"/> + <location filename="Helpviewer/HelpWindow.py" line="1247"/> <source>View</source> <translation>Ansicht</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1240"/> + <location filename="Helpviewer/HelpWindow.py" line="1256"/> <source>Find</source> <translation>Suchen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1267"/> + <location filename="Helpviewer/HelpWindow.py" line="1283"/> <source>Help</source> <translation>Hilfe</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1274"/> + <location filename="Helpviewer/HelpWindow.py" line="1290"/> <source>Go</source> <translation>Gehe zu</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1559"/> + <location filename="Helpviewer/HelpWindow.py" line="1575"/> <source>Help Files (*.html *.htm);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source> <translation>Hilfedateien (*.html *.htm);;PDF Dateien (*.pdf);;CHM Dateien (*.chm);;Alle Dateien (*)</translation> </message> @@ -12290,42 +12291,42 @@ <translation><b>Neues Fenster</b><p>Dies öffnet ein neues Hilfeanzeiger Fenster.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="454"/> + <location filename="Helpviewer/HelpWindow.py" line="466"/> <source><b>Close</b><p>Closes the current help window.</p></source> <translation><b>Schließen</b><p>Schließt das aktuelle Hilfefenster.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="461"/> + <location filename="Helpviewer/HelpWindow.py" line="473"/> <source>Close &All</source> <translation>Alle &schließen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="465"/> + <location filename="Helpviewer/HelpWindow.py" line="477"/> <source><b>Close All</b><p>Closes all help windows except the first one.</p></source> <translation><b>Alle schließen</b><p>Schließt alle Hilfefenster mit Ausnahme des ersten.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1181"/> + <location filename="Helpviewer/HelpWindow.py" line="1194"/> <source>Move Left</source> <translation>nack links verschieben</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1184"/> + <location filename="Helpviewer/HelpWindow.py" line="1197"/> <source>Move Right</source> <translation>nach rechts verschieben</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1192"/> + <location filename="Helpviewer/HelpWindow.py" line="1205"/> <source>Close</source> <translation>Schließen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1201"/> + <location filename="Helpviewer/HelpWindow.py" line="1214"/> <source>Print</source> <translation>Drucken</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2032"/> + <location filename="Helpviewer/HelpWindow.py" line="2087"/> <source>...</source> <translation>...</translation> </message> @@ -12376,259 +12377,259 @@ <translation>Datei in neuem Register öffnen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="461"/> + <location filename="Helpviewer/HelpWindow.py" line="473"/> <source>Close All</source> <translation>Alle schließen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="487"/> + <location filename="Helpviewer/HelpWindow.py" line="499"/> <source>Quit</source> <translation>Beenden</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>Backward</source> <translation>Zurück</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>Alt+Left</source> <comment>Go|Backward</comment> <translation>Alt+Left</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>Backspace</source> <comment>Go|Backward</comment> <translation>Backspace</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>Forward</source> <translation>Vorwärts</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>Alt+Right</source> <comment>Go|Forward</comment> <translation>Alt+Right</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>Shift+Backspace</source> <comment>Go|Forward</comment> <translation>Shift+Backspace</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="534"/> + <location filename="Helpviewer/HelpWindow.py" line="546"/> <source>Home</source> <translation>Home</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="534"/> + <location filename="Helpviewer/HelpWindow.py" line="546"/> <source>Ctrl+Home</source> <comment>Go|Home</comment> <translation>Ctrl+Home</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>Reload</source> <translation>Erneut laden</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>Ctrl+R</source> <comment>Go|Reload</comment> <translation>Ctrl+R</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="575"/> + <location filename="Helpviewer/HelpWindow.py" line="587"/> <source>Copy</source> <translation>Kopieren</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="588"/> + <location filename="Helpviewer/HelpWindow.py" line="600"/> <source>Find...</source> <translation>Suchen...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="588"/> + <location filename="Helpviewer/HelpWindow.py" line="600"/> <source>Ctrl+F</source> <comment>Edit|Find</comment> <translation>Ctrl+F</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="601"/> + <location filename="Helpviewer/HelpWindow.py" line="613"/> <source>Find next</source> <translation>Weitersuchen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="601"/> + <location filename="Helpviewer/HelpWindow.py" line="613"/> <source>F3</source> <comment>Edit|Find next</comment> <translation>F3</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="615"/> + <location filename="Helpviewer/HelpWindow.py" line="627"/> <source>Find previous</source> <translation>Rückwärtssuchen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="615"/> + <location filename="Helpviewer/HelpWindow.py" line="627"/> <source>Shift+F3</source> <comment>Edit|Find previous</comment> <translation>Shift+F3</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="645"/> + <location filename="Helpviewer/HelpWindow.py" line="657"/> <source>Add Bookmark</source> <translation>Lesezeichen hinzufügen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="686"/> + <location filename="Helpviewer/HelpWindow.py" line="698"/> <source>What's This?</source> <translation>Was ist das?</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="686"/> + <location filename="Helpviewer/HelpWindow.py" line="698"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation>Shift+F1</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="703"/> + <location filename="Helpviewer/HelpWindow.py" line="715"/> <source>About</source> <translation>Über</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="714"/> - <source>About Qt</source> - <translation>Über Qt</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="726"/> + <source>About Qt</source> + <translation>Über Qt</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="738"/> <source>Zoom in</source> <translation>Vergrößern</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="726"/> + <location filename="Helpviewer/HelpWindow.py" line="738"/> <source>Ctrl++</source> <comment>View|Zoom in</comment> <translation>Ctrl++</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="739"/> + <location filename="Helpviewer/HelpWindow.py" line="751"/> <source>Zoom out</source> <translation>Verkleinern</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="739"/> + <location filename="Helpviewer/HelpWindow.py" line="751"/> <source>Ctrl+-</source> <comment>View|Zoom out</comment> <translation>Ctrl+-</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="606"/> + <location filename="Helpviewer/HelpWindow.py" line="618"/> <source>Find next occurrence of text in page</source> <translation>Das nächste Vorkommen des Textes in der Seite suchen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="607"/> + <location filename="Helpviewer/HelpWindow.py" line="619"/> <source><b>Find next</b><p>Find the next occurrence of text in the current page.</p></source> <translation><b>Weitersuchen</b><p>Suche das nächste Vorkommen des Textes in der aktuellen Seite.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="620"/> + <location filename="Helpviewer/HelpWindow.py" line="632"/> <source>Find previous occurrence of text in page</source> <translation>Das vorherige Vorkommen des Textes in der Seite suchen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="622"/> + <location filename="Helpviewer/HelpWindow.py" line="634"/> <source><b>Find previous</b><p>Find the previous occurrence of text in the current page.</p></source> <translation><b>Rückwärtssuchen</b><p>Suche das vorherige Vorkommen des Textes in der aktuellen Seite.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1199"/> + <location filename="Helpviewer/HelpWindow.py" line="1212"/> <source>Print Preview</source> <translation>Seitenansicht</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="438"/> + <location filename="Helpviewer/HelpWindow.py" line="450"/> <source>Print preview of the displayed help</source> <translation>Seitenansicht der angezeigten Hilfe</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="440"/> + <location filename="Helpviewer/HelpWindow.py" line="452"/> <source><b>Print Preview</b><p>Print preview of the displayed help text.</p></source> <translation><b>Seitenansicht</b><p>Zeigt eine Seitenansicht des angezeigten Hilfetextes.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1660"/> + <location filename="Helpviewer/HelpWindow.py" line="1715"/> <source><p>Printing is not available due to a bug in PyQt4.Please upgrade.</p></source> <translation><p>Drucken ist wegen eine Fehlers in PyQt4 nicht verfügbar. Bitte aktualisieren.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="805"/> + <location filename="Helpviewer/HelpWindow.py" line="817"/> <source>Show next tab</source> <translation>Zeige nächste Seite</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="805"/> + <location filename="Helpviewer/HelpWindow.py" line="817"/> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="813"/> + <location filename="Helpviewer/HelpWindow.py" line="825"/> <source>Show previous tab</source> <translation>Zeige vorherige Seite</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="813"/> + <location filename="Helpviewer/HelpWindow.py" line="825"/> <source>Shift+Ctrl+Alt+Tab</source> <translation>Shift+Ctrl+Alt+Tab</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="821"/> - <source>Switch between tabs</source> - <translation>Zwischen Tabs umschalten</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="821"/> - <source>Ctrl+1</source> - <translation>Ctrl+1</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="970"/> - <source>Clear icons database</source> - <translation>Iconsdatenbank löschen</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="974"/> - <source>Clear the database of favicons</source> - <translation>Löscht die Datenbank mit den Favicons</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="975"/> - <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> - <translation><b>Iconsdatenbank löschen</b><p>Löscht die Datenbank mit den Favicons besuchter URLs.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="829"/> - <source>Preferences</source> - <translation>Optionen</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="829"/> - <source>&Preferences...</source> - <translation>&Optionen...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="832"/> - <source>Set the prefered configuration</source> - <translation>Konfiguriert die Einstellungen</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="833"/> + <source>Switch between tabs</source> + <translation>Zwischen Tabs umschalten</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="833"/> + <source>Ctrl+1</source> + <translation>Ctrl+1</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="982"/> + <source>Clear icons database</source> + <translation>Iconsdatenbank löschen</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="986"/> + <source>Clear the database of favicons</source> + <translation>Löscht die Datenbank mit den Favicons</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="987"/> + <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> + <translation><b>Iconsdatenbank löschen</b><p>Löscht die Datenbank mit den Favicons besuchter URLs.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="841"/> + <source>Preferences</source> + <translation>Optionen</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="841"/> + <source>&Preferences...</source> + <translation>&Optionen...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="844"/> + <source>Set the prefered configuration</source> + <translation>Konfiguriert die Einstellungen</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="845"/> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation><b>Optionen</b><p>Konfiguriert die einstellbaren Parameter der Applikation nach ihren Wünschen.</p></translation> </message> @@ -12638,152 +12639,152 @@ <translation>Inhalt</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="464"/> + <location filename="Helpviewer/HelpWindow.py" line="476"/> <source>Close all help windows</source> <translation>Schließt alle Hilfefenster</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="867"/> + <location filename="Helpviewer/HelpWindow.py" line="879"/> <source>Sync with Table of Contents</source> <translation>Mit Inhalt synchronisieren</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="871"/> - <source>Synchronizes the table of contents with current page</source> - <translation>Synchronisiert das Inhaltsverzeichnis mit der aktuellen Seite</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="873"/> - <source><b>Sync with Table of Contents</b><p>Synchronizes the table of contents with current page.</p></source> - <translation><b>Mit Inhalt synchronisieren</b><p>Synchronisiert das Inhaltsverzeichnis mit der aktuellen Seite.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="880"/> - <source>Table of Contents</source> - <translation>Inhaltsverzeichnis</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="883"/> - <source>Shows the table of contents window</source> - <translation>Zeigt das Fenster mit dem Inhaltsverzeichnis an</translation> + <source>Synchronizes the table of contents with current page</source> + <translation>Synchronisiert das Inhaltsverzeichnis mit der aktuellen Seite</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="885"/> + <source><b>Sync with Table of Contents</b><p>Synchronizes the table of contents with current page.</p></source> + <translation><b>Mit Inhalt synchronisieren</b><p>Synchronisiert das Inhaltsverzeichnis mit der aktuellen Seite.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="892"/> + <source>Table of Contents</source> + <translation>Inhaltsverzeichnis</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="895"/> + <source>Shows the table of contents window</source> + <translation>Zeigt das Fenster mit dem Inhaltsverzeichnis an</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="897"/> <source><b>Table of Contents</b><p>Shows the table of contents window.</p></source> <translation><b>Inhaltsverzeichnis</b><p>Zeigt das Fenster mit dem Inhaltsverzeichnis an.</p></translation> </message> <message> + <location filename="Helpviewer/HelpWindow.py" line="928"/> + <source>Manage QtHelp Documents</source> + <translation>QtHelp Dokumente verwalten</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="931"/> + <source>Shows a dialog to manage the QtHelp documentation set</source> + <translation>Zeigt einen Dialog zur Verwaltung der QtHelp Dokumente</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="933"/> + <source><b>Manage QtHelp Documents</b><p>Shows a dialog to manage the QtHelp documentation set.</p></source> + <translation><b>QtHelp Dokumente verwalten</b><p>Zeigt einen Dialog zur Verwaltung der QtHelp Dokumente.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1170"/> + <source>&Window</source> + <translation>&Fenster</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1263"/> + <source>Filter</source> + <translation>Filter</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1268"/> + <source>Filtered by: </source> + <translation>Filter: </translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="2415"/> + <source>Could not find an associated content.</source> + <translation>Konnte keinen zugehörigen Inhalt finden.</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="941"/> + <source>Manage QtHelp Filters</source> + <translation>QtHelp Filter verwalten</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="944"/> + <source>Shows a dialog to manage the QtHelp filters</source> + <translation>Zeigt einen Dialog zur Verwaltung der QtHelp Filter</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="946"/> + <source><b>Manage QtHelp Filters</b><p>Shows a dialog to manage the QtHelp filters.</p></source> + <translation><b>QtHelp Filter verwalten</b><p>Zeigt einen Dialog zur Verwaltung der QtHelp Filter.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="904"/> + <source>Index</source> + <translation>Index</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="907"/> + <source>Shows the index window</source> + <translation>Zeigt das Indexfenster an</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="909"/> + <source><b>Index</b><p>Shows the index window.</p></source> + <translation><b>Index</b><p>Zeigt das Indexfenster an.</p></translation> + </message> + <message> <location filename="Helpviewer/HelpWindow.py" line="916"/> - <source>Manage QtHelp Documents</source> - <translation>QtHelp Dokumente verwalten</translation> + <source>Search</source> + <translation>Suchen</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="919"/> - <source>Shows a dialog to manage the QtHelp documentation set</source> - <translation>Zeigt einen Dialog zur Verwaltung der QtHelp Dokumente</translation> + <source>Shows the search window</source> + <translation>Zeigt das Suchfenster an</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="921"/> - <source><b>Manage QtHelp Documents</b><p>Shows a dialog to manage the QtHelp documentation set.</p></source> - <translation><b>QtHelp Dokumente verwalten</b><p>Zeigt einen Dialog zur Verwaltung der QtHelp Dokumente.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1157"/> - <source>&Window</source> - <translation>&Fenster</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1247"/> - <source>Filter</source> - <translation>Filter</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1252"/> - <source>Filtered by: </source> - <translation>Filter: </translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="2352"/> - <source>Could not find an associated content.</source> - <translation>Konnte keinen zugehörigen Inhalt finden.</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="929"/> - <source>Manage QtHelp Filters</source> - <translation>QtHelp Filter verwalten</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="932"/> - <source>Shows a dialog to manage the QtHelp filters</source> - <translation>Zeigt einen Dialog zur Verwaltung der QtHelp Filter</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="934"/> - <source><b>Manage QtHelp Filters</b><p>Shows a dialog to manage the QtHelp filters.</p></source> - <translation><b>QtHelp Filter verwalten</b><p>Zeigt einen Dialog zur Verwaltung der QtHelp Filter.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="892"/> - <source>Index</source> - <translation>Index</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="895"/> - <source>Shows the index window</source> - <translation>Zeigt das Indexfenster an</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="897"/> - <source><b>Index</b><p>Shows the index window.</p></source> - <translation><b>Index</b><p>Zeigt das Indexfenster an.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="904"/> - <source>Search</source> - <translation>Suchen</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="907"/> - <source>Shows the search window</source> - <translation>Zeigt das Suchfenster an</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="909"/> <source><b>Search</b><p>Shows the search window.</p></source> <translation><b>Suchen</b><p>Zeigt das Suchfenster an.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="942"/> + <location filename="Helpviewer/HelpWindow.py" line="954"/> <source>Reindex Documentation</source> <translation>Dokumentation reindizieren</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="945"/> + <location filename="Helpviewer/HelpWindow.py" line="957"/> <source>Reindexes the documentation set</source> <translation>Reindiziert die Dokumentation</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="947"/> + <location filename="Helpviewer/HelpWindow.py" line="959"/> <source><b>Reindex Documentation</b><p>Reindexes the documentation set.</p></source> <translation><b>Dokumentation reindizieren</b><p>Reindiziert die Dokumentation.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2468"/> + <location filename="Helpviewer/HelpWindow.py" line="2531"/> <source>Updating search index</source> <translation>Aktualisiere Suchindex</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2522"/> + <location filename="Helpviewer/HelpWindow.py" line="2585"/> <source>Looking for Documentation...</source> <translation>Suche nach Dokumentation...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2552"/> + <location filename="Helpviewer/HelpWindow.py" line="2615"/> <source>Unfiltered</source> <translation>Ungefiltert</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2571"/> + <location filename="Helpviewer/HelpWindow.py" line="2634"/> <source>Help Engine</source> <translation>Hilfe</translation> </message> @@ -12793,218 +12794,218 @@ <translation>Zeige ein Navigationsmenü an</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="476"/> + <location filename="Helpviewer/HelpWindow.py" line="488"/> <source>Private Browsing</source> <translation>Privates Browsen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="472"/> + <location filename="Helpviewer/HelpWindow.py" line="484"/> <source>Private &Browsing</source> <translation>Privates &Browsen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="477"/> + <location filename="Helpviewer/HelpWindow.py" line="489"/> <source><b>Private Browsing</b><p>Enables private browsing. In this mode no history is recorded anymore.</p></source> <translation><b>Privates Browsen</b><p>Schaltet das private Browsen ein. In diesem Modus wird keine Chronik mehr aufgezeichnet.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2224"/> + <location filename="Helpviewer/HelpWindow.py" line="2287"/> <source>Loading...</source> <translation>Lade...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2239"/> + <location filename="Helpviewer/HelpWindow.py" line="2302"/> <source>Finished loading</source> <translation>Seite geladen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="796"/> + <location filename="Helpviewer/HelpWindow.py" line="808"/> <source>Full Screen</source> <translation>Vollbild</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="796"/> + <location filename="Helpviewer/HelpWindow.py" line="808"/> <source>&Full Screen</source> <translation>&Vollbild</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="796"/> + <location filename="Helpviewer/HelpWindow.py" line="808"/> <source>F11</source> <translation>F11</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="916"/> + <location filename="Helpviewer/HelpWindow.py" line="928"/> <source>Manage QtHelp &Documents</source> <translation>QtHelp &Dokumente verwalten</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="929"/> + <location filename="Helpviewer/HelpWindow.py" line="941"/> <source>Manage QtHelp &Filters</source> <translation>QtHelp &Filter verwalten</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="942"/> + <location filename="Helpviewer/HelpWindow.py" line="954"/> <source>&Reindex Documentation</source> <translation>Dokumentation &reindizieren</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="960"/> + <location filename="Helpviewer/HelpWindow.py" line="972"/> <source>Clear private data</source> <translation>Private Daten löschen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="956"/> + <location filename="Helpviewer/HelpWindow.py" line="968"/> <source>&Clear private data</source> <translation>&Private Daten löschen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="961"/> + <location filename="Helpviewer/HelpWindow.py" line="973"/> <source><b>Clear private data</b><p>Clears the private data like browsing history, search history or the favicons database.</p></source> <translation><b>Private Daten löschen</b><p>Löscht private Daten wie die Web-Chronik, Such-Chronik oder die Icons-Datenbank.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="970"/> + <location filename="Helpviewer/HelpWindow.py" line="982"/> <source>Clear &icons database</source> <translation>Iconsdatenbank &löschen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1024"/> + <location filename="Helpviewer/HelpWindow.py" line="1036"/> <source>Show Network Monitor</source> <translation>Netzwerkmonitor anzeigen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1024"/> + <location filename="Helpviewer/HelpWindow.py" line="1036"/> <source>Show &Network Monitor</source> <translation>&Netzwerkmonitor anzeigen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1028"/> + <location filename="Helpviewer/HelpWindow.py" line="1040"/> <source>Show the network monitor dialog</source> <translation>Zeigt den Netzwerkmonitordialog an</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1029"/> + <location filename="Helpviewer/HelpWindow.py" line="1041"/> <source><b>Show Network Monitor</b><p>Shows the network monitor dialog.</p></source> <translation><b>Netzwerkmonitor anzeigen</b><p>Zeigt den Netzwerkmonitordialog an.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1134"/> + <location filename="Helpviewer/HelpWindow.py" line="1147"/> <source>&Settings</source> <translation>&Einstellungen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1153"/> + <location filename="Helpviewer/HelpWindow.py" line="1166"/> <source>&Tools</source> <translation>&Werkzeuge</translation> </message> <message> + <location filename="Helpviewer/HelpWindow.py" line="795"/> + <source>Show page source</source> + <translation>Seitenquelltext anzeigen</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="795"/> + <source>Ctrl+U</source> + <translation>Ctrl+U</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="799"/> + <source>Show the page source in an editor</source> + <translation>Zeige den Seitenquelltext in einem Editor</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="800"/> + <source><b>Show page source</b><p>Show the page source in an editor.</p></source> + <translation><b>Seitenquelltext anzeigen</b><p>Zeige den Seitenquelltext in einem Editor.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="853"/> + <source>&Languages...</source> + <translation>&Sprachen...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="856"/> + <source>Configure the accepted languages for web pages</source> + <translation>Konfigurieren der bevorzugten Sprachen für Websites</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="858"/> + <source><b>Languages</b><p>Configure the accepted languages for web pages.</p></source> + <translation><b>Sprachen</b><p>Konfigurieren der bevorzugten Sprachen für Websites.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="853"/> + <source>Languages</source> + <translation>Sprachen</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="866"/> + <source>Cookies</source> + <translation>Cookies</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="866"/> + <source>C&ookies...</source> + <translation>C&ookies...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="869"/> + <source>Configure cookies handling</source> + <translation>Cookieverwaltung konfigurieren</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="871"/> + <source><b>Cookies</b><p>Configure cookies handling.</p></source> + <translation><b>Cookies</b><p>Cookieverwaltung konfigurieren</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1276"/> + <source>Settings</source> + <translation>Einstellungen</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="764"/> + <source>Zoom reset</source> + <translation>Vergrößerung zurücksetzen</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="764"/> + <source>Zoom &reset</source> + <translation>Vergrößerung &zurücksetzen</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="764"/> + <source>Ctrl+0</source> + <comment>View|Zoom reset</comment> + <translation>Ctrl+0</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="769"/> + <source>Reset the zoom of the text</source> + <translation>Die Textgröße zurücksetzen</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="779"/> + <source>Zoom text only</source> + <translation>Nur Text vergrößern</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="779"/> + <source>Zoom &text only</source> + <translation>Nur &Text vergrößern</translation> + </message> + <message> <location filename="Helpviewer/HelpWindow.py" line="783"/> - <source>Show page source</source> - <translation>Seitenquelltext anzeigen</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="783"/> - <source>Ctrl+U</source> - <translation>Ctrl+U</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="787"/> - <source>Show the page source in an editor</source> - <translation>Zeige den Seitenquelltext in einem Editor</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="788"/> - <source><b>Show page source</b><p>Show the page source in an editor.</p></source> - <translation><b>Seitenquelltext anzeigen</b><p>Zeige den Seitenquelltext in einem Editor.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="841"/> - <source>&Languages...</source> - <translation>&Sprachen...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="844"/> - <source>Configure the accepted languages for web pages</source> - <translation>Konfigurieren der bevorzugten Sprachen für Websites</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="846"/> - <source><b>Languages</b><p>Configure the accepted languages for web pages.</p></source> - <translation><b>Sprachen</b><p>Konfigurieren der bevorzugten Sprachen für Websites.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="841"/> - <source>Languages</source> - <translation>Sprachen</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="854"/> - <source>Cookies</source> - <translation>Cookies</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="854"/> - <source>C&ookies...</source> - <translation>C&ookies...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="857"/> - <source>Configure cookies handling</source> - <translation>Cookieverwaltung konfigurieren</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="859"/> - <source><b>Cookies</b><p>Configure cookies handling.</p></source> - <translation><b>Cookies</b><p>Cookieverwaltung konfigurieren</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1260"/> - <source>Settings</source> - <translation>Einstellungen</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="752"/> - <source>Zoom reset</source> - <translation>Vergrößerung zurücksetzen</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="752"/> - <source>Zoom &reset</source> - <translation>Vergrößerung &zurücksetzen</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="752"/> - <source>Ctrl+0</source> - <comment>View|Zoom reset</comment> - <translation>Ctrl+0</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="757"/> - <source>Reset the zoom of the text</source> - <translation>Die Textgröße zurücksetzen</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="767"/> - <source>Zoom text only</source> - <translation>Nur Text vergrößern</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="767"/> - <source>Zoom &text only</source> - <translation>Nur &Text vergrößern</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="771"/> <source>Zoom text only; pictures remain constant</source> <translation>Nur Text vergrößern; Bilder behalten ihre Größe</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="773"/> + <location filename="Helpviewer/HelpWindow.py" line="785"/> <source><b>Zoom text only</b><p>Zoom text only; pictures remain constant.</p></source> <translation><b>Nur Text vergrößern</b><p>Nur Text vergrößern; Bilder behalten ihre Größe.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="758"/> + <location filename="Helpviewer/HelpWindow.py" line="770"/> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation><b>Vergrößerung zurücksetzen</b><p>Setzt die Vergrößerung auf den Wert 100% zurück.</p></translation> </message> @@ -13054,142 +13055,142 @@ <translation><b>Lesezeichen exportieren</b><p>Exportiert die Lesezeichen in eine Datei.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="631"/> + <location filename="Helpviewer/HelpWindow.py" line="643"/> <source>Manage Bookmarks</source> <translation>Lesezeichen verwalten</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="631"/> + <location filename="Helpviewer/HelpWindow.py" line="643"/> <source>&Manage Bookmarks...</source> <translation>Lesezeichen &verwalten...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="631"/> + <location filename="Helpviewer/HelpWindow.py" line="643"/> <source>Ctrl+Shift+B</source> <comment>Help|Manage bookmarks</comment> <translation>Ctrl+Shift+B</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="635"/> + <location filename="Helpviewer/HelpWindow.py" line="647"/> <source>Open a dialog to manage the bookmarks.</source> <translation>Öffnet einen Dialog zur Verwaltung der Lesezeichen.</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="637"/> + <location filename="Helpviewer/HelpWindow.py" line="649"/> <source><b>Manage Bookmarks...</b><p>Open a dialog to manage the bookmarks.</p></source> <translation><b>Lesezeichen verwalten...</b><p>Öffnet einen Dialog zur Verwaltung der Lesezeichen.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="645"/> + <location filename="Helpviewer/HelpWindow.py" line="657"/> <source>Add &Bookmark...</source> <translation>Lesezeichen &hinzufügen...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="645"/> + <location filename="Helpviewer/HelpWindow.py" line="657"/> <source>Ctrl+D</source> <comment>Help|Add bookmark</comment> <translation>Ctrl+D</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="651"/> + <location filename="Helpviewer/HelpWindow.py" line="663"/> <source>Open a dialog to add a bookmark.</source> <translation>Öffnet einen Dialog zum Hinzufügen von Lesezeichen.</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="652"/> - <source><b>Add Bookmark</b><p>Open a dialog to add the current URL as a bookmark.</p></source> - <translation><b>Lesezeichen hinzufügen...</b><p>Öffnet einen Dialog zum Hinzufügen von Lesezeichen.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="659"/> - <source>Add Folder</source> - <translation>Ordner hinzufügen</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="659"/> - <source>Add &Folder...</source> - <translation>&Ordner hinzufügen...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="662"/> - <source>Open a dialog to add a new bookmarks folder.</source> - <translation>Öffnet einen Dialog zum Hinzufügen eines Lesezeichenordners.</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="664"/> + <source><b>Add Bookmark</b><p>Open a dialog to add the current URL as a bookmark.</p></source> + <translation><b>Lesezeichen hinzufügen...</b><p>Öffnet einen Dialog zum Hinzufügen von Lesezeichen.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="671"/> + <source>Add Folder</source> + <translation>Ordner hinzufügen</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="671"/> + <source>Add &Folder...</source> + <translation>&Ordner hinzufügen...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="674"/> + <source>Open a dialog to add a new bookmarks folder.</source> + <translation>Öffnet einen Dialog zum Hinzufügen eines Lesezeichenordners.</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="676"/> <source><b>Add Folder...</b><p>Open a dialog to add a new bookmarks folder.</p></source> <translation><b>Ordner hinzufügen...</b><p>Öffnet einen Dialog zum Hinzufügen eines Lesezeichenordners.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="672"/> + <location filename="Helpviewer/HelpWindow.py" line="684"/> <source>Bookmark All Tabs</source> <translation>Lesezeichen für alle Tabs</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="672"/> + <location filename="Helpviewer/HelpWindow.py" line="684"/> <source>Bookmark All Tabs...</source> <translation>Lesezeichen für alle Tabs...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="675"/> + <location filename="Helpviewer/HelpWindow.py" line="687"/> <source>Bookmark all open tabs.</source> <translation>Fügt Lesezeichen für alle offenen Tabs hinzu.</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="677"/> + <location filename="Helpviewer/HelpWindow.py" line="689"/> <source><b>Bookmark All Tabs...</b><p>Open a dialog to add a new bookmarks folder for all open tabs.</p></source> <translation><b>Lesezeichen für alle Tabs...</b><p>Öffnet einen Dialog, um einen neuen Lesezeichenordner für alle offenen Tabs hinzuzufügen.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1753"/> + <location filename="Helpviewer/HelpWindow.py" line="1808"/> <source>Saved Tabs</source> <translation>Gesicherte Tabs</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1195"/> + <location filename="Helpviewer/HelpWindow.py" line="1208"/> <source>Close Others</source> <translation>Andere schließen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>F5</source> <comment>Go|Reload</comment> <translation>F5</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>Stop</source> <translation>Anhalten</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>&Stop</source> <translation>An&halten</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>Ctrl+.</source> <comment>Go|Stop</comment> <translation>Ctrl+.</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>Esc</source> <comment>Go|Stop</comment> <translation>Esc</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="567"/> + <location filename="Helpviewer/HelpWindow.py" line="579"/> <source>Stop loading</source> <translation>Laden anhalten</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="568"/> + <location filename="Helpviewer/HelpWindow.py" line="580"/> <source><b>Stop</b><p>Stops loading of the current tab.</p></source> <translation><b>Anhalten</b><p>Hält das Laden der aktuellen Seite an.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1188"/> + <location filename="Helpviewer/HelpWindow.py" line="1201"/> <source>Duplicate Page</source> <translation>Seite duplizieren</translation> </message> @@ -13220,100 +13221,115 @@ <translation><b>Speichern unter</b><p>Dies speichert die aktuelle Seite in eine Datei.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1679"/> + <location filename="Helpviewer/HelpWindow.py" line="1734"/> <source>Eric Web Browser</source> <translation>Eric Web-Browser</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1670"/> + <location filename="Helpviewer/HelpWindow.py" line="1725"/> <source><h3>About Eric Web Browser</h3><p>The Eric Web Browser is a combined help file and HTML browser.</p></source> <translation><h3>Über Eric Web-Browser</h3><p>Der Eric-Web-Browser ist eine kombinierte Anzeige für Hilfe- und HTML-Dateien.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1976"/> + <location filename="Helpviewer/HelpWindow.py" line="2031"/> <source><b>Are you sure you want to turn on private browsing?</b><p>When private browsing is turned on, web pages are not added to the history, searches are not added to the list of recent searches and web site icons and cookies are not stored. Until you close the window, you can still click the Back and Forward buttons to return to the web pages you have opened.</p></source> <translation><b>Sind sie sicher, dass sie privates Browsen einschalten möchten?</b><p>Wenn das private Browsen eingeschaltet ist, werden keine Web Seiten mehr zur Chronik hinzugefügt und Suchanfragen, Web Site Icons und Cookies werden nicht mehr gespeichert. Bis das Fenster geschlossen wird, können sie jedoch weiterhin die Zurück und Vorwärts Knöpfe nutzen, um zu besuchten Web Seiten zurückzukehren.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="492"/> + <location filename="Helpviewer/HelpWindow.py" line="504"/> <source>Quit the web browser</source> <translation>Beendet den Web-Browser</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="493"/> + <location filename="Helpviewer/HelpWindow.py" line="505"/> <source><b>Quit</b><p>Quit the web browser.</p></source> <translation><b>Beenden</b><p>Beendet den Web-Browser.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="982"/> + <location filename="Helpviewer/HelpWindow.py" line="994"/> <source>Configure Search Engines</source> <translation>Suchmaschinen verwalten</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="982"/> + <location filename="Helpviewer/HelpWindow.py" line="994"/> <source>Configure &Search Engines...</source> <translation>&Suchmaschinen verwalten...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="986"/> + <location filename="Helpviewer/HelpWindow.py" line="998"/> <source>Configure the available search engines</source> <translation>Verwalte die verfügbaren Suchmaschinen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="988"/> - <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> - <translation><b>Suchmaschinen verwalten...</b><p>Öffnet einen Dialog zur Verwaltung der verfügbaren Suchmaschinen.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="996"/> - <source>Manage Saved Passwords</source> - <translation>Gespeicherte Passwörter verwalten</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="996"/> - <source>Manage Saved Passwords...</source> - <translation>Gespeicherte Passwörter verwalten...</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="1000"/> + <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> + <translation><b>Suchmaschinen verwalten...</b><p>Öffnet einen Dialog zur Verwaltung der verfügbaren Suchmaschinen.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1008"/> + <source>Manage Saved Passwords</source> + <translation>Gespeicherte Passwörter verwalten</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1008"/> + <source>Manage Saved Passwords...</source> + <translation>Gespeicherte Passwörter verwalten...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1012"/> <source>Manage the saved passwords</source> <translation>Verwalten gespeicherter Passwörter</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1002"/> - <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> - <translation><b>Gespeicherte Passwörter verwalten...</b><p>Öffnet einen Dialog zur Verwaltung gespeicherter Passwörter.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1010"/> - <source>Ad Block</source> - <translation>Ad Block</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1010"/> - <source>&Ad Block...</source> - <translation>&Ad Block...</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="1014"/> + <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> + <translation><b>Gespeicherte Passwörter verwalten...</b><p>Öffnet einen Dialog zur Verwaltung gespeicherter Passwörter.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1022"/> + <source>Ad Block</source> + <translation>Ad Block</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1022"/> + <source>&Ad Block...</source> + <translation>&Ad Block...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1026"/> <source>Configure AdBlock subscriptions and rules</source> <translation>Konfiguriert AdBlock Abonnements und Regeln</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1016"/> + <location filename="Helpviewer/HelpWindow.py" line="1028"/> <source><b>Ad Block...</b><p>Opens a dialog to configure AdBlock subscriptions and rules.</p></source> <translation><b>Ad Block...</b><p>Öffnet einen Dialog zum konfigurieren von AdBlock Abonnements und Regeln</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2531"/> + <location filename="Helpviewer/HelpWindow.py" line="2594"/> <source>eric5 Web Browser</source> <translation>eric5 Web-Browser</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2241"/> + <location filename="Helpviewer/HelpWindow.py" line="2304"/> <source>Failed to load</source> <translation>Fehler beim Laden</translation> </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1216"/> + <source>Print as PDF</source> + <translation>Als PDF drucken</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="438"/> + <source>Print the displayed help as PDF</source> + <translation>Druckt die angezeigte Hilfe als PDF</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="439"/> + <source><b>Print as PDF</b><p>Print the displayed help text as a PDF file.</p></source> + <translation><b>Als PDF drucken</b><p>Druckt den angezeigten Hilfetext als PDF-Datei.</p></translation> + </message> </context> <context> <name>Hg</name>
--- a/i18n/eric5_es.ts Sun May 30 18:28:06 2010 +0200 +++ b/i18n/eric5_es.ts Sun May 30 18:53:41 2010 +0200 @@ -10942,24 +10942,24 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="319"/> + <location filename="Helpviewer/Network/FtpReply.py" line="332"/> <source> <p><a class="link_parent" href="{0}">Change to parent directory</a></p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="332"/> + <location filename="Helpviewer/Network/FtpReply.py" line="345"/> <source> <tr><th align="left">Name</th><th>Size</th><th align="left">Last modified</th></tr> </source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="358"/> + <location filename="Helpviewer/Network/FtpReply.py" line="371"/> <source>{0} {1}</source> <comment>size unit</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="382"/> + <location filename="Helpviewer/Network/FtpReply.py" line="395"/> <source>Listing of {0}</source> <translation type="unfinished"></translation> </message> @@ -11128,17 +11128,17 @@ <translation>Inspector Web...</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>Check the address for errors such as <b>ww</b>.example.org instead of <b>www</b>.example.org</source> <translation>Compruebe que la dirección no tenga errores como <b>ww</b>.ejemplo.org en lugar de <b>www</b>.ejemplo.org</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>If the address is correct, try checking the network connection.</source> <translation>Si la dirección es correcta, intente comprobar la conexión de red.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source> <translation>Si el ordenador o la red están protegidos por un firewall o un proxy, asegúrese de que al navegador se le permite acceder a la red.</translation> </message> @@ -11213,12 +11213,12 @@ <translation><p>No se pudo ejecutar una aplicación para la URL <b>{0}</b>.</p></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="947"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="946"/> <source>Error loading page: {0}</source> <translation>Error al cargar la página: {0}</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>When connecting to: {0}.</source> <translation>Al conectar con: {0}.</translation> </message> @@ -11932,7 +11932,7 @@ <context> <name>HelpWindow</name> <message> - <location filename="Helpviewer/HelpWindow.py" line="453"/> + <location filename="Helpviewer/HelpWindow.py" line="465"/> <source>Close the current help window</source> <translation>Cierra la ventana actual</translation> </message> @@ -11984,7 +11984,7 @@ <translation><b>Nueva Ventana</b><p>Abre una nueva ventana del navegador de ayuda.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1559"/> + <location filename="Helpviewer/HelpWindow.py" line="1575"/> <source>Open File</source> <translation>Abrir archivo</translation> </message> @@ -12036,7 +12036,7 @@ <translation><b>Abrir Archivo en Nueva Pestaña</b><p>Abre un nuevo archivo de ayuda para mostrar en una nueva pestaña. Abre un diálogo de selección de archivo.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1201"/> + <location filename="Helpviewer/HelpWindow.py" line="1214"/> <source>Print</source> <translation>Imprimir</translation> </message> @@ -12062,572 +12062,572 @@ <translation><b>Imprimir</b><p>Imprimir el texto de ayuda mostrado.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1192"/> + <location filename="Helpviewer/HelpWindow.py" line="1205"/> <source>Close</source> <translation>Cerrar</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="448"/> + <location filename="Helpviewer/HelpWindow.py" line="460"/> <source>&Close</source> <translation>&Cerrar</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="448"/> + <location filename="Helpviewer/HelpWindow.py" line="460"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation>Ctrl+W</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="454"/> + <location filename="Helpviewer/HelpWindow.py" line="466"/> <source><b>Close</b><p>Closes the current help window.</p></source> <translation><b>Cerrar</b><p>Cierra la ventana actual de ayuda.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="461"/> + <location filename="Helpviewer/HelpWindow.py" line="473"/> <source>Close All</source> <translation>Cerrar todo</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="461"/> + <location filename="Helpviewer/HelpWindow.py" line="473"/> <source>Close &All</source> <translation>Cerrar &Todo</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="465"/> + <location filename="Helpviewer/HelpWindow.py" line="477"/> <source><b>Close All</b><p>Closes all help windows except the first one.</p></source> <translation><b>Cerrar Todo</b><p>Cierra todas las ventanas de ayuda excepto la primera.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="487"/> + <location filename="Helpviewer/HelpWindow.py" line="499"/> <source>Quit</source> <translation>Salir</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="487"/> + <location filename="Helpviewer/HelpWindow.py" line="499"/> <source>&Quit</source> <translation>&Salir</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="487"/> + <location filename="Helpviewer/HelpWindow.py" line="499"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>Backward</source> <translation>Atrás</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>&Backward</source> <translation>&Atrás</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>Alt+Left</source> <comment>Go|Backward</comment> <translation>Alt+Left</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>Backspace</source> <comment>Go|Backward</comment> <translation>Backspace</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="510"/> + <location filename="Helpviewer/HelpWindow.py" line="522"/> <source>Move one help screen backward</source> <translation>Mover la ayuda una pantalla hacia atrás</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="511"/> + <location filename="Helpviewer/HelpWindow.py" line="523"/> <source><b>Backward</b><p>Moves one help screen backward. If none is available, this action is disabled.</p></source> <translation><b>Retroceso</b><p>Mueve la ayuda una pantalla hacia atrás. Si no hay ninguna disponible, esta acción no tiene efecto.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>Forward</source> <translation>Adelante</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>&Forward</source> <translation>A&delante</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>Alt+Right</source> <comment>Go|Forward</comment> <translation>Alt+Right</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>Shift+Backspace</source> <comment>Go|Forward</comment> <translation>Shift+Backspace</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="525"/> + <location filename="Helpviewer/HelpWindow.py" line="537"/> <source>Move one help screen forward</source> <translation>Mover la ayuda una pantalla hacia adelante</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="526"/> + <location filename="Helpviewer/HelpWindow.py" line="538"/> <source><b>Forward</b><p>Moves one help screen forward. If none is available, this action is disabled.</p></source> <translation><b>Adelante</b><p>Mueve la ayuda una pantalla hacia adelante. Si no hay ninguna disponible, esta acción no tiene efecto.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="534"/> + <location filename="Helpviewer/HelpWindow.py" line="546"/> <source>Home</source> <translation>Home</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="534"/> + <location filename="Helpviewer/HelpWindow.py" line="546"/> <source>&Home</source> <translation>&Inicio</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="534"/> + <location filename="Helpviewer/HelpWindow.py" line="546"/> <source>Ctrl+Home</source> <comment>Go|Home</comment> <translation>Ctrl+Home</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="539"/> + <location filename="Helpviewer/HelpWindow.py" line="551"/> <source>Move to the initial help screen</source> <translation>Mover a la pantalla inicial de ayuda</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="540"/> + <location filename="Helpviewer/HelpWindow.py" line="552"/> <source><b>Home</b><p>Moves to the initial help screen.</p></source> <translation><b>Inicio</b><p>Mueve a la pantalla inicial de ayuda.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>Reload</source> <translation>Recargar</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>&Reload</source> <translation>&Recargar</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>Ctrl+R</source> <comment>Go|Reload</comment> <translation>Ctrl+R</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="553"/> + <location filename="Helpviewer/HelpWindow.py" line="565"/> <source>Reload the current help screen</source> <translation>Recarga la pantalla de ayuda actual</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="554"/> + <location filename="Helpviewer/HelpWindow.py" line="566"/> <source><b>Reload</b><p>Reloads the current help screen.</p></source> <translation><b>Recargar</b><p>Recarga la ventana actual de ayuda.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="575"/> + <location filename="Helpviewer/HelpWindow.py" line="587"/> <source>Copy</source> <translation>Copiar</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="575"/> + <location filename="Helpviewer/HelpWindow.py" line="587"/> <source>&Copy</source> <translation>&Copiar</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="575"/> + <location filename="Helpviewer/HelpWindow.py" line="587"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="580"/> + <location filename="Helpviewer/HelpWindow.py" line="592"/> <source>Copy the selected text</source> <translation>Copiar el texto seleccionado</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="581"/> - <source><b>Copy</b><p>Copy the selected text to the clipboard.</p></source> - <translation><b>Copiar</b><p>Copiar el texto seleccionado al portapapeles.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="588"/> - <source>Find...</source> - <translation>Buscar...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="588"/> - <source>&Find...</source> - <translation>&Buscar...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="588"/> - <source>Ctrl+F</source> - <comment>Edit|Find</comment> - <translation>Ctrl+F</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="593"/> + <source><b>Copy</b><p>Copy the selected text to the clipboard.</p></source> + <translation><b>Copiar</b><p>Copiar el texto seleccionado al portapapeles.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="600"/> + <source>Find...</source> + <translation>Buscar...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="600"/> + <source>&Find...</source> + <translation>&Buscar...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="600"/> + <source>Ctrl+F</source> + <comment>Edit|Find</comment> + <translation>Ctrl+F</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="605"/> <source>Find text in page</source> <translation>Buscar texto en página</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="594"/> + <location filename="Helpviewer/HelpWindow.py" line="606"/> <source><b>Find</b><p>Find text in the current page.</p></source> <translation><b>Buscar</b><p>Buscar texto en la página actual.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="601"/> + <location filename="Helpviewer/HelpWindow.py" line="613"/> <source>Find next</source> <translation>Buscar siguiente</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="601"/> + <location filename="Helpviewer/HelpWindow.py" line="613"/> <source>Find &next</source> <translation>Buscar sigui&ente</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="601"/> + <location filename="Helpviewer/HelpWindow.py" line="613"/> <source>F3</source> <comment>Edit|Find next</comment> <translation>F3</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="615"/> + <location filename="Helpviewer/HelpWindow.py" line="627"/> <source>Find previous</source> <translation>Buscar anterior</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="615"/> + <location filename="Helpviewer/HelpWindow.py" line="627"/> <source>Find &previous</source> <translation>Buscar a&nterior</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="615"/> + <location filename="Helpviewer/HelpWindow.py" line="627"/> <source>Shift+F3</source> <comment>Edit|Find previous</comment> <translation>Shift+F3</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="645"/> + <location filename="Helpviewer/HelpWindow.py" line="657"/> <source>Add Bookmark</source> <translation>Añadir Marcador</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="686"/> + <location filename="Helpviewer/HelpWindow.py" line="698"/> <source>What's This?</source> <translation>¿Qué es esto?</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="686"/> + <location filename="Helpviewer/HelpWindow.py" line="698"/> <source>&What's This?</source> <translation>¿&Qué es esto?</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="686"/> + <location filename="Helpviewer/HelpWindow.py" line="698"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation>Shift+F1</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="691"/> + <location filename="Helpviewer/HelpWindow.py" line="703"/> <source>Context sensitive help</source> <translation>Ayuda sensible al contexto</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="692"/> + <location filename="Helpviewer/HelpWindow.py" line="704"/> <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> <translation><b>Mostrar ayuda sensible al contexto</b><p>En modo ¿Qué es esto? el puntero del ratón muestra una flecha con un interrogante, y se puede hacer click en elementos de la interfaz gráfica para obtener una descripción corta de lo que hacen y de cómo se utilizan. En los diálogos, se puede acceder a esta característica utilizando el botón de ayuda de contexto en la barra de título.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="703"/> + <location filename="Helpviewer/HelpWindow.py" line="715"/> <source>About</source> <translation>Acerca de</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="703"/> + <location filename="Helpviewer/HelpWindow.py" line="715"/> <source>&About</source> <translation>&Acerca de</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="706"/> + <location filename="Helpviewer/HelpWindow.py" line="718"/> <source>Display information about this software</source> <translation>Muestra información acerca de este software</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="707"/> - <source><b>About</b><p>Display some information about this software.</p></source> - <translation><b>Acerca de</b><p>Muestra información acerca de este software.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="714"/> - <source>About Qt</source> - <translation>Acerca de Qt</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="714"/> - <source>About &Qt</source> - <translation>Acerca de &Qt</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="717"/> - <source>Display information about the Qt toolkit</source> - <translation>Muestra información sobre las herramientas Qt</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="719"/> - <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> - <translation><b>Acerca de Qt</b><p>Muestra información sobre las herramientas Qt.</p></translation> + <source><b>About</b><p>Display some information about this software.</p></source> + <translation><b>Acerca de</b><p>Muestra información acerca de este software.</p></translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="726"/> - <source>Zoom in</source> - <translation>Aumentar zoom</translation> + <source>About Qt</source> + <translation>Acerca de Qt</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="726"/> - <source>Zoom &in</source> - <translation>A&umentar Zoom</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="726"/> - <source>Ctrl++</source> - <comment>View|Zoom in</comment> - <translation>Ctrl++</translation> + <source>About &Qt</source> + <translation>Acerca de &Qt</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="729"/> + <source>Display information about the Qt toolkit</source> + <translation>Muestra información sobre las herramientas Qt</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="731"/> + <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> + <translation><b>Acerca de Qt</b><p>Muestra información sobre las herramientas Qt.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="738"/> + <source>Zoom in</source> + <translation>Aumentar zoom</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="738"/> + <source>Zoom &in</source> + <translation>A&umentar Zoom</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="738"/> + <source>Ctrl++</source> + <comment>View|Zoom in</comment> + <translation>Ctrl++</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="743"/> <source>Zoom in on the text</source> <translation>Aumentar zoom en el texto</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="732"/> - <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> - <translation><b>Aumentar Zoom</b><p>Aumenta el zoom sobre el texto. Esto provoca que el texto sea mayor.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="739"/> - <source>Zoom out</source> - <translation>Disminuir Zoom</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="739"/> - <source>Zoom &out</source> - <translation>Dismi&nuir Zoom</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="739"/> - <source>Ctrl+-</source> - <comment>View|Zoom out</comment> - <translation>Ctrl+-</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="744"/> + <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> + <translation><b>Aumentar Zoom</b><p>Aumenta el zoom sobre el texto. Esto provoca que el texto sea mayor.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="751"/> + <source>Zoom out</source> + <translation>Disminuir Zoom</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="751"/> + <source>Zoom &out</source> + <translation>Dismi&nuir Zoom</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="751"/> + <source>Ctrl+-</source> + <comment>View|Zoom out</comment> + <translation>Ctrl+-</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="756"/> <source>Zoom out on the text</source> <translation>Disminuir zoom en el texto</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="745"/> + <location filename="Helpviewer/HelpWindow.py" line="757"/> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation><b>Disminuir Zoom</b><p>Disminuir el zoom en el texto. Esto provoca que el texto sea menor.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1057"/> + <location filename="Helpviewer/HelpWindow.py" line="1069"/> <source>&File</source> <translation>&Archivo</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1079"/> + <location filename="Helpviewer/HelpWindow.py" line="1092"/> <source>&Edit</source> <translation>&Edición</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1087"/> + <location filename="Helpviewer/HelpWindow.py" line="1100"/> <source>&View</source> <translation>&Ver</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1098"/> - <source>&Go</source> - <translation>&Ir</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="1111"/> + <source>&Go</source> + <translation>&Ir</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1124"/> <source>H&istory</source> <translation>&Historial</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1120"/> + <location filename="Helpviewer/HelpWindow.py" line="1133"/> <source>&Bookmarks</source> <translation>&Marcadores</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1165"/> + <location filename="Helpviewer/HelpWindow.py" line="1178"/> <source>&Help</source> <translation>A&yuda</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1181"/> + <location filename="Helpviewer/HelpWindow.py" line="1194"/> <source>Move Left</source> <translation>Mover a la Izquierda</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1184"/> + <location filename="Helpviewer/HelpWindow.py" line="1197"/> <source>Move Right</source> <translation>Mover a la Derecha</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1210"/> + <location filename="Helpviewer/HelpWindow.py" line="1225"/> <source>File</source> <translation>Archivo</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1226"/> + <location filename="Helpviewer/HelpWindow.py" line="1242"/> <source>Edit</source> <translation>Edición</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1231"/> + <location filename="Helpviewer/HelpWindow.py" line="1247"/> <source>View</source> <translation>Ver</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1240"/> + <location filename="Helpviewer/HelpWindow.py" line="1256"/> <source>Find</source> <translation>Buscar</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1267"/> + <location filename="Helpviewer/HelpWindow.py" line="1283"/> <source>Help</source> <translation>Ayuda</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1274"/> + <location filename="Helpviewer/HelpWindow.py" line="1290"/> <source>Go</source> <translation>Ir a</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1294"/> + <location filename="Helpviewer/HelpWindow.py" line="1310"/> <source><p>Enter the help file to be displayed directly into this edit field. Select a previously shown help file from the drop down list.</p></source> <translation><p>Introduzca directamente en este campo de edición el archivo de ayuda que se debe mostrar. Seleccione de la lista desplegable un archivo de ayuda que ha sido mostrado previamente.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1559"/> + <location filename="Helpviewer/HelpWindow.py" line="1575"/> <source>Help Files (*.html *.htm);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source> <translation>Archivos de Ayuda (*.html *.htm);;Archivos PDF (*.pdf);;Archivos CHM (*.chm);;Todos los Archivos (*)</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2032"/> - <source>...</source> - <translation>...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="606"/> + <location filename="Helpviewer/HelpWindow.py" line="2087"/> + <source>...</source> + <translation>...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="618"/> <source>Find next occurrence of text in page</source> <translation>Busca la próxima aparición del texto</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="607"/> + <location filename="Helpviewer/HelpWindow.py" line="619"/> <source><b>Find next</b><p>Find the next occurrence of text in the current page.</p></source> <translation><b>Buscar siguiente</b><p>Buscar la siguiente aparición del texto en la página actual.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="620"/> + <location filename="Helpviewer/HelpWindow.py" line="632"/> <source>Find previous occurrence of text in page</source> <translation>Busca la anterior aparición del texto</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="622"/> + <location filename="Helpviewer/HelpWindow.py" line="634"/> <source><b>Find previous</b><p>Find the previous occurrence of text in the current page.</p></source> <translation><b>Buscar anterior</b><p>Buscar la anterior aparición del texto en la página actual.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1199"/> + <location filename="Helpviewer/HelpWindow.py" line="1212"/> <source>Print Preview</source> <translation>Presentación preliminar</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="438"/> + <location filename="Helpviewer/HelpWindow.py" line="450"/> <source>Print preview of the displayed help</source> <translation>Presentación preliminar de la ayuda mostrada</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="440"/> + <location filename="Helpviewer/HelpWindow.py" line="452"/> <source><b>Print Preview</b><p>Print preview of the displayed help text.</p></source> <translation><b>Presentación Preliminar</b><p>Presentación preliminar del texto de ayuda mostrado.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1660"/> + <location filename="Helpviewer/HelpWindow.py" line="1715"/> <source><p>Printing is not available due to a bug in PyQt4.Please upgrade.</p></source> <translation><p>Imprimir no esta disponible debido a un bug en PyQt4. Por favor, actualice su versión.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="805"/> + <location filename="Helpviewer/HelpWindow.py" line="817"/> <source>Show next tab</source> <translation>Mostrar siguiente pestaña</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="805"/> + <location filename="Helpviewer/HelpWindow.py" line="817"/> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="813"/> + <location filename="Helpviewer/HelpWindow.py" line="825"/> <source>Show previous tab</source> <translation>Mostrar pestaña anterior</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="813"/> + <location filename="Helpviewer/HelpWindow.py" line="825"/> <source>Shift+Ctrl+Alt+Tab</source> <translation>Shift+Ctrl+Alt+Tab</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="821"/> - <source>Switch between tabs</source> - <translation>Alternar entre pestañas</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="821"/> - <source>Ctrl+1</source> - <translation>Ctrl+1</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="970"/> - <source>Clear icons database</source> - <translation>Limpiar base de datos de iconos</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="974"/> - <source>Clear the database of favicons</source> - <translation>Limpiar base de datos de favicons</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="975"/> - <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> - <translation><b>Limpiar base de datos de iconos</b><p>Limpia la base de datos de favicons de URLs previamente visitadas.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="829"/> - <source>Preferences</source> - <translation>Preferencias</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="829"/> - <source>&Preferences...</source> - <translation>&Preferencias...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="832"/> - <source>Set the prefered configuration</source> - <translation>Establecer la configuración preferida</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="833"/> + <source>Switch between tabs</source> + <translation>Alternar entre pestañas</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="833"/> + <source>Ctrl+1</source> + <translation>Ctrl+1</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="982"/> + <source>Clear icons database</source> + <translation>Limpiar base de datos de iconos</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="986"/> + <source>Clear the database of favicons</source> + <translation>Limpiar base de datos de favicons</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="987"/> + <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> + <translation><b>Limpiar base de datos de iconos</b><p>Limpia la base de datos de favicons de URLs previamente visitadas.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="841"/> + <source>Preferences</source> + <translation>Preferencias</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="841"/> + <source>&Preferences...</source> + <translation>&Preferencias...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="844"/> + <source>Set the prefered configuration</source> + <translation>Establecer la configuración preferida</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="845"/> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation><b>Preferencias</b><p>Establecezca los elementos de configuración de la aplicación con sus valores preferidos.</p></translation> </message> @@ -12637,152 +12637,152 @@ <translation>Contenido</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="464"/> + <location filename="Helpviewer/HelpWindow.py" line="476"/> <source>Close all help windows</source> <translation>Cerrar todas las ventanas de ayuda</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="867"/> + <location filename="Helpviewer/HelpWindow.py" line="879"/> <source>Sync with Table of Contents</source> <translation>Sincronizar con la Tabla de Contenidos</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="871"/> - <source>Synchronizes the table of contents with current page</source> - <translation>Sincroniza la tabla de contenidos con la página actual</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="873"/> - <source><b>Sync with Table of Contents</b><p>Synchronizes the table of contents with current page.</p></source> - <translation><b>Sincronizar con la Tabla de Contenidos</b>Sincroniza la tabla de contenidos con la página actual<p></p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="880"/> - <source>Table of Contents</source> - <translation>Tabla de Contenidos</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="883"/> - <source>Shows the table of contents window</source> - <translation>Muestra la ventana de la tabla de contenidos</translation> + <source>Synchronizes the table of contents with current page</source> + <translation>Sincroniza la tabla de contenidos con la página actual</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="885"/> + <source><b>Sync with Table of Contents</b><p>Synchronizes the table of contents with current page.</p></source> + <translation><b>Sincronizar con la Tabla de Contenidos</b>Sincroniza la tabla de contenidos con la página actual<p></p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="892"/> + <source>Table of Contents</source> + <translation>Tabla de Contenidos</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="895"/> + <source>Shows the table of contents window</source> + <translation>Muestra la ventana de la tabla de contenidos</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="897"/> <source><b>Table of Contents</b><p>Shows the table of contents window.</p></source> <translation><b>Tabla de Contenidos</b><p>Muestra la ventana de la tabla de contenidos.</p></translation> </message> <message> + <location filename="Helpviewer/HelpWindow.py" line="928"/> + <source>Manage QtHelp Documents</source> + <translation>Gestionar Documentos de QtHelp</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="931"/> + <source>Shows a dialog to manage the QtHelp documentation set</source> + <translation>Muestra un diálogo para gestionar el conjunto de documentación de QtHelp</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="933"/> + <source><b>Manage QtHelp Documents</b><p>Shows a dialog to manage the QtHelp documentation set.</p></source> + <translation><b>Gestionar Documentos de QtHelp</b><p>Muestra un diálogo para gestionar el conjunto de documentación de QtHelp.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1170"/> + <source>&Window</source> + <translation>&Ventana</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1263"/> + <source>Filter</source> + <translation>Filtro</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1268"/> + <source>Filtered by: </source> + <translation>Filtrado por:</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="2415"/> + <source>Could not find an associated content.</source> + <translation>No se ha podido encontrar un contenido asociado.</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="941"/> + <source>Manage QtHelp Filters</source> + <translation>Gestionar Filtros de QtHelp</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="944"/> + <source>Shows a dialog to manage the QtHelp filters</source> + <translation>Muestra un diálogo para gestionar los filtros deQtHelp</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="946"/> + <source><b>Manage QtHelp Filters</b><p>Shows a dialog to manage the QtHelp filters.</p></source> + <translation><b>Gestionar Filtros de QtHelp</b><p>Muestra un diálogo para gestionar los filtros de QtHelp.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="904"/> + <source>Index</source> + <translation>Índice</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="907"/> + <source>Shows the index window</source> + <translation>Muestra la ventana del índice</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="909"/> + <source><b>Index</b><p>Shows the index window.</p></source> + <translation><b>Índice</b><p>Muestra la ventana del índice.</p></translation> + </message> + <message> <location filename="Helpviewer/HelpWindow.py" line="916"/> - <source>Manage QtHelp Documents</source> - <translation>Gestionar Documentos de QtHelp</translation> + <source>Search</source> + <translation>Buscar</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="919"/> - <source>Shows a dialog to manage the QtHelp documentation set</source> - <translation>Muestra un diálogo para gestionar el conjunto de documentación de QtHelp</translation> + <source>Shows the search window</source> + <translation>Muestra la ventana de búsqueda</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="921"/> - <source><b>Manage QtHelp Documents</b><p>Shows a dialog to manage the QtHelp documentation set.</p></source> - <translation><b>Gestionar Documentos de QtHelp</b><p>Muestra un diálogo para gestionar el conjunto de documentación de QtHelp.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1157"/> - <source>&Window</source> - <translation>&Ventana</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1247"/> - <source>Filter</source> - <translation>Filtro</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1252"/> - <source>Filtered by: </source> - <translation>Filtrado por:</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="2352"/> - <source>Could not find an associated content.</source> - <translation>No se ha podido encontrar un contenido asociado.</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="929"/> - <source>Manage QtHelp Filters</source> - <translation>Gestionar Filtros de QtHelp</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="932"/> - <source>Shows a dialog to manage the QtHelp filters</source> - <translation>Muestra un diálogo para gestionar los filtros deQtHelp</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="934"/> - <source><b>Manage QtHelp Filters</b><p>Shows a dialog to manage the QtHelp filters.</p></source> - <translation><b>Gestionar Filtros de QtHelp</b><p>Muestra un diálogo para gestionar los filtros de QtHelp.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="892"/> - <source>Index</source> - <translation>Índice</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="895"/> - <source>Shows the index window</source> - <translation>Muestra la ventana del índice</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="897"/> - <source><b>Index</b><p>Shows the index window.</p></source> - <translation><b>Índice</b><p>Muestra la ventana del índice.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="904"/> - <source>Search</source> - <translation>Buscar</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="907"/> - <source>Shows the search window</source> - <translation>Muestra la ventana de búsqueda</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="909"/> <source><b>Search</b><p>Shows the search window.</p></source> <translation><b>Buscar</b><p>Muestra la ventana de búsqueda.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="942"/> + <location filename="Helpviewer/HelpWindow.py" line="954"/> <source>Reindex Documentation</source> <translation>Reindexar Documentación</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="945"/> + <location filename="Helpviewer/HelpWindow.py" line="957"/> <source>Reindexes the documentation set</source> <translation>Reindexa el conjunto de documentación</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="947"/> + <location filename="Helpviewer/HelpWindow.py" line="959"/> <source><b>Reindex Documentation</b><p>Reindexes the documentation set.</p></source> <translation><b>Reindexar Documentación</b><p>Reindexa el conjunto de documentación.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2468"/> + <location filename="Helpviewer/HelpWindow.py" line="2531"/> <source>Updating search index</source> <translation>Actualizando índice de búsqueda</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2522"/> + <location filename="Helpviewer/HelpWindow.py" line="2585"/> <source>Looking for Documentation...</source> <translation>Buscando Documentación...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2552"/> + <location filename="Helpviewer/HelpWindow.py" line="2615"/> <source>Unfiltered</source> <translation>Sin filtrar</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2571"/> + <location filename="Helpviewer/HelpWindow.py" line="2634"/> <source>Help Engine</source> <translation>Motor de Ayuda</translation> </message> @@ -12792,218 +12792,218 @@ <translation>Mostrar un menú de navegación</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="476"/> + <location filename="Helpviewer/HelpWindow.py" line="488"/> <source>Private Browsing</source> <translation>Navegación Privada</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="472"/> + <location filename="Helpviewer/HelpWindow.py" line="484"/> <source>Private &Browsing</source> <translation>&Navegación Privada</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="477"/> + <location filename="Helpviewer/HelpWindow.py" line="489"/> <source><b>Private Browsing</b><p>Enables private browsing. In this mode no history is recorded anymore.</p></source> <translation><b>Navegación Privada</b><p>Habilita navegación privada. En este modo, el historial no queda registrado.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2224"/> + <location filename="Helpviewer/HelpWindow.py" line="2287"/> <source>Loading...</source> <translation>Cargando...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2239"/> + <location filename="Helpviewer/HelpWindow.py" line="2302"/> <source>Finished loading</source> <translation>Carga terminada</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="796"/> + <location filename="Helpviewer/HelpWindow.py" line="808"/> <source>Full Screen</source> <translation>Pantalla Completa</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="796"/> + <location filename="Helpviewer/HelpWindow.py" line="808"/> <source>&Full Screen</source> <translation>&Pantalla Completa</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="796"/> + <location filename="Helpviewer/HelpWindow.py" line="808"/> <source>F11</source> <translation>F11</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="916"/> + <location filename="Helpviewer/HelpWindow.py" line="928"/> <source>Manage QtHelp &Documents</source> <translation>Gestionar &Documentos de QtHelp</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="929"/> + <location filename="Helpviewer/HelpWindow.py" line="941"/> <source>Manage QtHelp &Filters</source> <translation>Gestionar &Filtros de QtHelp</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="942"/> + <location filename="Helpviewer/HelpWindow.py" line="954"/> <source>&Reindex Documentation</source> <translation>&Reindexar Documentación</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="960"/> + <location filename="Helpviewer/HelpWindow.py" line="972"/> <source>Clear private data</source> <translation>Limpiar Datos Privados</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="956"/> + <location filename="Helpviewer/HelpWindow.py" line="968"/> <source>&Clear private data</source> <translation>Li&mpiar Datos Privados</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="961"/> + <location filename="Helpviewer/HelpWindow.py" line="973"/> <source><b>Clear private data</b><p>Clears the private data like browsing history, search history or the favicons database.</p></source> <translation><b>Limpiar datos privados</b><p>Limpia los datos privados como historial de navegación, de búsqueda o base de datos de favicons.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="970"/> + <location filename="Helpviewer/HelpWindow.py" line="982"/> <source>Clear &icons database</source> <translation>Limpiar base de datos de &iconos</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1024"/> + <location filename="Helpviewer/HelpWindow.py" line="1036"/> <source>Show Network Monitor</source> <translation>Mostrar monitor de red</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1024"/> + <location filename="Helpviewer/HelpWindow.py" line="1036"/> <source>Show &Network Monitor</source> <translation>Mostrar mo&nitor de red</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1028"/> + <location filename="Helpviewer/HelpWindow.py" line="1040"/> <source>Show the network monitor dialog</source> <translation>Muestra el diálogo de monitor de red</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1029"/> + <location filename="Helpviewer/HelpWindow.py" line="1041"/> <source><b>Show Network Monitor</b><p>Shows the network monitor dialog.</p></source> <translation><b>Mostrar Monitor de Red</b><p>Muestra el diálogo de monitor de red.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1134"/> + <location filename="Helpviewer/HelpWindow.py" line="1147"/> <source>&Settings</source> <translation>Con&figuración</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1153"/> + <location filename="Helpviewer/HelpWindow.py" line="1166"/> <source>&Tools</source> <translation>&Herramientas</translation> </message> <message> + <location filename="Helpviewer/HelpWindow.py" line="795"/> + <source>Show page source</source> + <translation>Mostrar código fuente</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="795"/> + <source>Ctrl+U</source> + <translation>Ctrl+U</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="799"/> + <source>Show the page source in an editor</source> + <translation>Muestra el código fuente en un editor</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="800"/> + <source><b>Show page source</b><p>Show the page source in an editor.</p></source> + <translation><b>Mostrar codigo fuente</b><p>Muestra el código fuente en un editor.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="853"/> + <source>&Languages...</source> + <translation>&Lenguajes...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="856"/> + <source>Configure the accepted languages for web pages</source> + <translation>Configurar los lenguajes aceptados para páginas web</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="858"/> + <source><b>Languages</b><p>Configure the accepted languages for web pages.</p></source> + <translation><b>Lenguagjes</b><p>Configurar los lenguajes aceptados para páginas web..</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="853"/> + <source>Languages</source> + <translation>Lenguajes</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="866"/> + <source>Cookies</source> + <translation>Cookies</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="866"/> + <source>C&ookies...</source> + <translation>C&ookies...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="869"/> + <source>Configure cookies handling</source> + <translation>Configurar manejo de cookies</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="871"/> + <source><b>Cookies</b><p>Configure cookies handling.</p></source> + <translation><b>Cookies</b><p>Configurar manejo de cookies.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1276"/> + <source>Settings</source> + <translation>Configuración</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="764"/> + <source>Zoom reset</source> + <translation>Restablecer zoom</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="764"/> + <source>Zoom &reset</source> + <translation>&Restablecer zoom</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="764"/> + <source>Ctrl+0</source> + <comment>View|Zoom reset</comment> + <translation>Ctrl+0</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="769"/> + <source>Reset the zoom of the text</source> + <translation>Restablecer el zoom aplicado al texto</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="779"/> + <source>Zoom text only</source> + <translation>Aplicar zoom al texto solamente</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="779"/> + <source>Zoom &text only</source> + <translation>Aplicar zoom al &texto solamente</translation> + </message> + <message> <location filename="Helpviewer/HelpWindow.py" line="783"/> - <source>Show page source</source> - <translation>Mostrar código fuente</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="783"/> - <source>Ctrl+U</source> - <translation>Ctrl+U</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="787"/> - <source>Show the page source in an editor</source> - <translation>Muestra el código fuente en un editor</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="788"/> - <source><b>Show page source</b><p>Show the page source in an editor.</p></source> - <translation><b>Mostrar codigo fuente</b><p>Muestra el código fuente en un editor.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="841"/> - <source>&Languages...</source> - <translation>&Lenguajes...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="844"/> - <source>Configure the accepted languages for web pages</source> - <translation>Configurar los lenguajes aceptados para páginas web</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="846"/> - <source><b>Languages</b><p>Configure the accepted languages for web pages.</p></source> - <translation><b>Lenguagjes</b><p>Configurar los lenguajes aceptados para páginas web..</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="841"/> - <source>Languages</source> - <translation>Lenguajes</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="854"/> - <source>Cookies</source> - <translation>Cookies</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="854"/> - <source>C&ookies...</source> - <translation>C&ookies...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="857"/> - <source>Configure cookies handling</source> - <translation>Configurar manejo de cookies</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="859"/> - <source><b>Cookies</b><p>Configure cookies handling.</p></source> - <translation><b>Cookies</b><p>Configurar manejo de cookies.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1260"/> - <source>Settings</source> - <translation>Configuración</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="752"/> - <source>Zoom reset</source> - <translation>Restablecer zoom</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="752"/> - <source>Zoom &reset</source> - <translation>&Restablecer zoom</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="752"/> - <source>Ctrl+0</source> - <comment>View|Zoom reset</comment> - <translation>Ctrl+0</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="757"/> - <source>Reset the zoom of the text</source> - <translation>Restablecer el zoom aplicado al texto</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="767"/> - <source>Zoom text only</source> - <translation>Aplicar zoom al texto solamente</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="767"/> - <source>Zoom &text only</source> - <translation>Aplicar zoom al &texto solamente</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="771"/> <source>Zoom text only; pictures remain constant</source> <translation>El zoom se aplica al texto solamente; las imágenes permanecen constantes</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="773"/> + <location filename="Helpviewer/HelpWindow.py" line="785"/> <source><b>Zoom text only</b><p>Zoom text only; pictures remain constant.</p></source> <translation><b>Aplicar zoom al texto solamente</b><p>El zoom se aplica al texto solamente; las imágenes permanecen constantes.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="758"/> + <location filename="Helpviewer/HelpWindow.py" line="770"/> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation><b>Restablecer zoom</b><p>Restablece el zoom aplicado al texto. Establece el factor de zoom a 100%.</p></translation> </message> @@ -13053,142 +13053,142 @@ <translation><b>Exportar Marcadores</b><p>Exportar los marcadores a un archivo.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="631"/> + <location filename="Helpviewer/HelpWindow.py" line="643"/> <source>Manage Bookmarks</source> <translation>Gestionar marcadores</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="631"/> + <location filename="Helpviewer/HelpWindow.py" line="643"/> <source>&Manage Bookmarks...</source> <translation>&Gestionar marcadores...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="631"/> + <location filename="Helpviewer/HelpWindow.py" line="643"/> <source>Ctrl+Shift+B</source> <comment>Help|Manage bookmarks</comment> <translation>Ctrl+Shift+B</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="635"/> + <location filename="Helpviewer/HelpWindow.py" line="647"/> <source>Open a dialog to manage the bookmarks.</source> <translation>Abrir un diálogo para gestionar los marcadores.</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="637"/> + <location filename="Helpviewer/HelpWindow.py" line="649"/> <source><b>Manage Bookmarks...</b><p>Open a dialog to manage the bookmarks.</p></source> <translation><b>Gestionar Bookmarks...</b><p>Abrir un diálogo para gestionar los marcadores.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="645"/> + <location filename="Helpviewer/HelpWindow.py" line="657"/> <source>Add &Bookmark...</source> <translation>Añadir &Marcador...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="645"/> + <location filename="Helpviewer/HelpWindow.py" line="657"/> <source>Ctrl+D</source> <comment>Help|Add bookmark</comment> <translation>Ctrl+D</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="651"/> + <location filename="Helpviewer/HelpWindow.py" line="663"/> <source>Open a dialog to add a bookmark.</source> <translation>Abrir un diálogo para añadir un marcador.</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="652"/> - <source><b>Add Bookmark</b><p>Open a dialog to add the current URL as a bookmark.</p></source> - <translation><b>Añadir Marcador</b><p>Abre un diálogo para añadir la URL actual como un marcador.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="659"/> - <source>Add Folder</source> - <translation>Añadir Carpeta</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="659"/> - <source>Add &Folder...</source> - <translation>Añadir &Carpeta...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="662"/> - <source>Open a dialog to add a new bookmarks folder.</source> - <translation>Abre un diálogo para añadir una nueva carpeta de marcadores.</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="664"/> + <source><b>Add Bookmark</b><p>Open a dialog to add the current URL as a bookmark.</p></source> + <translation><b>Añadir Marcador</b><p>Abre un diálogo para añadir la URL actual como un marcador.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="671"/> + <source>Add Folder</source> + <translation>Añadir Carpeta</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="671"/> + <source>Add &Folder...</source> + <translation>Añadir &Carpeta...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="674"/> + <source>Open a dialog to add a new bookmarks folder.</source> + <translation>Abre un diálogo para añadir una nueva carpeta de marcadores.</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="676"/> <source><b>Add Folder...</b><p>Open a dialog to add a new bookmarks folder.</p></source> <translation><b>Añadir Carpeta...</b><p>Abrir un diálogo para añadir una nueva carpeta de marcadores.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="672"/> + <location filename="Helpviewer/HelpWindow.py" line="684"/> <source>Bookmark All Tabs</source> <translation>Todas las Pestañas a Marcadores</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="672"/> + <location filename="Helpviewer/HelpWindow.py" line="684"/> <source>Bookmark All Tabs...</source> <translation>Todas las Pestañas a Marcadores...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="675"/> + <location filename="Helpviewer/HelpWindow.py" line="687"/> <source>Bookmark all open tabs.</source> <translation>Todas las pestañas abiertas a marcadores.</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="677"/> + <location filename="Helpviewer/HelpWindow.py" line="689"/> <source><b>Bookmark All Tabs...</b><p>Open a dialog to add a new bookmarks folder for all open tabs.</p></source> <translation><b>Todas las Pestañas a Marcadores...</b><p>Abrir un diálogo para añadir una nueva carpeta de marcadores para todas las pestañas abiertas.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1753"/> + <location filename="Helpviewer/HelpWindow.py" line="1808"/> <source>Saved Tabs</source> <translation>Pestañas Guardadas</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1195"/> + <location filename="Helpviewer/HelpWindow.py" line="1208"/> <source>Close Others</source> <translation>Cerrar Otras</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>F5</source> <comment>Go|Reload</comment> <translation>F5</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>Stop</source> <translation>Detener</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>&Stop</source> <translation>&Detener</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>Ctrl+.</source> <comment>Go|Stop</comment> <translation>Ctrl+.</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>Esc</source> <comment>Go|Stop</comment> <translation>Esc</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="567"/> + <location filename="Helpviewer/HelpWindow.py" line="579"/> <source>Stop loading</source> <translation>Detener carga</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="568"/> + <location filename="Helpviewer/HelpWindow.py" line="580"/> <source><b>Stop</b><p>Stops loading of the current tab.</p></source> <translation><b>Detener</b><p>Detiene la carga de la pestaña actual.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1188"/> + <location filename="Helpviewer/HelpWindow.py" line="1201"/> <source>Duplicate Page</source> <translation>Duplicar Página</translation> </message> @@ -13219,100 +13219,115 @@ <translation><b>Guardar Como...</b><p>Guarda la página actual en disco.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1679"/> + <location filename="Helpviewer/HelpWindow.py" line="1734"/> <source>Eric Web Browser</source> <translation>Navegador Web de Eric</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1670"/> + <location filename="Helpviewer/HelpWindow.py" line="1725"/> <source><h3>About Eric Web Browser</h3><p>The Eric Web Browser is a combined help file and HTML browser.</p></source> <translation><h3>Acerca del Navegador Web de Eric</h3><p>El Navegador Web de Eric es una combinación de navegador Web y navegador de archivos de ayuda.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1976"/> + <location filename="Helpviewer/HelpWindow.py" line="2031"/> <source><b>Are you sure you want to turn on private browsing?</b><p>When private browsing is turned on, web pages are not added to the history, searches are not added to the list of recent searches and web site icons and cookies are not stored. Until you close the window, you can still click the Back and Forward buttons to return to the web pages you have opened.</p></source> <translation><b>¿Está seguro de que desea habilitar la navegación privada?</b><p>Mientras la navegación privada está habilitada, las páginas web no se añaden al historial, las búsquedas no se añaden a la lista de búsquedas recientes y los iconos de sitio web y cookies no son almacenados. Hasta que cierre la ventana, podrá hacer click sobre los botones de Atrás y Adelante para volver a las páginas web que ya hayan sido visitadas.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="492"/> + <location filename="Helpviewer/HelpWindow.py" line="504"/> <source>Quit the web browser</source> <translation>Salir del navegador web</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="493"/> + <location filename="Helpviewer/HelpWindow.py" line="505"/> <source><b>Quit</b><p>Quit the web browser.</p></source> <translation><b>Salir</b><p>Salir del navegador web.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="982"/> + <location filename="Helpviewer/HelpWindow.py" line="994"/> <source>Configure Search Engines</source> <translation>Configurar Motores de Búsqueda</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="982"/> + <location filename="Helpviewer/HelpWindow.py" line="994"/> <source>Configure &Search Engines...</source> <translation>Configurar Motores de &Búsqueda...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="986"/> + <location filename="Helpviewer/HelpWindow.py" line="998"/> <source>Configure the available search engines</source> <translation>Configurar los motores de búsqueda disponibles</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="988"/> - <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> - <translation><b>Configurar Motores de Búsqueda...</b><p>Abre un diálogo para configurar los motores de búsqueda disponibles.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="996"/> - <source>Manage Saved Passwords</source> - <translation>Gestionar Contraseñas Almacenadas</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="996"/> - <source>Manage Saved Passwords...</source> - <translation>Gestionar Contraseñas Almacenadas...</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="1000"/> + <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> + <translation><b>Configurar Motores de Búsqueda...</b><p>Abre un diálogo para configurar los motores de búsqueda disponibles.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1008"/> + <source>Manage Saved Passwords</source> + <translation>Gestionar Contraseñas Almacenadas</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1008"/> + <source>Manage Saved Passwords...</source> + <translation>Gestionar Contraseñas Almacenadas...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1012"/> <source>Manage the saved passwords</source> <translation>Gestionar las contraseñas almacenadas</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1002"/> - <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> - <translation><b>Gestionar Contraseñas Almacenadas</b><p>Abre un diálogo para gestionar las contraseñas almacenadas.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1010"/> - <source>Ad Block</source> - <translation>Ad Block</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1010"/> - <source>&Ad Block...</source> - <translation>&Ad Block...</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="1014"/> + <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> + <translation><b>Gestionar Contraseñas Almacenadas</b><p>Abre un diálogo para gestionar las contraseñas almacenadas.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1022"/> + <source>Ad Block</source> + <translation>Ad Block</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1022"/> + <source>&Ad Block...</source> + <translation>&Ad Block...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1026"/> <source>Configure AdBlock subscriptions and rules</source> <translation>Configurar las suscripciones y reglas de AdBlock</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1016"/> + <location filename="Helpviewer/HelpWindow.py" line="1028"/> <source><b>Ad Block...</b><p>Opens a dialog to configure AdBlock subscriptions and rules.</p></source> <translation><b>Ad Block...</b><p>Abre un diálogo para configurar las suscripciones y reglas de AdBlock</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2531"/> + <location filename="Helpviewer/HelpWindow.py" line="2594"/> <source>eric5 Web Browser</source> <translation>Navegador Web de eric5</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2241"/> + <location filename="Helpviewer/HelpWindow.py" line="2304"/> <source>Failed to load</source> <translation>Ha fallado la carga</translation> </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1216"/> + <source>Print as PDF</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="438"/> + <source>Print the displayed help as PDF</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="439"/> + <source><b>Print as PDF</b><p>Print the displayed help text as a PDF file.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Hg</name>
--- a/i18n/eric5_fr.ts Sun May 30 18:28:06 2010 +0200 +++ b/i18n/eric5_fr.ts Sun May 30 18:53:41 2010 +0200 @@ -11951,24 +11951,24 @@ <context> <name>FtpReply</name> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="319"/> + <location filename="Helpviewer/Network/FtpReply.py" line="332"/> <source> <p><a class="link_parent" href="{0}">Change to parent directory</a></p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="332"/> + <location filename="Helpviewer/Network/FtpReply.py" line="345"/> <source> <tr><th align="left">Name</th><th>Size</th><th align="left">Last modified</th></tr> </source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="358"/> + <location filename="Helpviewer/Network/FtpReply.py" line="371"/> <source>{0} {1}</source> <comment>size unit</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="382"/> + <location filename="Helpviewer/Network/FtpReply.py" line="395"/> <source>Listing of {0}</source> <translation type="unfinished"></translation> </message> @@ -12162,17 +12162,17 @@ <translation type="obsolete"><html><head><title>Fenêtre d'aide</title></head><body><p>Impossible de charger l'URL demandée <b>%1</b></p><p>Raison: %2</p></body></html></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>Check the address for errors such as <b>ww</b>.example.org instead of <b>www</b>.example.org</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>If the address is correct, try checking the network connection.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source> <translation type="unfinished"></translation> </message> @@ -12247,12 +12247,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="947"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="946"/> <source>Error loading page: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>When connecting to: {0}.</source> <translation type="unfinished"></translation> </message> @@ -13139,7 +13139,7 @@ <translation>Nouvelle fenêtre</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1559"/> + <location filename="Helpviewer/HelpWindow.py" line="1575"/> <source>Open File</source> <translation>Ouvrir Fichier</translation> </message> @@ -13159,7 +13159,7 @@ <translation><b>Ouvrir Fichier</b><p>Ouvre une nouvelle fenêtre d'aide.Affiche une boite de sélection pour choisir un fichier.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1201"/> + <location filename="Helpviewer/HelpWindow.py" line="1214"/> <source>Print</source> <translation>Imprimer</translation> </message> @@ -13179,107 +13179,107 @@ <translation><b>Imprimer</b><p>Imprime le fichier d'aide affiché.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1192"/> + <location filename="Helpviewer/HelpWindow.py" line="1205"/> <source>Close</source> <translation>Fermer</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="448"/> + <location filename="Helpviewer/HelpWindow.py" line="460"/> <source>&Close</source> <translation>&Fermer</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="453"/> + <location filename="Helpviewer/HelpWindow.py" line="465"/> <source>Close the current help window</source> <translation>Ferme la fenêtre d'aide en cours</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="487"/> + <location filename="Helpviewer/HelpWindow.py" line="499"/> <source>Quit</source> <translation>Quitter</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="487"/> + <location filename="Helpviewer/HelpWindow.py" line="499"/> <source>&Quit</source> <translation>&Quitter</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>Backward</source> <translation>Précédent</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>&Backward</source> <translation>&Précédent</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="510"/> + <location filename="Helpviewer/HelpWindow.py" line="522"/> <source>Move one help screen backward</source> <translation>Retourne à la page d'aide précédente</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="511"/> + <location filename="Helpviewer/HelpWindow.py" line="523"/> <source><b>Backward</b><p>Moves one help screen backward. If none is available, this action is disabled.</p></source> <translation><b>Précédent</b><p>Retourne à la page d'aide précédente. S'il n'y en a pas, le bouton est désactivé.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>Forward</source> <translation>Suivant</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>&Forward</source> <translation>&Suivant</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="525"/> + <location filename="Helpviewer/HelpWindow.py" line="537"/> <source>Move one help screen forward</source> <translation>Avance à la page d'aide suivante</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="526"/> + <location filename="Helpviewer/HelpWindow.py" line="538"/> <source><b>Forward</b><p>Moves one help screen forward. If none is available, this action is disabled.</p></source> <translation><b>Suivant</b><p>Avance à la page d'aide suivante. S'il n'y en a pas, le bouton est désactivé.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="534"/> + <location filename="Helpviewer/HelpWindow.py" line="546"/> <source>Home</source> <translation>URL de démarrage</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="534"/> + <location filename="Helpviewer/HelpWindow.py" line="546"/> <source>&Home</source> <translation>&URL de démarrage</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="539"/> + <location filename="Helpviewer/HelpWindow.py" line="551"/> <source>Move to the initial help screen</source> <translation>Va à la page d'aide de démarrage</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="540"/> + <location filename="Helpviewer/HelpWindow.py" line="552"/> <source><b>Home</b><p>Moves to the initial help screen.</p></source> <translation><b>URL de démarrage</b><p>Va à la page d'aide initiale.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>Reload</source> <translation>Recharger</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>&Reload</source> <translation>&Recharger</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="553"/> + <location filename="Helpviewer/HelpWindow.py" line="565"/> <source>Reload the current help screen</source> <translation>Recharge la page d'aide courante</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="554"/> + <location filename="Helpviewer/HelpWindow.py" line="566"/> <source><b>Reload</b><p>Reloads the current help screen.</p></source> <translation><b>Recharger</b><p>Recharge la page d'aide courante.</p></translation> </message> @@ -13299,7 +13299,7 @@ <translation type="obsolete"><b>Effacer l'historique</b><p>Efface l'historique des pages parcourues.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="645"/> + <location filename="Helpviewer/HelpWindow.py" line="657"/> <source>Add Bookmark</source> <translation>Ajouter un signet</translation> </message> @@ -13334,162 +13334,162 @@ <translation type="obsolete"><b>Modifier les signets</b><p>Cette action ouvre une fenêtre où vous pourrez changer le nom des signets ainsi que leur ordre d'apparition dans le menu Signets.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="686"/> + <location filename="Helpviewer/HelpWindow.py" line="698"/> <source>What's This?</source> <translation>Qu'est-ce que c'est ?</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="686"/> + <location filename="Helpviewer/HelpWindow.py" line="698"/> <source>&What's This?</source> <translation>&Qu'est-ce que c'est?</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="691"/> - <source>Context sensitive help</source> - <translation>Aide contextuelle</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="692"/> - <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> - <translation><b>Affiche l'aide contextuelle</b><p>Dans le mode "Qu'est-ce que c'est?", la souris est affichée avec un point d'interrogation, et on peut cliquer sur les éléments de l'interface pour obtenir une courte description de l'élément. Cette fonction peut être obtenue avec le bouton d'aide contextuelle de la barre principale.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="703"/> - <source>About</source> - <translation>À propos de</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="703"/> + <source>Context sensitive help</source> + <translation>Aide contextuelle</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="704"/> + <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> + <translation><b>Affiche l'aide contextuelle</b><p>Dans le mode "Qu'est-ce que c'est?", la souris est affichée avec un point d'interrogation, et on peut cliquer sur les éléments de l'interface pour obtenir une courte description de l'élément. Cette fonction peut être obtenue avec le bouton d'aide contextuelle de la barre principale.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="715"/> + <source>About</source> + <translation>À propos de</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="715"/> <source>&About</source> <translation>&À propos de </translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="706"/> + <location filename="Helpviewer/HelpWindow.py" line="718"/> <source>Display information about this software</source> <translation>Affiche les informations concernant le logiciel</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="707"/> - <source><b>About</b><p>Display some information about this software.</p></source> - <translation><b>À propos de</b><p>Affiche certaines informations concernant le logiciel.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="714"/> - <source>About Qt</source> - <translation>À propos de Qt</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="714"/> - <source>About &Qt</source> - <translation>À propos de &Qt</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="717"/> - <source>Display information about the Qt toolkit</source> - <translation>Affiche les informations concernant Qt</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="719"/> - <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> - <translation><b>À propos de Qt</b><p>Affiche les informations concernant Qt</p></translation> + <source><b>About</b><p>Display some information about this software.</p></source> + <translation><b>À propos de</b><p>Affiche certaines informations concernant le logiciel.</p></translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="726"/> - <source>Zoom in</source> - <translation>Zoom avant</translation> + <source>About Qt</source> + <translation>À propos de Qt</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="726"/> - <source>Zoom &in</source> - <translation>Zoom a&vant</translation> + <source>About &Qt</source> + <translation>À propos de &Qt</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="729"/> + <source>Display information about the Qt toolkit</source> + <translation>Affiche les informations concernant Qt</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="731"/> + <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> + <translation><b>À propos de Qt</b><p>Affiche les informations concernant Qt</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="738"/> + <source>Zoom in</source> + <translation>Zoom avant</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="738"/> + <source>Zoom &in</source> + <translation>Zoom a&vant</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="743"/> <source>Zoom in on the text</source> <translation>Zoom sur le texte</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="732"/> - <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> - <translation><b>Zoom avant</b><p>Zoom sur le texte. Affiche le texte en plus gros.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="739"/> - <source>Zoom out</source> - <translation>Zoom arrière</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="739"/> - <source>Zoom &out</source> - <translation>Zoom a&rrière</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="744"/> + <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> + <translation><b>Zoom avant</b><p>Zoom sur le texte. Affiche le texte en plus gros.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="751"/> + <source>Zoom out</source> + <translation>Zoom arrière</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="751"/> + <source>Zoom &out</source> + <translation>Zoom a&rrière</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="756"/> <source>Zoom out on the text</source> <translation>Zoom arrière du texte</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="745"/> + <location filename="Helpviewer/HelpWindow.py" line="757"/> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation><b>Zoom arrière</b><p>Zoom arrière du texte. Affiche le texte en plus petit.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="575"/> + <location filename="Helpviewer/HelpWindow.py" line="587"/> <source>Copy</source> <translation>Copier</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="575"/> + <location filename="Helpviewer/HelpWindow.py" line="587"/> <source>&Copy</source> <translation>&Copier</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="580"/> + <location filename="Helpviewer/HelpWindow.py" line="592"/> <source>Copy the selected text</source> <translation>Copie le texte sélectionné</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="581"/> + <location filename="Helpviewer/HelpWindow.py" line="593"/> <source><b>Copy</b><p>Copy the selected text to the clipboard.</p></source> <translation><b>Copier</b><p>Copie le texte sélectionné dans le presse-papier.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1057"/> + <location filename="Helpviewer/HelpWindow.py" line="1069"/> <source>&File</source> <translation>&Fichier</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1079"/> + <location filename="Helpviewer/HelpWindow.py" line="1092"/> <source>&Edit</source> <translation>&Edition</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1087"/> + <location filename="Helpviewer/HelpWindow.py" line="1100"/> <source>&View</source> <translation>&Affichage</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1098"/> - <source>&Go</source> - <translation>A&ller</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="1111"/> + <source>&Go</source> + <translation>A&ller</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1124"/> <source>H&istory</source> <translation>&Historique</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1120"/> + <location filename="Helpviewer/HelpWindow.py" line="1133"/> <source>&Bookmarks</source> <translation>&Signets</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1165"/> + <location filename="Helpviewer/HelpWindow.py" line="1178"/> <source>&Help</source> <translation>A&ide</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1294"/> + <location filename="Helpviewer/HelpWindow.py" line="1310"/> <source><p>Enter the help file to be displayed directly into this edit field. Select a previously shown help file from the drop down list.</p></source> <translation><p>Entrer directement un fichier d'aide à afficher ou sélectionner un fichier d'aide déjà affiché à partir de la liste déroulante.</p></translation> </message> @@ -13522,65 +13522,65 @@ <translation>Ctrl+P</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="448"/> + <location filename="Helpviewer/HelpWindow.py" line="460"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation>Ctrl+W</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="487"/> + <location filename="Helpviewer/HelpWindow.py" line="499"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="588"/> + <location filename="Helpviewer/HelpWindow.py" line="600"/> <source>&Find...</source> <translation>&Rechercher...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="593"/> + <location filename="Helpviewer/HelpWindow.py" line="605"/> <source>Find text in page</source> <translation>Trouver le texte dans la page</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="594"/> + <location filename="Helpviewer/HelpWindow.py" line="606"/> <source><b>Find</b><p>Find text in the current page.</p></source> <translation><b>Chercher</b><p>Recherche le texte dans la page courante.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="601"/> + <location filename="Helpviewer/HelpWindow.py" line="613"/> <source>Find &next</source> <translation>Chercher &suivant</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="615"/> + <location filename="Helpviewer/HelpWindow.py" line="627"/> <source>Find &previous</source> <translation>Chercher &précédent</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="575"/> + <location filename="Helpviewer/HelpWindow.py" line="587"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1210"/> + <location filename="Helpviewer/HelpWindow.py" line="1225"/> <source>File</source> <translation>Fichier</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1226"/> + <location filename="Helpviewer/HelpWindow.py" line="1242"/> <source>Edit</source> <translation>Édition</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1231"/> + <location filename="Helpviewer/HelpWindow.py" line="1247"/> <source>View</source> <translation>Affichage</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1240"/> + <location filename="Helpviewer/HelpWindow.py" line="1256"/> <source>Find</source> <translation>Recherche</translation> </message> @@ -13590,17 +13590,17 @@ <translation type="obsolete">Signets</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1267"/> + <location filename="Helpviewer/HelpWindow.py" line="1283"/> <source>Help</source> <translation>Aide</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1274"/> + <location filename="Helpviewer/HelpWindow.py" line="1290"/> <source>Go</source> <translation>Aller à</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1559"/> + <location filename="Helpviewer/HelpWindow.py" line="1575"/> <source>Help Files (*.html *.htm);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source> <translation>Fichiers d'aide (*.html *.htm);;Fichiers PDF (*.pdf);;Fichiers CHM (*.chm);;Tous les fichiers (*)</translation> </message> @@ -13646,12 +13646,12 @@ <translation><b>Nouvelle fenêtre</b><p>Ouvre une nouvelle fenêtre d'aide.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="454"/> + <location filename="Helpviewer/HelpWindow.py" line="466"/> <source><b>Close</b><p>Closes the current help window.</p></source> <translation><b>Fermer</b><p>Ferme la fenêtre d'aide courante.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="461"/> + <location filename="Helpviewer/HelpWindow.py" line="473"/> <source>Close &All</source> <translation>&Tout fermer</translation> </message> @@ -13661,7 +13661,7 @@ <translation type="obsolete">Ferme toutes les fenêtres d'aide</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="465"/> + <location filename="Helpviewer/HelpWindow.py" line="477"/> <source><b>Close All</b><p>Closes all help windows except the first one.</p></source> <translation><b>Tout fermer</b><p>Ferme toutes les fenêtres d'aide sauf la première.</p></translation> </message> @@ -13676,17 +13676,17 @@ <translation type="obsolete"><b>Quitter</b><p>Quitte le navigateur d'aide.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1181"/> + <location filename="Helpviewer/HelpWindow.py" line="1194"/> <source>Move Left</source> <translation>Déplacer vers la gauche</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1184"/> + <location filename="Helpviewer/HelpWindow.py" line="1197"/> <source>Move Right</source> <translation>Déplacer vers la droite</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2032"/> + <location filename="Helpviewer/HelpWindow.py" line="2087"/> <source>...</source> <translation>...</translation> </message> @@ -13722,75 +13722,75 @@ <translation>Ouvrir le fichier dans un nouvel onglet</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="461"/> + <location filename="Helpviewer/HelpWindow.py" line="473"/> <source>Close All</source> <translation>Tout fermer</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>Alt+Left</source> <comment>Go|Backward</comment> <translation>Alt+Gauche</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>Backspace</source> <comment>Go|Backward</comment> <translation>RetArr (BackSpace)</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>Alt+Right</source> <comment>Go|Forward</comment> <translation>Alt+Droite</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>Shift+Backspace</source> <comment>Go|Forward</comment> <translation>Shift+Backspace</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="534"/> + <location filename="Helpviewer/HelpWindow.py" line="546"/> <source>Ctrl+Home</source> <comment>Go|Home</comment> <translation>Ctrl+Orig</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>Ctrl+R</source> <comment>Go|Reload</comment> <translation>Ctrl+R</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="588"/> + <location filename="Helpviewer/HelpWindow.py" line="600"/> <source>Find...</source> <translation>Rechercher...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="588"/> + <location filename="Helpviewer/HelpWindow.py" line="600"/> <source>Ctrl+F</source> <comment>Edit|Find</comment> <translation>Ctrl+F</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="601"/> + <location filename="Helpviewer/HelpWindow.py" line="613"/> <source>Find next</source> <translation>Chercher suivant</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="601"/> + <location filename="Helpviewer/HelpWindow.py" line="613"/> <source>F3</source> <comment>Edit|Find next</comment> <translation>F3</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="615"/> + <location filename="Helpviewer/HelpWindow.py" line="627"/> <source>Find previous</source> <translation>Chercher précédent</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="615"/> + <location filename="Helpviewer/HelpWindow.py" line="627"/> <source>Shift+F3</source> <comment>Edit|Find previous</comment> <translation>Shift+F3</translation> @@ -13806,60 +13806,60 @@ <translation type="obsolete">Éditer les signets...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="686"/> + <location filename="Helpviewer/HelpWindow.py" line="698"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation>Shift+F1</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="726"/> + <location filename="Helpviewer/HelpWindow.py" line="738"/> <source>Ctrl++</source> <comment>View|Zoom in</comment> <translation>Ctrl++</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="739"/> + <location filename="Helpviewer/HelpWindow.py" line="751"/> <source>Ctrl+-</source> <comment>View|Zoom out</comment> <translation>Ctrl+-</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="606"/> + <location filename="Helpviewer/HelpWindow.py" line="618"/> <source>Find next occurrence of text in page</source> <translation>Recherche de la prochaine occurence du texte dans la page</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="607"/> + <location filename="Helpviewer/HelpWindow.py" line="619"/> <source><b>Find next</b><p>Find the next occurrence of text in the current page.</p></source> <translation><b>Chercher suivant</b><p>Recherche la prochaine occurence du texte dans la page.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="620"/> + <location filename="Helpviewer/HelpWindow.py" line="632"/> <source>Find previous occurrence of text in page</source> <translation>Recherche de l' occurence précédente dans la page</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="622"/> + <location filename="Helpviewer/HelpWindow.py" line="634"/> <source><b>Find previous</b><p>Find the previous occurrence of text in the current page.</p></source> <translation><b>Chercher précédent</b><p>Recherche l'occurence précédente dans la page.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1199"/> + <location filename="Helpviewer/HelpWindow.py" line="1212"/> <source>Print Preview</source> <translation>Aperçu avant impression</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="438"/> + <location filename="Helpviewer/HelpWindow.py" line="450"/> <source>Print preview of the displayed help</source> <translation>Affiche un aperçu de l'aide avant impression</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="440"/> + <location filename="Helpviewer/HelpWindow.py" line="452"/> <source><b>Print Preview</b><p>Print preview of the displayed help text.</p></source> <translation><b>Aperçu avant impression</b><p>Aperçu avant impression de l'aide affichée.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1660"/> + <location filename="Helpviewer/HelpWindow.py" line="1715"/> <source><p>Printing is not available due to a bug in PyQt4.Please upgrade.</p></source> <translation><p>L'impression n'est pas disponible à cause d'un bug de PyQt4. Merci de mettre à jour PyQt.</p></translation> </message> @@ -13889,37 +13889,37 @@ <translation type="obsolete"><p>Erreurs SSL:</p><p>%1</p><p>Voulez-vous ignorer ces erreurs ?</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="805"/> + <location filename="Helpviewer/HelpWindow.py" line="817"/> <source>Show next tab</source> <translation>Afficher la tabulation suivante</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="805"/> + <location filename="Helpviewer/HelpWindow.py" line="817"/> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="813"/> + <location filename="Helpviewer/HelpWindow.py" line="825"/> <source>Show previous tab</source> <translation>Afficher la tabulation précédente</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="813"/> + <location filename="Helpviewer/HelpWindow.py" line="825"/> <source>Shift+Ctrl+Alt+Tab</source> <translation>Shift+Ctrl+Alt+Tab</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="821"/> + <location filename="Helpviewer/HelpWindow.py" line="833"/> <source>Switch between tabs</source> <translation>Intervertir les onglets</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="821"/> + <location filename="Helpviewer/HelpWindow.py" line="833"/> <source>Ctrl+1</source> <translation>Ctrl+1</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="970"/> + <location filename="Helpviewer/HelpWindow.py" line="982"/> <source>Clear icons database</source> <translation>Effacer la base d'icônes</translation> </message> @@ -13929,12 +13929,12 @@ <translation type="obsolete">&Effacer la base d'icônes</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="974"/> + <location filename="Helpviewer/HelpWindow.py" line="986"/> <source>Clear the database of favicons</source> <translation>Effacer la base d'icônes</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="975"/> + <location filename="Helpviewer/HelpWindow.py" line="987"/> <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> <translation><b>Effacer la base d'icônes</b><p>Efface la base d'icônes de l'URL visitée précédemment.</p></translation> </message> @@ -13944,22 +13944,22 @@ <translation type="obsolete">&Configuration</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="829"/> + <location filename="Helpviewer/HelpWindow.py" line="841"/> <source>Preferences</source> <translation>Préférences</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="829"/> + <location filename="Helpviewer/HelpWindow.py" line="841"/> <source>&Preferences...</source> <translation>&Préférences...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="832"/> + <location filename="Helpviewer/HelpWindow.py" line="844"/> <source>Set the prefered configuration</source> <translation>Édition des préférences</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="833"/> + <location filename="Helpviewer/HelpWindow.py" line="845"/> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation><b>Préférences</b><p>Edite les valeurs souhaitées pour la configuration du logiciel.</p></translation> </message> @@ -13969,152 +13969,152 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="464"/> + <location filename="Helpviewer/HelpWindow.py" line="476"/> <source>Close all help windows</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="867"/> + <location filename="Helpviewer/HelpWindow.py" line="879"/> <source>Sync with Table of Contents</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="871"/> - <source>Synchronizes the table of contents with current page</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="873"/> - <source><b>Sync with Table of Contents</b><p>Synchronizes the table of contents with current page.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="880"/> - <source>Table of Contents</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="883"/> - <source>Shows the table of contents window</source> + <source>Synchronizes the table of contents with current page</source> <translation type="unfinished"></translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="885"/> + <source><b>Sync with Table of Contents</b><p>Synchronizes the table of contents with current page.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="892"/> + <source>Table of Contents</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="895"/> + <source>Shows the table of contents window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="897"/> <source><b>Table of Contents</b><p>Shows the table of contents window.</p></source> <translation type="unfinished"></translation> </message> <message> + <location filename="Helpviewer/HelpWindow.py" line="928"/> + <source>Manage QtHelp Documents</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="931"/> + <source>Shows a dialog to manage the QtHelp documentation set</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="933"/> + <source><b>Manage QtHelp Documents</b><p>Shows a dialog to manage the QtHelp documentation set.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1170"/> + <source>&Window</source> + <translation type="unfinished">&Fenêtre</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1263"/> + <source>Filter</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1268"/> + <source>Filtered by: </source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="2415"/> + <source>Could not find an associated content.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="941"/> + <source>Manage QtHelp Filters</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="944"/> + <source>Shows a dialog to manage the QtHelp filters</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="946"/> + <source><b>Manage QtHelp Filters</b><p>Shows a dialog to manage the QtHelp filters.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="904"/> + <source>Index</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="907"/> + <source>Shows the index window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="909"/> + <source><b>Index</b><p>Shows the index window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="Helpviewer/HelpWindow.py" line="916"/> - <source>Manage QtHelp Documents</source> - <translation type="unfinished"></translation> + <source>Search</source> + <translation type="unfinished">Rechercher</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="919"/> - <source>Shows a dialog to manage the QtHelp documentation set</source> + <source>Shows the search window</source> <translation type="unfinished"></translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="921"/> - <source><b>Manage QtHelp Documents</b><p>Shows a dialog to manage the QtHelp documentation set.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1157"/> - <source>&Window</source> - <translation type="unfinished">&Fenêtre</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1247"/> - <source>Filter</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1252"/> - <source>Filtered by: </source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="2352"/> - <source>Could not find an associated content.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="929"/> - <source>Manage QtHelp Filters</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="932"/> - <source>Shows a dialog to manage the QtHelp filters</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="934"/> - <source><b>Manage QtHelp Filters</b><p>Shows a dialog to manage the QtHelp filters.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="892"/> - <source>Index</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="895"/> - <source>Shows the index window</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="897"/> - <source><b>Index</b><p>Shows the index window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="904"/> - <source>Search</source> - <translation type="unfinished">Rechercher</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="907"/> - <source>Shows the search window</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="909"/> <source><b>Search</b><p>Shows the search window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="942"/> + <location filename="Helpviewer/HelpWindow.py" line="954"/> <source>Reindex Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="945"/> + <location filename="Helpviewer/HelpWindow.py" line="957"/> <source>Reindexes the documentation set</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="947"/> + <location filename="Helpviewer/HelpWindow.py" line="959"/> <source><b>Reindex Documentation</b><p>Reindexes the documentation set.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2468"/> + <location filename="Helpviewer/HelpWindow.py" line="2531"/> <source>Updating search index</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2522"/> + <location filename="Helpviewer/HelpWindow.py" line="2585"/> <source>Looking for Documentation...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2552"/> + <location filename="Helpviewer/HelpWindow.py" line="2615"/> <source>Unfiltered</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2571"/> + <location filename="Helpviewer/HelpWindow.py" line="2634"/> <source>Help Engine</source> <translation type="unfinished"></translation> </message> @@ -14124,218 +14124,218 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="476"/> + <location filename="Helpviewer/HelpWindow.py" line="488"/> <source>Private Browsing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="472"/> + <location filename="Helpviewer/HelpWindow.py" line="484"/> <source>Private &Browsing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="477"/> + <location filename="Helpviewer/HelpWindow.py" line="489"/> <source><b>Private Browsing</b><p>Enables private browsing. In this mode no history is recorded anymore.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2224"/> + <location filename="Helpviewer/HelpWindow.py" line="2287"/> <source>Loading...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2239"/> + <location filename="Helpviewer/HelpWindow.py" line="2302"/> <source>Finished loading</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="796"/> + <location filename="Helpviewer/HelpWindow.py" line="808"/> <source>Full Screen</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="796"/> + <location filename="Helpviewer/HelpWindow.py" line="808"/> <source>&Full Screen</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="796"/> + <location filename="Helpviewer/HelpWindow.py" line="808"/> <source>F11</source> <translation type="unfinished">F11</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="916"/> + <location filename="Helpviewer/HelpWindow.py" line="928"/> <source>Manage QtHelp &Documents</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="929"/> + <location filename="Helpviewer/HelpWindow.py" line="941"/> <source>Manage QtHelp &Filters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="942"/> + <location filename="Helpviewer/HelpWindow.py" line="954"/> <source>&Reindex Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="960"/> + <location filename="Helpviewer/HelpWindow.py" line="972"/> <source>Clear private data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="956"/> + <location filename="Helpviewer/HelpWindow.py" line="968"/> <source>&Clear private data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="961"/> + <location filename="Helpviewer/HelpWindow.py" line="973"/> <source><b>Clear private data</b><p>Clears the private data like browsing history, search history or the favicons database.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="970"/> + <location filename="Helpviewer/HelpWindow.py" line="982"/> <source>Clear &icons database</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1024"/> + <location filename="Helpviewer/HelpWindow.py" line="1036"/> <source>Show Network Monitor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1024"/> + <location filename="Helpviewer/HelpWindow.py" line="1036"/> <source>Show &Network Monitor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1028"/> + <location filename="Helpviewer/HelpWindow.py" line="1040"/> <source>Show the network monitor dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1029"/> + <location filename="Helpviewer/HelpWindow.py" line="1041"/> <source><b>Show Network Monitor</b><p>Shows the network monitor dialog.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1134"/> + <location filename="Helpviewer/HelpWindow.py" line="1147"/> <source>&Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1153"/> + <location filename="Helpviewer/HelpWindow.py" line="1166"/> <source>&Tools</source> <translation type="unfinished">&Outils</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="783"/> + <location filename="Helpviewer/HelpWindow.py" line="795"/> <source>Show page source</source> <translation type="unfinished"></translation> </message> <message> + <location filename="Helpviewer/HelpWindow.py" line="795"/> + <source>Ctrl+U</source> + <translation type="unfinished">Ctrl+U</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="799"/> + <source>Show the page source in an editor</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="800"/> + <source><b>Show page source</b><p>Show the page source in an editor.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="853"/> + <source>&Languages...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="856"/> + <source>Configure the accepted languages for web pages</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="858"/> + <source><b>Languages</b><p>Configure the accepted languages for web pages.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="853"/> + <source>Languages</source> + <translation type="unfinished">Langages</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="866"/> + <source>Cookies</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="866"/> + <source>C&ookies...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="869"/> + <source>Configure cookies handling</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="871"/> + <source><b>Cookies</b><p>Configure cookies handling.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1276"/> + <source>Settings</source> + <translation type="unfinished">Configuration</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="764"/> + <source>Zoom reset</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="764"/> + <source>Zoom &reset</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="764"/> + <source>Ctrl+0</source> + <comment>View|Zoom reset</comment> + <translation type="unfinished">Ctrl+0</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="769"/> + <source>Reset the zoom of the text</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="779"/> + <source>Zoom text only</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="779"/> + <source>Zoom &text only</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="Helpviewer/HelpWindow.py" line="783"/> - <source>Ctrl+U</source> - <translation type="unfinished">Ctrl+U</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="787"/> - <source>Show the page source in an editor</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="788"/> - <source><b>Show page source</b><p>Show the page source in an editor.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="841"/> - <source>&Languages...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="844"/> - <source>Configure the accepted languages for web pages</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="846"/> - <source><b>Languages</b><p>Configure the accepted languages for web pages.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="841"/> - <source>Languages</source> - <translation type="unfinished">Langages</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="854"/> - <source>Cookies</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="854"/> - <source>C&ookies...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="857"/> - <source>Configure cookies handling</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="859"/> - <source><b>Cookies</b><p>Configure cookies handling.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1260"/> - <source>Settings</source> - <translation type="unfinished">Configuration</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="752"/> - <source>Zoom reset</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="752"/> - <source>Zoom &reset</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="752"/> - <source>Ctrl+0</source> - <comment>View|Zoom reset</comment> - <translation type="unfinished">Ctrl+0</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="757"/> - <source>Reset the zoom of the text</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="767"/> - <source>Zoom text only</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="767"/> - <source>Zoom &text only</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="771"/> <source>Zoom text only; pictures remain constant</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="773"/> + <location filename="Helpviewer/HelpWindow.py" line="785"/> <source><b>Zoom text only</b><p>Zoom text only; pictures remain constant.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="758"/> + <location filename="Helpviewer/HelpWindow.py" line="770"/> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation type="unfinished"></translation> </message> @@ -14385,142 +14385,142 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="631"/> + <location filename="Helpviewer/HelpWindow.py" line="643"/> <source>Manage Bookmarks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="631"/> + <location filename="Helpviewer/HelpWindow.py" line="643"/> <source>&Manage Bookmarks...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="631"/> + <location filename="Helpviewer/HelpWindow.py" line="643"/> <source>Ctrl+Shift+B</source> <comment>Help|Manage bookmarks</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="635"/> + <location filename="Helpviewer/HelpWindow.py" line="647"/> <source>Open a dialog to manage the bookmarks.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="637"/> + <location filename="Helpviewer/HelpWindow.py" line="649"/> <source><b>Manage Bookmarks...</b><p>Open a dialog to manage the bookmarks.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="645"/> + <location filename="Helpviewer/HelpWindow.py" line="657"/> <source>Add &Bookmark...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="645"/> + <location filename="Helpviewer/HelpWindow.py" line="657"/> <source>Ctrl+D</source> <comment>Help|Add bookmark</comment> <translation type="unfinished">Ctrl+D</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="651"/> + <location filename="Helpviewer/HelpWindow.py" line="663"/> <source>Open a dialog to add a bookmark.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="652"/> - <source><b>Add Bookmark</b><p>Open a dialog to add the current URL as a bookmark.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="659"/> - <source>Add Folder</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="659"/> - <source>Add &Folder...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="662"/> - <source>Open a dialog to add a new bookmarks folder.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="664"/> + <source><b>Add Bookmark</b><p>Open a dialog to add the current URL as a bookmark.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="671"/> + <source>Add Folder</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="671"/> + <source>Add &Folder...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="674"/> + <source>Open a dialog to add a new bookmarks folder.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="676"/> <source><b>Add Folder...</b><p>Open a dialog to add a new bookmarks folder.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="672"/> + <location filename="Helpviewer/HelpWindow.py" line="684"/> <source>Bookmark All Tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="672"/> + <location filename="Helpviewer/HelpWindow.py" line="684"/> <source>Bookmark All Tabs...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="675"/> + <location filename="Helpviewer/HelpWindow.py" line="687"/> <source>Bookmark all open tabs.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="677"/> + <location filename="Helpviewer/HelpWindow.py" line="689"/> <source><b>Bookmark All Tabs...</b><p>Open a dialog to add a new bookmarks folder for all open tabs.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1753"/> + <location filename="Helpviewer/HelpWindow.py" line="1808"/> <source>Saved Tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1195"/> + <location filename="Helpviewer/HelpWindow.py" line="1208"/> <source>Close Others</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>F5</source> <comment>Go|Reload</comment> <translation type="unfinished">F5</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>Stop</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>&Stop</source> <translation type="unfinished">&Arrêt</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>Ctrl+.</source> <comment>Go|Stop</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>Esc</source> <comment>Go|Stop</comment> <translation type="unfinished">Esc</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="567"/> + <location filename="Helpviewer/HelpWindow.py" line="579"/> <source>Stop loading</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="568"/> + <location filename="Helpviewer/HelpWindow.py" line="580"/> <source><b>Stop</b><p>Stops loading of the current tab.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1188"/> + <location filename="Helpviewer/HelpWindow.py" line="1201"/> <source>Duplicate Page</source> <translation type="unfinished"></translation> </message> @@ -14551,100 +14551,115 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1679"/> + <location filename="Helpviewer/HelpWindow.py" line="1734"/> <source>Eric Web Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1670"/> + <location filename="Helpviewer/HelpWindow.py" line="1725"/> <source><h3>About Eric Web Browser</h3><p>The Eric Web Browser is a combined help file and HTML browser.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1976"/> + <location filename="Helpviewer/HelpWindow.py" line="2031"/> <source><b>Are you sure you want to turn on private browsing?</b><p>When private browsing is turned on, web pages are not added to the history, searches are not added to the list of recent searches and web site icons and cookies are not stored. Until you close the window, you can still click the Back and Forward buttons to return to the web pages you have opened.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="492"/> + <location filename="Helpviewer/HelpWindow.py" line="504"/> <source>Quit the web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="493"/> + <location filename="Helpviewer/HelpWindow.py" line="505"/> <source><b>Quit</b><p>Quit the web browser.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="982"/> + <location filename="Helpviewer/HelpWindow.py" line="994"/> <source>Configure Search Engines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="982"/> + <location filename="Helpviewer/HelpWindow.py" line="994"/> <source>Configure &Search Engines...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="986"/> + <location filename="Helpviewer/HelpWindow.py" line="998"/> <source>Configure the available search engines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="988"/> - <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="996"/> - <source>Manage Saved Passwords</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="996"/> - <source>Manage Saved Passwords...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="1000"/> + <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1008"/> + <source>Manage Saved Passwords</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1008"/> + <source>Manage Saved Passwords...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1012"/> <source>Manage the saved passwords</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1002"/> - <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1010"/> - <source>Ad Block</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1010"/> - <source>&Ad Block...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="1014"/> + <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1022"/> + <source>Ad Block</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1022"/> + <source>&Ad Block...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1026"/> <source>Configure AdBlock subscriptions and rules</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1016"/> + <location filename="Helpviewer/HelpWindow.py" line="1028"/> <source><b>Ad Block...</b><p>Opens a dialog to configure AdBlock subscriptions and rules.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2531"/> + <location filename="Helpviewer/HelpWindow.py" line="2594"/> <source>eric5 Web Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2241"/> + <location filename="Helpviewer/HelpWindow.py" line="2304"/> <source>Failed to load</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1216"/> + <source>Print as PDF</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="438"/> + <source>Print the displayed help as PDF</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="439"/> + <source><b>Print as PDF</b><p>Print the displayed help text as a PDF file.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Hg</name>
--- a/i18n/eric5_it.ts Sun May 30 18:28:06 2010 +0200 +++ b/i18n/eric5_it.ts Sun May 30 18:53:41 2010 +0200 @@ -11844,24 +11844,24 @@ <context> <name>FtpReply</name> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="319"/> + <location filename="Helpviewer/Network/FtpReply.py" line="332"/> <source> <p><a class="link_parent" href="{0}">Change to parent directory</a></p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="332"/> + <location filename="Helpviewer/Network/FtpReply.py" line="345"/> <source> <tr><th align="left">Name</th><th>Size</th><th align="left">Last modified</th></tr> </source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="358"/> + <location filename="Helpviewer/Network/FtpReply.py" line="371"/> <source>{0} {1}</source> <comment>size unit</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="382"/> + <location filename="Helpviewer/Network/FtpReply.py" line="395"/> <source>Listing of {0}</source> <translation type="unfinished"></translation> </message> @@ -12055,17 +12055,17 @@ <translation type="obsolete">Nella connessione a: %1.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>Check the address for errors such as <b>ww</b>.example.org instead of <b>www</b>.example.org</source> <translation>Controlla l'indirizzo per errori tipo <b>ww</b>.example.org invece di <b>www</b>.example.org</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>If the address is correct, try checking the network connection.</source> <translation>Se l'indirizzo è corretto, prova a controllare la connessione di rete.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source> <translation>Se il tuo computer o la rete sono protetti da un firewall o un proxy, assicurati che il browser possa accedere alla rete.</translation> </message> @@ -12145,12 +12145,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="947"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="946"/> <source>Error loading page: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>When connecting to: {0}.</source> <translation type="unfinished"></translation> </message> @@ -12929,7 +12929,7 @@ <translation>Nuova finestra</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1559"/> + <location filename="Helpviewer/HelpWindow.py" line="1575"/> <source>Open File</source> <translation>Apri File</translation> </message> @@ -12949,7 +12949,7 @@ <translation><b>Apri file</b><p>Questo apre un nuovo file di help per la visualizzazione. Fa apparire un dialogo sdi selezione.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1201"/> + <location filename="Helpviewer/HelpWindow.py" line="1214"/> <source>Print</source> <translation>Stampa</translation> </message> @@ -12969,272 +12969,272 @@ <translation><b>Stampa</b><p>Stampa il testo di help visualizzato.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1192"/> + <location filename="Helpviewer/HelpWindow.py" line="1205"/> <source>Close</source> <translation>Chiudi</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="448"/> + <location filename="Helpviewer/HelpWindow.py" line="460"/> <source>&Close</source> <translation>&Chiudi</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="453"/> + <location filename="Helpviewer/HelpWindow.py" line="465"/> <source>Close the current help window</source> <translation>Chiudi l'attuale finestra di help</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="487"/> + <location filename="Helpviewer/HelpWindow.py" line="499"/> <source>Quit</source> <translation>Esci</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="487"/> + <location filename="Helpviewer/HelpWindow.py" line="499"/> <source>&Quit</source> <translation>&Esci</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>Backward</source> <translation>Indietro</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>&Backward</source> <translation>&Indietro</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="510"/> + <location filename="Helpviewer/HelpWindow.py" line="522"/> <source>Move one help screen backward</source> <translation>vai alla schermata di help precedente</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="511"/> + <location filename="Helpviewer/HelpWindow.py" line="523"/> <source><b>Backward</b><p>Moves one help screen backward. If none is available, this action is disabled.</p></source> <translation><b>Indietro</b><p>Muove allo schermo di help precedente. Se non è disponibile, questa azione è disabilitata.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>Forward</source> <translation>Avanti</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>&Forward</source> <translation>A&vanti</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="525"/> + <location filename="Helpviewer/HelpWindow.py" line="537"/> <source>Move one help screen forward</source> <translation>Vai alla schermata di help successiva</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="526"/> + <location filename="Helpviewer/HelpWindow.py" line="538"/> <source><b>Forward</b><p>Moves one help screen forward. If none is available, this action is disabled.</p></source> <translation><b>Avanti</b><p>Muove allo schermo di help successivo. Se non è disponibile, questa azione è disabilitata.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="534"/> + <location filename="Helpviewer/HelpWindow.py" line="546"/> <source>Home</source> <translation>Home</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="534"/> + <location filename="Helpviewer/HelpWindow.py" line="546"/> <source>&Home</source> <translation>&Home</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="539"/> + <location filename="Helpviewer/HelpWindow.py" line="551"/> <source>Move to the initial help screen</source> <translation>Vai alla schermata di help iniziale</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="540"/> + <location filename="Helpviewer/HelpWindow.py" line="552"/> <source><b>Home</b><p>Moves to the initial help screen.</p></source> <translation><b>Inizio</b><p>Va allo schemo iniziale di help.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>Reload</source> <translation>Ricarica</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>&Reload</source> <translation>&Ricarica</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="553"/> + <location filename="Helpviewer/HelpWindow.py" line="565"/> <source>Reload the current help screen</source> <translation>Ricarica la schermata di help attuale</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="554"/> + <location filename="Helpviewer/HelpWindow.py" line="566"/> <source><b>Reload</b><p>Reloads the current help screen.</p></source> <translation><b>Ricarica</b><p>Ricarica la schermata di help corrente.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="645"/> + <location filename="Helpviewer/HelpWindow.py" line="657"/> <source>Add Bookmark</source> <translation>Aggiungi segnalibro</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="686"/> + <location filename="Helpviewer/HelpWindow.py" line="698"/> <source>What's This?</source> <translation>Cos'è questo ?</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="686"/> + <location filename="Helpviewer/HelpWindow.py" line="698"/> <source>&What's This?</source> <translation>C&os'è Questo ?</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="691"/> - <source>Context sensitive help</source> - <translation>Help sensibile al contesto</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="692"/> - <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> - <translation><b>Mostra helo sensibile al contesto</b><p>Nella modalità Cos'è Questo, il cursore del mouse mostra una freccia con un punto interrogativo e puoi premere sugli elementi dell'interfaccia per avere una breve descrizione di cosa fanno e come usarli. Nel dialoghi questa funzionalità è accessibile usando il bottone di help contestuale nella fisestra del titolo.</p></translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="703"/> + <source>Context sensitive help</source> + <translation>Help sensibile al contesto</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="704"/> + <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> + <translation><b>Mostra helo sensibile al contesto</b><p>Nella modalità Cos'è Questo, il cursore del mouse mostra una freccia con un punto interrogativo e puoi premere sugli elementi dell'interfaccia per avere una breve descrizione di cosa fanno e come usarli. Nel dialoghi questa funzionalità è accessibile usando il bottone di help contestuale nella fisestra del titolo.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="715"/> <source>About</source> <translation>About</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="703"/> + <location filename="Helpviewer/HelpWindow.py" line="715"/> <source>&About</source> <translation>&About</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="706"/> + <location filename="Helpviewer/HelpWindow.py" line="718"/> <source>Display information about this software</source> <translation>Mostra informazioni su questo software</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="707"/> - <source><b>About</b><p>Display some information about this software.</p></source> - <translation><b>About</b><p>Mostra alcune informazioni su questo software.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="714"/> - <source>About Qt</source> - <translation>About Qt</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="714"/> - <source>About &Qt</source> - <translation>About &Qt</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="717"/> - <source>Display information about the Qt toolkit</source> - <translation>Mostra informazioni sulle librerie Qt</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="719"/> - <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> - <translation><b>About Qt</b><p>Mostra delle informazioni sulle librerie Qt.</p></translation> + <source><b>About</b><p>Display some information about this software.</p></source> + <translation><b>About</b><p>Mostra alcune informazioni su questo software.</p></translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="726"/> - <source>Zoom in</source> - <translation>Ingrandisci</translation> + <source>About Qt</source> + <translation>About Qt</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="726"/> - <source>Zoom &in</source> - <translation>Ingrand&isci</translation> + <source>About &Qt</source> + <translation>About &Qt</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="729"/> + <source>Display information about the Qt toolkit</source> + <translation>Mostra informazioni sulle librerie Qt</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="731"/> + <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> + <translation><b>About Qt</b><p>Mostra delle informazioni sulle librerie Qt.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="738"/> + <source>Zoom in</source> + <translation>Ingrandisci</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="738"/> + <source>Zoom &in</source> + <translation>Ingrand&isci</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="743"/> <source>Zoom in on the text</source> <translation>Ingrandisci nel testo</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="732"/> - <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> - <translation><b>Ingrandisci</b><p>Ingrandisci nel testo. Questo aumenta le dimensioni del testo.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="739"/> - <source>Zoom out</source> - <translation>Riduci</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="739"/> - <source>Zoom &out</source> - <translation>&Riduci</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="744"/> + <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> + <translation><b>Ingrandisci</b><p>Ingrandisci nel testo. Questo aumenta le dimensioni del testo.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="751"/> + <source>Zoom out</source> + <translation>Riduci</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="751"/> + <source>Zoom &out</source> + <translation>&Riduci</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="756"/> <source>Zoom out on the text</source> <translation>Riduci il testo</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="745"/> + <location filename="Helpviewer/HelpWindow.py" line="757"/> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation><b>Riduci</b><p>Riduci nel testo. Questo diminuisce le dimensioni del testo.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="575"/> + <location filename="Helpviewer/HelpWindow.py" line="587"/> <source>Copy</source> <translation>Copia</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="575"/> + <location filename="Helpviewer/HelpWindow.py" line="587"/> <source>&Copy</source> <translation>&Copia</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="580"/> + <location filename="Helpviewer/HelpWindow.py" line="592"/> <source>Copy the selected text</source> <translation>Copia il testo selezionato</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="581"/> + <location filename="Helpviewer/HelpWindow.py" line="593"/> <source><b>Copy</b><p>Copy the selected text to the clipboard.</p></source> <translation><b>Copia</b><p>Copia il testo selezionato nella clipboard.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1057"/> + <location filename="Helpviewer/HelpWindow.py" line="1069"/> <source>&File</source> <translation>&File</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1079"/> + <location filename="Helpviewer/HelpWindow.py" line="1092"/> <source>&Edit</source> <translation>&Edita</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1087"/> + <location filename="Helpviewer/HelpWindow.py" line="1100"/> <source>&View</source> <translation>&Visualizza</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1098"/> - <source>&Go</source> - <translation>&Vai</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="1111"/> + <source>&Go</source> + <translation>&Vai</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1124"/> <source>H&istory</source> <translation>Cronolog&ia</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1120"/> + <location filename="Helpviewer/HelpWindow.py" line="1133"/> <source>&Bookmarks</source> <translation>Segnali&bri</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1165"/> + <location filename="Helpviewer/HelpWindow.py" line="1178"/> <source>&Help</source> <translation>&Help</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1294"/> + <location filename="Helpviewer/HelpWindow.py" line="1310"/> <source><p>Enter the help file to be displayed directly into this edit field. Select a previously shown help file from the drop down list.</p></source> <translation><p>Inserisci il fil di aiuto da visualizzare direttamente in questo campo modificabile. Seleziona un file di aiuto mostrato in precedenza dalla lista.</p></translation> </message> @@ -13257,80 +13257,80 @@ <translation>Ctrl+P</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="448"/> + <location filename="Helpviewer/HelpWindow.py" line="460"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation>Ctrl+W</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="487"/> + <location filename="Helpviewer/HelpWindow.py" line="499"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="588"/> + <location filename="Helpviewer/HelpWindow.py" line="600"/> <source>&Find...</source> <translation>&Trova...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="593"/> + <location filename="Helpviewer/HelpWindow.py" line="605"/> <source>Find text in page</source> <translation>Trova testo nella pagina</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="594"/> + <location filename="Helpviewer/HelpWindow.py" line="606"/> <source><b>Find</b><p>Find text in the current page.</p></source> <translation><b>Trova</b><p>Trova il testo nella pagina corrente.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="601"/> + <location filename="Helpviewer/HelpWindow.py" line="613"/> <source>Find &next</source> <translation>Trova &successivo</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="615"/> + <location filename="Helpviewer/HelpWindow.py" line="627"/> <source>Find &previous</source> <translation>Trova &precedente</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="575"/> + <location filename="Helpviewer/HelpWindow.py" line="587"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1210"/> + <location filename="Helpviewer/HelpWindow.py" line="1225"/> <source>File</source> <translation>File</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1226"/> + <location filename="Helpviewer/HelpWindow.py" line="1242"/> <source>Edit</source> <translation>Modifica</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1231"/> + <location filename="Helpviewer/HelpWindow.py" line="1247"/> <source>View</source> <translation>Visualizza</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1240"/> + <location filename="Helpviewer/HelpWindow.py" line="1256"/> <source>Find</source> <translation>Trova</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1267"/> + <location filename="Helpviewer/HelpWindow.py" line="1283"/> <source>Help</source> <translation>Aiuto</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1274"/> + <location filename="Helpviewer/HelpWindow.py" line="1290"/> <source>Go</source> <translation>Vai</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1559"/> + <location filename="Helpviewer/HelpWindow.py" line="1575"/> <source>Help Files (*.html *.htm);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source> <translation>File di help (*.html *.htm);;File PDF (*.pdf);;File CHM (*.chm);;Tutti i file (*)</translation> </message> @@ -13366,32 +13366,32 @@ <translation><b>Nuova finestra</b><p>Apre una nuova finestra di help.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="454"/> + <location filename="Helpviewer/HelpWindow.py" line="466"/> <source><b>Close</b><p>Closes the current help window.</p></source> <translation><b>Chiudi</b><p>Chiude l'attuale finestra di help.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="461"/> + <location filename="Helpviewer/HelpWindow.py" line="473"/> <source>Close &All</source> <translation>Chiudi &tutti</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="465"/> + <location filename="Helpviewer/HelpWindow.py" line="477"/> <source><b>Close All</b><p>Closes all help windows except the first one.</p></source> <translation><b>Chiudi tutti</b><p>Chiude tutte le finestre di help.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1181"/> + <location filename="Helpviewer/HelpWindow.py" line="1194"/> <source>Move Left</source> <translation>Muovi a sinistra</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1184"/> + <location filename="Helpviewer/HelpWindow.py" line="1197"/> <source>Move Right</source> <translation>Muovi a destra</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2032"/> + <location filename="Helpviewer/HelpWindow.py" line="2087"/> <source>...</source> <translation>...</translation> </message> @@ -13427,199 +13427,199 @@ <translation>Apri il file in una nuova scheda</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="461"/> + <location filename="Helpviewer/HelpWindow.py" line="473"/> <source>Close All</source> <translation>Chiudi tutti</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>Alt+Left</source> <comment>Go|Backward</comment> <translation>Alt+Sinistra</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>Backspace</source> <comment>Go|Backward</comment> <translation>Backspace</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>Alt+Right</source> <comment>Go|Forward</comment> <translation>Alt+Destra</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>Shift+Backspace</source> <comment>Go|Forward</comment> <translation>Shift+Backspace</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="534"/> + <location filename="Helpviewer/HelpWindow.py" line="546"/> <source>Ctrl+Home</source> <comment>Go|Home</comment> <translation>Ctrl+Home</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>Ctrl+R</source> <comment>Go|Reload</comment> <translation>Ctrl+R</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="588"/> + <location filename="Helpviewer/HelpWindow.py" line="600"/> <source>Find...</source> <translation>Trova...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="588"/> + <location filename="Helpviewer/HelpWindow.py" line="600"/> <source>Ctrl+F</source> <comment>Edit|Find</comment> <translation>Ctrl+F</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="601"/> + <location filename="Helpviewer/HelpWindow.py" line="613"/> <source>Find next</source> <translation>Trova successivo</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="601"/> + <location filename="Helpviewer/HelpWindow.py" line="613"/> <source>F3</source> <comment>Edit|Find next</comment> <translation>F3</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="615"/> + <location filename="Helpviewer/HelpWindow.py" line="627"/> <source>Find previous</source> <translation>Trova precedente</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="615"/> + <location filename="Helpviewer/HelpWindow.py" line="627"/> <source>Shift+F3</source> <comment>Edit|Find previous</comment> <translation>Shift+F3</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="686"/> + <location filename="Helpviewer/HelpWindow.py" line="698"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation>Shift+F1</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="726"/> + <location filename="Helpviewer/HelpWindow.py" line="738"/> <source>Ctrl++</source> <comment>View|Zoom in</comment> <translation>Ctrl++</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="739"/> + <location filename="Helpviewer/HelpWindow.py" line="751"/> <source>Ctrl+-</source> <comment>View|Zoom out</comment> <translation>Ctrl+-</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="606"/> + <location filename="Helpviewer/HelpWindow.py" line="618"/> <source>Find next occurrence of text in page</source> <translation>Trova la prossima ricorrenza del testo nella pagina</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="607"/> + <location filename="Helpviewer/HelpWindow.py" line="619"/> <source><b>Find next</b><p>Find the next occurrence of text in the current page.</p></source> <translation><b>Trova prossimo</b><p>Trova la prossima ricorrenza del testo nella pagina corrente.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="620"/> + <location filename="Helpviewer/HelpWindow.py" line="632"/> <source>Find previous occurrence of text in page</source> <translation>Trova la precedente ricorrenza del testo nella pagina</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="622"/> + <location filename="Helpviewer/HelpWindow.py" line="634"/> <source><b>Find previous</b><p>Find the previous occurrence of text in the current page.</p></source> <translation><b>Trova precedente</b><p>Trova la precedente ricorrenza del testo nella pagina corrente.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1199"/> + <location filename="Helpviewer/HelpWindow.py" line="1212"/> <source>Print Preview</source> <translation>Anteprima Stampa</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="438"/> + <location filename="Helpviewer/HelpWindow.py" line="450"/> <source>Print preview of the displayed help</source> <translation>Stampa il preview dell'help mostrato</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="440"/> + <location filename="Helpviewer/HelpWindow.py" line="452"/> <source><b>Print Preview</b><p>Print preview of the displayed help text.</p></source> <translation><b>Stampa Preview</b><p>Stampa la preview del testo di help mostrato.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1660"/> + <location filename="Helpviewer/HelpWindow.py" line="1715"/> <source><p>Printing is not available due to a bug in PyQt4.Please upgrade.</p></source> <translation><p>La stampa non è disponibile a causa di un bug in PyQt4. Si consiglia di aggiornare la versione installata.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="805"/> + <location filename="Helpviewer/HelpWindow.py" line="817"/> <source>Show next tab</source> <translation>Mostra linguetta successiva</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="805"/> + <location filename="Helpviewer/HelpWindow.py" line="817"/> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="813"/> + <location filename="Helpviewer/HelpWindow.py" line="825"/> <source>Show previous tab</source> <translation>Mostra la linguetta precedente</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="813"/> + <location filename="Helpviewer/HelpWindow.py" line="825"/> <source>Shift+Ctrl+Alt+Tab</source> <translation>Shift+Ctrl+Alt+Tab</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="821"/> - <source>Switch between tabs</source> - <translation>Cicla tra le linguette</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="821"/> - <source>Ctrl+1</source> - <translation>Ctrl+1</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="970"/> - <source>Clear icons database</source> - <translation>Pulisci il database delle icone</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="974"/> - <source>Clear the database of favicons</source> - <translation>Pulisci il database delle favicone</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="975"/> - <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> - <translation><b>Pulisci il database delle icone</b><p>Pulisci il databse delle favicons dei siti visitati precedentemente.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="829"/> - <source>Preferences</source> - <translation>Preferenze</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="829"/> - <source>&Preferences...</source> - <translation>&Preferenze...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="832"/> - <source>Set the prefered configuration</source> - <translation>Imposta la configurazione preferita</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="833"/> + <source>Switch between tabs</source> + <translation>Cicla tra le linguette</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="833"/> + <source>Ctrl+1</source> + <translation>Ctrl+1</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="982"/> + <source>Clear icons database</source> + <translation>Pulisci il database delle icone</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="986"/> + <source>Clear the database of favicons</source> + <translation>Pulisci il database delle favicone</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="987"/> + <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> + <translation><b>Pulisci il database delle icone</b><p>Pulisci il databse delle favicons dei siti visitati precedentemente.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="841"/> + <source>Preferences</source> + <translation>Preferenze</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="841"/> + <source>&Preferences...</source> + <translation>&Preferenze...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="844"/> + <source>Set the prefered configuration</source> + <translation>Imposta la configurazione preferita</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="845"/> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation><b>Preferenze</b><p>Imposta i valori di configurazione dell'applicazione ai valori preferiti</p></translation> </message> @@ -13629,152 +13629,152 @@ <translation>Contenuti</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="892"/> + <location filename="Helpviewer/HelpWindow.py" line="904"/> <source>Index</source> <translation>Indice</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="904"/> + <location filename="Helpviewer/HelpWindow.py" line="916"/> <source>Search</source> <translation>Ricerca</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="464"/> + <location filename="Helpviewer/HelpWindow.py" line="476"/> <source>Close all help windows</source> <translation>Chiudi tutte le finestre di help</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="867"/> + <location filename="Helpviewer/HelpWindow.py" line="879"/> <source>Sync with Table of Contents</source> <translation>Sincronizza con l'indice</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="871"/> - <source>Synchronizes the table of contents with current page</source> - <translation>Sincronizza l'indice con il contenuto della pagina attuale</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="873"/> - <source><b>Sync with Table of Contents</b><p>Synchronizes the table of contents with current page.</p></source> - <translation><b>Sincronizza con l'indice</b><p>Sincronizza l'indice con il contenuto della pagina attuale.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="880"/> - <source>Table of Contents</source> - <translation>Indice dei contenuti</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="883"/> - <source>Shows the table of contents window</source> - <translation>Mostra la finestra dell'indice dei contenuti</translation> + <source>Synchronizes the table of contents with current page</source> + <translation>Sincronizza l'indice con il contenuto della pagina attuale</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="885"/> - <source><b>Table of Contents</b><p>Shows the table of contents window.</p></source> - <translation><b>Indice dei contenuti</b><p>Mostra la finestra dell'indice dei contenuti.</p></translation> + <source><b>Sync with Table of Contents</b><p>Synchronizes the table of contents with current page.</p></source> + <translation><b>Sincronizza con l'indice</b><p>Sincronizza l'indice con il contenuto della pagina attuale.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="892"/> + <source>Table of Contents</source> + <translation>Indice dei contenuti</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="895"/> - <source>Shows the index window</source> - <translation>Mostra la finestra dell'indice</translation> + <source>Shows the table of contents window</source> + <translation>Mostra la finestra dell'indice dei contenuti</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="897"/> - <source><b>Index</b><p>Shows the index window.</p></source> - <translation><b>Indice</b><p>Mostra la finestra dell'indice.</p></translation> + <source><b>Table of Contents</b><p>Shows the table of contents window.</p></source> + <translation><b>Indice dei contenuti</b><p>Mostra la finestra dell'indice dei contenuti.</p></translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="907"/> - <source>Shows the search window</source> - <translation>Mostra la finestra di ricerca</translation> + <source>Shows the index window</source> + <translation>Mostra la finestra dell'indice</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="909"/> - <source><b>Search</b><p>Shows the search window.</p></source> - <translation><b>Cerca</b><p>Mostra la finestra di ricerca</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="916"/> - <source>Manage QtHelp Documents</source> - <translation>Gestisci i documenti QtHelp</translation> + <source><b>Index</b><p>Shows the index window.</p></source> + <translation><b>Indice</b><p>Mostra la finestra dell'indice.</p></translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="919"/> - <source>Shows a dialog to manage the QtHelp documentation set</source> - <translation>Mostra un dialogo per gestire i documenti QtHelp</translation> + <source>Shows the search window</source> + <translation>Mostra la finestra di ricerca</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="921"/> + <source><b>Search</b><p>Shows the search window.</p></source> + <translation><b>Cerca</b><p>Mostra la finestra di ricerca</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="928"/> + <source>Manage QtHelp Documents</source> + <translation>Gestisci i documenti QtHelp</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="931"/> + <source>Shows a dialog to manage the QtHelp documentation set</source> + <translation>Mostra un dialogo per gestire i documenti QtHelp</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="933"/> <source><b>Manage QtHelp Documents</b><p>Shows a dialog to manage the QtHelp documentation set.</p></source> <translation><b>Gestisci i documenti QtHelp</b><p>Mostra un dialogo per gestire i documenti QtHelp.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="929"/> + <location filename="Helpviewer/HelpWindow.py" line="941"/> <source>Manage QtHelp Filters</source> <translation>Gestisci i filtri QtHelp</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="932"/> + <location filename="Helpviewer/HelpWindow.py" line="944"/> <source>Shows a dialog to manage the QtHelp filters</source> <translation>Mostra un dialogo per gestire i filtri QtHelp</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="934"/> + <location filename="Helpviewer/HelpWindow.py" line="946"/> <source><b>Manage QtHelp Filters</b><p>Shows a dialog to manage the QtHelp filters.</p></source> <translation><b>Gestisci i filtri QtHelp</b><p>Mostra un dialogo per gestire i filtri QtHelp.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="942"/> + <location filename="Helpviewer/HelpWindow.py" line="954"/> <source>Reindex Documentation</source> <translation>Reindicizza la documentazione</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="945"/> + <location filename="Helpviewer/HelpWindow.py" line="957"/> <source>Reindexes the documentation set</source> <translation>Reindicizza l'insieme della documentazione</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="947"/> + <location filename="Helpviewer/HelpWindow.py" line="959"/> <source><b>Reindex Documentation</b><p>Reindexes the documentation set.</p></source> <translation><b>Reindicizza la documentazione</b><p>Reindicizza l'insieme della documentazione</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1157"/> + <location filename="Helpviewer/HelpWindow.py" line="1170"/> <source>&Window</source> <translation>&Finestra</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1247"/> + <location filename="Helpviewer/HelpWindow.py" line="1263"/> <source>Filter</source> <translation>Filtro</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1252"/> + <location filename="Helpviewer/HelpWindow.py" line="1268"/> <source>Filtered by: </source> <translation>Filtrato per:</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2352"/> + <location filename="Helpviewer/HelpWindow.py" line="2415"/> <source>Could not find an associated content.</source> <translation>Non posso trovare un contenuto associato.</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2468"/> + <location filename="Helpviewer/HelpWindow.py" line="2531"/> <source>Updating search index</source> <translation>Aggiornamento indice di ricerca</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2522"/> + <location filename="Helpviewer/HelpWindow.py" line="2585"/> <source>Looking for Documentation...</source> <translation>Ricerca documentazione...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2552"/> + <location filename="Helpviewer/HelpWindow.py" line="2615"/> <source>Unfiltered</source> <translation>Non filtrato</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2571"/> + <location filename="Helpviewer/HelpWindow.py" line="2634"/> <source>Help Engine</source> <translation>Motore di help</translation> </message> @@ -13784,218 +13784,218 @@ <translation>Mostra un menù di navigazione</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="476"/> + <location filename="Helpviewer/HelpWindow.py" line="488"/> <source>Private Browsing</source> <translation>Navigazione anonima</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="472"/> + <location filename="Helpviewer/HelpWindow.py" line="484"/> <source>Private &Browsing</source> <translation>Navigazione &Anonima</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="477"/> + <location filename="Helpviewer/HelpWindow.py" line="489"/> <source><b>Private Browsing</b><p>Enables private browsing. In this mode no history is recorded anymore.</p></source> <translation><b>Navigazione anonima</b><p>Attiva la navigazione anonima. In questa modalità la cronologia non è più registrata.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2224"/> + <location filename="Helpviewer/HelpWindow.py" line="2287"/> <source>Loading...</source> <translation>Caricamento...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2239"/> + <location filename="Helpviewer/HelpWindow.py" line="2302"/> <source>Finished loading</source> <translation>Caricamento terminato</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="796"/> + <location filename="Helpviewer/HelpWindow.py" line="808"/> <source>Full Screen</source> <translation>Tutto schermo</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="796"/> + <location filename="Helpviewer/HelpWindow.py" line="808"/> <source>&Full Screen</source> <translation>&Tutto schermo</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="796"/> + <location filename="Helpviewer/HelpWindow.py" line="808"/> <source>F11</source> <translation>F11</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="916"/> + <location filename="Helpviewer/HelpWindow.py" line="928"/> <source>Manage QtHelp &Documents</source> <translation>Gestisci i &Documenti QtHelp</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="929"/> + <location filename="Helpviewer/HelpWindow.py" line="941"/> <source>Manage QtHelp &Filters</source> <translation>Gestisci &Filtri QtHelp</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="942"/> + <location filename="Helpviewer/HelpWindow.py" line="954"/> <source>&Reindex Documentation</source> <translation>&Reindicizza la documentazione</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="960"/> + <location filename="Helpviewer/HelpWindow.py" line="972"/> <source>Clear private data</source> <translation>Pulisci dati privati</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="956"/> + <location filename="Helpviewer/HelpWindow.py" line="968"/> <source>&Clear private data</source> <translation>Pulis&ci dati privati</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="961"/> + <location filename="Helpviewer/HelpWindow.py" line="973"/> <source><b>Clear private data</b><p>Clears the private data like browsing history, search history or the favicons database.</p></source> <translation><b>Pulisci dati privati</b><p>Pulische i dati privati come la cronologia di navigazione, cronologia ricerche o il database delle favicon.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="970"/> + <location filename="Helpviewer/HelpWindow.py" line="982"/> <source>Clear &icons database</source> <translation>Pulisci database delle &icone</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1024"/> + <location filename="Helpviewer/HelpWindow.py" line="1036"/> <source>Show Network Monitor</source> <translation>Mostra il Network Monitor</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1024"/> + <location filename="Helpviewer/HelpWindow.py" line="1036"/> <source>Show &Network Monitor</source> <translation>Mostra il &Network Monitor</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1028"/> + <location filename="Helpviewer/HelpWindow.py" line="1040"/> <source>Show the network monitor dialog</source> <translation>Mostra il dialogo del network monitor</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1029"/> + <location filename="Helpviewer/HelpWindow.py" line="1041"/> <source><b>Show Network Monitor</b><p>Shows the network monitor dialog.</p></source> <translation><b>Mostra il Network Monitor</b><p>Mostra il dialogo del network monitor.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1134"/> + <location filename="Helpviewer/HelpWindow.py" line="1147"/> <source>&Settings</source> <translation>Impo&stazioni</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1153"/> + <location filename="Helpviewer/HelpWindow.py" line="1166"/> <source>&Tools</source> <translation>&Tools</translation> </message> <message> + <location filename="Helpviewer/HelpWindow.py" line="795"/> + <source>Show page source</source> + <translation>Mostra sorgente pagina</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="795"/> + <source>Ctrl+U</source> + <translation>Ctrl+U</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="799"/> + <source>Show the page source in an editor</source> + <translation>Mostra il sorgente della pagina in un editor</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="800"/> + <source><b>Show page source</b><p>Show the page source in an editor.</p></source> + <translation><b>Mostra sorgente pagina</b><p>Mostra il sorgente della pagina nell'editor.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="853"/> + <source>&Languages...</source> + <translation>&Lingue...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="856"/> + <source>Configure the accepted languages for web pages</source> + <translation>Configura le lingue accettare per le pagine web</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="858"/> + <source><b>Languages</b><p>Configure the accepted languages for web pages.</p></source> + <translation><b>Lingue</b><p>Configura le lingue accettare per le pagine web.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="853"/> + <source>Languages</source> + <translation>Lingue</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="866"/> + <source>Cookies</source> + <translation>Cookies</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="866"/> + <source>C&ookies...</source> + <translation>C&ookie...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="869"/> + <source>Configure cookies handling</source> + <translation>Configura la gestione dei cookie</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="871"/> + <source><b>Cookies</b><p>Configure cookies handling.</p></source> + <translation><b>Cookies</b><p>Configura la gestione dei cookie.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1276"/> + <source>Settings</source> + <translation>Impostazioni</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="764"/> + <source>Zoom reset</source> + <translation>Reset dello zoom</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="764"/> + <source>Zoom &reset</source> + <translation>&Reset zoom</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="764"/> + <source>Ctrl+0</source> + <comment>View|Zoom reset</comment> + <translation>Ctrl+0</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="769"/> + <source>Reset the zoom of the text</source> + <translation>Resetta lo zoom del testo</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="779"/> + <source>Zoom text only</source> + <translation>Zoom solo del testo</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="779"/> + <source>Zoom &text only</source> + <translation>Zoom solo del &testo</translation> + </message> + <message> <location filename="Helpviewer/HelpWindow.py" line="783"/> - <source>Show page source</source> - <translation>Mostra sorgente pagina</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="783"/> - <source>Ctrl+U</source> - <translation>Ctrl+U</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="787"/> - <source>Show the page source in an editor</source> - <translation>Mostra il sorgente della pagina in un editor</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="788"/> - <source><b>Show page source</b><p>Show the page source in an editor.</p></source> - <translation><b>Mostra sorgente pagina</b><p>Mostra il sorgente della pagina nell'editor.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="841"/> - <source>&Languages...</source> - <translation>&Lingue...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="844"/> - <source>Configure the accepted languages for web pages</source> - <translation>Configura le lingue accettare per le pagine web</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="846"/> - <source><b>Languages</b><p>Configure the accepted languages for web pages.</p></source> - <translation><b>Lingue</b><p>Configura le lingue accettare per le pagine web.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="841"/> - <source>Languages</source> - <translation>Lingue</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="854"/> - <source>Cookies</source> - <translation>Cookies</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="854"/> - <source>C&ookies...</source> - <translation>C&ookie...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="857"/> - <source>Configure cookies handling</source> - <translation>Configura la gestione dei cookie</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="859"/> - <source><b>Cookies</b><p>Configure cookies handling.</p></source> - <translation><b>Cookies</b><p>Configura la gestione dei cookie.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1260"/> - <source>Settings</source> - <translation>Impostazioni</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="752"/> - <source>Zoom reset</source> - <translation>Reset dello zoom</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="752"/> - <source>Zoom &reset</source> - <translation>&Reset zoom</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="752"/> - <source>Ctrl+0</source> - <comment>View|Zoom reset</comment> - <translation>Ctrl+0</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="757"/> - <source>Reset the zoom of the text</source> - <translation>Resetta lo zoom del testo</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="767"/> - <source>Zoom text only</source> - <translation>Zoom solo del testo</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="767"/> - <source>Zoom &text only</source> - <translation>Zoom solo del &testo</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="771"/> <source>Zoom text only; pictures remain constant</source> <translation>Zoom solo del testo; le immagini rimangono costanti</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="773"/> + <location filename="Helpviewer/HelpWindow.py" line="785"/> <source><b>Zoom text only</b><p>Zoom text only; pictures remain constant.</p></source> <translation><b>Zoom solo testo</b><p>Zoom solo del testo; le immagini rimangono costanti.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="758"/> + <location filename="Helpviewer/HelpWindow.py" line="770"/> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation><b>Reset zoom</b><p>Reset dello zoom del testo. Imposta il fattore di zoom al 100%.</p></translation> </message> @@ -14045,142 +14045,142 @@ <translation><b>Esporta segnalibri</b><p>Esporta segnalibri in un file.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="631"/> + <location filename="Helpviewer/HelpWindow.py" line="643"/> <source>Manage Bookmarks</source> <translation>Gestisci segnalibri</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="631"/> + <location filename="Helpviewer/HelpWindow.py" line="643"/> <source>&Manage Bookmarks...</source> <translation>&Gestisci segnalibri...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="631"/> + <location filename="Helpviewer/HelpWindow.py" line="643"/> <source>Ctrl+Shift+B</source> <comment>Help|Manage bookmarks</comment> <translation>Ctrl+Shift+B</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="635"/> + <location filename="Helpviewer/HelpWindow.py" line="647"/> <source>Open a dialog to manage the bookmarks.</source> <translation>Apri un dialogo per gestire i segnalibri.</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="637"/> + <location filename="Helpviewer/HelpWindow.py" line="649"/> <source><b>Manage Bookmarks...</b><p>Open a dialog to manage the bookmarks.</p></source> <translation><b>Gestisci segnalibri...</b><p>Apri un dialogo per gestire i segnalibri.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="645"/> + <location filename="Helpviewer/HelpWindow.py" line="657"/> <source>Add &Bookmark...</source> <translation>&Aggiungi segnalibro...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="645"/> + <location filename="Helpviewer/HelpWindow.py" line="657"/> <source>Ctrl+D</source> <comment>Help|Add bookmark</comment> <translation>Ctrl+D</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="651"/> + <location filename="Helpviewer/HelpWindow.py" line="663"/> <source>Open a dialog to add a bookmark.</source> <translation>Apri un dialogo per aggiungere un segnalibro.</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="652"/> - <source><b>Add Bookmark</b><p>Open a dialog to add the current URL as a bookmark.</p></source> - <translation><b>Aggiungi segnalibro</b><p>Apri un dialogo per aggiungere l'URL corrente come segnalibro.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="659"/> - <source>Add Folder</source> - <translation>Aggiungi cartella</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="659"/> - <source>Add &Folder...</source> - <translation>Aggiungi &Cartella...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="662"/> - <source>Open a dialog to add a new bookmarks folder.</source> - <translation>Apri un dialogo per aggiungere una nuova cartella di segnalibri.</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="664"/> + <source><b>Add Bookmark</b><p>Open a dialog to add the current URL as a bookmark.</p></source> + <translation><b>Aggiungi segnalibro</b><p>Apri un dialogo per aggiungere l'URL corrente come segnalibro.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="671"/> + <source>Add Folder</source> + <translation>Aggiungi cartella</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="671"/> + <source>Add &Folder...</source> + <translation>Aggiungi &Cartella...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="674"/> + <source>Open a dialog to add a new bookmarks folder.</source> + <translation>Apri un dialogo per aggiungere una nuova cartella di segnalibri.</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="676"/> <source><b>Add Folder...</b><p>Open a dialog to add a new bookmarks folder.</p></source> <translation><b>Aggiungi cartella...</b><p>Apri un dialogo per aggiungere una nuova cartella di segnalibri.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="672"/> + <location filename="Helpviewer/HelpWindow.py" line="684"/> <source>Bookmark All Tabs</source> <translation>Aggiungi ai segnalibri tutte le linguette</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="672"/> + <location filename="Helpviewer/HelpWindow.py" line="684"/> <source>Bookmark All Tabs...</source> <translation>Aggiungi ai segnalibri tutte le linguette...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="675"/> + <location filename="Helpviewer/HelpWindow.py" line="687"/> <source>Bookmark all open tabs.</source> <translation>Aggiungi ai segnalibri tutte lelinguette aperte.</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="677"/> + <location filename="Helpviewer/HelpWindow.py" line="689"/> <source><b>Bookmark All Tabs...</b><p>Open a dialog to add a new bookmarks folder for all open tabs.</p></source> <translation><b>Aggiungi ai segnalibri tutte le linguette...</b><p>Apri un dialogo per aggiungere ai segnalibri tutte le linguette aperte.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1753"/> + <location filename="Helpviewer/HelpWindow.py" line="1808"/> <source>Saved Tabs</source> <translation>Salva Linguette</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1195"/> + <location filename="Helpviewer/HelpWindow.py" line="1208"/> <source>Close Others</source> <translation>Chiudi altri</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>F5</source> <comment>Go|Reload</comment> <translation>F5</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>Stop</source> <translation>Ferma</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>&Stop</source> <translation>&Stop</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>Ctrl+.</source> <comment>Go|Stop</comment> <translation></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>Esc</source> <comment>Go|Stop</comment> <translation>Esc</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="567"/> + <location filename="Helpviewer/HelpWindow.py" line="579"/> <source>Stop loading</source> <translation>Ferma caricamento</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="568"/> + <location filename="Helpviewer/HelpWindow.py" line="580"/> <source><b>Stop</b><p>Stops loading of the current tab.</p></source> <translation><b>Stop</b><p>Ferma il caricamento della linguetta corrente.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1188"/> + <location filename="Helpviewer/HelpWindow.py" line="1201"/> <source>Duplicate Page</source> <translation>Duplica pagina</translation> </message> @@ -14216,100 +14216,115 @@ <translation type="obsolete">Web Browser di eric4</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1679"/> + <location filename="Helpviewer/HelpWindow.py" line="1734"/> <source>Eric Web Browser</source> <translation>Eric Web Browser</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1670"/> + <location filename="Helpviewer/HelpWindow.py" line="1725"/> <source><h3>About Eric Web Browser</h3><p>The Eric Web Browser is a combined help file and HTML browser.</p></source> <translation><h3>Informazioni sul Browser Web di Eric</h3><p>Il Browser Web di Eric è un misto di pagine di help e un browser HTML.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="492"/> + <location filename="Helpviewer/HelpWindow.py" line="504"/> <source>Quit the web browser</source> <translation>Esci dal browser web</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="493"/> + <location filename="Helpviewer/HelpWindow.py" line="505"/> <source><b>Quit</b><p>Quit the web browser.</p></source> <translation><b>Esci</b><p>Esci dal browser web.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="982"/> + <location filename="Helpviewer/HelpWindow.py" line="994"/> <source>Configure Search Engines</source> <translation>Configura motori di ricerca</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="982"/> + <location filename="Helpviewer/HelpWindow.py" line="994"/> <source>Configure &Search Engines...</source> <translation>Configura motori di &ricerca...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="986"/> + <location filename="Helpviewer/HelpWindow.py" line="998"/> <source>Configure the available search engines</source> <translation>Configura i motori di ricerca disponibili</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="988"/> - <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> - <translation><b>Configura motori di ricerca...</b><p>Apri un dialogo per configurare i motori di ricerca disponibi.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="996"/> - <source>Manage Saved Passwords</source> - <translation>Gestisci password salvate</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="996"/> - <source>Manage Saved Passwords...</source> - <translation>Gestisci password salvate...</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="1000"/> + <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> + <translation><b>Configura motori di ricerca...</b><p>Apri un dialogo per configurare i motori di ricerca disponibi.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1008"/> + <source>Manage Saved Passwords</source> + <translation>Gestisci password salvate</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1008"/> + <source>Manage Saved Passwords...</source> + <translation>Gestisci password salvate...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1012"/> <source>Manage the saved passwords</source> <translation>Gestisci le password salvate</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1002"/> - <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> - <translation><b>Gestisci password salvate...</b><p>Apre un dialogo per gestire le password salvate.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1010"/> - <source>Ad Block</source> - <translation>Ad Block</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1010"/> - <source>&Ad Block...</source> - <translation>&Ad Block...</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="1014"/> + <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> + <translation><b>Gestisci password salvate...</b><p>Apre un dialogo per gestire le password salvate.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1022"/> + <source>Ad Block</source> + <translation>Ad Block</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1022"/> + <source>&Ad Block...</source> + <translation>&Ad Block...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1026"/> <source>Configure AdBlock subscriptions and rules</source> <translation>Configura le regole di sottoscrizione di AdBlock</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1016"/> + <location filename="Helpviewer/HelpWindow.py" line="1028"/> <source><b>Ad Block...</b><p>Opens a dialog to configure AdBlock subscriptions and rules.</p></source> <translation><b>Ad Block...</b><p>Apre un dialogo per configurare le regole di sottoscrizione di AdBlock.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1976"/> + <location filename="Helpviewer/HelpWindow.py" line="2031"/> <source><b>Are you sure you want to turn on private browsing?</b><p>When private browsing is turned on, web pages are not added to the history, searches are not added to the list of recent searches and web site icons and cookies are not stored. Until you close the window, you can still click the Back and Forward buttons to return to the web pages you have opened.</p></source> <translation><b>Sei sicuro di voler attivare la navigazione riservata ?</b><p>Quando la navigazione riservata è attivata, le pagine web visitate non sono salvate nella cronologia, le ricerche non sono aggiunte alla lista delle ricerche recenti e le icone e i cookie dei siti web non sono salvati. Fino alla chiusura del programma è ancora possibile premere i pulsanti Indietro e Avanti per tornare alle pagine che sono state aperte.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2531"/> + <location filename="Helpviewer/HelpWindow.py" line="2594"/> <source>eric5 Web Browser</source> <translation type="unfinished">Web Browser di eric4 {5 ?}</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2241"/> + <location filename="Helpviewer/HelpWindow.py" line="2304"/> <source>Failed to load</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1216"/> + <source>Print as PDF</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="438"/> + <source>Print the displayed help as PDF</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="439"/> + <source><b>Print as PDF</b><p>Print the displayed help text as a PDF file.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Hg</name>
--- a/i18n/eric5_ru.ts Sun May 30 18:28:06 2010 +0200 +++ b/i18n/eric5_ru.ts Sun May 30 18:53:41 2010 +0200 @@ -10977,25 +10977,25 @@ <context> <name>FtpReply</name> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="319"/> + <location filename="Helpviewer/Network/FtpReply.py" line="332"/> <source> <p><a class="link_parent" href="{0}">Change to parent directory</a></p></source> <translation> <p><a class="link_parent" href="{0}">Перейти в родительский каталог</a></p></translation> </message> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="332"/> + <location filename="Helpviewer/Network/FtpReply.py" line="345"/> <source> <tr><th align="left">Name</th><th>Size</th><th align="left">Last modified</th></tr> </source> <translation> <tr><th align="left">Имя</th><th>Размер</th><th align="left">Последнее изменение</th></tr> </translation> </message> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="358"/> + <location filename="Helpviewer/Network/FtpReply.py" line="371"/> <source>{0} {1}</source> <comment>size unit</comment> <translation>{0} {1}</translation> </message> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="382"/> + <location filename="Helpviewer/Network/FtpReply.py" line="395"/> <source>Listing of {0}</source> <translation>Список {0}</translation> </message> @@ -11179,27 +11179,27 @@ <translation>WEB проводник...</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="947"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="946"/> <source>Error loading page: {0}</source> <translation>Ошибка при загрузке страницы: {0}</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>When connecting to: {0}.</source> <translation>При соединении с {0}.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>Check the address for errors such as <b>ww</b>.example.org instead of <b>www</b>.example.org</source> <translation>Проверьте адрес на ошибки типа <b>ww</b>.example.org вместо <b>www</b>.example.org</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>If the address is correct, try checking the network connection.</source> <translation>Если адрес правильный, проверьте сетевое соединение.</translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source> <translation>Если ваш компьютер или локальная сеть находятся за firewall или proxy, убедитесь что браузеру разрешено подсоединяться к сети.</translation> </message> @@ -11978,7 +11978,7 @@ <translation>Новое окно</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1559"/> + <location filename="Helpviewer/HelpWindow.py" line="1575"/> <source>Open File</source> <translation>Открыть файл</translation> </message> @@ -11998,7 +11998,7 @@ <translation><b>Открыть файл</b><p>Открыть новый файл помощи. Вызывает файловый диалог</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1201"/> + <location filename="Helpviewer/HelpWindow.py" line="1214"/> <source>Print</source> <translation>Печать</translation> </message> @@ -12018,273 +12018,273 @@ <translation><b>Печать</b><p>Печатать текущий раздел помощи</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1192"/> + <location filename="Helpviewer/HelpWindow.py" line="1205"/> <source>Close</source> <translation>Закрыть</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="448"/> + <location filename="Helpviewer/HelpWindow.py" line="460"/> <source>&Close</source> <translation>&Закрыть</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="453"/> + <location filename="Helpviewer/HelpWindow.py" line="465"/> <source>Close the current help window</source> <translation>Закрыть это окно помощи</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="487"/> + <location filename="Helpviewer/HelpWindow.py" line="499"/> <source>Quit</source> <translation>Выход</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="487"/> + <location filename="Helpviewer/HelpWindow.py" line="499"/> <source>&Quit</source> <translation>&Выход</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>Backward</source> <translation>Назад</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>&Backward</source> <translation>&Назад</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="510"/> + <location filename="Helpviewer/HelpWindow.py" line="522"/> <source>Move one help screen backward</source> <translation>Назад на один экран</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="511"/> + <location filename="Helpviewer/HelpWindow.py" line="523"/> <source><b>Backward</b><p>Moves one help screen backward. If none is available, this action is disabled.</p></source> <translation><b>Назад</b><p>Сместиться на один экран назад. Если это возможно.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>Forward</source> <translation>Вперёд</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>&Forward</source> <translation>&Вперёд</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="525"/> + <location filename="Helpviewer/HelpWindow.py" line="537"/> <source>Move one help screen forward</source> <translation>Вперёд на один экран</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="526"/> + <location filename="Helpviewer/HelpWindow.py" line="538"/> <source><b>Forward</b><p>Moves one help screen forward. If none is available, this action is disabled.</p></source> <translation><b>Вперёд</b><p>Сместиться на один экран вперёд, если это возможно.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="534"/> + <location filename="Helpviewer/HelpWindow.py" line="546"/> <source>Home</source> <translation>Домой</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="534"/> + <location filename="Helpviewer/HelpWindow.py" line="546"/> <source>&Home</source> <translation>&Домой</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="539"/> + <location filename="Helpviewer/HelpWindow.py" line="551"/> <source>Move to the initial help screen</source> <translation>Вернуться на первоначальную страницу</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="540"/> + <location filename="Helpviewer/HelpWindow.py" line="552"/> <source><b>Home</b><p>Moves to the initial help screen.</p></source> <translation><b>Домой</b><p>Вернуться на первоначальную страницу.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="645"/> + <location filename="Helpviewer/HelpWindow.py" line="657"/> <source>Add Bookmark</source> <translation>Добавить закладку</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="686"/> + <location filename="Helpviewer/HelpWindow.py" line="698"/> <source>What's This?</source> <translation>Что это?</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="686"/> + <location filename="Helpviewer/HelpWindow.py" line="698"/> <source>&What's This?</source> <translation>&Что это?</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="691"/> - <source>Context sensitive help</source> - <translation>Контекстная помощь</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="692"/> - <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> - <translation><b>Показать контекстную помощь</b> -<p>В режиме контекстной помощи курсор мыши выглядит как стрелка со знаком вопроса, и, щёлкнув по элементу интерфейса, Вы можете просмотреть краткую помощь о его роли и его использовании. В диалогах можно воспользоваться кнопкой контекстной помощи в заголовке окна.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="703"/> - <source>About</source> - <translation>О</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="703"/> + <source>Context sensitive help</source> + <translation>Контекстная помощь</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="704"/> + <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> + <translation><b>Показать контекстную помощь</b> +<p>В режиме контекстной помощи курсор мыши выглядит как стрелка со знаком вопроса, и, щёлкнув по элементу интерфейса, Вы можете просмотреть краткую помощь о его роли и его использовании. В диалогах можно воспользоваться кнопкой контекстной помощи в заголовке окна.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="715"/> + <source>About</source> + <translation>О</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="715"/> <source>&About</source> <translation>&О</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="706"/> + <location filename="Helpviewer/HelpWindow.py" line="718"/> <source>Display information about this software</source> <translation>Информация о ПО</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="707"/> - <source><b>About</b><p>Display some information about this software.</p></source> - <translation><b>О...</b><p>Информация об этом программном продукте.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="714"/> - <source>About Qt</source> - <translation>О Qt</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="714"/> - <source>About &Qt</source> - <translation>О &Qt</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="717"/> - <source>Display information about the Qt toolkit</source> - <translation>Информация о библиотеке Qt</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="719"/> - <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> - <translation><b>О Qt</b><p>Информация о библиотеке Qt.</p></translation> + <source><b>About</b><p>Display some information about this software.</p></source> + <translation><b>О...</b><p>Информация об этом программном продукте.</p></translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="726"/> - <source>Zoom in</source> - <translation>Увеличить масштаб</translation> + <source>About Qt</source> + <translation>О Qt</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="726"/> - <source>Zoom &in</source> - <translation>У&величить масштаб</translation> + <source>About &Qt</source> + <translation>О &Qt</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="729"/> + <source>Display information about the Qt toolkit</source> + <translation>Информация о библиотеке Qt</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="731"/> + <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> + <translation><b>О Qt</b><p>Информация о библиотеке Qt.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="738"/> + <source>Zoom in</source> + <translation>Увеличить масштаб</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="738"/> + <source>Zoom &in</source> + <translation>У&величить масштаб</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="743"/> <source>Zoom in on the text</source> <translation>Увеличить масштаб текста</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="732"/> - <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> - <translation><b>Увеличить масштаб</b><p>Увеличить масштаб. Размер букв увеличится.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="739"/> - <source>Zoom out</source> - <translation>Уменьшить масштаб</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="739"/> - <source>Zoom &out</source> - <translation>У&меньшить масштаб</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="744"/> + <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> + <translation><b>Увеличить масштаб</b><p>Увеличить масштаб. Размер букв увеличится.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="751"/> + <source>Zoom out</source> + <translation>Уменьшить масштаб</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="751"/> + <source>Zoom &out</source> + <translation>У&меньшить масштаб</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="756"/> <source>Zoom out on the text</source> <translation>Уменьшить масштаб текста</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="745"/> + <location filename="Helpviewer/HelpWindow.py" line="757"/> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation><b>Уменьшить масштаб</b><p>Уменьшить масштаб. Размер букв уменьшится.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="575"/> + <location filename="Helpviewer/HelpWindow.py" line="587"/> <source>Copy</source> <translation>Копировать</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="575"/> + <location filename="Helpviewer/HelpWindow.py" line="587"/> <source>&Copy</source> <translation>&Копировать</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="580"/> + <location filename="Helpviewer/HelpWindow.py" line="592"/> <source>Copy the selected text</source> <translation>Копировать выбранный текст</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="581"/> + <location filename="Helpviewer/HelpWindow.py" line="593"/> <source><b>Copy</b><p>Copy the selected text to the clipboard.</p></source> <translation><b>Копировать</b><p>Копировать выбранный текст в буфер обмена.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1057"/> + <location filename="Helpviewer/HelpWindow.py" line="1069"/> <source>&File</source> <translation>&Файл</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1079"/> + <location filename="Helpviewer/HelpWindow.py" line="1092"/> <source>&Edit</source> <translation>&Правка</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1087"/> + <location filename="Helpviewer/HelpWindow.py" line="1100"/> <source>&View</source> <translation>&Вид</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1098"/> - <source>&Go</source> - <translation>&Перейти</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="1111"/> + <source>&Go</source> + <translation>&Перейти</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1124"/> <source>H&istory</source> <translation>И&стория</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1120"/> + <location filename="Helpviewer/HelpWindow.py" line="1133"/> <source>&Bookmarks</source> <translation>&Закладки</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1165"/> + <location filename="Helpviewer/HelpWindow.py" line="1178"/> <source>&Help</source> <translation>&Помощь</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1294"/> + <location filename="Helpviewer/HelpWindow.py" line="1310"/> <source><p>Enter the help file to be displayed directly into this edit field. Select a previously shown help file from the drop down list.</p></source> <translation><p>Задайте файл помощи для показа.Выберите файл, показанный ранее, из выпадающего списка.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>Reload</source> <translation>Переоткрыть</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>&Reload</source> <translation>П&ереоткрыть</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="553"/> + <location filename="Helpviewer/HelpWindow.py" line="565"/> <source>Reload the current help screen</source> <translation>Переоткрыть это окно помощи</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="554"/> + <location filename="Helpviewer/HelpWindow.py" line="566"/> <source><b>Reload</b><p>Reloads the current help screen.</p></source> <translation><b>Переоткрыть</b><p>Переоткрыть это окно помощи.</p></translation> </message> @@ -12307,80 +12307,80 @@ <translation>Ctrl+P</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="448"/> + <location filename="Helpviewer/HelpWindow.py" line="460"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation>Ctrl+W</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="487"/> + <location filename="Helpviewer/HelpWindow.py" line="499"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="588"/> + <location filename="Helpviewer/HelpWindow.py" line="600"/> <source>&Find...</source> <translation>&Найти...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="593"/> + <location filename="Helpviewer/HelpWindow.py" line="605"/> <source>Find text in page</source> <translation>Найти далее</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="594"/> + <location filename="Helpviewer/HelpWindow.py" line="606"/> <source><b>Find</b><p>Find text in the current page.</p></source> <translation><b>Поиск</b><p>Искать текст на текущей странице.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="601"/> + <location filename="Helpviewer/HelpWindow.py" line="613"/> <source>Find &next</source> <translation>Найти &далее</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="615"/> + <location filename="Helpviewer/HelpWindow.py" line="627"/> <source>Find &previous</source> <translation>Найти п&редыдущее</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="575"/> + <location filename="Helpviewer/HelpWindow.py" line="587"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1210"/> + <location filename="Helpviewer/HelpWindow.py" line="1225"/> <source>File</source> <translation>Файл</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1226"/> + <location filename="Helpviewer/HelpWindow.py" line="1242"/> <source>Edit</source> <translation>Редактировать</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1231"/> + <location filename="Helpviewer/HelpWindow.py" line="1247"/> <source>View</source> <translation>Вид</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1240"/> + <location filename="Helpviewer/HelpWindow.py" line="1256"/> <source>Find</source> <translation>Найти</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1267"/> + <location filename="Helpviewer/HelpWindow.py" line="1283"/> <source>Help</source> <translation>Помощь</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1274"/> + <location filename="Helpviewer/HelpWindow.py" line="1290"/> <source>Go</source> <translation>Перейти</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1559"/> + <location filename="Helpviewer/HelpWindow.py" line="1575"/> <source>Help Files (*.html *.htm);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source> <translation>Файлы помощи (*.html *.htm);;Файлы PDF (*.pdf);;Файлы CHM (*.chm);;Все файлы (*)</translation> </message> @@ -12408,34 +12408,34 @@ <p>Открывает новое окно просмотрщика.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="454"/> + <location filename="Helpviewer/HelpWindow.py" line="466"/> <source><b>Close</b><p>Closes the current help window.</p></source> <translation><b>Закрыть</b> <p>Закрывает текущее окно просмотрщика помощи.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="461"/> + <location filename="Helpviewer/HelpWindow.py" line="473"/> <source>Close &All</source> <translation>Закрыть &всё</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="465"/> + <location filename="Helpviewer/HelpWindow.py" line="477"/> <source><b>Close All</b><p>Closes all help windows except the first one.</p></source> <translation><b>Закрыть все</b> <p>Закрывает все окна просмотрщиков помощи, кроме первого.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1181"/> + <location filename="Helpviewer/HelpWindow.py" line="1194"/> <source>Move Left</source> <translation>Сдвинуть влево</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1184"/> + <location filename="Helpviewer/HelpWindow.py" line="1197"/> <source>Move Right</source> <translation>Сдвинуть вправо</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2032"/> + <location filename="Helpviewer/HelpWindow.py" line="2087"/> <source>...</source> <translation>...</translation> </message> @@ -12482,199 +12482,199 @@ <translation>Открыть файл в новой закладке</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="461"/> + <location filename="Helpviewer/HelpWindow.py" line="473"/> <source>Close All</source> <translation>Закрыть всё</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>Alt+Left</source> <comment>Go|Backward</comment> <translation>Alt+Left</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>Backspace</source> <comment>Go|Backward</comment> <translation>Backspace</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>Alt+Right</source> <comment>Go|Forward</comment> <translation>Alt+Right</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>Shift+Backspace</source> <comment>Go|Forward</comment> <translation>Shift+Backspace</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="534"/> + <location filename="Helpviewer/HelpWindow.py" line="546"/> <source>Ctrl+Home</source> <comment>Go|Home</comment> <translation>Ctrl+Home</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>Ctrl+R</source> <comment>Go|Reload</comment> <translation>Ctrl+R</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="588"/> + <location filename="Helpviewer/HelpWindow.py" line="600"/> <source>Find...</source> <translation>Найти...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="588"/> + <location filename="Helpviewer/HelpWindow.py" line="600"/> <source>Ctrl+F</source> <comment>Edit|Find</comment> <translation>Ctrl+F</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="601"/> + <location filename="Helpviewer/HelpWindow.py" line="613"/> <source>Find next</source> <translation>Найти далее</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="601"/> + <location filename="Helpviewer/HelpWindow.py" line="613"/> <source>F3</source> <comment>Edit|Find next</comment> <translation>F3</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="615"/> + <location filename="Helpviewer/HelpWindow.py" line="627"/> <source>Find previous</source> <translation>Найти предыдущее</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="615"/> + <location filename="Helpviewer/HelpWindow.py" line="627"/> <source>Shift+F3</source> <comment>Edit|Find previous</comment> <translation>Shift+F3</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="686"/> + <location filename="Helpviewer/HelpWindow.py" line="698"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation>Shift+F1</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="726"/> + <location filename="Helpviewer/HelpWindow.py" line="738"/> <source>Ctrl++</source> <comment>View|Zoom in</comment> <translation>Ctrl++</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="739"/> + <location filename="Helpviewer/HelpWindow.py" line="751"/> <source>Ctrl+-</source> <comment>View|Zoom out</comment> <translation>Ctrl+-</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="606"/> + <location filename="Helpviewer/HelpWindow.py" line="618"/> <source>Find next occurrence of text in page</source> <translation>Искать далее на странице</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="607"/> + <location filename="Helpviewer/HelpWindow.py" line="619"/> <source><b>Find next</b><p>Find the next occurrence of text in the current page.</p></source> <translation><b>Искать далее</b><p>Искать далее на текущей странице.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="620"/> + <location filename="Helpviewer/HelpWindow.py" line="632"/> <source>Find previous occurrence of text in page</source> <translation>Искать на странице назад</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="622"/> + <location filename="Helpviewer/HelpWindow.py" line="634"/> <source><b>Find previous</b><p>Find the previous occurrence of text in the current page.</p></source> <translation><b>Искать назад</b><p>Искать назад на текущей странице.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1199"/> + <location filename="Helpviewer/HelpWindow.py" line="1212"/> <source>Print Preview</source> <translation>Предварительный просмотр печати</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="438"/> + <location filename="Helpviewer/HelpWindow.py" line="450"/> <source>Print preview of the displayed help</source> <translation>Предварительный просмотр печати помощи</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="440"/> + <location filename="Helpviewer/HelpWindow.py" line="452"/> <source><b>Print Preview</b><p>Print preview of the displayed help text.</p></source> <translation><b>Предварительный просмотр печати</b><p>Предварительный просмотр печати помощи.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1660"/> + <location filename="Helpviewer/HelpWindow.py" line="1715"/> <source><p>Printing is not available due to a bug in PyQt4.Please upgrade.</p></source> <translation><p>Печать невозможна из-за ошибки в PyQt4. Пожалуйста установите обновление.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="805"/> + <location filename="Helpviewer/HelpWindow.py" line="817"/> <source>Show next tab</source> <translation>Показать следующую закладку</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="805"/> + <location filename="Helpviewer/HelpWindow.py" line="817"/> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="813"/> + <location filename="Helpviewer/HelpWindow.py" line="825"/> <source>Show previous tab</source> <translation>Показать предыдущую закладку</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="813"/> + <location filename="Helpviewer/HelpWindow.py" line="825"/> <source>Shift+Ctrl+Alt+Tab</source> <translation>Shift+Ctrl+Alt+Tab</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="821"/> - <source>Switch between tabs</source> - <translation>Переключиться между закладками</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="821"/> - <source>Ctrl+1</source> - <translation>Ctrl+1</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="970"/> - <source>Clear icons database</source> - <translation>Очистить базу данных иконок</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="974"/> - <source>Clear the database of favicons</source> - <translation>Очистить базу данных иконок</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="975"/> - <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> - <translation><b>Очистить базу данных иконок</b><p>Очистить базу данных иконок ранее посещённых WEB сайтов.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="829"/> - <source>Preferences</source> - <translation>Предпочтения</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="829"/> - <source>&Preferences...</source> - <translation>&Предпочтения...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="832"/> - <source>Set the prefered configuration</source> - <translation>Установите предпочтительную конфигурацию</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="833"/> + <source>Switch between tabs</source> + <translation>Переключиться между закладками</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="833"/> + <source>Ctrl+1</source> + <translation>Ctrl+1</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="982"/> + <source>Clear icons database</source> + <translation>Очистить базу данных иконок</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="986"/> + <source>Clear the database of favicons</source> + <translation>Очистить базу данных иконок</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="987"/> + <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> + <translation><b>Очистить базу данных иконок</b><p>Очистить базу данных иконок ранее посещённых WEB сайтов.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="841"/> + <source>Preferences</source> + <translation>Предпочтения</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="841"/> + <source>&Preferences...</source> + <translation>&Предпочтения...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="844"/> + <source>Set the prefered configuration</source> + <translation>Установите предпочтительную конфигурацию</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="845"/> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation><b>Предпочтения</b> <p>Настройте Eric по своему вкусу.</p></translation> @@ -12685,152 +12685,152 @@ <translation>Содержимое</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="464"/> + <location filename="Helpviewer/HelpWindow.py" line="476"/> <source>Close all help windows</source> <translation>Закрыть все окна просмотрщиков помощи</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="867"/> + <location filename="Helpviewer/HelpWindow.py" line="879"/> <source>Sync with Table of Contents</source> <translation>Синхронизировать с содержанием</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="871"/> - <source>Synchronizes the table of contents with current page</source> - <translation>Синхронизировать содержание с текущей страницей</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="873"/> - <source><b>Sync with Table of Contents</b><p>Synchronizes the table of contents with current page.</p></source> - <translation><b>Синхронизировать с содержанием</b><p>Синхронизировать содержание с текущей страницей.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="880"/> - <source>Table of Contents</source> - <translation>Содержание</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="883"/> - <source>Shows the table of contents window</source> - <translation>Показывает окно с содержанием</translation> + <source>Synchronizes the table of contents with current page</source> + <translation>Синхронизировать содержание с текущей страницей</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="885"/> + <source><b>Sync with Table of Contents</b><p>Synchronizes the table of contents with current page.</p></source> + <translation><b>Синхронизировать с содержанием</b><p>Синхронизировать содержание с текущей страницей.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="892"/> + <source>Table of Contents</source> + <translation>Содержание</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="895"/> + <source>Shows the table of contents window</source> + <translation>Показывает окно с содержанием</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="897"/> <source><b>Table of Contents</b><p>Shows the table of contents window.</p></source> <translation><b>Содержание</b><p>Показывает окно с содержанием.</p></translation> </message> <message> + <location filename="Helpviewer/HelpWindow.py" line="928"/> + <source>Manage QtHelp Documents</source> + <translation>Управлять документацией Qt4</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="931"/> + <source>Shows a dialog to manage the QtHelp documentation set</source> + <translation>Показывает диалог управления документацией Qt4</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="933"/> + <source><b>Manage QtHelp Documents</b><p>Shows a dialog to manage the QtHelp documentation set.</p></source> + <translation><b>Управлять документацией Qt4</b><p>Показывает диалог управления документацией Qt4.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1170"/> + <source>&Window</source> + <translation>&Окно</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1263"/> + <source>Filter</source> + <translation>Фильтр</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1268"/> + <source>Filtered by: </source> + <translation>Фильтровать по:</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="2415"/> + <source>Could not find an associated content.</source> + <translation>Невозможно найти соответствующее содержание.</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="941"/> + <source>Manage QtHelp Filters</source> + <translation>Управлять фильтрами документации QtHelp</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="944"/> + <source>Shows a dialog to manage the QtHelp filters</source> + <translation>Показывает диалог управления фильтрами документации QtHelp</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="946"/> + <source><b>Manage QtHelp Filters</b><p>Shows a dialog to manage the QtHelp filters.</p></source> + <translation><b>Управлять фильтрами документации QtHelp</b><p>Показывает диалог управления фильтрами документации QtHelp.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="904"/> + <source>Index</source> + <translation>Индекс</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="907"/> + <source>Shows the index window</source> + <translation>Показать окно индексов</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="909"/> + <source><b>Index</b><p>Shows the index window.</p></source> + <translation><b>Индекс</b><p>Показать окно индексов.</p></translation> + </message> + <message> <location filename="Helpviewer/HelpWindow.py" line="916"/> - <source>Manage QtHelp Documents</source> - <translation>Управлять документацией Qt4</translation> + <source>Search</source> + <translation>Поиск</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="919"/> - <source>Shows a dialog to manage the QtHelp documentation set</source> - <translation>Показывает диалог управления документацией Qt4</translation> + <source>Shows the search window</source> + <translation>Показать окно поиска</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="921"/> - <source><b>Manage QtHelp Documents</b><p>Shows a dialog to manage the QtHelp documentation set.</p></source> - <translation><b>Управлять документацией Qt4</b><p>Показывает диалог управления документацией Qt4.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1157"/> - <source>&Window</source> - <translation>&Окно</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1247"/> - <source>Filter</source> - <translation>Фильтр</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1252"/> - <source>Filtered by: </source> - <translation>Фильтровать по:</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="2352"/> - <source>Could not find an associated content.</source> - <translation>Невозможно найти соответствующее содержание.</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="929"/> - <source>Manage QtHelp Filters</source> - <translation>Управлять фильтрами документации QtHelp</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="932"/> - <source>Shows a dialog to manage the QtHelp filters</source> - <translation>Показывает диалог управления фильтрами документации QtHelp</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="934"/> - <source><b>Manage QtHelp Filters</b><p>Shows a dialog to manage the QtHelp filters.</p></source> - <translation><b>Управлять фильтрами документации QtHelp</b><p>Показывает диалог управления фильтрами документации QtHelp.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="892"/> - <source>Index</source> - <translation>Индекс</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="895"/> - <source>Shows the index window</source> - <translation>Показать окно индексов</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="897"/> - <source><b>Index</b><p>Shows the index window.</p></source> - <translation><b>Индекс</b><p>Показать окно индексов.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="904"/> - <source>Search</source> - <translation>Поиск</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="907"/> - <source>Shows the search window</source> - <translation>Показать окно поиска</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="909"/> <source><b>Search</b><p>Shows the search window.</p></source> <translation><b>Поиск</b><p>Показать окно поиска.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="942"/> + <location filename="Helpviewer/HelpWindow.py" line="954"/> <source>Reindex Documentation</source> <translation>Переиндексировать документацию</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="945"/> + <location filename="Helpviewer/HelpWindow.py" line="957"/> <source>Reindexes the documentation set</source> <translation>Переиндексировать документацию</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="947"/> + <location filename="Helpviewer/HelpWindow.py" line="959"/> <source><b>Reindex Documentation</b><p>Reindexes the documentation set.</p></source> <translation><b>Переиндексировать документацию</b><p>Переиндексировать документацию.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2468"/> + <location filename="Helpviewer/HelpWindow.py" line="2531"/> <source>Updating search index</source> <translation>Обновление поискового индекса</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2522"/> + <location filename="Helpviewer/HelpWindow.py" line="2585"/> <source>Looking for Documentation...</source> <translation>Идёт поиск помощи...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2552"/> + <location filename="Helpviewer/HelpWindow.py" line="2615"/> <source>Unfiltered</source> <translation>Нефильтрованное</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2571"/> + <location filename="Helpviewer/HelpWindow.py" line="2634"/> <source>Help Engine</source> <translation>Просмотрщик помощи</translation> </message> @@ -12840,218 +12840,218 @@ <translation>Показать меню</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="476"/> + <location filename="Helpviewer/HelpWindow.py" line="488"/> <source>Private Browsing</source> <translation>Личный просмотр</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="472"/> + <location filename="Helpviewer/HelpWindow.py" line="484"/> <source>Private &Browsing</source> <translation>Личный &просмотр</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="477"/> + <location filename="Helpviewer/HelpWindow.py" line="489"/> <source><b>Private Browsing</b><p>Enables private browsing. In this mode no history is recorded anymore.</p></source> <translation><b>Личный просмотр</b><p>Разрешает режим личного просмотра. В этом режиме история не сохраняется.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2224"/> + <location filename="Helpviewer/HelpWindow.py" line="2287"/> <source>Loading...</source> <translation>Загружаю...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2239"/> + <location filename="Helpviewer/HelpWindow.py" line="2302"/> <source>Finished loading</source> <translation>Загрузка завершена</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="796"/> + <location filename="Helpviewer/HelpWindow.py" line="808"/> <source>Full Screen</source> <translation>Полный экран</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="796"/> + <location filename="Helpviewer/HelpWindow.py" line="808"/> <source>&Full Screen</source> <translation>Полный &экран</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="796"/> + <location filename="Helpviewer/HelpWindow.py" line="808"/> <source>F11</source> <translation>F11</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="916"/> + <location filename="Helpviewer/HelpWindow.py" line="928"/> <source>Manage QtHelp &Documents</source> <translation>Управлять &документацией QtHelp</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="929"/> + <location filename="Helpviewer/HelpWindow.py" line="941"/> <source>Manage QtHelp &Filters</source> <translation>Управлять &фильтрами документации QtHelp</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="942"/> + <location filename="Helpviewer/HelpWindow.py" line="954"/> <source>&Reindex Documentation</source> <translation>&Переиндексировать документацию</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="960"/> + <location filename="Helpviewer/HelpWindow.py" line="972"/> <source>Clear private data</source> <translation>Очистить личные данные</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="956"/> + <location filename="Helpviewer/HelpWindow.py" line="968"/> <source>&Clear private data</source> <translation>&Очистить личные данные</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="961"/> + <location filename="Helpviewer/HelpWindow.py" line="973"/> <source><b>Clear private data</b><p>Clears the private data like browsing history, search history or the favicons database.</p></source> <translation><b>Очистить личные данные</b><p>Очистить личные данные: удалить историю просмотров, историю поиска или базу данных иконок.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="970"/> + <location filename="Helpviewer/HelpWindow.py" line="982"/> <source>Clear &icons database</source> <translation>Очистить базу данных &иконок</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1024"/> + <location filename="Helpviewer/HelpWindow.py" line="1036"/> <source>Show Network Monitor</source> <translation>Показать монитор сети</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1024"/> + <location filename="Helpviewer/HelpWindow.py" line="1036"/> <source>Show &Network Monitor</source> <translation>Показать монитор &сети</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1028"/> + <location filename="Helpviewer/HelpWindow.py" line="1040"/> <source>Show the network monitor dialog</source> <translation>Показать диалог монитора сети</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1029"/> + <location filename="Helpviewer/HelpWindow.py" line="1041"/> <source><b>Show Network Monitor</b><p>Shows the network monitor dialog.</p></source> <translation><b>Показать монитор сети</b><p>Показать диалог монитора сети.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1134"/> + <location filename="Helpviewer/HelpWindow.py" line="1147"/> <source>&Settings</source> <translation>&Настройка</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1153"/> + <location filename="Helpviewer/HelpWindow.py" line="1166"/> <source>&Tools</source> <translation>&Инструменты</translation> </message> <message> + <location filename="Helpviewer/HelpWindow.py" line="795"/> + <source>Show page source</source> + <translation>Показать исходный текст страницы</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="795"/> + <source>Ctrl+U</source> + <translation>Ctrl+U</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="799"/> + <source>Show the page source in an editor</source> + <translation>Показать исходный текст страницы в редакторе</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="800"/> + <source><b>Show page source</b><p>Show the page source in an editor.</p></source> + <translation><b>Показать исходный текст страницы</b><p>Показать исходный текст страницы в редакторе.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="853"/> + <source>&Languages...</source> + <translation>&Языки...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="856"/> + <source>Configure the accepted languages for web pages</source> + <translation>Настроить допустимые языки для WEB страниц</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="858"/> + <source><b>Languages</b><p>Configure the accepted languages for web pages.</p></source> + <translation><b>Языки</b><p>Настроить допустимые языки для WEB страниц.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="853"/> + <source>Languages</source> + <translation>Языки</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="866"/> + <source>Cookies</source> + <translation>Cookies</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="866"/> + <source>C&ookies...</source> + <translation>C&ookies...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="869"/> + <source>Configure cookies handling</source> + <translation>Настройка cookies</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="871"/> + <source><b>Cookies</b><p>Configure cookies handling.</p></source> + <translation><b>Cookies</b><p>Настройка cookies.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1276"/> + <source>Settings</source> + <translation>Настройка</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="764"/> + <source>Zoom reset</source> + <translation>Сбросить масштаб</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="764"/> + <source>Zoom &reset</source> + <translation>&Сбросить масштаб</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="764"/> + <source>Ctrl+0</source> + <comment>View|Zoom reset</comment> + <translation>Ctrl+0</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="769"/> + <source>Reset the zoom of the text</source> + <translation>Сбросить масштаб</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="779"/> + <source>Zoom text only</source> + <translation>Масштаб текста</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="779"/> + <source>Zoom &text only</source> + <translation>Масштаб &текста</translation> + </message> + <message> <location filename="Helpviewer/HelpWindow.py" line="783"/> - <source>Show page source</source> - <translation>Показать исходный текст страницы</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="783"/> - <source>Ctrl+U</source> - <translation>Ctrl+U</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="787"/> - <source>Show the page source in an editor</source> - <translation>Показать исходный текст страницы в редакторе</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="788"/> - <source><b>Show page source</b><p>Show the page source in an editor.</p></source> - <translation><b>Показать исходный текст страницы</b><p>Показать исходный текст страницы в редакторе.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="841"/> - <source>&Languages...</source> - <translation>&Языки...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="844"/> - <source>Configure the accepted languages for web pages</source> - <translation>Настроить допустимые языки для WEB страниц</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="846"/> - <source><b>Languages</b><p>Configure the accepted languages for web pages.</p></source> - <translation><b>Языки</b><p>Настроить допустимые языки для WEB страниц.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="841"/> - <source>Languages</source> - <translation>Языки</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="854"/> - <source>Cookies</source> - <translation>Cookies</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="854"/> - <source>C&ookies...</source> - <translation>C&ookies...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="857"/> - <source>Configure cookies handling</source> - <translation>Настройка cookies</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="859"/> - <source><b>Cookies</b><p>Configure cookies handling.</p></source> - <translation><b>Cookies</b><p>Настройка cookies.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1260"/> - <source>Settings</source> - <translation>Настройка</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="752"/> - <source>Zoom reset</source> - <translation>Сбросить масштаб</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="752"/> - <source>Zoom &reset</source> - <translation>&Сбросить масштаб</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="752"/> - <source>Ctrl+0</source> - <comment>View|Zoom reset</comment> - <translation>Ctrl+0</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="757"/> - <source>Reset the zoom of the text</source> - <translation>Сбросить масштаб</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="767"/> - <source>Zoom text only</source> - <translation>Масштаб текста</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="767"/> - <source>Zoom &text only</source> - <translation>Масштаб &текста</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="771"/> <source>Zoom text only; pictures remain constant</source> <translation>Масштаб текста; Изображения остаются неизменными</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="773"/> + <location filename="Helpviewer/HelpWindow.py" line="785"/> <source><b>Zoom text only</b><p>Zoom text only; pictures remain constant.</p></source> <translation><b>Масштаб текста</b><p>Масштаб текста; Изображения остаются неизменными.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="758"/> + <location filename="Helpviewer/HelpWindow.py" line="770"/> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation><b>Сбросить масштаб</b><p>Сбросить масштаб текста, т.е. установить масштаб в 100%.</p></translation> </message> @@ -13101,142 +13101,142 @@ <translation><b>Экспорт закладок</b><p>Экспортировать закладки в файл.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="631"/> + <location filename="Helpviewer/HelpWindow.py" line="643"/> <source>Manage Bookmarks</source> <translation>Управлять закладками</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="631"/> + <location filename="Helpviewer/HelpWindow.py" line="643"/> <source>&Manage Bookmarks...</source> <translation>&Управлять закладками...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="631"/> + <location filename="Helpviewer/HelpWindow.py" line="643"/> <source>Ctrl+Shift+B</source> <comment>Help|Manage bookmarks</comment> <translation>Ctrl+Shift+B</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="635"/> + <location filename="Helpviewer/HelpWindow.py" line="647"/> <source>Open a dialog to manage the bookmarks.</source> <translation>Показать диалог управления закладками.</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="637"/> + <location filename="Helpviewer/HelpWindow.py" line="649"/> <source><b>Manage Bookmarks...</b><p>Open a dialog to manage the bookmarks.</p></source> <translation><b>Управлять закладками...</b><p>Показать диалог управления закладками.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="645"/> + <location filename="Helpviewer/HelpWindow.py" line="657"/> <source>Add &Bookmark...</source> <translation>Добавить &закладку...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="645"/> + <location filename="Helpviewer/HelpWindow.py" line="657"/> <source>Ctrl+D</source> <comment>Help|Add bookmark</comment> <translation>Ctrl+D</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="651"/> + <location filename="Helpviewer/HelpWindow.py" line="663"/> <source>Open a dialog to add a bookmark.</source> <translation>Показать диалог добавления закладки.</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="652"/> - <source><b>Add Bookmark</b><p>Open a dialog to add the current URL as a bookmark.</p></source> - <translation><b>Добавить закладку</b><p>Показать диалог добавления текущей страницы в закладки.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="659"/> - <source>Add Folder</source> - <translation>Добавить папку</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="659"/> - <source>Add &Folder...</source> - <translation>Добавить &папку...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="662"/> - <source>Open a dialog to add a new bookmarks folder.</source> - <translation>Показать диалог добавления новой папки закладок.</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="664"/> + <source><b>Add Bookmark</b><p>Open a dialog to add the current URL as a bookmark.</p></source> + <translation><b>Добавить закладку</b><p>Показать диалог добавления текущей страницы в закладки.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="671"/> + <source>Add Folder</source> + <translation>Добавить папку</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="671"/> + <source>Add &Folder...</source> + <translation>Добавить &папку...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="674"/> + <source>Open a dialog to add a new bookmarks folder.</source> + <translation>Показать диалог добавления новой папки закладок.</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="676"/> <source><b>Add Folder...</b><p>Open a dialog to add a new bookmarks folder.</p></source> <translation><b>Добавить папку</b><p>Показать диалог добавления новой папки закладок.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="672"/> + <location filename="Helpviewer/HelpWindow.py" line="684"/> <source>Bookmark All Tabs</source> <translation>Создать закладки для всех открытых страниц</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="672"/> + <location filename="Helpviewer/HelpWindow.py" line="684"/> <source>Bookmark All Tabs...</source> <translation>Создать закладки для всех открытых страниц...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="675"/> + <location filename="Helpviewer/HelpWindow.py" line="687"/> <source>Bookmark all open tabs.</source> <translation>Создать закладки для всех открытых страниц.</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="677"/> + <location filename="Helpviewer/HelpWindow.py" line="689"/> <source><b>Bookmark All Tabs...</b><p>Open a dialog to add a new bookmarks folder for all open tabs.</p></source> <translation><b>Создать закладки для всех открытых страниц...</b><p>Показать диалог добавления папки для закладок.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1753"/> + <location filename="Helpviewer/HelpWindow.py" line="1808"/> <source>Saved Tabs</source> <translation>Сохраненные закладки</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1195"/> + <location filename="Helpviewer/HelpWindow.py" line="1208"/> <source>Close Others</source> <translation>Закрыть остальные</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>F5</source> <comment>Go|Reload</comment> <translation>F5</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>Stop</source> <translation>Стоп</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>&Stop</source> <translation>Ст&оп</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>Ctrl+.</source> <comment>Go|Stop</comment> <translation>Ctrl+.</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>Esc</source> <comment>Go|Stop</comment> <translation>Esc</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="567"/> + <location filename="Helpviewer/HelpWindow.py" line="579"/> <source>Stop loading</source> <translation>Остановить загрузку</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="568"/> + <location filename="Helpviewer/HelpWindow.py" line="580"/> <source><b>Stop</b><p>Stops loading of the current tab.</p></source> <translation><b>Стоп</b><p>Остановить загрузку.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1188"/> + <location filename="Helpviewer/HelpWindow.py" line="1201"/> <source>Duplicate Page</source> <translation>Дуплисат</translation> </message> @@ -13267,100 +13267,115 @@ <translation><b>Сохранить как...</b><p>Сохранить текущую страницу в файл.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1679"/> + <location filename="Helpviewer/HelpWindow.py" line="1734"/> <source>Eric Web Browser</source> <translation>WEB просмотрщик встроенный в Eric</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1670"/> + <location filename="Helpviewer/HelpWindow.py" line="1725"/> <source><h3>About Eric Web Browser</h3><p>The Eric Web Browser is a combined help file and HTML browser.</p></source> <translation><h3>О WEB просмотрщике встроенном в Eric</h3><p>WEB просмотрщик встроенный в Eric это комбинированный просмотрщик файлов помощи и HTML файлов.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1976"/> + <location filename="Helpviewer/HelpWindow.py" line="2031"/> <source><b>Are you sure you want to turn on private browsing?</b><p>When private browsing is turned on, web pages are not added to the history, searches are not added to the list of recent searches and web site icons and cookies are not stored. Until you close the window, you can still click the Back and Forward buttons to return to the web pages you have opened.</p></source> <translation><b>Включить режим личного просмотра?</b><p>В режиме личного просмотра не сохраняются история просмотренных страниц, история поисков, cookies; иконки посещённых сайтов не запоминаются в базе данных.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="492"/> + <location filename="Helpviewer/HelpWindow.py" line="504"/> <source>Quit the web browser</source> <translation>Закрыть просмотрщик Web</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="493"/> + <location filename="Helpviewer/HelpWindow.py" line="505"/> <source><b>Quit</b><p>Quit the web browser.</p></source> <translation><b>Выход</b><p>Закрыть просмотрщик Web.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="982"/> + <location filename="Helpviewer/HelpWindow.py" line="994"/> <source>Configure Search Engines</source> <translation>Настройка поисковиков</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="982"/> + <location filename="Helpviewer/HelpWindow.py" line="994"/> <source>Configure &Search Engines...</source> <translation>Настройка &поисковиков...</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="986"/> + <location filename="Helpviewer/HelpWindow.py" line="998"/> <source>Configure the available search engines</source> <translation>Настроить все поисковики</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="988"/> - <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> - <translation><b>Настроить все поисковики...</b><p>Открыть диалог для настройки поисковиков.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="996"/> - <source>Manage Saved Passwords</source> - <translation>Менеджировать сохранённые пароли</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="996"/> - <source>Manage Saved Passwords...</source> - <translation>Менеджировать сохранённые пароли...</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="1000"/> + <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> + <translation><b>Настроить все поисковики...</b><p>Открыть диалог для настройки поисковиков.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1008"/> + <source>Manage Saved Passwords</source> + <translation>Менеджировать сохранённые пароли</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1008"/> + <source>Manage Saved Passwords...</source> + <translation>Менеджировать сохранённые пароли...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1012"/> <source>Manage the saved passwords</source> <translation>Менеджировать сохранённые пароли</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1002"/> - <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> - <translation><b>Менеджировать сохранённые пароли...</b>Открыть диалог для менеджирования сохранённых паролей<p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1010"/> - <source>Ad Block</source> - <translation>Ad Block</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1010"/> - <source>&Ad Block...</source> - <translation>&Ad Block...</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="1014"/> + <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> + <translation><b>Менеджировать сохранённые пароли...</b>Открыть диалог для менеджирования сохранённых паролей<p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1022"/> + <source>Ad Block</source> + <translation>Ad Block</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1022"/> + <source>&Ad Block...</source> + <translation>&Ad Block...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1026"/> <source>Configure AdBlock subscriptions and rules</source> <translation>Настроить AdBlock подписки и правила</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1016"/> + <location filename="Helpviewer/HelpWindow.py" line="1028"/> <source><b>Ad Block...</b><p>Opens a dialog to configure AdBlock subscriptions and rules.</p></source> <translation><b>Ad Block...</b><p>Показать диалог для настройки AdBlock подписок и правил.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2531"/> + <location filename="Helpviewer/HelpWindow.py" line="2594"/> <source>eric5 Web Browser</source> <translation>WEB просмотрщик встроенный в Eric5</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2241"/> + <location filename="Helpviewer/HelpWindow.py" line="2304"/> <source>Failed to load</source> <translation>Загрука не удалась</translation> </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1216"/> + <source>Print as PDF</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="438"/> + <source>Print the displayed help as PDF</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="439"/> + <source><b>Print as PDF</b><p>Print the displayed help text as a PDF file.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Hg</name>
--- a/i18n/eric5_tr.ts Sun May 30 18:28:06 2010 +0200 +++ b/i18n/eric5_tr.ts Sun May 30 18:53:41 2010 +0200 @@ -11868,24 +11868,24 @@ <context> <name>FtpReply</name> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="319"/> + <location filename="Helpviewer/Network/FtpReply.py" line="332"/> <source> <p><a class="link_parent" href="{0}">Change to parent directory</a></p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="332"/> + <location filename="Helpviewer/Network/FtpReply.py" line="345"/> <source> <tr><th align="left">Name</th><th>Size</th><th align="left">Last modified</th></tr> </source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="358"/> + <location filename="Helpviewer/Network/FtpReply.py" line="371"/> <source>{0} {1}</source> <comment>size unit</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="382"/> + <location filename="Helpviewer/Network/FtpReply.py" line="395"/> <source>Listing of {0}</source> <translation type="unfinished"></translation> </message> @@ -12089,17 +12089,17 @@ <translation type="obsolete"><html><head><title>Yardım Penceresi</title></head><body><p>Talep edilen URL <b>%1</b> adresi yüklenemedi.</p><p>Sebep: %2</p></body></html></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>Check the address for errors such as <b>ww</b>.example.org instead of <b>www</b>.example.org</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>If the address is correct, try checking the network connection.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source> <translation type="unfinished"></translation> </message> @@ -12174,12 +12174,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="947"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="946"/> <source>Error loading page: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>When connecting to: {0}.</source> <translation type="unfinished"></translation> </message> @@ -13066,7 +13066,7 @@ <translation type="obsolete">eric4 Yardım Göstericisi</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="453"/> + <location filename="Helpviewer/HelpWindow.py" line="465"/> <source>Close the current help window</source> <translation>Geçerli yardım penceresini kapat</translation> </message> @@ -13123,7 +13123,7 @@ <translation><b>Yeni Pencere</b><p>Bu yeni bir yardım gözatıcı penceresi açar.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1559"/> + <location filename="Helpviewer/HelpWindow.py" line="1575"/> <source>Open File</source> <translation>Dosya Aç</translation> </message> @@ -13175,7 +13175,7 @@ <translation><b>Yeni Sekmede Dosya aç</b><p>Bu yeni bir sekmede yardım dosyası göstermek için açar.Dosya seçme diyaloğu ortaya çıkarır.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1201"/> + <location filename="Helpviewer/HelpWindow.py" line="1214"/> <source>Print</source> <translation>Yazdır</translation> </message> @@ -13201,48 +13201,48 @@ <translation><b>Yazdır</b><p>Görüntülenen yardım metnini yazdır.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1199"/> + <location filename="Helpviewer/HelpWindow.py" line="1212"/> <source>Print Preview</source> <translation>Yazdırma Öngörünümü</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="438"/> + <location filename="Helpviewer/HelpWindow.py" line="450"/> <source>Print preview of the displayed help</source> <translation>Görüntülenen yardımının yazıcı öngörünümünü göster</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="440"/> + <location filename="Helpviewer/HelpWindow.py" line="452"/> <source><b>Print Preview</b><p>Print preview of the displayed help text.</p></source> <translation><b>Yazıcı Öngörünümü</b><p>Görüntülenen yardım metninin yazıcı öngörünümü.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1192"/> + <location filename="Helpviewer/HelpWindow.py" line="1205"/> <source>Close</source> <translation>Kapat</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="448"/> + <location filename="Helpviewer/HelpWindow.py" line="460"/> <source>&Close</source> <translation>&Kapat</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="448"/> + <location filename="Helpviewer/HelpWindow.py" line="460"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation>Ctrl+W</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="454"/> + <location filename="Helpviewer/HelpWindow.py" line="466"/> <source><b>Close</b><p>Closes the current help window.</p></source> <translation><b>Kapat</b><p>Geçerli yardım penceresini kapat.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="461"/> + <location filename="Helpviewer/HelpWindow.py" line="473"/> <source>Close All</source> <translation>Hepsini Kapat</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="461"/> + <location filename="Helpviewer/HelpWindow.py" line="473"/> <source>Close &All</source> <translation>Hepsini K&apat</translation> </message> @@ -13252,22 +13252,22 @@ <translation type="obsolete">Tüm yardım pencerelerini kapat</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="465"/> + <location filename="Helpviewer/HelpWindow.py" line="477"/> <source><b>Close All</b><p>Closes all help windows except the first one.</p></source> <translation><b>Hepisini Kapat</b><p>İlk açılan hariç tüm yardım pencerelerini kapat.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="487"/> + <location filename="Helpviewer/HelpWindow.py" line="499"/> <source>Quit</source> <translation>Çık</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="487"/> + <location filename="Helpviewer/HelpWindow.py" line="499"/> <source>&Quit</source> <translation>&Çıkış</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="487"/> + <location filename="Helpviewer/HelpWindow.py" line="499"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> @@ -13283,222 +13283,222 @@ <translation type="obsolete"><b>Çık</b><p>Yardım göstericiden çık.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>Backward</source> <translation>Geriye Doğru</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>&Backward</source> <translation>Geriye &Doğru</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>Alt+Left</source> <comment>Go|Backward</comment> <translation>Alt+Left</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>Backspace</source> <comment>Go|Backward</comment> <translation>Backspace</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="510"/> + <location filename="Helpviewer/HelpWindow.py" line="522"/> <source>Move one help screen backward</source> <translation>Önceki yardım ekranına götür</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="511"/> + <location filename="Helpviewer/HelpWindow.py" line="523"/> <source><b>Backward</b><p>Moves one help screen backward. If none is available, this action is disabled.</p></source> <translation><b>Geriye Doğru</b><p>Bir yardım ekranın geriye taşı. Eğer hazırda bir tane yoksa ,bu işlem iptal edilir.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>Forward</source> <translation>İleriye</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>&Forward</source> <translation>İleri&ye</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>Alt+Right</source> <comment>Go|Forward</comment> <translation>Alt+Right</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>Shift+Backspace</source> <comment>Go|Forward</comment> <translation>Shift+Backspace</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="525"/> + <location filename="Helpviewer/HelpWindow.py" line="537"/> <source>Move one help screen forward</source> <translation>Bir yardım görüntüsü ileri taşı</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="526"/> + <location filename="Helpviewer/HelpWindow.py" line="538"/> <source><b>Forward</b><p>Moves one help screen forward. If none is available, this action is disabled.</p></source> <translation><b>İleriye Doğru</b><p>Yardım ekranın bir ileriye taşı. Eğer hazırda bir tane yoksa ,bu işlem iptal edilir.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="534"/> + <location filename="Helpviewer/HelpWindow.py" line="546"/> <source>Home</source> <translation>Home</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="534"/> + <location filename="Helpviewer/HelpWindow.py" line="546"/> <source>&Home</source> <translation>&Ev</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="534"/> + <location filename="Helpviewer/HelpWindow.py" line="546"/> <source>Ctrl+Home</source> <comment>Go|Home</comment> <translation>Ctrl+Home</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="539"/> + <location filename="Helpviewer/HelpWindow.py" line="551"/> <source>Move to the initial help screen</source> <translation>İlk yardım sayfasına taşı</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="540"/> + <location filename="Helpviewer/HelpWindow.py" line="552"/> <source><b>Home</b><p>Moves to the initial help screen.</p></source> <translation><b>Giriş</b><p>Yardım ekranını ilk baştakine taşı.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>Reload</source> <translation>Yeniden Yükle</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>&Reload</source> <translation>&Yeniden Yükle</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>Ctrl+R</source> <comment>Go|Reload</comment> <translation>Ctrl+R</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="553"/> + <location filename="Helpviewer/HelpWindow.py" line="565"/> <source>Reload the current help screen</source> <translation>Geçerli yardım ekranını yeniden yükle</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="554"/> + <location filename="Helpviewer/HelpWindow.py" line="566"/> <source><b>Reload</b><p>Reloads the current help screen.</p></source> <translation><b>Yeniden Yükle</b><p>Geçerli yardım görüntüsünü yeniden yükle.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="575"/> + <location filename="Helpviewer/HelpWindow.py" line="587"/> <source>Copy</source> <translation>Kopyala</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="575"/> + <location filename="Helpviewer/HelpWindow.py" line="587"/> <source>&Copy</source> <translation>&Kopyala</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="575"/> + <location filename="Helpviewer/HelpWindow.py" line="587"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="580"/> + <location filename="Helpviewer/HelpWindow.py" line="592"/> <source>Copy the selected text</source> <translation>Seçilen metni kopyala</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="581"/> - <source><b>Copy</b><p>Copy the selected text to the clipboard.</p></source> - <translation><b>Kopya</b><p>Seçilen metni clipboard kopyala.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="588"/> - <source>Find...</source> - <translation>Bul...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="588"/> - <source>&Find...</source> - <translation>&Bul...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="588"/> - <source>Ctrl+F</source> - <comment>Edit|Find</comment> - <translation>Ctrl+F</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="593"/> + <source><b>Copy</b><p>Copy the selected text to the clipboard.</p></source> + <translation><b>Kopya</b><p>Seçilen metni clipboard kopyala.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="600"/> + <source>Find...</source> + <translation>Bul...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="600"/> + <source>&Find...</source> + <translation>&Bul...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="600"/> + <source>Ctrl+F</source> + <comment>Edit|Find</comment> + <translation>Ctrl+F</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="605"/> <source>Find text in page</source> <translation>Metni sayfa içinde bul</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="594"/> - <source><b>Find</b><p>Find text in the current page.</p></source> - <translation><b>BUl</b><p>Metni geçerli sayfada bul.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="601"/> - <source>Find next</source> - <translation>Sonrakini bul</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="601"/> - <source>Find &next</source> - <translation>So&nrakini Bul</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="601"/> - <source>F3</source> - <comment>Edit|Find next</comment> - <translation>F3</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="606"/> + <source><b>Find</b><p>Find text in the current page.</p></source> + <translation><b>BUl</b><p>Metni geçerli sayfada bul.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="613"/> + <source>Find next</source> + <translation>Sonrakini bul</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="613"/> + <source>Find &next</source> + <translation>So&nrakini Bul</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="613"/> + <source>F3</source> + <comment>Edit|Find next</comment> + <translation>F3</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="618"/> <source>Find next occurrence of text in page</source> <translation>Geçerli sayfadaki metinde bir sonrakini bul</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="607"/> + <location filename="Helpviewer/HelpWindow.py" line="619"/> <source><b>Find next</b><p>Find the next occurrence of text in the current page.</p></source> <translation><b>Bir sonrakini bul</b><p>Geçerli sayfadaki metinde bir sonrakini bul.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="615"/> + <location filename="Helpviewer/HelpWindow.py" line="627"/> <source>Find previous</source> <translation>Öncekini bul</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="615"/> + <location filename="Helpviewer/HelpWindow.py" line="627"/> <source>Find &previous</source> <translation>Öncekini b&ul</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="615"/> + <location filename="Helpviewer/HelpWindow.py" line="627"/> <source>Shift+F3</source> <comment>Edit|Find previous</comment> <translation>Shift+F3</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="620"/> + <location filename="Helpviewer/HelpWindow.py" line="632"/> <source>Find previous occurrence of text in page</source> <translation>Geçerli sayfadaki metinde bir öncekini bul</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="622"/> + <location filename="Helpviewer/HelpWindow.py" line="634"/> <source><b>Find previous</b><p>Find the previous occurrence of text in the current page.</p></source> <translation><b>Bir öncekini bul</b><p>Geçerli sayfadaki metinde bir öncekini bul.</p></translation> </message> @@ -13523,7 +13523,7 @@ <translation type="obsolete"><b>Geçmişi Temizle</b><p>Geçmiş bilgileri silinir.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="645"/> + <location filename="Helpviewer/HelpWindow.py" line="657"/> <source>Add Bookmark</source> <translation>Yerimi Ekle</translation> </message> @@ -13563,175 +13563,175 @@ <translation type="obsolete"><b>Yerimlerini Düzenle</b><p>Bu işlem yerimlerinin adını ve menü içindeki sıralarını değiştirebileceğiniz bir diyalog açar.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="686"/> + <location filename="Helpviewer/HelpWindow.py" line="698"/> <source>What's This?</source> <translation>Bu nedir?</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="686"/> + <location filename="Helpviewer/HelpWindow.py" line="698"/> <source>&What's This?</source> <translation>Bu &Nedir?</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="686"/> + <location filename="Helpviewer/HelpWindow.py" line="698"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation>Shift+F1</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="691"/> - <source>Context sensitive help</source> - <translation>İçeriğe duyarlı yardım</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="692"/> - <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> - <translation><b>Duyarlı yardım içeriğini görüntüle</b><p>Bu Nedir? modunda, Fare imleci soru işeretiyle beraber bir ok şeklindedir ve bir arayüz elemanı üzerinde tıklarsanız bu elemanın nasıl kullanılacağı ve hakkında kısa bilgi verir. bu özellik diyaloglarda başlık çubuğu üzerindeyken çıkarılan açılır menülerde de bulunmaktadır.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="703"/> - <source>About</source> - <translation>Hakkında</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="703"/> + <source>Context sensitive help</source> + <translation>İçeriğe duyarlı yardım</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="704"/> + <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> + <translation><b>Duyarlı yardım içeriğini görüntüle</b><p>Bu Nedir? modunda, Fare imleci soru işeretiyle beraber bir ok şeklindedir ve bir arayüz elemanı üzerinde tıklarsanız bu elemanın nasıl kullanılacağı ve hakkında kısa bilgi verir. bu özellik diyaloglarda başlık çubuğu üzerindeyken çıkarılan açılır menülerde de bulunmaktadır.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="715"/> + <source>About</source> + <translation>Hakkında</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="715"/> <source>&About</source> <translation>H&akkında</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="706"/> + <location filename="Helpviewer/HelpWindow.py" line="718"/> <source>Display information about this software</source> <translation>Bu yazılım hakkında bilgi göster</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="707"/> - <source><b>About</b><p>Display some information about this software.</p></source> - <translation><b>Hakkında</b><p>Bu yazılım hakkındaki çeşitli bilgileri gösterir.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="714"/> - <source>About Qt</source> - <translation>Qt Hakkında</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="714"/> - <source>About &Qt</source> - <translation>&Qt Hakkında</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="717"/> - <source>Display information about the Qt toolkit</source> - <translation>Qt araçkiti hakkında bilgi göster</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="719"/> - <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> - <translation><b>Qt Hakkında</b><p>Qt Araçkiti hakkında bazı bilgiler gösterir.</p></translation> + <source><b>About</b><p>Display some information about this software.</p></source> + <translation><b>Hakkında</b><p>Bu yazılım hakkındaki çeşitli bilgileri gösterir.</p></translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="726"/> - <source>Zoom in</source> - <translation>Büyüt</translation> + <source>About Qt</source> + <translation>Qt Hakkında</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="726"/> - <source>Zoom &in</source> - <translation>Bü&yült</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="726"/> - <source>Ctrl++</source> - <comment>View|Zoom in</comment> - <translation>Ctrl++</translation> + <source>About &Qt</source> + <translation>&Qt Hakkında</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="729"/> + <source>Display information about the Qt toolkit</source> + <translation>Qt araçkiti hakkında bilgi göster</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="731"/> + <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> + <translation><b>Qt Hakkında</b><p>Qt Araçkiti hakkında bazı bilgiler gösterir.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="738"/> + <source>Zoom in</source> + <translation>Büyüt</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="738"/> + <source>Zoom &in</source> + <translation>Bü&yült</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="738"/> + <source>Ctrl++</source> + <comment>View|Zoom in</comment> + <translation>Ctrl++</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="743"/> <source>Zoom in on the text</source> <translation>MEtni Büyüt</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="732"/> - <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> - <translation><b>Büyült</b><p>Metin üzerinde büyüt. Bu metni daha büyük yapar.</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="739"/> - <source>Zoom out</source> - <translation>Küçült</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="739"/> - <source>Zoom &out</source> - <translation>Küçü&lt</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="739"/> - <source>Ctrl+-</source> - <comment>View|Zoom out</comment> - <translation>Ctrl+-</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="744"/> + <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> + <translation><b>Büyült</b><p>Metin üzerinde büyüt. Bu metni daha büyük yapar.</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="751"/> + <source>Zoom out</source> + <translation>Küçült</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="751"/> + <source>Zoom &out</source> + <translation>Küçü&lt</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="751"/> + <source>Ctrl+-</source> + <comment>View|Zoom out</comment> + <translation>Ctrl+-</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="756"/> <source>Zoom out on the text</source> <translation>Metin üzerinde küçült</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="745"/> + <location filename="Helpviewer/HelpWindow.py" line="757"/> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation><b>Küçült</b><p>Metni küçült. Bu metni daha küçük yapar.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="805"/> + <location filename="Helpviewer/HelpWindow.py" line="817"/> <source>Show next tab</source> <translation>Sonraki sekmeyi göster</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="805"/> + <location filename="Helpviewer/HelpWindow.py" line="817"/> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="813"/> + <location filename="Helpviewer/HelpWindow.py" line="825"/> <source>Show previous tab</source> <translation>Önceki sekmeyi göster</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="813"/> + <location filename="Helpviewer/HelpWindow.py" line="825"/> <source>Shift+Ctrl+Alt+Tab</source> <translation>Shift+Ctrl+Alt+Tab</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="821"/> - <source>Switch between tabs</source> - <translation>Sekme arasına tıkla</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="821"/> - <source>Ctrl+1</source> - <translation>Ctrl+1</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="829"/> - <source>Preferences</source> - <translation>Tercihler</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="829"/> - <source>&Preferences...</source> - <translation>&Tercihler...</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="832"/> - <source>Set the prefered configuration</source> - <translation>tercih edilen ayarları yapınız</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="833"/> + <source>Switch between tabs</source> + <translation>Sekme arasına tıkla</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="833"/> + <source>Ctrl+1</source> + <translation>Ctrl+1</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="841"/> + <source>Preferences</source> + <translation>Tercihler</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="841"/> + <source>&Preferences...</source> + <translation>&Tercihler...</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="844"/> + <source>Set the prefered configuration</source> + <translation>tercih edilen ayarları yapınız</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="845"/> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation><b>Tercihler</b><p>Uygulamanın ayarlama maddelerini tercih ettiğiniz değerlerle ayarlayınız.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="970"/> + <location filename="Helpviewer/HelpWindow.py" line="982"/> <source>Clear icons database</source> <translation>İkon veritabanını temizle</translation> </message> @@ -13741,42 +13741,42 @@ <translation type="obsolete">İ&kon veritabanını temizle</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="974"/> + <location filename="Helpviewer/HelpWindow.py" line="986"/> <source>Clear the database of favicons</source> <translation>Favori icon veritabanını sil</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="975"/> + <location filename="Helpviewer/HelpWindow.py" line="987"/> <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> <translation><b>İcon veritabanını temizle</b><p>Sıklıkla ziyaret edilen favori URLlerin veritabanını temizle.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1057"/> + <location filename="Helpviewer/HelpWindow.py" line="1069"/> <source>&File</source> <translation>&Dosya</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1079"/> + <location filename="Helpviewer/HelpWindow.py" line="1092"/> <source>&Edit</source> <translation>Düz&en</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1087"/> + <location filename="Helpviewer/HelpWindow.py" line="1100"/> <source>&View</source> <translation>&Görünüm</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1098"/> - <source>&Go</source> - <translation>&Git</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="1111"/> + <source>&Go</source> + <translation>&Git</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1124"/> <source>H&istory</source> <translation>Geçmi&ş</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1120"/> + <location filename="Helpviewer/HelpWindow.py" line="1133"/> <source>&Bookmarks</source> <translation>&Yerimleri</translation> </message> @@ -13786,37 +13786,37 @@ <translation type="obsolete">Ayar&lar</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1165"/> + <location filename="Helpviewer/HelpWindow.py" line="1178"/> <source>&Help</source> <translation>&Yardım</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1181"/> + <location filename="Helpviewer/HelpWindow.py" line="1194"/> <source>Move Left</source> <translation>Sola Götür</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1184"/> + <location filename="Helpviewer/HelpWindow.py" line="1197"/> <source>Move Right</source> <translation>Sağa Götür</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1210"/> + <location filename="Helpviewer/HelpWindow.py" line="1225"/> <source>File</source> <translation>Dosya</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1226"/> + <location filename="Helpviewer/HelpWindow.py" line="1242"/> <source>Edit</source> <translation>Düzen</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1231"/> + <location filename="Helpviewer/HelpWindow.py" line="1247"/> <source>View</source> <translation>Görünüm</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1240"/> + <location filename="Helpviewer/HelpWindow.py" line="1256"/> <source>Find</source> <translation>Bul</translation> </message> @@ -13826,22 +13826,22 @@ <translation type="obsolete">Yerimleri</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1267"/> + <location filename="Helpviewer/HelpWindow.py" line="1283"/> <source>Help</source> <translation>Yardım</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1274"/> + <location filename="Helpviewer/HelpWindow.py" line="1290"/> <source>Go</source> <translation>Git</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1294"/> + <location filename="Helpviewer/HelpWindow.py" line="1310"/> <source><p>Enter the help file to be displayed directly into this edit field. Select a previously shown help file from the drop down list.</p></source> <translation><p>Görüntülenen bu düzenleme alanından direkt yardım dosyasını gir. Aşağı kayan listededen öncelikle görünmesini istediğiniz yardım dosyasını seçiniz.</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1559"/> + <location filename="Helpviewer/HelpWindow.py" line="1575"/> <source>Help Files (*.html *.htm);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source> <translation>Yardım Dosyaları (*.html *.htm);;PDF Dosyaları (*.pdf);;CHM Dosyaları (*.chm);;Tüm Dosyalar (*)</translation> </message> @@ -13851,7 +13851,7 @@ <translation type="obsolete">Yardımgösterici</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1660"/> + <location filename="Helpviewer/HelpWindow.py" line="1715"/> <source><p>Printing is not available due to a bug in PyQt4.Please upgrade.</p></source> <translation><p>PyQt4 te hatyı yazdırmak tam olarak mümkün değil. Lütfen güncelleyiniz.</p></translation> </message> @@ -13861,7 +13861,7 @@ <translation type="obsolete"><h3>Yardım Gösterici Hakkında</h3><p>Yardım gösterici penceresi, QT belgelerinde olduğu gibi HTML yardım dosyalarını gösteren küçük bir HTML gözatıcısıdır</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2032"/> + <location filename="Helpviewer/HelpWindow.py" line="2087"/> <source>...</source> <translation>...</translation> </message> @@ -13896,152 +13896,152 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="464"/> + <location filename="Helpviewer/HelpWindow.py" line="476"/> <source>Close all help windows</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="867"/> + <location filename="Helpviewer/HelpWindow.py" line="879"/> <source>Sync with Table of Contents</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="871"/> - <source>Synchronizes the table of contents with current page</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="873"/> - <source><b>Sync with Table of Contents</b><p>Synchronizes the table of contents with current page.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="880"/> - <source>Table of Contents</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="883"/> - <source>Shows the table of contents window</source> + <source>Synchronizes the table of contents with current page</source> <translation type="unfinished"></translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="885"/> + <source><b>Sync with Table of Contents</b><p>Synchronizes the table of contents with current page.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="892"/> + <source>Table of Contents</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="895"/> + <source>Shows the table of contents window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="897"/> <source><b>Table of Contents</b><p>Shows the table of contents window.</p></source> <translation type="unfinished"></translation> </message> <message> + <location filename="Helpviewer/HelpWindow.py" line="928"/> + <source>Manage QtHelp Documents</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="931"/> + <source>Shows a dialog to manage the QtHelp documentation set</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="933"/> + <source><b>Manage QtHelp Documents</b><p>Shows a dialog to manage the QtHelp documentation set.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1170"/> + <source>&Window</source> + <translation type="unfinished">&Pencere</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1263"/> + <source>Filter</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1268"/> + <source>Filtered by: </source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="2415"/> + <source>Could not find an associated content.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="941"/> + <source>Manage QtHelp Filters</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="944"/> + <source>Shows a dialog to manage the QtHelp filters</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="946"/> + <source><b>Manage QtHelp Filters</b><p>Shows a dialog to manage the QtHelp filters.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="904"/> + <source>Index</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="907"/> + <source>Shows the index window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="909"/> + <source><b>Index</b><p>Shows the index window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="Helpviewer/HelpWindow.py" line="916"/> - <source>Manage QtHelp Documents</source> - <translation type="unfinished"></translation> + <source>Search</source> + <translation type="unfinished">Ara</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="919"/> - <source>Shows a dialog to manage the QtHelp documentation set</source> + <source>Shows the search window</source> <translation type="unfinished"></translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="921"/> - <source><b>Manage QtHelp Documents</b><p>Shows a dialog to manage the QtHelp documentation set.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1157"/> - <source>&Window</source> - <translation type="unfinished">&Pencere</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1247"/> - <source>Filter</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1252"/> - <source>Filtered by: </source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="2352"/> - <source>Could not find an associated content.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="929"/> - <source>Manage QtHelp Filters</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="932"/> - <source>Shows a dialog to manage the QtHelp filters</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="934"/> - <source><b>Manage QtHelp Filters</b><p>Shows a dialog to manage the QtHelp filters.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="892"/> - <source>Index</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="895"/> - <source>Shows the index window</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="897"/> - <source><b>Index</b><p>Shows the index window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="904"/> - <source>Search</source> - <translation type="unfinished">Ara</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="907"/> - <source>Shows the search window</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="909"/> <source><b>Search</b><p>Shows the search window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="942"/> + <location filename="Helpviewer/HelpWindow.py" line="954"/> <source>Reindex Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="945"/> + <location filename="Helpviewer/HelpWindow.py" line="957"/> <source>Reindexes the documentation set</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="947"/> + <location filename="Helpviewer/HelpWindow.py" line="959"/> <source><b>Reindex Documentation</b><p>Reindexes the documentation set.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2468"/> + <location filename="Helpviewer/HelpWindow.py" line="2531"/> <source>Updating search index</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2522"/> + <location filename="Helpviewer/HelpWindow.py" line="2585"/> <source>Looking for Documentation...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2552"/> + <location filename="Helpviewer/HelpWindow.py" line="2615"/> <source>Unfiltered</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2571"/> + <location filename="Helpviewer/HelpWindow.py" line="2634"/> <source>Help Engine</source> <translation type="unfinished"></translation> </message> @@ -14051,218 +14051,218 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="476"/> + <location filename="Helpviewer/HelpWindow.py" line="488"/> <source>Private Browsing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="472"/> + <location filename="Helpviewer/HelpWindow.py" line="484"/> <source>Private &Browsing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="477"/> + <location filename="Helpviewer/HelpWindow.py" line="489"/> <source><b>Private Browsing</b><p>Enables private browsing. In this mode no history is recorded anymore.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2224"/> + <location filename="Helpviewer/HelpWindow.py" line="2287"/> <source>Loading...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2239"/> + <location filename="Helpviewer/HelpWindow.py" line="2302"/> <source>Finished loading</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="796"/> + <location filename="Helpviewer/HelpWindow.py" line="808"/> <source>Full Screen</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="796"/> + <location filename="Helpviewer/HelpWindow.py" line="808"/> <source>&Full Screen</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="796"/> + <location filename="Helpviewer/HelpWindow.py" line="808"/> <source>F11</source> <translation type="unfinished">F11</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="916"/> + <location filename="Helpviewer/HelpWindow.py" line="928"/> <source>Manage QtHelp &Documents</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="929"/> + <location filename="Helpviewer/HelpWindow.py" line="941"/> <source>Manage QtHelp &Filters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="942"/> + <location filename="Helpviewer/HelpWindow.py" line="954"/> <source>&Reindex Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="960"/> + <location filename="Helpviewer/HelpWindow.py" line="972"/> <source>Clear private data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="956"/> + <location filename="Helpviewer/HelpWindow.py" line="968"/> <source>&Clear private data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="961"/> + <location filename="Helpviewer/HelpWindow.py" line="973"/> <source><b>Clear private data</b><p>Clears the private data like browsing history, search history or the favicons database.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="970"/> + <location filename="Helpviewer/HelpWindow.py" line="982"/> <source>Clear &icons database</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1024"/> + <location filename="Helpviewer/HelpWindow.py" line="1036"/> <source>Show Network Monitor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1024"/> + <location filename="Helpviewer/HelpWindow.py" line="1036"/> <source>Show &Network Monitor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1028"/> + <location filename="Helpviewer/HelpWindow.py" line="1040"/> <source>Show the network monitor dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1029"/> + <location filename="Helpviewer/HelpWindow.py" line="1041"/> <source><b>Show Network Monitor</b><p>Shows the network monitor dialog.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1134"/> + <location filename="Helpviewer/HelpWindow.py" line="1147"/> <source>&Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1153"/> + <location filename="Helpviewer/HelpWindow.py" line="1166"/> <source>&Tools</source> <translation type="unfinished">&Araçlar</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="783"/> + <location filename="Helpviewer/HelpWindow.py" line="795"/> <source>Show page source</source> <translation type="unfinished"></translation> </message> <message> + <location filename="Helpviewer/HelpWindow.py" line="795"/> + <source>Ctrl+U</source> + <translation type="unfinished">Ctrl+U</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="799"/> + <source>Show the page source in an editor</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="800"/> + <source><b>Show page source</b><p>Show the page source in an editor.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="853"/> + <source>&Languages...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="856"/> + <source>Configure the accepted languages for web pages</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="858"/> + <source><b>Languages</b><p>Configure the accepted languages for web pages.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="853"/> + <source>Languages</source> + <translation type="unfinished">Diller</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="866"/> + <source>Cookies</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="866"/> + <source>C&ookies...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="869"/> + <source>Configure cookies handling</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="871"/> + <source><b>Cookies</b><p>Configure cookies handling.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1276"/> + <source>Settings</source> + <translation type="unfinished">Ayarlar</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="764"/> + <source>Zoom reset</source> + <translation type="unfinished">Büyütmeyi sıfırla</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="764"/> + <source>Zoom &reset</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="764"/> + <source>Ctrl+0</source> + <comment>View|Zoom reset</comment> + <translation type="unfinished">Ctrl+0</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="769"/> + <source>Reset the zoom of the text</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="779"/> + <source>Zoom text only</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="779"/> + <source>Zoom &text only</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="Helpviewer/HelpWindow.py" line="783"/> - <source>Ctrl+U</source> - <translation type="unfinished">Ctrl+U</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="787"/> - <source>Show the page source in an editor</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="788"/> - <source><b>Show page source</b><p>Show the page source in an editor.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="841"/> - <source>&Languages...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="844"/> - <source>Configure the accepted languages for web pages</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="846"/> - <source><b>Languages</b><p>Configure the accepted languages for web pages.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="841"/> - <source>Languages</source> - <translation type="unfinished">Diller</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="854"/> - <source>Cookies</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="854"/> - <source>C&ookies...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="857"/> - <source>Configure cookies handling</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="859"/> - <source><b>Cookies</b><p>Configure cookies handling.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1260"/> - <source>Settings</source> - <translation type="unfinished">Ayarlar</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="752"/> - <source>Zoom reset</source> - <translation type="unfinished">Büyütmeyi sıfırla</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="752"/> - <source>Zoom &reset</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="752"/> - <source>Ctrl+0</source> - <comment>View|Zoom reset</comment> - <translation type="unfinished">Ctrl+0</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="757"/> - <source>Reset the zoom of the text</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="767"/> - <source>Zoom text only</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="767"/> - <source>Zoom &text only</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="771"/> <source>Zoom text only; pictures remain constant</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="773"/> + <location filename="Helpviewer/HelpWindow.py" line="785"/> <source><b>Zoom text only</b><p>Zoom text only; pictures remain constant.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="758"/> + <location filename="Helpviewer/HelpWindow.py" line="770"/> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation type="unfinished"></translation> </message> @@ -14312,142 +14312,142 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="631"/> + <location filename="Helpviewer/HelpWindow.py" line="643"/> <source>Manage Bookmarks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="631"/> + <location filename="Helpviewer/HelpWindow.py" line="643"/> <source>&Manage Bookmarks...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="631"/> + <location filename="Helpviewer/HelpWindow.py" line="643"/> <source>Ctrl+Shift+B</source> <comment>Help|Manage bookmarks</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="635"/> + <location filename="Helpviewer/HelpWindow.py" line="647"/> <source>Open a dialog to manage the bookmarks.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="637"/> + <location filename="Helpviewer/HelpWindow.py" line="649"/> <source><b>Manage Bookmarks...</b><p>Open a dialog to manage the bookmarks.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="645"/> + <location filename="Helpviewer/HelpWindow.py" line="657"/> <source>Add &Bookmark...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="645"/> + <location filename="Helpviewer/HelpWindow.py" line="657"/> <source>Ctrl+D</source> <comment>Help|Add bookmark</comment> <translation type="unfinished">Ctrl+D</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="651"/> + <location filename="Helpviewer/HelpWindow.py" line="663"/> <source>Open a dialog to add a bookmark.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="652"/> - <source><b>Add Bookmark</b><p>Open a dialog to add the current URL as a bookmark.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="659"/> - <source>Add Folder</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="659"/> - <source>Add &Folder...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="662"/> - <source>Open a dialog to add a new bookmarks folder.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="664"/> + <source><b>Add Bookmark</b><p>Open a dialog to add the current URL as a bookmark.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="671"/> + <source>Add Folder</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="671"/> + <source>Add &Folder...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="674"/> + <source>Open a dialog to add a new bookmarks folder.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="676"/> <source><b>Add Folder...</b><p>Open a dialog to add a new bookmarks folder.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="672"/> + <location filename="Helpviewer/HelpWindow.py" line="684"/> <source>Bookmark All Tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="672"/> + <location filename="Helpviewer/HelpWindow.py" line="684"/> <source>Bookmark All Tabs...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="675"/> + <location filename="Helpviewer/HelpWindow.py" line="687"/> <source>Bookmark all open tabs.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="677"/> + <location filename="Helpviewer/HelpWindow.py" line="689"/> <source><b>Bookmark All Tabs...</b><p>Open a dialog to add a new bookmarks folder for all open tabs.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1753"/> + <location filename="Helpviewer/HelpWindow.py" line="1808"/> <source>Saved Tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1195"/> + <location filename="Helpviewer/HelpWindow.py" line="1208"/> <source>Close Others</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>F5</source> <comment>Go|Reload</comment> <translation type="unfinished">F5</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>Stop</source> <translation type="unfinished">Dur</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>&Stop</source> <translation type="unfinished">D&ur</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>Ctrl+.</source> <comment>Go|Stop</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>Esc</source> <comment>Go|Stop</comment> <translation type="unfinished">Esc</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="567"/> + <location filename="Helpviewer/HelpWindow.py" line="579"/> <source>Stop loading</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="568"/> + <location filename="Helpviewer/HelpWindow.py" line="580"/> <source><b>Stop</b><p>Stops loading of the current tab.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1188"/> + <location filename="Helpviewer/HelpWindow.py" line="1201"/> <source>Duplicate Page</source> <translation type="unfinished"></translation> </message> @@ -14478,100 +14478,115 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1679"/> + <location filename="Helpviewer/HelpWindow.py" line="1734"/> <source>Eric Web Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1670"/> + <location filename="Helpviewer/HelpWindow.py" line="1725"/> <source><h3>About Eric Web Browser</h3><p>The Eric Web Browser is a combined help file and HTML browser.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1976"/> + <location filename="Helpviewer/HelpWindow.py" line="2031"/> <source><b>Are you sure you want to turn on private browsing?</b><p>When private browsing is turned on, web pages are not added to the history, searches are not added to the list of recent searches and web site icons and cookies are not stored. Until you close the window, you can still click the Back and Forward buttons to return to the web pages you have opened.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="492"/> + <location filename="Helpviewer/HelpWindow.py" line="504"/> <source>Quit the web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="493"/> + <location filename="Helpviewer/HelpWindow.py" line="505"/> <source><b>Quit</b><p>Quit the web browser.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="982"/> + <location filename="Helpviewer/HelpWindow.py" line="994"/> <source>Configure Search Engines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="982"/> + <location filename="Helpviewer/HelpWindow.py" line="994"/> <source>Configure &Search Engines...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="986"/> + <location filename="Helpviewer/HelpWindow.py" line="998"/> <source>Configure the available search engines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="988"/> - <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="996"/> - <source>Manage Saved Passwords</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="996"/> - <source>Manage Saved Passwords...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="1000"/> + <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1008"/> + <source>Manage Saved Passwords</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1008"/> + <source>Manage Saved Passwords...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1012"/> <source>Manage the saved passwords</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1002"/> - <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1010"/> - <source>Ad Block</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1010"/> - <source>&Ad Block...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="1014"/> + <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1022"/> + <source>Ad Block</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1022"/> + <source>&Ad Block...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1026"/> <source>Configure AdBlock subscriptions and rules</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1016"/> + <location filename="Helpviewer/HelpWindow.py" line="1028"/> <source><b>Ad Block...</b><p>Opens a dialog to configure AdBlock subscriptions and rules.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2531"/> + <location filename="Helpviewer/HelpWindow.py" line="2594"/> <source>eric5 Web Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2241"/> + <location filename="Helpviewer/HelpWindow.py" line="2304"/> <source>Failed to load</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1216"/> + <source>Print as PDF</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="438"/> + <source>Print the displayed help as PDF</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="439"/> + <source><b>Print as PDF</b><p>Print the displayed help text as a PDF file.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Hg</name>
--- a/i18n/eric5_zh_CN.GB2312.ts Sun May 30 18:28:06 2010 +0200 +++ b/i18n/eric5_zh_CN.GB2312.ts Sun May 30 18:53:41 2010 +0200 @@ -11908,24 +11908,24 @@ <context> <name>FtpReply</name> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="319"/> + <location filename="Helpviewer/Network/FtpReply.py" line="332"/> <source> <p><a class="link_parent" href="{0}">Change to parent directory</a></p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="332"/> + <location filename="Helpviewer/Network/FtpReply.py" line="345"/> <source> <tr><th align="left">Name</th><th>Size</th><th align="left">Last modified</th></tr> </source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="358"/> + <location filename="Helpviewer/Network/FtpReply.py" line="371"/> <source>{0} {1}</source> <comment>size unit</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/Network/FtpReply.py" line="382"/> + <location filename="Helpviewer/Network/FtpReply.py" line="395"/> <source>Listing of {0}</source> <translation type="unfinished"></translation> </message> @@ -12129,17 +12129,17 @@ <translation type="obsolete"><html><head><title>帮助窗口</title></head><body><p>请求的 URL <b>%1</b> 无法载入。</p><p>原因: %2</p></body></html></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>Check the address for errors such as <b>ww</b>.example.org instead of <b>www</b>.example.org</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>If the address is correct, try checking the network connection.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>If your computer or network is protected by a firewall or proxy, make sure that the browser is permitted to access the network.</source> <translation type="unfinished"></translation> </message> @@ -12214,12 +12214,12 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="947"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="946"/> <source>Error loading page: {0}</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpBrowserWV.py" line="956"/> + <location filename="Helpviewer/HelpBrowserWV.py" line="955"/> <source>When connecting to: {0}.</source> <translation type="unfinished"></translation> </message> @@ -13111,7 +13111,7 @@ <translation type="obsolete">Eric4 帮助浏览器</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="453"/> + <location filename="Helpviewer/HelpWindow.py" line="465"/> <source>Close the current help window</source> <translation>关闭当前帮助浏览器</translation> </message> @@ -13168,7 +13168,7 @@ <translation><b>新建窗口</b><p>打开一个新的帮助浏览窗口。</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1559"/> + <location filename="Helpviewer/HelpWindow.py" line="1575"/> <source>Open File</source> <translation>打开文件</translation> </message> @@ -13220,7 +13220,7 @@ <translation><b>在新选项卡中打开文件</b><p>在新选项卡中打开显示一个新帮助文件。将会弹出一个文件选择对话框。</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1201"/> + <location filename="Helpviewer/HelpWindow.py" line="1214"/> <source>Print</source> <translation>打印</translation> </message> @@ -13246,48 +13246,48 @@ <translation><b>打印</b><p>打印显示的帮助文本。</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1199"/> + <location filename="Helpviewer/HelpWindow.py" line="1212"/> <source>Print Preview</source> <translation>打印预览</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="438"/> + <location filename="Helpviewer/HelpWindow.py" line="450"/> <source>Print preview of the displayed help</source> <translation>显示的帮助的打印预览</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="440"/> + <location filename="Helpviewer/HelpWindow.py" line="452"/> <source><b>Print Preview</b><p>Print preview of the displayed help text.</p></source> <translation><b>打印预览</b><p>显示的帮助文件的打印预览。</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1192"/> + <location filename="Helpviewer/HelpWindow.py" line="1205"/> <source>Close</source> <translation>关闭</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="448"/> + <location filename="Helpviewer/HelpWindow.py" line="460"/> <source>&Close</source> <translation>关闭(&C)</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="448"/> + <location filename="Helpviewer/HelpWindow.py" line="460"/> <source>Ctrl+W</source> <comment>File|Close</comment> <translation>Ctrl+W</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="454"/> + <location filename="Helpviewer/HelpWindow.py" line="466"/> <source><b>Close</b><p>Closes the current help window.</p></source> <translation><b>关闭</b><p>关闭当前帮助窗口。</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="461"/> + <location filename="Helpviewer/HelpWindow.py" line="473"/> <source>Close All</source> <translation>全部关闭</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="461"/> + <location filename="Helpviewer/HelpWindow.py" line="473"/> <source>Close &All</source> <translation>全部关闭(&A)</translation> </message> @@ -13297,22 +13297,22 @@ <translation type="obsolete">关闭所有帮助窗口</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="465"/> + <location filename="Helpviewer/HelpWindow.py" line="477"/> <source><b>Close All</b><p>Closes all help windows except the first one.</p></source> <translation><b>全部关闭</b><p>关闭所有帮助窗口除了第一个。</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="487"/> + <location filename="Helpviewer/HelpWindow.py" line="499"/> <source>Quit</source> <translation>退出</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="487"/> + <location filename="Helpviewer/HelpWindow.py" line="499"/> <source>&Quit</source> <translation>退出(&Q)</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="487"/> + <location filename="Helpviewer/HelpWindow.py" line="499"/> <source>Ctrl+Q</source> <comment>File|Quit</comment> <translation>Ctrl+Q</translation> @@ -13328,222 +13328,222 @@ <translation type="obsolete"><b>退出</b><p>退出帮助浏览器。</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>Backward</source> <translation>后退</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>&Backward</source> <translation>后退(&B)</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>Alt+Left</source> <comment>Go|Backward</comment> <translation>Alt+Left</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="504"/> + <location filename="Helpviewer/HelpWindow.py" line="516"/> <source>Backspace</source> <comment>Go|Backward</comment> <translation>Backspace</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="510"/> + <location filename="Helpviewer/HelpWindow.py" line="522"/> <source>Move one help screen backward</source> <translation>向后移动一个帮助屏幕</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="511"/> + <location filename="Helpviewer/HelpWindow.py" line="523"/> <source><b>Backward</b><p>Moves one help screen backward. If none is available, this action is disabled.</p></source> <translation><b>后移</b><p>向后移动一个帮助屏幕。如果没有有效的帮助屏幕,则该行为被禁用。</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>Forward</source> <translation>前移</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>&Forward</source> <translation>前移(&F)</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>Alt+Right</source> <comment>Go|Forward</comment> <translation>Alt+Right</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="519"/> + <location filename="Helpviewer/HelpWindow.py" line="531"/> <source>Shift+Backspace</source> <comment>Go|Forward</comment> <translation>Shift+Backspace</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="525"/> + <location filename="Helpviewer/HelpWindow.py" line="537"/> <source>Move one help screen forward</source> <translation>向前移动一个帮助屏幕</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="526"/> + <location filename="Helpviewer/HelpWindow.py" line="538"/> <source><b>Forward</b><p>Moves one help screen forward. If none is available, this action is disabled.</p></source> <translation><b>前移</b><p>向前移动一个帮助屏幕。如果没有有效的帮助屏幕,则该行为被禁用。</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="534"/> + <location filename="Helpviewer/HelpWindow.py" line="546"/> <source>Home</source> <translation>Home</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="534"/> + <location filename="Helpviewer/HelpWindow.py" line="546"/> <source>&Home</source> <translation>首页(&H)</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="534"/> + <location filename="Helpviewer/HelpWindow.py" line="546"/> <source>Ctrl+Home</source> <comment>Go|Home</comment> <translation>Ctrl+Home</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="539"/> + <location filename="Helpviewer/HelpWindow.py" line="551"/> <source>Move to the initial help screen</source> <translation>移动到初始帮助屏幕</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="540"/> + <location filename="Helpviewer/HelpWindow.py" line="552"/> <source><b>Home</b><p>Moves to the initial help screen.</p></source> <translation><b>返回</b><p>移动到初始帮助屏幕。</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>Reload</source> <translation>重新载入</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>&Reload</source> <translation>重新载入(&R)</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>Ctrl+R</source> <comment>Go|Reload</comment> <translation>Ctrl+R</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="553"/> + <location filename="Helpviewer/HelpWindow.py" line="565"/> <source>Reload the current help screen</source> <translation>重新载入当前帮助屏幕</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="554"/> + <location filename="Helpviewer/HelpWindow.py" line="566"/> <source><b>Reload</b><p>Reloads the current help screen.</p></source> <translation><b>重新载入</b><p>重新载入当前帮助屏幕。</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="575"/> + <location filename="Helpviewer/HelpWindow.py" line="587"/> <source>Copy</source> <translation>复制</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="575"/> + <location filename="Helpviewer/HelpWindow.py" line="587"/> <source>&Copy</source> <translation>复制(&C)</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="575"/> + <location filename="Helpviewer/HelpWindow.py" line="587"/> <source>Ctrl+C</source> <comment>Edit|Copy</comment> <translation>Ctrl+C</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="580"/> + <location filename="Helpviewer/HelpWindow.py" line="592"/> <source>Copy the selected text</source> <translation>复制已选文本</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="581"/> - <source><b>Copy</b><p>Copy the selected text to the clipboard.</p></source> - <translation><b>复制</b><p>将已选文件复制到剪贴板中。</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="588"/> - <source>Find...</source> - <translation>查找……</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="588"/> - <source>&Find...</source> - <translation>查找(&F)……</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="588"/> - <source>Ctrl+F</source> - <comment>Edit|Find</comment> - <translation>Ctrl+F</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="593"/> + <source><b>Copy</b><p>Copy the selected text to the clipboard.</p></source> + <translation><b>复制</b><p>将已选文件复制到剪贴板中。</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="600"/> + <source>Find...</source> + <translation>查找……</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="600"/> + <source>&Find...</source> + <translation>查找(&F)……</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="600"/> + <source>Ctrl+F</source> + <comment>Edit|Find</comment> + <translation>Ctrl+F</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="605"/> <source>Find text in page</source> <translation>在页面中查找文本</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="594"/> - <source><b>Find</b><p>Find text in the current page.</p></source> - <translation><b>查找</b><p>在页面中查找文本。</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="601"/> - <source>Find next</source> - <translation>查找下一个</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="601"/> - <source>Find &next</source> - <translation>查找下一个(&n)</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="601"/> - <source>F3</source> - <comment>Edit|Find next</comment> - <translation>F3</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="606"/> + <source><b>Find</b><p>Find text in the current page.</p></source> + <translation><b>查找</b><p>在页面中查找文本。</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="613"/> + <source>Find next</source> + <translation>查找下一个</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="613"/> + <source>Find &next</source> + <translation>查找下一个(&n)</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="613"/> + <source>F3</source> + <comment>Edit|Find next</comment> + <translation>F3</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="618"/> <source>Find next occurrence of text in page</source> <translation>在页面中查找文本的下一个出现位置</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="607"/> + <location filename="Helpviewer/HelpWindow.py" line="619"/> <source><b>Find next</b><p>Find the next occurrence of text in the current page.</p></source> <translation><b>查找下一个</b><p>在页面中查找文本的下一个出现位置。</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="615"/> + <location filename="Helpviewer/HelpWindow.py" line="627"/> <source>Find previous</source> <translation>查找上一个</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="615"/> + <location filename="Helpviewer/HelpWindow.py" line="627"/> <source>Find &previous</source> <translation>查找上一个(&p)</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="615"/> + <location filename="Helpviewer/HelpWindow.py" line="627"/> <source>Shift+F3</source> <comment>Edit|Find previous</comment> <translation>Shift+F3</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="620"/> + <location filename="Helpviewer/HelpWindow.py" line="632"/> <source>Find previous occurrence of text in page</source> <translation>在页面中查找文本的上一个出现位置</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="622"/> + <location filename="Helpviewer/HelpWindow.py" line="634"/> <source><b>Find previous</b><p>Find the previous occurrence of text in the current page.</p></source> <translation><b>查找上一个</b><p>在页面中查找文本的上一个出现位置。</p></translation> </message> @@ -13568,7 +13568,7 @@ <translation type="obsolete"><b>清除历史</b><p>清除历史信息。</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="645"/> + <location filename="Helpviewer/HelpWindow.py" line="657"/> <source>Add Bookmark</source> <translation>添加书签</translation> </message> @@ -13608,175 +13608,175 @@ <translation type="obsolete"><b>编辑书签</b><p>该行为显示一个对话框,可以改变书签的名称和文件以及在菜单中书签的顺序。</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="686"/> + <location filename="Helpviewer/HelpWindow.py" line="698"/> <source>What's This?</source> <translation>这是什么?</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="686"/> + <location filename="Helpviewer/HelpWindow.py" line="698"/> <source>&What's This?</source> <translation>这是什么(&W)?</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="686"/> + <location filename="Helpviewer/HelpWindow.py" line="698"/> <source>Shift+F1</source> <comment>Help|What's This?'</comment> <translation>Shift+F1</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="691"/> - <source>Context sensitive help</source> - <translation>背景帮助</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="692"/> - <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> - <translation><b>显示背景帮助</b><p>在“这是什么?”模式中,鼠标光标显示为带问号的箭头,通过点击界面元素你可以获得“在做什么”和“怎样使用”的简短描述。使用标题栏中的上下文帮助按钮可以获得此功能。</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="703"/> - <source>About</source> - <translation>关于</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="703"/> + <source>Context sensitive help</source> + <translation>背景帮助</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="704"/> + <source><b>Display context sensitive help</b><p>In What's This? mode, the mouse cursor shows an arrow with a question mark, and you can click on the interface elements to get a short description of what they do and how to use them. In dialogs, this feature can be accessed using the context help button in the titlebar.</p></source> + <translation><b>显示背景帮助</b><p>在“这是什么?”模式中,鼠标光标显示为带问号的箭头,通过点击界面元素你可以获得“在做什么”和“怎样使用”的简短描述。使用标题栏中的上下文帮助按钮可以获得此功能。</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="715"/> + <source>About</source> + <translation>关于</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="715"/> <source>&About</source> <translation>关于(&A)</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="706"/> + <location filename="Helpviewer/HelpWindow.py" line="718"/> <source>Display information about this software</source> <translation>显示软件信息</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="707"/> - <source><b>About</b><p>Display some information about this software.</p></source> - <translation><b>关于</b><p>显示与本软件有关的部分信息。</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="714"/> - <source>About Qt</source> - <translation>关于 Qt</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="714"/> - <source>About &Qt</source> - <translation>关于 &Qt</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="717"/> - <source>Display information about the Qt toolkit</source> - <translation>显示Qt工具包信息</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="719"/> - <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> - <translation><b>关于 Qt</b><p>显示Qt工具包的部分相关信息。</p></translation> + <source><b>About</b><p>Display some information about this software.</p></source> + <translation><b>关于</b><p>显示与本软件有关的部分信息。</p></translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="726"/> - <source>Zoom in</source> - <translation>放大</translation> + <source>About Qt</source> + <translation>关于 Qt</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="726"/> - <source>Zoom &in</source> - <translation>放大(&i)</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="726"/> - <source>Ctrl++</source> - <comment>View|Zoom in</comment> - <translation>Ctrl++</translation> + <source>About &Qt</source> + <translation>关于 &Qt</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="729"/> + <source>Display information about the Qt toolkit</source> + <translation>显示Qt工具包信息</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="731"/> + <source><b>About Qt</b><p>Display some information about the Qt toolkit.</p></source> + <translation><b>关于 Qt</b><p>显示Qt工具包的部分相关信息。</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="738"/> + <source>Zoom in</source> + <translation>放大</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="738"/> + <source>Zoom &in</source> + <translation>放大(&i)</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="738"/> + <source>Ctrl++</source> + <comment>View|Zoom in</comment> + <translation>Ctrl++</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="743"/> <source>Zoom in on the text</source> <translation>放大显示文本</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="732"/> - <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> - <translation><b>放大</b><p>放大显示文本。将使文本变大。</p></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="739"/> - <source>Zoom out</source> - <translation>缩小</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="739"/> - <source>Zoom &out</source> - <translation>缩小(&o)</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="739"/> - <source>Ctrl+-</source> - <comment>View|Zoom out</comment> - <translation>Ctrl+-</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="744"/> + <source><b>Zoom in</b><p>Zoom in on the text. This makes the text bigger.</p></source> + <translation><b>放大</b><p>放大显示文本。将使文本变大。</p></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="751"/> + <source>Zoom out</source> + <translation>缩小</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="751"/> + <source>Zoom &out</source> + <translation>缩小(&o)</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="751"/> + <source>Ctrl+-</source> + <comment>View|Zoom out</comment> + <translation>Ctrl+-</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="756"/> <source>Zoom out on the text</source> <translation>缩小显示文本</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="745"/> + <location filename="Helpviewer/HelpWindow.py" line="757"/> <source><b>Zoom out</b><p>Zoom out on the text. This makes the text smaller.</p></source> <translation><b>缩小</b><p>缩小显示文本。将使文本变小。</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="805"/> + <location filename="Helpviewer/HelpWindow.py" line="817"/> <source>Show next tab</source> <translation>显示下一个选项卡</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="805"/> + <location filename="Helpviewer/HelpWindow.py" line="817"/> <source>Ctrl+Alt+Tab</source> <translation>Ctrl+Alt+Tab</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="813"/> + <location filename="Helpviewer/HelpWindow.py" line="825"/> <source>Show previous tab</source> <translation>显示上一个选项卡</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="813"/> + <location filename="Helpviewer/HelpWindow.py" line="825"/> <source>Shift+Ctrl+Alt+Tab</source> <translation>Shift+Ctrl+Alt+Tab</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="821"/> - <source>Switch between tabs</source> - <translation>在选项卡间切换</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="821"/> - <source>Ctrl+1</source> - <translation>Ctrl+1</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="829"/> - <source>Preferences</source> - <translation>参数选择</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="829"/> - <source>&Preferences...</source> - <translation>参数选择(&P)……</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="832"/> - <source>Set the prefered configuration</source> - <translation>设定偏好配置</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="833"/> + <source>Switch between tabs</source> + <translation>在选项卡间切换</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="833"/> + <source>Ctrl+1</source> + <translation>Ctrl+1</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="841"/> + <source>Preferences</source> + <translation>参数选择</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="841"/> + <source>&Preferences...</source> + <translation>参数选择(&P)……</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="844"/> + <source>Set the prefered configuration</source> + <translation>设定偏好配置</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="845"/> <source><b>Preferences</b><p>Set the configuration items of the application with your prefered values.</p></source> <translation><b>参数选择</b><p>将应用程序的配置项设定为你喜欢的值。</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="970"/> + <location filename="Helpviewer/HelpWindow.py" line="982"/> <source>Clear icons database</source> <translation>清除图标数据库</translation> </message> @@ -13786,42 +13786,42 @@ <translation type="obsolete">清除图标数据库(&C)</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="974"/> + <location filename="Helpviewer/HelpWindow.py" line="986"/> <source>Clear the database of favicons</source> <translation>清除喜好图标数据库</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="975"/> + <location filename="Helpviewer/HelpWindow.py" line="987"/> <source><b>Clear icons database</b><p>Clears the database of favicons of previously visited URLs.</p></source> <translation><b>清除图标数据库</b><p>清除以前访问过的 URL 的喜好图标的数据库。</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1057"/> + <location filename="Helpviewer/HelpWindow.py" line="1069"/> <source>&File</source> <translation>文件(&F)</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1079"/> + <location filename="Helpviewer/HelpWindow.py" line="1092"/> <source>&Edit</source> <translation>编辑(&E)</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1087"/> + <location filename="Helpviewer/HelpWindow.py" line="1100"/> <source>&View</source> <translation>视图(&V)</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1098"/> - <source>&Go</source> - <translation>跳转(&G)</translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="1111"/> + <source>&Go</source> + <translation>跳转(&G)</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1124"/> <source>H&istory</source> <translation>历史(&i)</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1120"/> + <location filename="Helpviewer/HelpWindow.py" line="1133"/> <source>&Bookmarks</source> <translation>书签(&B)</translation> </message> @@ -13831,37 +13831,37 @@ <translation type="obsolete">设置(&t)</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1165"/> + <location filename="Helpviewer/HelpWindow.py" line="1178"/> <source>&Help</source> <translation>帮助(&H)</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1181"/> + <location filename="Helpviewer/HelpWindow.py" line="1194"/> <source>Move Left</source> <translation>左移</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1184"/> + <location filename="Helpviewer/HelpWindow.py" line="1197"/> <source>Move Right</source> <translation>右移</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1210"/> + <location filename="Helpviewer/HelpWindow.py" line="1225"/> <source>File</source> <translation>文件</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1226"/> + <location filename="Helpviewer/HelpWindow.py" line="1242"/> <source>Edit</source> <translation>编辑</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1231"/> + <location filename="Helpviewer/HelpWindow.py" line="1247"/> <source>View</source> <translation>视图</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1240"/> + <location filename="Helpviewer/HelpWindow.py" line="1256"/> <source>Find</source> <translation>查找</translation> </message> @@ -13871,22 +13871,22 @@ <translation type="obsolete">书签</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1267"/> + <location filename="Helpviewer/HelpWindow.py" line="1283"/> <source>Help</source> <translation>帮助</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1274"/> + <location filename="Helpviewer/HelpWindow.py" line="1290"/> <source>Go</source> <translation>跳转</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1294"/> + <location filename="Helpviewer/HelpWindow.py" line="1310"/> <source><p>Enter the help file to be displayed directly into this edit field. Select a previously shown help file from the drop down list.</p></source> <translation><p>输入要直接显示到该编辑区域的帮助文件。从下拉列表中选择一个以前显示过的帮助文件。</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1559"/> + <location filename="Helpviewer/HelpWindow.py" line="1575"/> <source>Help Files (*.html *.htm);;PDF Files (*.pdf);;CHM Files (*.chm);;All Files (*)</source> <translation>帮助文件 (*.html *.htm);;PDF 文件 (*.pdf);;CHM 文件 (*.chm);;所有文件 (*)</translation> </message> @@ -13896,7 +13896,7 @@ <translation type="obsolete">帮助浏览器</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1660"/> + <location filename="Helpviewer/HelpWindow.py" line="1715"/> <source><p>Printing is not available due to a bug in PyQt4.Please upgrade.</p></source> <translation><p>由于 PyQt4 中存在一个错误,导致无法打印。请升级。</p></translation> </message> @@ -13906,7 +13906,7 @@ <translation type="obsolete"><h3> 关于帮助浏览器 </h3><p>帮助浏览器窗口是一个可以显示像 Qt 文档这样的 HTML 帮助文件的小型 HTML 浏览器。</p></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2032"/> + <location filename="Helpviewer/HelpWindow.py" line="2087"/> <source>...</source> <translation>……</translation> </message> @@ -13941,152 +13941,152 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="464"/> + <location filename="Helpviewer/HelpWindow.py" line="476"/> <source>Close all help windows</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="867"/> + <location filename="Helpviewer/HelpWindow.py" line="879"/> <source>Sync with Table of Contents</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="871"/> - <source>Synchronizes the table of contents with current page</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="873"/> - <source><b>Sync with Table of Contents</b><p>Synchronizes the table of contents with current page.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="880"/> - <source>Table of Contents</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="883"/> - <source>Shows the table of contents window</source> + <source>Synchronizes the table of contents with current page</source> <translation type="unfinished"></translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="885"/> + <source><b>Sync with Table of Contents</b><p>Synchronizes the table of contents with current page.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="892"/> + <source>Table of Contents</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="895"/> + <source>Shows the table of contents window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="897"/> <source><b>Table of Contents</b><p>Shows the table of contents window.</p></source> <translation type="unfinished"></translation> </message> <message> + <location filename="Helpviewer/HelpWindow.py" line="928"/> + <source>Manage QtHelp Documents</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="931"/> + <source>Shows a dialog to manage the QtHelp documentation set</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="933"/> + <source><b>Manage QtHelp Documents</b><p>Shows a dialog to manage the QtHelp documentation set.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1170"/> + <source>&Window</source> + <translation type="unfinished">窗口(&W)</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1263"/> + <source>Filter</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1268"/> + <source>Filtered by: </source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="2415"/> + <source>Could not find an associated content.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="941"/> + <source>Manage QtHelp Filters</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="944"/> + <source>Shows a dialog to manage the QtHelp filters</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="946"/> + <source><b>Manage QtHelp Filters</b><p>Shows a dialog to manage the QtHelp filters.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="904"/> + <source>Index</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="907"/> + <source>Shows the index window</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="909"/> + <source><b>Index</b><p>Shows the index window.</p></source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="Helpviewer/HelpWindow.py" line="916"/> - <source>Manage QtHelp Documents</source> - <translation type="unfinished"></translation> + <source>Search</source> + <translation type="unfinished">搜索</translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="919"/> - <source>Shows a dialog to manage the QtHelp documentation set</source> + <source>Shows the search window</source> <translation type="unfinished"></translation> </message> <message> <location filename="Helpviewer/HelpWindow.py" line="921"/> - <source><b>Manage QtHelp Documents</b><p>Shows a dialog to manage the QtHelp documentation set.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1157"/> - <source>&Window</source> - <translation type="unfinished">窗口(&W)</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1247"/> - <source>Filter</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1252"/> - <source>Filtered by: </source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="2352"/> - <source>Could not find an associated content.</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="929"/> - <source>Manage QtHelp Filters</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="932"/> - <source>Shows a dialog to manage the QtHelp filters</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="934"/> - <source><b>Manage QtHelp Filters</b><p>Shows a dialog to manage the QtHelp filters.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="892"/> - <source>Index</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="895"/> - <source>Shows the index window</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="897"/> - <source><b>Index</b><p>Shows the index window.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="904"/> - <source>Search</source> - <translation type="unfinished">搜索</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="907"/> - <source>Shows the search window</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="909"/> <source><b>Search</b><p>Shows the search window.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="942"/> + <location filename="Helpviewer/HelpWindow.py" line="954"/> <source>Reindex Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="945"/> + <location filename="Helpviewer/HelpWindow.py" line="957"/> <source>Reindexes the documentation set</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="947"/> + <location filename="Helpviewer/HelpWindow.py" line="959"/> <source><b>Reindex Documentation</b><p>Reindexes the documentation set.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2468"/> + <location filename="Helpviewer/HelpWindow.py" line="2531"/> <source>Updating search index</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2522"/> + <location filename="Helpviewer/HelpWindow.py" line="2585"/> <source>Looking for Documentation...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2552"/> + <location filename="Helpviewer/HelpWindow.py" line="2615"/> <source>Unfiltered</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2571"/> + <location filename="Helpviewer/HelpWindow.py" line="2634"/> <source>Help Engine</source> <translation type="unfinished"></translation> </message> @@ -14096,218 +14096,218 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="476"/> + <location filename="Helpviewer/HelpWindow.py" line="488"/> <source>Private Browsing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="472"/> + <location filename="Helpviewer/HelpWindow.py" line="484"/> <source>Private &Browsing</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="477"/> + <location filename="Helpviewer/HelpWindow.py" line="489"/> <source><b>Private Browsing</b><p>Enables private browsing. In this mode no history is recorded anymore.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2224"/> + <location filename="Helpviewer/HelpWindow.py" line="2287"/> <source>Loading...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2239"/> + <location filename="Helpviewer/HelpWindow.py" line="2302"/> <source>Finished loading</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="796"/> + <location filename="Helpviewer/HelpWindow.py" line="808"/> <source>Full Screen</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="796"/> + <location filename="Helpviewer/HelpWindow.py" line="808"/> <source>&Full Screen</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="796"/> + <location filename="Helpviewer/HelpWindow.py" line="808"/> <source>F11</source> <translation type="unfinished">F11</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="916"/> + <location filename="Helpviewer/HelpWindow.py" line="928"/> <source>Manage QtHelp &Documents</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="929"/> + <location filename="Helpviewer/HelpWindow.py" line="941"/> <source>Manage QtHelp &Filters</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="942"/> + <location filename="Helpviewer/HelpWindow.py" line="954"/> <source>&Reindex Documentation</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="960"/> + <location filename="Helpviewer/HelpWindow.py" line="972"/> <source>Clear private data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="956"/> + <location filename="Helpviewer/HelpWindow.py" line="968"/> <source>&Clear private data</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="961"/> + <location filename="Helpviewer/HelpWindow.py" line="973"/> <source><b>Clear private data</b><p>Clears the private data like browsing history, search history or the favicons database.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="970"/> + <location filename="Helpviewer/HelpWindow.py" line="982"/> <source>Clear &icons database</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1024"/> + <location filename="Helpviewer/HelpWindow.py" line="1036"/> <source>Show Network Monitor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1024"/> + <location filename="Helpviewer/HelpWindow.py" line="1036"/> <source>Show &Network Monitor</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1028"/> + <location filename="Helpviewer/HelpWindow.py" line="1040"/> <source>Show the network monitor dialog</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1029"/> + <location filename="Helpviewer/HelpWindow.py" line="1041"/> <source><b>Show Network Monitor</b><p>Shows the network monitor dialog.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1134"/> + <location filename="Helpviewer/HelpWindow.py" line="1147"/> <source>&Settings</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1153"/> + <location filename="Helpviewer/HelpWindow.py" line="1166"/> <source>&Tools</source> <translation type="unfinished">工具(&T)</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="783"/> + <location filename="Helpviewer/HelpWindow.py" line="795"/> <source>Show page source</source> <translation type="unfinished"></translation> </message> <message> + <location filename="Helpviewer/HelpWindow.py" line="795"/> + <source>Ctrl+U</source> + <translation type="unfinished">Ctrl+U</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="799"/> + <source>Show the page source in an editor</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="800"/> + <source><b>Show page source</b><p>Show the page source in an editor.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="853"/> + <source>&Languages...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="856"/> + <source>Configure the accepted languages for web pages</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="858"/> + <source><b>Languages</b><p>Configure the accepted languages for web pages.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="853"/> + <source>Languages</source> + <translation type="unfinished">语言</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="866"/> + <source>Cookies</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="866"/> + <source>C&ookies...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="869"/> + <source>Configure cookies handling</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="871"/> + <source><b>Cookies</b><p>Configure cookies handling.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1276"/> + <source>Settings</source> + <translation type="unfinished">设置</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="764"/> + <source>Zoom reset</source> + <translation type="unfinished">重置缩放</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="764"/> + <source>Zoom &reset</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="764"/> + <source>Ctrl+0</source> + <comment>View|Zoom reset</comment> + <translation type="unfinished">Ctrl+0</translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="769"/> + <source>Reset the zoom of the text</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="779"/> + <source>Zoom text only</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="779"/> + <source>Zoom &text only</source> + <translation type="unfinished"></translation> + </message> + <message> <location filename="Helpviewer/HelpWindow.py" line="783"/> - <source>Ctrl+U</source> - <translation type="unfinished">Ctrl+U</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="787"/> - <source>Show the page source in an editor</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="788"/> - <source><b>Show page source</b><p>Show the page source in an editor.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="841"/> - <source>&Languages...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="844"/> - <source>Configure the accepted languages for web pages</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="846"/> - <source><b>Languages</b><p>Configure the accepted languages for web pages.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="841"/> - <source>Languages</source> - <translation type="unfinished">语言</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="854"/> - <source>Cookies</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="854"/> - <source>C&ookies...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="857"/> - <source>Configure cookies handling</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="859"/> - <source><b>Cookies</b><p>Configure cookies handling.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1260"/> - <source>Settings</source> - <translation type="unfinished">设置</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="752"/> - <source>Zoom reset</source> - <translation type="unfinished">重置缩放</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="752"/> - <source>Zoom &reset</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="752"/> - <source>Ctrl+0</source> - <comment>View|Zoom reset</comment> - <translation type="unfinished">Ctrl+0</translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="757"/> - <source>Reset the zoom of the text</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="767"/> - <source>Zoom text only</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="767"/> - <source>Zoom &text only</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="771"/> <source>Zoom text only; pictures remain constant</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="773"/> + <location filename="Helpviewer/HelpWindow.py" line="785"/> <source><b>Zoom text only</b><p>Zoom text only; pictures remain constant.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="758"/> + <location filename="Helpviewer/HelpWindow.py" line="770"/> <source><b>Zoom reset</b><p>Reset the zoom of the text. This sets the zoom factor to 100%.</p></source> <translation type="unfinished"></translation> </message> @@ -14357,142 +14357,142 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="631"/> + <location filename="Helpviewer/HelpWindow.py" line="643"/> <source>Manage Bookmarks</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="631"/> + <location filename="Helpviewer/HelpWindow.py" line="643"/> <source>&Manage Bookmarks...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="631"/> + <location filename="Helpviewer/HelpWindow.py" line="643"/> <source>Ctrl+Shift+B</source> <comment>Help|Manage bookmarks</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="635"/> + <location filename="Helpviewer/HelpWindow.py" line="647"/> <source>Open a dialog to manage the bookmarks.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="637"/> + <location filename="Helpviewer/HelpWindow.py" line="649"/> <source><b>Manage Bookmarks...</b><p>Open a dialog to manage the bookmarks.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="645"/> + <location filename="Helpviewer/HelpWindow.py" line="657"/> <source>Add &Bookmark...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="645"/> + <location filename="Helpviewer/HelpWindow.py" line="657"/> <source>Ctrl+D</source> <comment>Help|Add bookmark</comment> <translation type="unfinished">Ctrl+D</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="651"/> + <location filename="Helpviewer/HelpWindow.py" line="663"/> <source>Open a dialog to add a bookmark.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="652"/> - <source><b>Add Bookmark</b><p>Open a dialog to add the current URL as a bookmark.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="659"/> - <source>Add Folder</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="659"/> - <source>Add &Folder...</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="662"/> - <source>Open a dialog to add a new bookmarks folder.</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="664"/> + <source><b>Add Bookmark</b><p>Open a dialog to add the current URL as a bookmark.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="671"/> + <source>Add Folder</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="671"/> + <source>Add &Folder...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="674"/> + <source>Open a dialog to add a new bookmarks folder.</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="676"/> <source><b>Add Folder...</b><p>Open a dialog to add a new bookmarks folder.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="672"/> + <location filename="Helpviewer/HelpWindow.py" line="684"/> <source>Bookmark All Tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="672"/> + <location filename="Helpviewer/HelpWindow.py" line="684"/> <source>Bookmark All Tabs...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="675"/> + <location filename="Helpviewer/HelpWindow.py" line="687"/> <source>Bookmark all open tabs.</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="677"/> + <location filename="Helpviewer/HelpWindow.py" line="689"/> <source><b>Bookmark All Tabs...</b><p>Open a dialog to add a new bookmarks folder for all open tabs.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1753"/> + <location filename="Helpviewer/HelpWindow.py" line="1808"/> <source>Saved Tabs</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1195"/> + <location filename="Helpviewer/HelpWindow.py" line="1208"/> <source>Close Others</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="547"/> + <location filename="Helpviewer/HelpWindow.py" line="559"/> <source>F5</source> <comment>Go|Reload</comment> <translation type="unfinished">F5</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>Stop</source> <translation type="unfinished">中止</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>&Stop</source> <translation type="unfinished">中止(&S)</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>Ctrl+.</source> <comment>Go|Stop</comment> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="561"/> + <location filename="Helpviewer/HelpWindow.py" line="573"/> <source>Esc</source> <comment>Go|Stop</comment> <translation type="unfinished">Esc</translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="567"/> + <location filename="Helpviewer/HelpWindow.py" line="579"/> <source>Stop loading</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="568"/> + <location filename="Helpviewer/HelpWindow.py" line="580"/> <source><b>Stop</b><p>Stops loading of the current tab.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1188"/> + <location filename="Helpviewer/HelpWindow.py" line="1201"/> <source>Duplicate Page</source> <translation type="unfinished"></translation> </message> @@ -14523,100 +14523,115 @@ <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1679"/> + <location filename="Helpviewer/HelpWindow.py" line="1734"/> <source>Eric Web Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1670"/> + <location filename="Helpviewer/HelpWindow.py" line="1725"/> <source><h3>About Eric Web Browser</h3><p>The Eric Web Browser is a combined help file and HTML browser.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1976"/> + <location filename="Helpviewer/HelpWindow.py" line="2031"/> <source><b>Are you sure you want to turn on private browsing?</b><p>When private browsing is turned on, web pages are not added to the history, searches are not added to the list of recent searches and web site icons and cookies are not stored. Until you close the window, you can still click the Back and Forward buttons to return to the web pages you have opened.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="492"/> + <location filename="Helpviewer/HelpWindow.py" line="504"/> <source>Quit the web browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="493"/> + <location filename="Helpviewer/HelpWindow.py" line="505"/> <source><b>Quit</b><p>Quit the web browser.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="982"/> + <location filename="Helpviewer/HelpWindow.py" line="994"/> <source>Configure Search Engines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="982"/> + <location filename="Helpviewer/HelpWindow.py" line="994"/> <source>Configure &Search Engines...</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="986"/> + <location filename="Helpviewer/HelpWindow.py" line="998"/> <source>Configure the available search engines</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="988"/> - <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="996"/> - <source>Manage Saved Passwords</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="996"/> - <source>Manage Saved Passwords...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="1000"/> + <source><b>Configure Search Engines...</b><p>Opens a dialog to configure the available search engines.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1008"/> + <source>Manage Saved Passwords</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1008"/> + <source>Manage Saved Passwords...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1012"/> <source>Manage the saved passwords</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1002"/> - <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1010"/> - <source>Ad Block</source> - <translation type="unfinished"></translation> - </message> - <message> - <location filename="Helpviewer/HelpWindow.py" line="1010"/> - <source>&Ad Block...</source> - <translation type="unfinished"></translation> - </message> - <message> <location filename="Helpviewer/HelpWindow.py" line="1014"/> + <source><b>Manage Saved Passwords...</b><p>Opens a dialog to manage the saved passwords.</p></source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1022"/> + <source>Ad Block</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1022"/> + <source>&Ad Block...</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1026"/> <source>Configure AdBlock subscriptions and rules</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="1016"/> + <location filename="Helpviewer/HelpWindow.py" line="1028"/> <source><b>Ad Block...</b><p>Opens a dialog to configure AdBlock subscriptions and rules.</p></source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2531"/> + <location filename="Helpviewer/HelpWindow.py" line="2594"/> <source>eric5 Web Browser</source> <translation type="unfinished"></translation> </message> <message> - <location filename="Helpviewer/HelpWindow.py" line="2241"/> + <location filename="Helpviewer/HelpWindow.py" line="2304"/> <source>Failed to load</source> <translation type="unfinished"></translation> </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="1216"/> + <source>Print as PDF</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="438"/> + <source>Print the displayed help as PDF</source> + <translation type="unfinished"></translation> + </message> + <message> + <location filename="Helpviewer/HelpWindow.py" line="439"/> + <source><b>Print as PDF</b><p>Print the displayed help text as a PDF file.</p></source> + <translation type="unfinished"></translation> + </message> </context> <context> <name>Hg</name>