From 35017245d99b3188bb619a5963a02d4c04114573 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Mon, 11 Mar 2024 23:55:37 +0100 Subject: [PATCH] Fix typo --- gtk2_ardour/simple_export_dialog.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/simple_export_dialog.cc b/gtk2_ardour/simple_export_dialog.cc index e1c876c1da..98b417eec6 100644 --- a/gtk2_ardour/simple_export_dialog.cc +++ b/gtk2_ardour/simple_export_dialog.cc @@ -298,7 +298,7 @@ SimpleExportDialog::start_export () SimpleExport::_session->timecode_to_sample (tc, t24h, false /* use_offset */, false /* use_subframes */); if (rend >= t24h) { hide (); - std::string txt = _("Error: The file to exported contains an illegal timecode value near the midnight boundary. Try moving the export-range earlier on the product timeline."); + std::string txt = _("Error: The file to be exported contains an illegal timecode value near the midnight boundary. Try moving the export-range earlier on the product timeline."); Gtk::MessageDialog msg (txt, false, Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK, true); msg.run (); return;