summaryrefslogtreecommitdiffhomepage
path: root/mixgtk/mixgtk_gen_handlers.c
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2002-04-10 23:39:40 +0000
committerJose Antonio Ortega Ruiz <jao@gnu.org>2002-04-10 23:39:40 +0000
commitabe307380dc6661d85d72335416392c11ee92d4c (patch)
treec9a7b03d60583bb54a6ab73a7df008ee7ec59d66 /mixgtk/mixgtk_gen_handlers.c
parentf90723b977647e04629412a46bf41e98040eb235 (diff)
downloadmdk-abe307380dc6661d85d72335416392c11ee92d4c.tar.gz
mdk-abe307380dc6661d85d72335416392c11ee92d4c.tar.bz2
_() i18n macro added to all strings missing it
Diffstat (limited to 'mixgtk/mixgtk_gen_handlers.c')
-rw-r--r--mixgtk/mixgtk_gen_handlers.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/mixgtk/mixgtk_gen_handlers.c b/mixgtk/mixgtk_gen_handlers.c
index 0d3daa3..656286b 100644
--- a/mixgtk/mixgtk_gen_handlers.c
+++ b/mixgtk/mixgtk_gen_handlers.c
@@ -1,9 +1,9 @@
/* -*-c-*- -------------- mixgtk_gen_handlers.c :
* Implementation of the functions declared in mixgtk_gen_handlers.h
* ------------------------------------------------------------------
- * Last change: Time-stamp: "2001-04-29 12:32:47 jao"
+ * $Id: mixgtk_gen_handlers.c,v 1.8 2002/04/10 23:39:40 jao Exp $
* ------------------------------------------------------------------
- * Copyright (C) 2001 Free Software Foundation, Inc.
+ * Copyright (C) 2001, 2002 Free Software Foundation, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -100,7 +100,7 @@ static void open_cb_ (const gchar *file)
void
on_file_open_activate (GtkWidget *w, gpointer data)
{
- mixgtk_get_file (open_cb_, "Load MIX program...", "*.mix");
+ mixgtk_get_file (open_cb_, _("Load MIX program..."), "*.mix");
}
/* edit mixal source */
@@ -112,7 +112,7 @@ static void edit_cb_ (const gchar *file)
void
on_file_edit_activate (GtkWidget *w, gpointer data)
{
- mixgtk_get_file (edit_cb_, "Edit MIXAL source file...",
+ mixgtk_get_file (edit_cb_, _("Edit MIXAL source file..."),
mixgtk_cmd_dispatcher_get_src_path ());
}
@@ -125,7 +125,7 @@ static void compile_cb_ (const gchar *file)
void
on_file_compile_activate (GtkWidget *w, gpointer data)
{
- mixgtk_get_file (compile_cb_, "Compile MIXAL source file...",
+ mixgtk_get_file (compile_cb_, _("Compile MIXAL source file..."),
mixgtk_cmd_dispatcher_get_src_path ());
}