X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.0%2Fplugins%2Fgamma%2Fgamma.C;h=7e029f7ff8aceaa1042ba4eaa42914c39be7180b;hb=310cfd249d955850c39757d80e07949ad4fef205;hp=c3725c99d3d73920ddf22378463cf7619c29c04b;hpb=2d99bb8ce591f05a31464b517d85dc2bc35b2abe;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.0/plugins/gamma/gamma.C b/cinelerra-5.0/plugins/gamma/gamma.C index c3725c99..7e029f7f 100644 --- a/cinelerra-5.0/plugins/gamma/gamma.C +++ b/cinelerra-5.0/plugins/gamma/gamma.C @@ -395,7 +395,7 @@ GammaMain::~GammaMain() delete engine; } -const char* GammaMain::plugin_title() { return N_("Gamma"); } +const char* GammaMain::plugin_title() { return _("Gamma"); } int GammaMain::is_realtime() { return 1; } @@ -432,9 +432,9 @@ int GammaMain::process_buffer(VFrame *frame, if(use_opengl) { // Aggregate - if(next_effect_is("Histogram")) + if(next_effect_is(_("Histogram"))) return 0; - if(next_effect_is("Color Balance")) + if(next_effect_is(_("Color Balance"))) return 0; @@ -574,7 +574,7 @@ int GammaMain::handle_opengl() // Aggregate with interpolate int aggregate = 0; - if(prev_effect_is("Interpolate Pixels")) + if(prev_effect_is(_("Interpolate Pixels"))) { aggregate = 1; INTERPOLATE_COMPILE(shader_stack, current_shader)