Is there a default language definition for babel texts, so I don't have to define all possible languages?
At the moment, I define
\addto\captionsenglish{\def\listofchangesname{List of changes}}
which leads to errors when using british as language.
Would this be sufficient and correct LaTeX? Or is there another good solution?
\def\listofchangesname{List of changes}
\addto\captionsenglish{\def\listofchangesname{List of changes}}
This is a follow-up to The changes package and british babel: Undefined control sequence
babel, packages can add their own, but they should do for every language they want to support. – egreg Feb 23 '15 at 11:56translationspackage it is possible to declare fallback translations which are used in the case of an unknown language, see http://tex.stackexchange.com/a/193452/5049 – cgnieder Feb 23 '15 at 12:26tracklangpackage, which I wrote to deal with that type of issue. – Nicola Talbot Feb 23 '15 at 12:54