diff --git a/src/common/useTranslate.js b/src/common/useTranslate.js index 753daaa80..459025f46 100644 --- a/src/common/useTranslate.js +++ b/src/common/useTranslate.js @@ -19,7 +19,7 @@ const useTranslate = () => { const catalogTitle = useCallback(({ addon, id, name, type } = {}, withType = true) => { if (addon && id && name) { - const partialKey = `${addon.manifest.id}/${id}`; + const partialKey = `${addon.manifest.id.replaceAll('.', '_')}_${id}`; const translatedName = stringWithPrefix(partialKey, 'CATALOG_', name); if (type && withType) {