--- a/Helpviewer/Bookmarks/BookmarksImporters/HtmlImporter.py Tue Oct 15 22:03:54 2013 +0200 +++ b/Helpviewer/Bookmarks/BookmarksImporters/HtmlImporter.py Fri Oct 18 23:00:41 2013 +0200 @@ -22,20 +22,27 @@ """ Module function to get information for the given HTML source id. + @param id id of the browser ("chrome" or "chromium") @return tuple with an icon (QPixmap), readable name (string), name of the default bookmarks file (string), an info text (string), - a prompt (string) and the default directory of the bookmarks file (string) + a prompt (string) and the default directory of the bookmarks file + (string) + @exception ValueError raised to indicate an invalid browser ID """ if id == "html": return ( UI.PixmapCache.getPixmap("html.png"), "HTML Netscape Bookmarks", - QCoreApplication.translate("HtmlImporter", + QCoreApplication.translate( + "HtmlImporter", "HTML Netscape Bookmarks") + " (*.htm *.html)", - QCoreApplication.translate("HtmlImporter", - """You can import bookmarks from any browser that supports HTML """ - """exporting. This file has usually the extension .htm or .html."""), - QCoreApplication.translate("HtmlImporter", + QCoreApplication.translate( + "HtmlImporter", + """You can import bookmarks from any browser that supports""" + """ HTML exporting. This file has usually the extension""" + """ .htm or .html."""), + QCoreApplication.translate( + "HtmlImporter", """Please choose the file to begin importing bookmarks."""), "", )