Fix T44708: UI label should use plural

Just to keep commit ratio up while being busy preparing for final exams
;)
This commit is contained in:
Julian Eisel 2015-05-18 21:29:57 +02:00
parent 192fddb324
commit 598c2dffe9
Notes: blender-bot 2023-02-14 09:36:38 +01:00
Referenced by issue #44708, label not according with tooltip in Scene > Layer panel
Referenced by issue #43295, Translation disambiguation requests
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ class RENDERLAYER_PT_layer_options(RenderLayerButtonsPanel, Panel):
col = split.column()
col.prop(scene, "layers", text="Scene")
col.label(text="")
col.prop(rl, "light_override", text="Light")
col.prop(rl, "light_override", text="Lights")
col.prop(rl, "material_override", text="Material")
col = split.column()