- fixed some strings that where marked for translation but the gettext call was

missing


git-svn-id: http://svn.code.sf.net/p/xqf/code/trunk@181 d2ac09be-c843-0410-8b1f-f8a84130e0ec
This commit is contained in:
Ludwig Nussel 2002-08-10 11:50:20 +00:00 committed by l-n
parent d3d0f160f7
commit 7579a13d5c
3 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
Aug 10, 2002: Ludwig Nussel <l-n@users.sourceforge.net>
- fixed some strings that where marked for translation but the gettext call was
missing
Aug 09, 2002: Ludwig Nussel <l-n@users.sourceforge.net>
- fixed player search to move the visible area to the server on which a player
was found

View File

@ -751,7 +751,7 @@ void player_filter_page (GtkWidget *notebook) {
GtkWidget *pixmap;
GtkWidget *button;
GtkWidget *peditor;
char *titles[5] = { "", "", "", N_("Mode"), N_("Pattern") };
char *titles[5] = { "", "", "", _("Mode"), _("Pattern") };
int i;
page_hbox = gtk_hbox_new (FALSE, 8);

View File

@ -393,7 +393,7 @@ static GtkWidget *server_info_page (struct server *s) {
for (list = sources; list; list = list->next) {
m = (struct master *) list->data;
label = gtk_label_new (m->name);
label = gtk_label_new (_(m->name));
gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, FALSE, 0);
gtk_widget_show (label);
}