I18n: Fix translation of formatted string in report

This commit is contained in:
Damien Picard
2025-10-13 19:08:41 +02:00
committed by Bastien Montagne
parent 9ff1b4f1ec
commit 197d69627d

View File

@@ -347,7 +347,7 @@ class RIGIFY_OT_jump_to_action_slot(Operator):
self.report({'ERROR'}, "Failed to find Action Slot.") self.report({'ERROR'}, "Failed to find Action Slot.")
return {'CANCELLED'} return {'CANCELLED'}
self.report({'INFO'}, f'Set active action set-up index to {i}.') self.report({'INFO'}, rpt_("Set active action set-up index to {}.").format(i))
return {'FINISHED'} return {'FINISHED'}