mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-02-11 17:44:56 +00:00
- extra phrase to report result of fulltext search
This commit is contained in:
parent
315da16cd4
commit
a80a8a3a9b
|
@ -377,6 +377,7 @@ $text["search_mode_or"] = "at least one word";
|
|||
$text["search_no_results"] = "There are no documents that match your search";
|
||||
$text["search_query"] = "Search for";
|
||||
$text["search_report"] = "Found [doccount] documents and [foldercount] folders";
|
||||
$text["search_report_fulltext"] = "Found [doccount] documents";
|
||||
$text["search_results_access_filtered"] = "Search results may contain content to which access has been denied.";
|
||||
$text["search_results"] = "Search results";
|
||||
$text["search"] = "Search";
|
||||
|
|
|
@ -96,7 +96,7 @@ $text["choose_user"] = "--Benutzer wählen--";
|
|||
$text["comment_changed_email"] = "Kommentar geändert";
|
||||
$text["comment"] = "Kommentar";
|
||||
$text["comment_for_current_version"] = "Kommentar zur<br>aktuellen Version";
|
||||
$text["confirm_create_fulltext_index"] = "Ja, I möchte den Volltextindex neu erzeugen!.";
|
||||
$text["confirm_create_fulltext_index"] = "Ja, Ich möchte den Volltextindex neu erzeugen!.";
|
||||
$text["confirm_pwd"] = "Passwort-Bestätigung";
|
||||
$text["confirm_rm_backup"] = "Möchten Sie wirklich das Backup \"[arkname]\" löschen?<br />Beachten Sie, dass diese Operation nicht rückgängig gemacht werden kann.";
|
||||
$text["confirm_rm_document"] = "Wollen Sie das Dokument \"[documentname]\" wirklich löschen?<br>Achtung: Dieser Vorgang kann nicht rückgängig gemacht werden.";
|
||||
|
@ -377,6 +377,7 @@ $text["search_mode_or"] = "min. ein Begriff";
|
|||
$text["search_no_results"] = "Die Suche lieferte leider keine Treffer.";
|
||||
$text["search_query"] = "Suchbegriffe";
|
||||
$text["search_report"] = "Die Suche lieferte [doccount] Dokumente und [foldercount] Ordner";
|
||||
$text["search_report_fulltext"] = "Die Suche lieferte [doccount] Dokumente";
|
||||
$text["search_results_access_filtered"] = "Suchresultate können Inhalte enthalten, zu welchen der Zugang verweigert wurde.";
|
||||
$text["search_results"] = "Suchergebnis";
|
||||
$text["search"] = "Suchen";
|
||||
|
|
|
@ -161,7 +161,7 @@ if ($numResults == 0) {
|
|||
printMLText("search_no_results");
|
||||
}
|
||||
else {
|
||||
printMLText("search_report", array("count" => $resArr['totalDocs']));
|
||||
printMLText("search_report_fulltext", array("count" => $resArr['totalDocs']));
|
||||
}
|
||||
?>
|
||||
</td>
|
||||
|
|
Loading…
Reference in New Issue
Block a user