From a685d94b90bbb6d26031ee4a4d3906d2b4ab0aba Mon Sep 17 00:00:00 2001 From: conradverm 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