Commit 05e14c1ee44e0df40a3bed1c7f62f7526943cb51
1 parent
639fff48
KTS-673
"The search algorithm needs some work" Updated. Internationalisation Committed By: Conrad Vermeulen Reviewed By: Kevin Fourie git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@7288 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
2 changed files
with
2 additions
and
2 deletions
search2/indexing/extractors/PDFExtractor.inc.php
| ... | ... | @@ -4,7 +4,7 @@ class PDFExtractor extends ApplicationExtractor |
| 4 | 4 | { |
| 5 | 5 | public function __construct() |
| 6 | 6 | { |
| 7 | - parent::__construct('extractors','pdftotext','pdftotext','PDF Text Extractor','-nopgbrk -enc UTF-8 {source} {target}'); | |
| 7 | + parent::__construct('extractors','pdftotext','pdftotext',_kt('PDF Text Extractor'),'-nopgbrk -enc UTF-8 {source} {target}'); | |
| 8 | 8 | } |
| 9 | 9 | |
| 10 | 10 | public function getSupportedMimeTypes() | ... | ... |
search2/indexing/extractors/PSExtractor.inc.php
| ... | ... | @@ -4,7 +4,7 @@ class PSExtractor extends ApplicationExtractor |
| 4 | 4 | { |
| 5 | 5 | public function __construct() |
| 6 | 6 | { |
| 7 | - parent::__construct('extractors','pstotext','pstotext','PostScript Text Extractor','-nopgbrk -enc UTF-8 {source} {target}'); | |
| 7 | + parent::__construct('extractors','pstotext','pstotext',_kt('PostScript Text Extractor'),'-nopgbrk -enc UTF-8 {source} {target}'); | |
| 8 | 8 | } |
| 9 | 9 | |
| 10 | 10 | public function getSupportedMimeTypes() | ... | ... |