I am not sure I want to include this feature. But here is how to do this. Add the following code to your functions.php or a custom plugin.
add_action('dbx_post_advanced', 'copy_scheduled_post');
function copy_scheduled_post() {
if (isset($_GET['from_post']) && isset($_GET['new_lang'])) {
$from_post = get_post($_GET['from_post']);
if ($from_post->post_status == 'future') {
$post->post_status = 'future';
$post->post_date = $from_post->post_date;
$post->post_date_gmt = $from_post->post_date_gmt;
}
}
}