I read in another question that it is possible to use the shorthand of typing two commas, which should then compile into opening German quotation marks. Here is a minimal working example:
\documentclass[a4paper,ngerman]{scrartcl}
\usepackage[ngerman]{babel}
\begin{document}
Dies ist ein ,,Test``.
Dies ist ein anderer \glqq Test\grqq{}.
\end{document}
I noticed that when compiling with PDFLaTeX, the output looks as follows (note that only the double acutes are compiled correctly, probably because they are the shorthand for both German closing and English opening quotation marks):
Compiling with XeLaTeX or LuaLaTeX, both shorthands are detected properly:
It seems like PDFLaTeX does not contain the shorthand definition for quotation marks other than the English ones. Is there a way of using the shorthands for other languages with PDFLaTeX, e.g. by installing an additional package?



T1should not be loaded with them. – egreg Oct 06 '22 at 14:45