X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.0%2Fplugins%2Fcolor3way%2Fcolor3way.C;h=07592f7839294b1ed25d8625fdc666f48ad3aa36;hb=310cfd249d955850c39757d80e07949ad4fef205;hp=40ade9b4b98e72e47ef467ddde5684746c4ef135;hpb=2d99bb8ce591f05a31464b517d85dc2bc35b2abe;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.0/plugins/color3way/color3way.C b/cinelerra-5.0/plugins/color3way/color3way.C index 40ade9b4..07592f78 100644 --- a/cinelerra-5.0/plugins/color3way/color3way.C +++ b/cinelerra-5.0/plugins/color3way/color3way.C @@ -382,7 +382,7 @@ Color3WayMain::~Color3WayMain() delete engine; } -const char* Color3WayMain::plugin_title() { return N_("Color 3 Way"); } +const char* Color3WayMain::plugin_title() { return _("Color 3 Way"); } int Color3WayMain::is_realtime() { return 1; } @@ -601,19 +601,19 @@ void Color3WayMain::read_data(KeyFrame *keyframe) void Color3WayMain::get_aggregation(int *aggregate_interpolate, int *aggregate_gamma) { - if(!strcmp(get_output()->get_prev_effect(1), "Interpolate Pixels") && - !strcmp(get_output()->get_prev_effect(0), "Gamma")) + if(!strcmp(get_output()->get_prev_effect(1), _("Interpolate Pixels")) && + !strcmp(get_output()->get_prev_effect(0), _("Gamma"))) { *aggregate_interpolate = 1; *aggregate_gamma = 1; } else - if(!strcmp(get_output()->get_prev_effect(0), "Interpolate Pixels")) + if(!strcmp(get_output()->get_prev_effect(0), _("Interpolate Pixels"))) { *aggregate_interpolate = 1; } else - if(!strcmp(get_output()->get_prev_effect(0), "Gamma")) + if(!strcmp(get_output()->get_prev_effect(0), _("Gamma"))) { *aggregate_gamma = 1; }