summaryrefslogtreecommitdiff
path: root/gtk/gtknotebook.c
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>1998-12-18 01:32:33 +0000
committerOwen Taylor <otaylor@src.gnome.org>1998-12-18 01:32:33 +0000
commit11339ec5b383f25bdf9913cd9203da2b1fc4a0ca (patch)
treedc8607c38686062910e1ba1921c2549c399cdd8d /gtk/gtknotebook.c
parent1bde7a559951e24b737e3c7c2b9692f77d758286 (diff)
downloadgdk-pixbuf-11339ec5b383f25bdf9913cd9203da2b1fc4a0ca.tar.gz
Add @INTLLIBS@. gtk-scier-981116-0.patch Sean Cier
Thu Dec 17 20:33:28 1998 Owen Taylor <otaylor@redhat.com> * gtk-config.in: Add @INTLLIBS@. gtk-scier-981116-0.patch Sean Cier <scier@PostHorizon.com>) ] * gtk/gtkcolorsel.c gtk/gtkfilesel.c gtk/gtkfontsel.c gtk/gtkgamma.c gtk/gtkinputdialog.c gtk/gtknotebook.c gtk/gtkrc.c gtk/gtkthemes.c gtk/gtktipsquery.c: Applied parts of gtk-egger-981215-1 [ Daniel Egger <Daniel.Egger@t-online.de> ] marking additional strings for internationalization. * po/nl.po: Added Dutch translation from Paul Siegmann <pauls@euronet.nl>.
Diffstat (limited to 'gtk/gtknotebook.c')
-rw-r--r--gtk/gtknotebook.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gtk/gtknotebook.c b/gtk/gtknotebook.c
index b3a2210ca..21f2d8510 100644
--- a/gtk/gtknotebook.c
+++ b/gtk/gtknotebook.c
@@ -24,6 +24,7 @@
#include "gtklabel.h"
#include <gdk/gdkkeysyms.h>
#include <stdio.h>
+#include "gtkintl.h"
#define TAB_OVERLAP 2
@@ -1942,7 +1943,7 @@ gtk_notebook_update_labels (GtkNotebook *notebook)
list = gtk_notebook_search_page (notebook, list, STEP_NEXT, FALSE))
{
page = list->data;
- sprintf (string, "Page %u", page_num++);
+ sprintf (string, _("Page %u"), page_num++);
if (notebook->show_tabs)
{
if (page->default_tab)
@@ -3962,7 +3963,7 @@ gtk_notebook_set_tab_label (GtkNotebook *notebook,
{
gchar string[32];
- sprintf (string, "Page %u",
+ sprintf (string, _("Page %u"),
gtk_notebook_real_page_position (notebook, list));
page->tab_label = gtk_label_new (string);
gtk_widget_set_parent (page->tab_label, GTK_WIDGET (notebook));