diff --git a/src/components/panels/SpoolmanPanel.vue b/src/components/panels/SpoolmanPanel.vue index fdd1fc4ef..b6335ba95 100644 --- a/src/components/panels/SpoolmanPanel.vue +++ b/src/components/panels/SpoolmanPanel.vue @@ -72,9 +72,11 @@ export default class SpoolmanPanel extends Mixins(BaseMixin) { } get title() { - if (this.health === '' || this.health === 'healthy') return 'Spoolman' + const headline = this.$t('Panels.Spoolman.Headline') as string - return `Spoolman (${this.health})` + if (this.health === '' || this.health === 'healthy') return headline + + return `${headline} (${this.health})` } get changeSpoolTooltip(): string { diff --git a/src/locales/en.json b/src/locales/en.json index 84f5f9d2b..d6bba7759 100644 --- a/src/locales/en.json +++ b/src/locales/en.json @@ -630,6 +630,7 @@ "EjectSpoolQuestion": "Are you sure to eject the filament spool?", "Filament": "Filament", "FirstUsedOutput": "First used: {firstUsed}", + "Headline": "Spoolman", "LastUsed": "Last Used", "Location": "Location", "Material": "Material",