System Information
Operating system: Darwin-19.6.0-x86_64-i386-64bit 64 Bits
Blender Version
Broken: version: 2.91.0 Alpha, branch: master, commit date: 2020-08-13 18:18, hash: rB275f1039d22c
Short description of error
One text in particular, 'Force Field' as seen in this image:
A bit digging found that this text exists in this file:
blender/release/scripts/startup/bl_ui/properties_physics_common.py
and in this block of code:
if obj.field.type == 'NONE':
col.operator("object.forcefield_toggle", text="Force Field", icon='FORCE_FORCE')
else:
col.operator("object.forcefield_toggle", text="Force Field", icon='X')It turns out that the code did not have a reference to:
text_ctxt=i18n_contexts.default
which is used in the 'physics_add'
