We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0aa70a commit f1efbe0Copy full SHA for f1efbe0
src/lib/helpers/seo.ts
@@ -8,7 +8,7 @@ export const absoluteURL = (path: string) => `${SITE_URL}${path}`
8
9
export function getRangeAsText(page: number, pageSize: number, totalResults: number, itemName = 'result'): string {
10
if (totalResults === 0)
11
- return `Showing 0 of 0 ${itemName}s`;
+ return `Showing 0 ${itemName}s on this page`;
12
13
const start = (page - 1) * pageSize + 1;
14
const end = Math.min(page * pageSize, totalResults);
0 commit comments