summaryrefslogtreecommitdiff
path: root/gtk2_ardour/transcode_video_dialog.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2013-03-30 16:50:22 +0100
committerRobin Gareus <robin@gareus.org>2013-03-30 16:51:02 +0100
commitdeaceb4727effced797ecac67fa55e5eef75b003 (patch)
tree9999a22de8b0a352cf125911f1c34da968bc47d6 /gtk2_ardour/transcode_video_dialog.cc
parentd8f0cc8fcb0b37d7cd0c63bb0c08709709d5faf3 (diff)
vtl: minor UI dialog tweaks
Diffstat (limited to 'gtk2_ardour/transcode_video_dialog.cc')
-rw-r--r--gtk2_ardour/transcode_video_dialog.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/gtk2_ardour/transcode_video_dialog.cc b/gtk2_ardour/transcode_video_dialog.cc
index 8c68b5bca8..5a29d129ae 100644
--- a/gtk2_ardour/transcode_video_dialog.cc
+++ b/gtk2_ardour/transcode_video_dialog.cc
@@ -106,11 +106,10 @@ TranscodeVideoDialog::TranscodeVideoDialog (Session* s, std::string infile)
std::string dstfn = video_dest_file(dstdir, infile);
path_entry.set_text (dstfn);
- l = manage (new Label (_("<b>Info</b>"), Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false));
+ l = manage (new Label (_("<b>File Information</b>"), Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false));
l->set_use_markup ();
options_box->pack_start (*l, false, true, 4);
-
bool ffok = false;
if (!transcoder->ffexec_ok()) {
l = manage (new Label (_("No ffprobe or ffmpeg executables could be found on this system. Video Import is not possible until you install those tools. See the Log widow for more information."), Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false));
@@ -176,7 +175,7 @@ TranscodeVideoDialog::TranscodeVideoDialog (Session* s, std::string infile)
t->attach (*l, 1, 2, 1, 2);
}
- l = manage (new Label (_("<b>Video</b>"), Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false));
+ l = manage (new Label (_("<b>Import Settings</b>"), Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, false));
l->set_use_markup ();
options_box->pack_start (*l, false, true, 4);