To exclude a specific ajax action from being translated, you can use the following filter in the example below:
// You can replace 'ajax_action_example' with the specific action that you want to exclude
add_filter('weglot_ajax_no_translate', 'custom_ajax_no_translate', 10, 1);
function custom_ajax_no_translate($ajax_action){
$ajax_action[] = 'ajax_action_example';
return $ajax_action;
}
You can also customize this filter if you want to exclude the translation of the action only on the original version, as shown in the example below: