From: Carl Hetherington Date: Thu, 21 Mar 2019 23:07:03 +0000 (+0000) Subject: Tidy up translation emails slightly. X-Git-Tag: v2.13.133~3 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=da9fd55339dab2605d14579a0f79588db27c232a Tidy up translation emails slightly. --- diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc index 854c1a3f3..dcf6d7f49 100644 --- a/src/tools/dcpomatic.cc +++ b/src/tools/dcpomatic.cc @@ -1022,9 +1022,11 @@ private: string body; body += d->name() + "\n"; body += d->language() + "\n"; + body += string(dcpomatic_version) + " " + string(dcpomatic_git_commit) + "\n"; + body += "--\n"; map translations = I18NHook::translations (); for (map::const_iterator i = translations.begin(); i != translations.end(); ++i) { - body += i->first + "\n" + i->second + "\n"; + body += i->first + "\n" + i->second + "\n\n"; } list to; to.push_back ("carl@dcpomatic.com");