core: use intl for showing search results count

This commit is contained in:
Abdullah Atta
2025-05-30 19:25:00 +05:00
parent ab04b13582
commit 9c2fa4eb30

View File

@@ -41,6 +41,7 @@ import { fuzzy } from "../utils/fuzzy.js";
import { extractMatchingBlocks } from "../utils/html-parser.js";
import { findOrAdd } from "../utils/array.js";
import { Parser } from "htmlparser2";
import { strings } from "@notesnook/intl";
type SearchResults<T> = {
sorted: (sortOptions?: SortOptions) => Promise<VirtualizedGrouping<T>>;
@@ -277,7 +278,21 @@ export default class Lookup {
ids: results.map((c) => c.id),
items: results
};
}
},
() =>
new Map([
[
0,
{
index: 0,
group: {
id: "0",
title: strings.results(matches.ids.length),
type: "header"
}
}
]
])
);
}