diff --git a/messages/en-US.json b/messages/en-US.json index 36a9a5dd..ca046e4c 100644 --- a/messages/en-US.json +++ b/messages/en-US.json @@ -1283,6 +1283,7 @@ "productUpdateInfo": "{noOfUpdates} updates", "productUpdateWhatsNew": "What's New", "productUpdateTitle": "Product Updates", + "productUpdateEmpty": "No updates", "dismissAll": "Dismiss all", "pangolinUpdateAvailable": "New version available", "pangolinUpdateAvailableInfo": "Version {version} is ready to install", diff --git a/src/components/ProductUpdates.tsx b/src/components/ProductUpdates.tsx index be7436be..d2350118 100644 --- a/src/components/ProductUpdates.tsx +++ b/src/components/ProductUpdates.tsx @@ -230,7 +230,7 @@ function ProductUpdatesListPopup({
    {updates.length === 0 && ( - No updates + {t("productUpdateEmpty")} )} {updates.map((update) => (