aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web
diff options
context:
space:
mode:
Diffstat (limited to 'apps/web')
-rw-r--r--apps/web/components/dashboard/search/QueryExplainerTooltip.tsx26
-rw-r--r--apps/web/lib/i18n/locales/en/translation.json10
2 files changed, 36 insertions, 0 deletions
diff --git a/apps/web/components/dashboard/search/QueryExplainerTooltip.tsx b/apps/web/components/dashboard/search/QueryExplainerTooltip.tsx
index 89c15ad5..e6abb9c9 100644
--- a/apps/web/components/dashboard/search/QueryExplainerTooltip.tsx
+++ b/apps/web/components/dashboard/search/QueryExplainerTooltip.tsx
@@ -66,6 +66,32 @@ export default function QueryExplainerTooltip({
<TableCell>{matcher.dateBefore.toDateString()}</TableCell>
</TableRow>
);
+ case "age":
+ return (
+ <TableRow>
+ <TableCell>
+ {matcher.relativeDate.direction === "newer"
+ ? t("search.created_within")
+ : t("search.created_earlier_than")}
+ </TableCell>
+ <TableCell>
+ {matcher.relativeDate.amount.toString() +
+ (matcher.relativeDate.direction === "newer"
+ ? {
+ day: t("search.day_s"),
+ week: t("search.week_s"),
+ month: t("search.month_s"),
+ year: t("search.year_s"),
+ }[matcher.relativeDate.unit]
+ : {
+ day: t("search.day_s_ago"),
+ week: t("search.week_s_ago"),
+ month: t("search.month_s_ago"),
+ year: t("search.year_s_ago"),
+ }[matcher.relativeDate.unit])}
+ </TableCell>
+ </TableRow>
+ );
case "favourited":
return (
<TableRow>
diff --git a/apps/web/lib/i18n/locales/en/translation.json b/apps/web/lib/i18n/locales/en/translation.json
index f76d0f33..4cce6295 100644
--- a/apps/web/lib/i18n/locales/en/translation.json
+++ b/apps/web/lib/i18n/locales/en/translation.json
@@ -258,6 +258,16 @@
"not_created_on_or_after": "Not Created on or After",
"created_on_or_before": "Created on or Before",
"not_created_on_or_before": "Not Created on or Before",
+ "created_within": "Created Within",
+ "created_earlier_than": "Created Earlier Than",
+ "day_s": " Day(s)",
+ "week_s": " Week(s)",
+ "month_s": " Month(s)",
+ "year_s": " Year(s)",
+ "day_s_ago": " Day(s) Ago",
+ "week_s_ago": " Week(s) Ago",
+ "month_s_ago": " Month(s) Ago",
+ "year_s_ago": " Year(s) Ago",
"url_contains": "URL Contains",
"url_does_not_contain": "URL Does Not Contain",
"is_in_list": "Is In List",