[gq-commit] gq/src input.c,1.50,1.51
Status: Beta
Brought to you by:
sur5r
From: <sta...@us...> - 2002-10-11 13:53:53
|
Update of /cvsroot/gqclient/gq/src In directory usw-pr-cvs1:/tmp/cvs-serv27831 Modified Files: input.c Log Message: * Use the new S_ function to allow to tag long tooltips (useful to indicate to translators that they do not have to translate these messages yet, as they are unused) Index: input.c =================================================================== RCS file: /cvsroot/gqclient/gq/src/input.c,v retrieving revision 1.50 retrieving revision 1.51 diff -C2 -d -r1.50 -r1.51 *** input.c 28 Sep 2002 20:10:14 -0000 1.50 --- input.c 11 Oct 2002 13:53:49 -0000 1.51 *************** *** 139,146 **** gtk_tooltips_set_tip(tips, linebutton, _("Turn into one-line entry field"), ! _("Changes the display type of the current " ! "attribute into 'Entry', thus makes the input " ! "field a one-line text box.")); ! /* textarea button */ textareabutton = gtk_button_new(); --- 139,147 ---- gtk_tooltips_set_tip(tips, linebutton, _("Turn into one-line entry field"), ! S_("tooltip|Changes the display type of the current " ! "attribute into 'Entry', thus makes the input " ! "field a one-line text box.") ! ); ! /* textarea button */ textareabutton = gtk_button_new(); *************** *** 165,171 **** gtk_tooltips_set_tip(tips, textareabutton, _("Turn into multi-line entry field"), ! _("Changes the display type of the current " ! "attribute into 'Multi-line text', thus makes " ! "the input field a multi-line text box.")); /* new attribute button */ --- 166,172 ---- gtk_tooltips_set_tip(tips, textareabutton, _("Turn into multi-line entry field"), ! S_("tooltip|Changes the display type of the current " ! "attribute into 'Multi-line text', thus makes " ! "the input field a multi-line text box.")); /* new attribute button */ *************** *** 193,198 **** gtk_tooltips_set_tip(tips, newattrbutton, ! _("Adds an attribute to an object of class 'extensibleObject'"), ! _("Adds an attribute to an object of class 'extensibleObject'")); /* hide empty attributes button */ --- 194,201 ---- gtk_tooltips_set_tip(tips, newattrbutton, ! _("Adds an attribute to an object of class " ! "'extensibleObject'"), ! S_("tooltip|Adds an attribute to an object of " ! "class 'extensibleObject'")); /* hide empty attributes button */ *************** *** 221,227 **** gtk_tooltips_set_tip(tips, hideattrbutton, _("Hide/show empty attributes"), ! _("Hides or shows all attributes without values. " ! "This is a good way to see immediately what " ! "attributes the object really has.")); /* scrolled window with vbox2 inside */ --- 224,232 ---- gtk_tooltips_set_tip(tips, hideattrbutton, _("Hide/show empty attributes"), ! S_("tooltip|Hides or shows all attributes without " ! "values. " ! "This is a good way to see immediately what " ! "attributes the object really has.") ! ); /* scrolled window with vbox2 inside */ |