Shorten document filter labels

This commit is contained in:
Tom Moor
2024-04-13 22:39:54 -04:00
parent ca4d85cf19
commit 34a8b8146d
2 changed files with 3 additions and 6 deletions

View File

@@ -14,15 +14,15 @@ const DocumentTypeFilter = ({ statusFilter, onSelect }: Props) => {
() => [
{
key: TStatusFilter.Published,
label: t("Published documents"),
label: t("Published"),
},
{
key: TStatusFilter.Archived,
label: t("Archived documents"),
label: t("Archived"),
},
{
key: TStatusFilter.Draft,
label: t("Draft documents"),
label: t("Drafts"),
},
],
[t]

View File

@@ -754,9 +754,6 @@
"Past week": "Past week",
"Past month": "Past month",
"Past year": "Past year",
"Published documents": "Published documents",
"Archived documents": "Archived documents",
"Draft documents": "Draft documents",
"Any status": "Any status",
"Search Results": "Search Results",
"Remove search": "Remove search",