diff options
author | John Wiegley <johnw@newartisans.com> | 2013-05-19 02:41:46 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2013-05-19 02:41:46 -0500 |
commit | c70e959214239256d1bc947a4a940b3b3ee1ac17 (patch) | |
tree | 4e3df12003f59b46daabfea0de1f56eae73ab7de /src/post.h | |
parent | 62c2ab968c2ec412624bc0f001f7f771c358e442 (diff) | |
download | fork-ledger-c70e959214239256d1bc947a4a940b3b3ee1ac17.tar.gz fork-ledger-c70e959214239256d1bc947a4a940b3b3ee1ac17.tar.bz2 fork-ledger-c70e959214239256d1bc947a4a940b3b3ee1ac17.zip |
Add a missing % character
Diffstat (limited to 'src/post.h')
-rw-r--r-- | src/post.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -106,7 +106,7 @@ public: virtual string description() { if (pos) { std::ostringstream buf; - buf << _f("posting at line %1") << pos->beg_line; + buf << _f("posting at line %1%") % pos->beg_line; return buf.str(); } else { return string(_("generated posting")); |