From 477aa7019cc147e75004d443461bf88df95f1834 Mon Sep 17 00:00:00 2001 From: Reinhard Pointner Date: Wed, 28 Sep 2016 13:14:42 +0800 Subject: [PATCH] Fix English --- source/net/filebot/ui/rename/MatchAction.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/net/filebot/ui/rename/MatchAction.java b/source/net/filebot/ui/rename/MatchAction.java index 9616200c..63b4f6b0 100644 --- a/source/net/filebot/ui/rename/MatchAction.java +++ b/source/net/filebot/ui/rename/MatchAction.java @@ -42,7 +42,7 @@ class MatchAction extends AbstractAction { try { withWaitCursor(evt.getSource(), () -> { Matcher matcher = new Matcher(model.values(), model.candidates(), false, EpisodeMetrics.defaultSequence(true)); - List> matches = ProgressMonitor.runTask("Match", "Find optimal alignment. This may take a while.", (message, progress, cancelled) -> { + List> matches = ProgressMonitor.runTask("Match", "Finding optimal alignment. This may take a while.", (message, progress, cancelled) -> { message.accept(String.format("Checking %d combinations...", matcher.remainingCandidates().size() * matcher.remainingValues().size())); return matcher.match(); }).get();