I18n: make more parts of the UI translatable
- "Name collisions" label in mesh properties - "Threshold" labels in Vertex Weight Edit modifier - "Particle System" label in Particle Instance modifier - Slot number in the Shader Editor - Status bar keymap items during modal operations: add TIP_() macro to status bar interface template - On dumping messages, sort preset files so their messages are stable between runs Ref. T43295 Reviewed By: mont29 Differential Revision: https://developer.blender.org/D15607
This commit is contained in:
@@ -876,7 +876,7 @@ def dump_preset_messages(msgs, reports, settings):
|
||||
except ValueError:
|
||||
rel_path = path
|
||||
files.append(rel_path)
|
||||
for rel_path in files:
|
||||
for rel_path in sorted(files):
|
||||
msgsrc, msgid = os.path.split(rel_path)
|
||||
msgsrc = "Preset from " + msgsrc
|
||||
msgid = bpy.path.display_name(msgid, title_case=False)
|
||||
|
||||
Reference in New Issue
Block a user