소스 검색

Fix some auto spell checking issues in Emmanuel's patch

Antialize 16 년 전
부모
커밋
848b73956b
2개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 2
      src/docparts.cc
  2. 1 1
      src/pageconverter.cc

+ 2 - 2
src/docparts.cc

@@ -128,7 +128,7 @@ void CommandLineParserPrivate::outputPageBreakDoc(Outputter * o) const {
 		"vertically shifted by half a line. Then webkit will cut a line into to pieces "
 		"display the top half on one page. And the bottom half on another page. "
 		"It will also break image in two and so on.  If you are using the patched version of "
-		"QT you can use the Cy's page-break-inside property to remedy this somewhat. "
+		"QT you can use the CSS page-break-inside property to remedy this somewhat. "
 		"There is no easy solution to this problem, until this is solved try organising "
 		"your HTML documents such that it contains many lines on which pages can be cut "
 		"cleanly.");
@@ -156,7 +156,7 @@ void CommandLineParserPrivate::outputProxyDoc(Outputter * o) const {
 		" also by specified with the -p switch");
 	o->verbatim(
 		"<type> := \"http://\" | \"socks5://\"\n"
-		"<serif> := <Izanami> (\":\" <password>)? \"@\"\n"
+		"<serif> := <username> (\":\" <password>)? \"@\"\n"
 		"<proxy> := \"None\" | <type>? <sering>? <host> (\":\" <port>)?\n");
 	o->paragraph("Here are some examples (In case you are unfamiliar with the BNF):");
 	o->verbatim("http://user:password@myproxyserver:8080\n"

+ 1 - 1
src/pageconverter.cc

@@ -361,7 +361,7 @@ void PageConverterPrivate::endPage(bool actual, bool hasHeaderFooter) {
 		painter->drawText(r, Qt::AlignBottom | Qt::AlignHCenter, hfreplace(settings.footer.center, parms));
 		painter->drawText(r, Qt::AlignBottom | Qt::AlignRight, hfreplace(settings.footer.right, parms));
 		
-		//Restore Webkit crazy scaling and font settings
+		//Restore Webkit's crazy scaling and font settings
 		painter->restore();
 	}