(assoc_to_string): Wrap strings in _() if they need translation.

This commit is contained in:
Paul Eggert
2002-08-12 14:34:51 +00:00
parent 00a6930855
commit 91e1aa523d

View File

@@ -28,7 +28,7 @@ assoc_to_string (assoc_t assoc)
switch (assoc)
{
case undef_assoc:
return "undefined associativity";
return _("undefined associativity");
case right_assoc:
return "%right";