diff --git a/app/actions/definitions/documents.tsx b/app/actions/definitions/documents.tsx
index affb19ed6..fcb05e062 100644
--- a/app/actions/definitions/documents.tsx
+++ b/app/actions/definitions/documents.tsx
@@ -831,7 +831,7 @@ export const permanentlyDeleteDocument = createAction({
});
export const permanentlyDeleteDocumentsInTrash = createAction({
- name: ({ t }) => t("Empty"),
+ name: ({ t }) => t("Empty trash"),
analyticsName: "Empty trash",
section: TrashSection,
icon: ,
diff --git a/app/scenes/APITokenNew.tsx b/app/scenes/APITokenNew.tsx
index 0954bc463..96967eae0 100644
--- a/app/scenes/APITokenNew.tsx
+++ b/app/scenes/APITokenNew.tsx
@@ -51,7 +51,7 @@ function APITokenNew({ onSubmit }: Props) {
);
diff --git a/app/scenes/Trash/index.tsx b/app/scenes/Trash/index.tsx
index 4f571da7c..5d58559fc 100644
--- a/app/scenes/Trash/index.tsx
+++ b/app/scenes/Trash/index.tsx
@@ -27,7 +27,7 @@ function Trash() {
action={permanentlyDeleteDocumentsInTrash}
context={context}
>
- Empty
+ {t("Empty trash")}
)
}
diff --git a/shared/i18n/locales/en_US/translation.json b/shared/i18n/locales/en_US/translation.json
index e4c8f1c22..b5a0bf62e 100644
--- a/shared/i18n/locales/en_US/translation.json
+++ b/shared/i18n/locales/en_US/translation.json
@@ -63,6 +63,7 @@
"Move {{ documentType }}": "Move {{ documentType }}",
"Archive": "Archive",
"Document archived": "Document archived",
+ "Empty trash": "Empty trash",
"Delete {{ documentName }}": "Delete {{ documentName }}",
"Permanently delete": "Permanently delete",
"Permanently delete {{ documentName }}": "Permanently delete {{ documentName }}",