X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.0%2Fplugins%2Fremovegaps%2Fremovegaps.C;fp=cinelerra-5.0%2Fplugins%2Fremovegaps%2Fremovegaps.C;h=a0538097cfd568b698606573f4af674ea4b38346;hb=94e8dc2b306135e7735b2618a54f0f7de7ac7a0c;hp=b58b72668202a4dd1a2b8e80dede55b9bd6c1f0e;hpb=9755040e9ae6889aa0d1627d0e209496d1e000e6;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.0/plugins/removegaps/removegaps.C b/cinelerra-5.0/plugins/removegaps/removegaps.C index b58b7266..a0538097 100644 --- a/cinelerra-5.0/plugins/removegaps/removegaps.C +++ b/cinelerra-5.0/plugins/removegaps/removegaps.C @@ -102,14 +102,14 @@ void RemoveGapsWindow::create_objects() int x = 10, y = 10; BC_Title *title; - add_subwindow(title = new BC_Title(x, y, "Threshold of gap (DB):")); + add_subwindow(title = new BC_Title(x, y, _("Threshold of gap (DB):"))); add_subwindow(threshold = new RemoveGapsThreshold(this, plugin, x + title->get_w() + plugin->get_theme()->widget_border, y)); y += threshold->get_h() + plugin->get_theme()->widget_border; - add_subwindow(title = new BC_Title(x, y, "Max duration of gap (Seconds):")); + add_subwindow(title = new BC_Title(x, y, _("Max duration of gap (Seconds):"))); add_subwindow(duration = new RemoveGapsDuration(this, plugin, x + title->get_w() + plugin->get_theme()->widget_border, @@ -194,7 +194,7 @@ RemoveGaps::~RemoveGaps() delete temp; } -const char* RemoveGaps::plugin_title() { return N_("Remove Gaps"); } +const char* RemoveGaps::plugin_title() { return _("Remove Gaps"); } int RemoveGaps::is_realtime() { return 1; } NEW_WINDOW_MACRO(RemoveGaps, RemoveGapsWindow)