web: localize search results count

This commit is contained in:
Abdullah Atta
2025-05-23 12:29:39 +05:00
parent 5b7c8eaa70
commit 8dac907ead
4 changed files with 3002 additions and 2989 deletions

View File

@@ -404,6 +404,11 @@ export const strings = {
loggingOutDesc: () => t`Please wait while we log you out.`,
by: () => t`By`,
noResultsForSearch: (query: string) => t`No results found for "${query}"`,
results: (count: number) =>
plural(count, {
one: "1 result",
other: `# results`
}),
noThemesFound: () => t`No themes found`,
errorLoadingThemes: () => t`Error loading themes`,
loadingThemes: () => t`Loading themes...`,