Orthodox Christmas in some countries, for example in Ukraine is on 7th of January.
So to all readers, who have Christmas on 7th of January:
С Рождеством! — Hyvää Joulua! — καλά Χριστούγεννα! — Buon Natale! — Prettige Kerstdagen! — З Рiздвом Христовим! — Merry Christmas! — Срећан Божић! — God Jul! — ¡Feliz Navidad! — ميلاد مجيد — クリスマスおめでとう ; メリークリスマス — Natale hilare! — Joyeux Noël! — God Jul! — Frohe Weihnachten! — Crăciun fericit! — Feliĉan Kristnaskon!
I created the message and the random ordering using Perl and the Schwartzian transform:
#!/usr/bin/perl
use Math::Random::Secure qw(irand);
my @list = ( "Prettige Kerstdagen!",
"God Jul!",
"Crăciun fericit!",
"クリスマスおめでとう ; メリークリスマス",
"God Jul!",
"Feliĉan Kristnaskon!",
"Hyvää Joulua!",
"ميلاد مجيد",
"Срећан Божић!",
"καλά Χριστούγεννα!",
"З Рiздвом Христовим!",
"Natale hilare!",
"Buon Natale!",
"Joyeux Noël!",
"Frohe Weihnachten!",
"С Рождеством!",
"Merry Christmas!",
"¡Feliz Navidad!" );
my @shuffled = map{ $_->[0] }
sort {$a->[1] <=> $b->[1]}
map { [ $_, irand() ] }
@list;
print join(" — ", @shuffled);