GT._("Checking for errors n°{0}", Integer.toString(algorithm.getErrorNumber())) +
" - " + algorithm.getShortDescriptionReplaced());
errors.clear();
checkWiki.retrievePages(algorithm, max, getWikipedia(), errors);
while (!errors.isEmpty()) {
CheckError error = errors.remove(0);
int maxErrors = error.getPageCount();
for (int numPage = 0;
(error.getPageCount() > 0) && shouldContinue();
numPage++) {
try {
Page page = error.getPage(0);
error.remove(page);
analyzePage(
page, algorithm,
algorithm.getErrorNumberString() + " - " + (numPage + 1) + "/" + maxErrors);
} catch (APIException e) {
//