I am sure at least with this:
2001-05-07 Gediminas Paulauskas <menesis@delfi.lt> * misc/e-filter-bar.h: xgettext does not find N_() in #defines. So created fake enum. Also removed spaces before "..." svn path=/trunk/; revision=9690
This commit is contained in:
committed by
Gediminas Paulauskas
parent
612ada489c
commit
55fba808bd
@ -1,3 +1,8 @@
|
||||
2001-05-07 Gediminas Paulauskas <menesis@delfi.lt>
|
||||
|
||||
* misc/e-filter-bar.h: xgettext does not find N_() in #defines. So
|
||||
created fake enum. Also removed spaces before "..."
|
||||
|
||||
2001-04-24 Kjartan Maraas <kmaraas@gnome.org>
|
||||
|
||||
* e-calendar-item.c, e-calendar.c, e-cell-date-edit.c,
|
||||
|
||||
@ -91,10 +91,19 @@ enum {
|
||||
E_FILTERBAR_LAST_ID = -6,
|
||||
};
|
||||
|
||||
#define E_FILTERBAR_SAVE { N_("Save As ..."), E_FILTERBAR_SAVE_ID }
|
||||
#define E_FILTERBAR_SAVE { N_("Save As..."), E_FILTERBAR_SAVE_ID }
|
||||
#define E_FILTERBAR_RESET { N_("Show All"), E_FILTERBAR_RESET_ID }
|
||||
#define E_FILTERBAR_EDIT { N_("Edit ..."), E_FILTERBAR_EDIT_ID }
|
||||
#define E_FILTERBAR_ADVANCED { N_("Advanced ..."), E_FILTERBAR_ADVANCED_ID }
|
||||
#define E_FILTERBAR_EDIT { N_("Edit..."), E_FILTERBAR_EDIT_ID }
|
||||
#define E_FILTERBAR_ADVANCED { N_("Advanced..."), E_FILTERBAR_ADVANCED_ID }
|
||||
|
||||
#ifdef JUST_FOR_TRANSLATORS
|
||||
const char * strings[] = {
|
||||
N_("Save As..."),
|
||||
N_("Show All"),
|
||||
N_("Edit..."),
|
||||
N_("Advanced...")
|
||||
};
|
||||
#endif
|
||||
|
||||
|
||||
GtkType e_filter_bar_get_type (void);
|
||||
|
||||
Reference in New Issue
Block a user