From 2285b5a0b2fa7df671b3b17ac56ba9cb38e4276d Mon Sep 17 00:00:00 2001 From: Conrad Vermeulen Date: Wed, 3 Oct 2007 20:11:39 +0000 Subject: [PATCH] KTS-673 "The search algorithm needs some work" Updated. Internationalisation --- search2/indexing/extractorCore.inc.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/search2/indexing/extractorCore.inc.php b/search2/indexing/extractorCore.inc.php index 61f7c41..897055f 100755 --- a/search2/indexing/extractorCore.inc.php +++ b/search2/indexing/extractorCore.inc.php @@ -313,7 +313,7 @@ abstract class ExternalDocumentExtractor extends DocumentExtractor */ protected function getCommandLine() { - throw new Exception('getCommandLine is not implemented'); + throw new Exception(_kt('getCommandLine is not implemented')); } /** @@ -423,7 +423,7 @@ abstract class ApplicationExtractor extends ExternalDocumentExtractor { if (false === $this->application) { - return _kt("Cannot locate binary for $this->displayname ($this->command)."); + return sprintf(_kt("Cannot locate binary for %s (%s)."), $this->displayname, $this->command); } return null; -- libgit2 0.21.4