X-Git-Url: http://git.cinelerra-gg.org/git/?a=blobdiff_plain;f=cinelerra-5.0%2Fplugins%2Fgraphic%2Fgraphic.C;h=36d94ed39cb56285a8aa11de2585112004297dee;hb=310cfd249d955850c39757d80e07949ad4fef205;hp=84492e3865f4ca97f01acd311a1bc674836f234f;hpb=2d99bb8ce591f05a31464b517d85dc2bc35b2abe;p=goodguy%2Fhistory.git diff --git a/cinelerra-5.0/plugins/graphic/graphic.C b/cinelerra-5.0/plugins/graphic/graphic.C index 84492e38..36d94ed3 100644 --- a/cinelerra-5.0/plugins/graphic/graphic.C +++ b/cinelerra-5.0/plugins/graphic/graphic.C @@ -800,12 +800,12 @@ void GraphicGUI::create_objects() // int x1 = x; // int y1 = y; - add_subwindow(freq_title = new BC_Title(x, y, "Frequency:")); + add_subwindow(freq_title = new BC_Title(x, y, _("Frequency:"))); x += freq_title->get_w() + margin; add_subwindow(freq_text = new FreqTextBox(plugin, this, x, y, 100)); x += freq_text->get_w() + margin; - add_subwindow(level_title = new BC_Title(x, y, "Level:")); + add_subwindow(level_title = new BC_Title(x, y, _("Level:"))); x += level_title->get_w() + margin; add_subwindow(value_text = new ValueTextBox(plugin, this, x, y, 100)); x += value_text->get_w() + margin; @@ -817,7 +817,7 @@ void GraphicGUI::create_objects() // x = x1; // y += value_text->get_h() + margin; - add_subwindow(size_title = new BC_Title(x, y, "Window size:")); + add_subwindow(size_title = new BC_Title(x, y, _("Window size:"))); x += size_title->get_w() + margin; add_subwindow(size = new GraphicSize(this, plugin, x, y)); size->create_objects(); @@ -1045,7 +1045,7 @@ GraphicEQ::~GraphicEQ() int GraphicEQ::is_realtime() { return 1; } -const char* GraphicEQ::plugin_title() { return N_("EQ Graphic"); } +const char* GraphicEQ::plugin_title() { return _("EQ Graphic"); } NEW_WINDOW_MACRO(GraphicEQ, GraphicGUI)