Use $HOME rather than hard-coded user name.
[dcpomatic.git] / src / tools / dcpomatic_combiner.cc
index 8e7337f65b06e95748ec78c21f22bd129ba6c410..c135184e6a7f04a5ce1eb94b45e1456cec0d3012 100644 (file)
@@ -175,7 +175,7 @@ private:
 
                auto jm = JobManager::instance ();
                jm->add (make_shared<CombineDCPJob>(_inputs, output, wx_to_std(_annotation_text->GetValue())));
-               bool const ok = display_progress (_("DCP-o-matic Combine"), _("Combining DCPs"));
+               bool const ok = display_progress(_("DCP-o-matic Combiner"), _("Combining DCPs"));
                if (!ok) {
                        return;
                }
@@ -253,7 +253,7 @@ public:
                        */
                        Config::drop ();
 
-                       _frame = new DOMFrame (_("DCP-o-matic DCP Combiner"));
+                       _frame = new DOMFrame(_("DCP-o-matic Combiner"));
                        SetTopWindow (_frame);
 
                        _frame->Show ();
@@ -263,7 +263,7 @@ public:
                }
                catch (exception& e)
                {
-                       error_dialog (nullptr, wxString::Format ("DCP-o-matic DCP Combiner could not start."), std_to_wx(e.what()));
+                       error_dialog(nullptr, wxString::Format("DCP-o-matic Combiner could not start."), std_to_wx(e.what()));
                        return false;
                }