From da9fd55339dab2605d14579a0f79588db27c232a Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Thu, 21 Mar 2019 23:07:03 +0000 Subject: [PATCH] Tidy up translation emails slightly. --- src/tools/dcpomatic.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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"); -- 2.30.2