I18n: Make Node Wrangler's support level OFFICIAL

The bl_info dictionary is deprecated for most extensions, but it is
still used for core add-ons and since Node Wrangler is now built-in,
it should be marked as official.

The reason for this change is actually that it enables translation of
the Node Wrangler UI, because add-ons below official support level
were never considered for translation.

-----

The reason only OFFICIAL add-ons are translated is that they are enabled [here](4f36fb1afe/scripts/modules/bl_i18n_utils/bl_extract_messages.py (L1052)) during message extraction.

Pull Request: https://projects.blender.org/blender/blender/pulls/123043
This commit is contained in:
Damien Picard
2024-06-11 14:30:32 +02:00
committed by Dalai Felinto
parent 0f5ddd5807
commit df2ee7298c

View File

@@ -11,6 +11,7 @@ bl_info = {
"description": "Various tools to enhance and speed up node-based workflow",
"warning": "",
"doc_url": "{BLENDER_MANUAL_URL}/addons/node/node_wrangler.html",
"support": 'OFFICIAL',
"category": "Node",
}