diff options
author | Matthias Clasen <mclasen@redhat.com> | 2005-06-25 05:06:47 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2005-06-25 05:06:47 +0000 |
commit | effe3785cf61084d9f7e9427cea0999bb4a32473 (patch) | |
tree | 84079ea209f695bb0500e741fe686b839292b095 /gtk/gtkstock.c | |
parent | 458d71a96a998bb5563f508985beef1f0f600092 (diff) | |
download | gtk+-effe3785cf61084d9f7e9427cea0999bb4a32473.tar.gz |
Add some new stock items. (#166480, Kristof Vansant)
2005-06-25 Matthias Clasen <mclasen@redhat.com>
Add some new stock items. (#166480, Kristof Vansant)
* gtk/stock-icons/stock_fullscreen_16.png:
* gtk/stock-icons/stock_fullscreen_24.png:
* gtk/stock-icons/stock_leave_fullscreen_16.png:
* gtk/stock-icons/stock_leave_fullscreen_24.png:
* gtk/stock-icons/stock_info_16.png:
* gtk/stock-icons/stock_info_24.png: New icons.
* gtk/stock-icons/Makefile.am: Add new icons.
* gtk/gtkstock.h: Define names for the new icons.
* gtk/gtkstock.c (builtin_items): Register new stock items.
* gtk/gtkiconfactory.c (get_default_icons): Register new
stock icons.
Diffstat (limited to 'gtk/gtkstock.c')
-rw-r--r-- | gtk/gtkstock.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk/gtkstock.c b/gtk/gtkstock.c index 15dce0cf6b..17d0d1a846 100644 --- a/gtk/gtkstock.c +++ b/gtk/gtkstock.c @@ -330,6 +330,8 @@ static const GtkStockItem builtin_items [] = { GTK_STOCK_FIND, N_("_Find"), GDK_CONTROL_MASK, 'f', GETTEXT_PACKAGE }, { GTK_STOCK_FIND_AND_REPLACE, N_("Find and _Replace"), GDK_CONTROL_MASK, 'r', GETTEXT_PACKAGE }, { GTK_STOCK_FLOPPY, N_("_Floppy"), 0, 0, GETTEXT_PACKAGE }, + { GTK_STOCK_FULLSCREEN, N_("_Fullscreen"), 0, 0, GETTEXT_PACKAGE }, + { GTK_STOCK_LEAVE_FULLSCREEN, N_("_Leave Fullscreen"), 0, 0, GETTEXT_PACKAGE }, /* translators, strip the prefix up to and including the first | */ { GTK_STOCK_GOTO_BOTTOM, N_("Navigation|_Bottom"), 0, 0, GETTEXT_PACKAGE }, /* translators, strip the prefix up to and including the first | */ @@ -352,6 +354,7 @@ static const GtkStockItem builtin_items [] = { GTK_STOCK_INDENT, N_("Increase Indent"), 0, 0, GETTEXT_PACKAGE }, { GTK_STOCK_UNINDENT, N_("Decrease Indent"), 0, 0, GETTEXT_PACKAGE }, { GTK_STOCK_INDEX, N_("_Index"), 0, 0, GETTEXT_PACKAGE }, + { GTK_STOCK_INFO, N_("_Information"), 0, 0, GETTEXT_PACKAGE }, { GTK_STOCK_ITALIC, N_("_Italic"), 0, 0, GETTEXT_PACKAGE }, { GTK_STOCK_JUMP_TO, N_("_Jump to"), 0, 0, GETTEXT_PACKAGE }, /* translators, strip the prefix up to and including the first | */ |