From the screen shots I believe that you have broken your previous RAID into two fs, have sda2 with your data, have replaced the old 2TB with a new 4TB disk (sdb) created a degraded RAID1 md1 with sdb2 (you are at this point), you intend to copy from sda2 to the degraded RAID md1, replace the 2TB (sda) with a 4TB disk (luckily it will be sda, check that first), and finally add sda2 to md1. Right?
All this can be done using the webUI (notice that copying such huge amounts of data using the webUI will be slower than copying using the command line).
I'm afraid that you will have to resort to the command line to create swap over RAID. This is because swap is not a filesystem (not handled in Disk->Filesystem) and at "conception" time it was considered a resource waste to have swap over RAID on underpowered systems (I have meanwhile partly changed my mind and now offer that possibility in Disk->Utilities, and also Disk->Wizard creates swap over RAID1 when RAID is selected by the user).
So, in your current situation:
swapoff -a # stop all active swap
sed -i '/swap/d' /etc/fstab # remove swap entries from fstab
mdadm --zero-superblock /dev/sda1 # remove RAID info
mdadm --zero-superblock /dev/sdb1
# hypothetical next two steps, it depends on
# 'cat /proc/mdstat', 'ls /dev/md0', 'ls /dev/md', 'mdadm --detail /dev/md0' output
mdadm --stop /dev/md0 # this might fail if the device node does not exists
rm /dev/md0 # or the device node might still exists
mdadm --create /dev/md0 --run --level=1 --raid-devices=2 missing /dev/sdb1 # create degraded md0 with sdb1
mkswap /dev/md0 # create swap itself on md0
echo "/dev/md0 none swap pri=1 0 0" >> /etc/fstab # update fstab
swapon -a -p1 # activate all fstab swap entries
At this point a degraded md0 RAID swap built from sdb1 should exist and be active.
When you finally add the 2nd 4TB disk (sda, check it) with sda1 as a swap partition, all you need to do is:
mdadm /dev/md0 --add /dev/sda1
I think this is it.
PS: attaching The System Configuration log file from System->Utilities, View Logs supplies all (and more) info than the one supplied in the screen shots.