From 6f1220a4f1a8e54f94c3b24766eb70a23de8e1d1 Mon Sep 17 00:00:00 2001 From: emil Date: Sat, 8 Aug 2026 22:47:25 +0200 Subject: [PATCH] fix(i18n): add missing translation key for molecule destroy cleanup Add 'Cleaning up: running molecule destroy for {scenario}' to translations.json with proper translations for all 6 languages (bg, de, en, pl, ru, zh). This key was introduced in d8919ae but the translation entry was missing, causing CI lint to fail. Generated with [Devin](https://devin.ai) Co-Authored-By: Devin <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- src/devx/translations.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/devx/translations.json b/src/devx/translations.json index 3aad660..3f91f8d 100644 --- a/src/devx/translations.json +++ b/src/devx/translations.json @@ -3822,5 +3822,13 @@ "pl": "importlib.reload({mod}) called {n} time(s) in test '{test}' — odd count leaves module in modified state. Add a final reload to restore defaults or wrap in try/finally.", "ru": "importlib.reload({mod}) called {n} time(s) in test '{test}' — odd count leaves module in modified state. Add a final reload to restore defaults or wrap in try/finally.", "zh": "importlib.reload({mod}) called {n} time(s) in test '{test}' — odd count leaves module in modified state. Add a final reload to restore defaults or wrap in try/finally." + }, + "Cleaning up: running molecule destroy for {scenario}": { + "bg": "Почистване: изпълнение на molecule destroy за {scenario}", + "de": "Aufräumen: molecule destroy wird ausgeführt für {scenario}", + "en": "Cleaning up: running molecule destroy for {scenario}", + "pl": "Czyszczenie: uruchamianie molecule destroy dla {scenario}", + "ru": "Очистка: запуск molecule destroy для {scenario}", + "zh": "清理: 正在为 {scenario} 运行 molecule destroy" } }