X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftrunk%2Fsrc%2Fgtkmm%2Frenddesc.cpp;h=a57efc9f75d2cdba16c1ef7ad4eabc067f092608;hb=69d51ca9bea12b87bf5d8d81d0892ae824cb4147;hp=cb461092b26a67cd10461be714422d6cd7387483;hpb=4ec81d053bf1d0cbcd9f0bf048914ec8eca08f4c;p=synfig.git diff --git a/synfig-studio/trunk/src/gtkmm/renddesc.cpp b/synfig-studio/trunk/src/gtkmm/renddesc.cpp index cb46109..a57efc9 100644 --- a/synfig-studio/trunk/src/gtkmm/renddesc.cpp +++ b/synfig-studio/trunk/src/gtkmm/renddesc.cpp @@ -6,6 +6,7 @@ ** ** \legal ** Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley +** Copyright (c) 2007 Chris Moore ** ** This package is free software; you can redistribute it and/or ** modify it under the terms of the GNU General Public License as @@ -38,6 +39,8 @@ #include //#include +#include "general.h" + #endif /* === U S I N G =========================================================== */ @@ -57,10 +60,6 @@ using namespace studio; #define SYNFIG_MAX_PIXEL_HEIGHT (~(1<<31)) #endif -#if ! defined(_) -#define _(x) (x) -#endif - #ifndef DPM2DPI #define DPM2DPI(x) ((x)/39.3700787402) #define DPI2DPM(x) ((x)*39.3700787402) @@ -531,9 +530,9 @@ Widget_RendDesc::create_time_tab() Gtk::VBox *panelBox = manage(new Gtk::VBox(false, 12)); // for future widgets paddedPanel->add(*panelBox); - Gtk::Frame *time_frame = manage(new Gtk::Frame("Time Settings")); + Gtk::Frame *time_frame = manage(new Gtk::Frame(_("Time Settings"))); time_frame->set_shadow_type(Gtk::SHADOW_NONE); - ((Gtk::Label *) time_frame->get_label_widget())->set_markup("Time Settings"); + ((Gtk::Label *) time_frame->get_label_widget())->set_markup(_("Time Settings")); panelBox->pack_start(*time_frame, false, false, 0); Gtk::Alignment *timeFramePadding = manage(new Gtk::Alignment(0, 0, 1, 1));