From d9d87db2c5420446b6e4a4c9ad7f1bde7c6444f0 Mon Sep 17 00:00:00 2001 From: angrezichatterbox Date: Fri, 2 Jan 2026 17:24:24 +0530 Subject: [PATCH] fix:items in list are applied translate tags on their type --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index be0a8b3..fc067ab 100644 --- a/app.py +++ b/app.py @@ -309,7 +309,7 @@ def process_item(text): item_content = text[offset:].strip() if not item_content: return text - return text[:offset] + ' ' + _wrap_in_translate(item_content) + '\n' + return text[:offset] + ' ' + convert_to_translatable_wikitext(item_content) + '\n' class double_brackets_types(Enum): wikilink = 1