From 1db31eed41759ee6524a251a685e399be73e6374 Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Fri, 13 Aug 2021 09:57:20 -0700 Subject: [PATCH] fix: Incorrect empty state text for /created Home tab --- app/scenes/Home.js | 2 +- shared/i18n/locales/en_US/translation.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/app/scenes/Home.js b/app/scenes/Home.js index 26d1a3f3e..c706dd917 100644 --- a/app/scenes/Home.js +++ b/app/scenes/Home.js @@ -64,7 +64,7 @@ function Home() { documents={documents.createdByUser(user)} fetch={documents.fetchOwned} options={{ user }} - empty={{t("Weird, this shouldn’t ever be empty")}} + empty={{t("You haven’t created any documents yet")}} showCollection /> diff --git a/shared/i18n/locales/en_US/translation.json b/shared/i18n/locales/en_US/translation.json index 2012361ad..5071471e3 100644 --- a/shared/i18n/locales/en_US/translation.json +++ b/shared/i18n/locales/en_US/translation.json @@ -391,6 +391,7 @@ "Recently viewed": "Recently viewed", "Created by me": "Created by me", "Weird, this shouldn’t ever be empty": "Weird, this shouldn’t ever be empty", + "You haven’t created any documents yet": "You haven’t created any documents yet", "Documents you’ve recently viewed will be here for easy access": "Documents you’ve recently viewed will be here for easy access", "We sent out your invites!": "We sent out your invites!", "Sorry, you can only send {{MAX_INVITES}} invites at a time": "Sorry, you can only send {{MAX_INVITES}} invites at a time",