Hi Mat,
If possible I would like to translate the two labels without installing an additional plugin to keep WordPress as light as possible. So if there is a way to hard coding it I would prefer this solution.
“Edit configuration” can be overridden using the filter mkl_pc_edit_configuration_label
.
E.G.
add_filter( 'mkl_pc_edit_configuration_label', function( $original ) {
return 'Edit the configuration new label';
} );
The other label isn’t currently accessible via hooks.
I’m in the process of adding all those labels in the plugin settings.
Marc