Is there a way to change text in Add Item button for repeater?
"Add Item" button text, Its a single button that adds new repeater item.
I have muliple repeaters and I want each to have different text.

Here for example one repeater where I'd like to have "Add Breakpoint" instead of "Add Item" for the button at the end of the listing.
This is what I've tried so far:
$repeater = new \Elementor\Repeater();
$repeater->add_control(
'caption_bp_width', [
'label' => esc_html__( 'Player max width [px]', E_VPL_TEXTDOMAIN ),
'type' => \Elementor\Controls_Manager::NUMBER,
'label_block' => false,
]
);
$repeater->add_control(
'caption_bp_font_size', [
'label' => esc_html__( 'Font size [px]', E_VPL_TEXTDOMAIN ),
'type' => \Elementor\Controls_Manager::NUMBER,
'label_block' => false,
]
);
$this->add_control(
'caption_data_a',
[
'label' => esc_html__( 'Subtitle font size breakpoints', E_VPL_TEXTDOMAIN ),
'type' => \Elementor\Controls_Manager::REPEATER,
'fields' => $repeater->get_controls(),
'default' => $sub_arr,
'prevent_empty' => false,
'title_field' => '{{{ caption_bp_width }}}',
]
);