[Tex/LaTex] How to edit the text in the letter’s \encl{} command

letterstemplates

When using the \encl{} command along with the Dutch babel, 'encl:' will be translated to 'Bijlage(n)'.

'Bijlage(n)' can be translated as 'Attachment(s)': it may be plural or singular.

However, I know that there will be only one attachment, so I want it to be printed as 'Bijlage'. How can I do that?

Minimal working example:

\documentclass[11pt,a4paper]{letter}

\usepackage[dutch]{babel}

\signature{Mr Bond}
\address{My address \\ 
         My zip code \\
         My city}

\begin{document}

\begin{letter}{Address \\ 
               Zip code \\
               City}
\opening{Hello,}
Bla, bla bla.

Bla bla bla? Bla!

\closing{Regards,}
\encl{Top-secret manuscript}
\end{letter}
\end{document}

Best Answer

Add the following line after \begin{document}:

\renewcommand{\enclname}{Bijlage}

This redefines the text in the \enclname command.