Hi David,
WPML did advise and changed the snippet to the following. WPML was then able to translate these strings. I don’t know why I didn’t do as you suggested above originally, and I can’t find in any of my topics where I found the pagination snippet.
add_action('wp',function(){
remove_action( 'generate_after_loop', 'generate_do_post_navigation' );
});
add_action( 'generate_after_loop', function() {
echo '<div class="paging-navigation">';
$previous = _( '<<< PREVIOUS ', 'my-text-domain' );
$next = _( ' NEXT >>>', 'my-text-domain' );
posts_nav_link(' ',$previous,$next);
echo '</div>';
});