diff --git a/devtools/client/application/src/components/manifest/ManifestViewEmpty.js b/devtools/client/application/src/components/manifest/ManifestViewEmpty.js index 7405a17fb679..6b6638efbe4a 100644 --- a/devtools/client/application/src/components/manifest/ManifestViewEmpty.js +++ b/devtools/client/application/src/components/manifest/ManifestViewEmpty.js @@ -31,7 +31,7 @@ class ManifestViewEmpty extends PureComponent { }, h1({ className: "app-page__title" }) ), - Localized({ id: "manifest-non-existing" }, p({})) + Localized({ id: "manifest-empty-intro" }, p({})) ); } } diff --git a/devtools/client/locales/en-US/application.ftl b/devtools/client/locales/en-US/application.ftl index 0259315f74bb..073579cec40c 100644 --- a/devtools/client/locales/en-US/application.ftl +++ b/devtools/client/locales/en-US/application.ftl @@ -95,6 +95,9 @@ manifest-item-presentation = Presentation # Header for the Icon section of Manifest inspection displayed in the application panel. manifest-item-icons = Icons +# Text displayed when no manifest was found for the current page. +manifest-empty-intro = No manifest found to inspect. + # Text displayed while we are loading the manifest file manifest-loading = Loading manifest… @@ -106,3 +109,4 @@ manifest-loaded-error = There was an error while loading the manifest: # Text displayed when the page has no manifest available manifest-non-existing = No manifest found to inspect. +