NO-OP: mark various state property names as explicitly non-translated
[ardour.git] / gtk2_ardour / strip_silence_dialog.cc
index 87125b2298b87cc0e18141ed9d1c12b53fceb32a..52f05a6b94ca8d36ffa1370c274f78f33cc22fef 100644 (file)
 
 #include <gtkmm/table.h>
 #include <gtkmm/label.h>
+#include <gtkmm/progressbar.h>
 #include <gtkmm/stock.h>
 
 #include "ardour/audioregion.h"
 #include "ardour/dB.h"
+#include "ardour/logmeter.h"
 #include "ardour_ui.h"
 
 #include "audio_clock.h"
@@ -33,7 +35,6 @@
 #include "region_view.h"
 #include "rgb_macros.h"
 #include "pbd/i18n.h"
-#include "logmeter.h"
 
 using namespace ARDOUR;
 using namespace std;
@@ -64,7 +65,7 @@ StripSilenceDialog::StripSilenceDialog (Session* s, list<RegionView*> const & v)
 
        table->attach (*Gtk::manage (new Gtk::Label (_("Threshold"), 1, 0.5)), 0, 1, n, n + 1, Gtk::FILL);
        table->attach (_threshold, 1, 2, n, n + 1, Gtk::FILL);
-       table->attach (*Gtk::manage (new Gtk::Label (_("dbFS"))), 2, 3, n, n + 1, Gtk::FILL);
+       table->attach (*Gtk::manage (new Gtk::Label (_("dBFS"))), 2, 3, n, n + 1, Gtk::FILL);
        ++n;
 
        _threshold.set_digits (1);