diff --git a/src/Entity/Field.php b/src/Entity/Field.php index 40b657879..a9407e7d0 100644 --- a/src/Entity/Field.php +++ b/src/Entity/Field.php @@ -184,7 +184,11 @@ public function get($key) return $this->getDefaultValue()->get($key); } - return $this->translate($this->getCurrentLocale(), $this->useDefaultLocale())->get($key); + if ($this->isTranslatable()) { + return $this->translate($this->getCurrentLocale(), $this->useDefaultLocale())->get($key); + } + + return $this->translate($this->getDefaultLocale(), false)->get($key); } /**