> Proposed new documentation: > > * 22.5.5 Translatable messages > > When constructing translatable messages with 'format' ( guile manual>), it is important to use positional arguments.  For > example, instead of writing > >   (format #t (G_ "The package '~a' is newer than '~a'.~%") >              '("foo" "bar")), > > you should write > >   (format #t (G_ "The package '~1@*~a' is newer than '~2@*~a'.~%") >              '("foo" "bar")) Off-by-one error here