I want to do something like this:
\documentclass{article}
\usepackage[ngerman]{isodate} %for printing the date
\usepackage[dvipsnames]{xcolor} %for color names
\usepackage{tcolorbox}
\usepackage{lipsum}
\newcommand{\MyArgument}{Datum: \printdate{#1}}
\newtcolorbox{MyBox1}[1]{colback=red!5!white, colframe=red!75!black, title=\MyArgument }
%some more "\newtcolorbox{...}" with different colors, but all with title=\MyArgument
\begin{document}
\begin{MyBox}{2014-02-11}
\lipsum
\end{MyBox}
\end{document}
The output should be a box with the title "Datum: 11. Februar 2014" (German date format)
The purpose is that I want to be able to change the title of all boxes at the same time. How can I do that?

\documentclassis extremely helpful to those who wish to help you. – Steven B. Segletes Feb 11 '14 at 13:41