Replacing translations You can replace all the translations for a single key using this method: public function replaceTranslations(string $key, array $translations) Here's an example: $translations = ['en' => 'hello', 'es' => 'hola']; $newsItem->setTranslations('hello', $translations); $newsItem->getTranslations(); // ['en' => 'hello', 'es' => 'hola'] $newTranslations = ['en' => 'hello']; $newsItem->replaceTranslations('hello', $newTranslations); $newsItem->getTranslations(); // ['en' => 'hello'] Removing translations Querying translations Help us improve this page