[gnome-db]A patch to use the new gnome-db && xml-i18n-tools
- From: Carlos Perelló Marín <carlos gnome-db org>
- To: gnome-db-list gnome org, glade-devel helixcode com
- Subject: [gnome-db]A patch to use the new gnome-db && xml-i18n-tools
- Date: 11 Feb 2001 23:09:38 +0100
Well, here you have a patch to glade to upgrade it to the actual
gnome-db (includes a modification of the patch sended to the list by Pau
<linuxnow terra es)>.
This patch also enable xml-i18n-tools to the localization of glade (not
its configure.in and Makefile.am generated but the application "glade").
Please test it and Damon, Could I apply the patch at the CVS or it's
too late?
Also I will stop the gal support in glade, Miguel has tell us that its
API could change a lot. Sorry.
Bye
I think that the patch is OK, but please tell me if you get an error.
--
Carlos Perelló Marín
mailto:carlos gnome-db org
mailto:carlos hispalinux es
http://www.gnome-db.org
http://www.Hispalinux.es
Valencia - España
diff -u --new-file -r glade/.cvsignore glade.new/.cvsignore
--- glade/.cvsignore Sat Jun 5 12:53:49 1999
+++ glade.new/.cvsignore Sun Feb 11 21:58:00 2001
@@ -23,3 +23,9 @@
stamp-h.in
stamp.h
version.h
+xml-i18n-extract.in
+xml-i18n-merge.in
+xml-i18n-update.in
+xml-i18n-extract
+xml-i18n-merge
+xml-i18n-update
diff -u --new-file -r glade/ChangeLog glade.new/ChangeLog
--- glade/ChangeLog Tue Jan 16 21:10:23 2001
+++ glade.new/ChangeLog Sun Feb 11 22:13:20 2001
@@ -1,3 +1,13 @@
+2001-02-11 Carlos Perelló Marín <carlos gnome-db org>
+
+ * glade/gnome-db/gnomedbiconlist.c: Added
+ * glade/gnome-db/gnomedbdsnconfig.c: Added
+ * glade/gnome-db/gnomedbdataset.c: Added
+ * glade/gnome-db/gnomedbbrowser.c: Updated to the new Gnome-DB version
+ (a Pau <linuxnow terra es>'s patch modification)
+ * Makefile.am, configure.in, glade.desktop.in: Adapted to use the
+ xml-i18n-tools
+
2001-01-15 Stanislav Brabec <utx penguin cz>
* glade.desktop: Updated cs. Changed da->de for German.
diff -u --new-file -r glade/Makefile.am glade.new/Makefile.am
--- glade/Makefile.am Mon Sep 18 00:49:10 2000
+++ glade.new/Makefile.am Sun Feb 11 21:57:16 2001
@@ -4,9 +4,12 @@
EXTRA_DIST = \
FAQ \
- glade.spec.in \
- glade.desktop \
+ glade.spec.in \
+ glade.desktop.in \
glade.png \
+ xml-i18n-extract.in \
+ xml-i18n-merge.in \
+ xml-i18n-update.in \
examples/editor/AUTHORS \
examples/editor/ChangeLog \
examples/editor/Makefile.am \
diff -u --new-file -r glade/configure.in glade.new/configure.in
--- glade/configure.in Sat Jan 6 19:31:31 2001
+++ glade.new/configure.in Sun Feb 11 21:56:17 2001
@@ -6,6 +6,8 @@
AM_MAINTAINER_MODE
AM_CONFIG_HEADER(config.h)
+AM_PROG_XML_I18N_TOOLS
+
dnl Pick up GNOME macros
AM_ACLOCAL_INCLUDE(macros)
diff -u --new-file -r glade/glade/glade_gnomedblib.c glade.new/glade/glade_gnomedblib.c
--- glade/glade/glade_gnomedblib.c Sun Apr 16 09:53:16 2000
+++ glade.new/glade/glade_gnomedblib.c Sun Feb 11 20:19:19 2001
@@ -1,5 +1,6 @@
/* Gtk+ User Interface Builder
* Copyright (C) 1998-1999 Damon Chaplin
+ * Copyright (C) 2001 Carlos Perelló Marín <carlos gnome-db org>
*
* 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
@@ -35,22 +36,24 @@
GbWidget *gb_gnome_db_login_init ();
GbWidget *gb_gnome_db_logindlg_init ();
GbWidget *gb_gnome_db_report_init ();
-
-
-static GladeWidgetInitData gnome_db[] =
-{
- { "GnomeDbGrid", gb_gnome_db_grid_init },
- { "GnomeDbList", gb_gnome_db_list_init },
- { "GnomeDbCombo", gb_gnome_db_combo_init },
- { "GnomeDbReport", gb_gnome_db_report_init },
-
- { "GnomeDbErrorDlg", gb_gnome_db_errordlg_init },
- { "GnomeDbError", gb_gnome_db_error_init },
- { "GnomeDbLoginDlg", gb_gnome_db_logindlg_init },
- { "GnomeDbLogin", gb_gnome_db_login_init },
-
- { "GnomeDbBrowser", gb_gnome_db_browser_init },
- { NULL, NULL }
+GbWidget *gb_gnome_db_iconlist_init ();
+GbWidget *gb_gnome_db_dsnconfig_init ();
+GbWidget *gb_gnome_db_dataset_init ();
+
+static GladeWidgetInitData gnome_db[] = {
+ { "GnomeDbLogin", gb_gnome_db_login_init },
+ { "GnomeDbLoginDlg", gb_gnome_db_logindlg_init },
+ { "GnomeDbDsnConfig", gb_gnome_db_dsnconfig_init },
+ { "GnomeDbBrowser", gb_gnome_db_browser_init },
+ { "GnomeDbGrid", gb_gnome_db_grid_init },
+ { "GnomeDbDataset", gb_gnome_db_dataset_init },
+ { "GnomeDbCombo", gb_gnome_db_combo_init },
+ { "GnomeDbList", gb_gnome_db_list_init },
+ { "GnomeDbReport", gb_gnome_db_report_init },
+ { "GnomeDbIconList", gb_gnome_db_iconlist_init },
+ { "GnomeDbError", gb_gnome_db_error_init },
+ { "GnomeDbErrorDlg", gb_gnome_db_errordlg_init },
+ { NULL, NULL }
};
diff -u --new-file -r glade/glade/gnome-db/Makefile.am glade.new/glade/gnome-db/Makefile.am
--- glade/glade/gnome-db/Makefile.am Sun Apr 2 12:31:24 2000
+++ glade.new/glade/gnome-db/Makefile.am Sun Feb 11 21:11:36 2001
@@ -13,4 +13,7 @@
gnomedblist.c \
gnomedblogin.c \
gnomedblogindlg.c \
+ gnomedbiconlist.c \
+ gnomedbdsnconfig.c \
+ gnomedbdataset.c \
gnomedbreport.c
diff -u --new-file -r glade/glade/gnome-db/gnomedbbrowser.c glade.new/glade/gnome-db/gnomedbbrowser.c
--- glade/glade/gnome-db/gnomedbbrowser.c Thu Aug 3 13:46:47 2000
+++ glade.new/glade/gnome-db/gnomedbbrowser.c Sun Feb 11 21:04:17 2001
@@ -46,19 +46,7 @@
static GtkWidget*
gb_gnome_db_browser_new (GbWidgetNewData *data)
{
- GtkWidget *widget;
- GnomeDbBrowser *brw;
-
- widget = gnome_db_browser_new (NULL);
- brw = GNOME_DB_BROWSER (widget);
-
- /* Disconnect the toggle button signals, since they cause problems. */
- gtk_signal_disconnect_by_data (GTK_OBJECT (brw->tables_button), brw);
- gtk_signal_disconnect_by_data (GTK_OBJECT (brw->views_button), brw);
- gtk_signal_disconnect_by_data (GTK_OBJECT (brw->procs_button), brw);
- gtk_signal_disconnect_by_data (GTK_OBJECT (brw->types_button), brw);
-
- return widget;
+ return gnome_db_browser_new (NULL);
}
diff -u --new-file -r glade/glade/gnome-db/gnomedbdataset.c glade.new/glade/gnome-db/gnomedbdataset.c
--- glade/glade/gnome-db/gnomedbdataset.c Thu Jan 1 01:00:00 1970
+++ glade.new/glade/gnome-db/gnomedbdataset.c Sun Feb 11 20:33:30 2001
@@ -0,0 +1,156 @@
+/* Gtk+ User Interface Builder
+ * Copyright (C) 2001 Carlos Perelló Marín <carlos gnome-db org>
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#include <config.h>
+
+#include <gnome-db.h>
+#include "../gb.h"
+
+/* Include the 21x21 icon pixmap for this widget, to be used in the palette */
+#include "../graphics/gnome-db-dataset.xpm"
+
+/*
+ * This is the GbWidget struct for this widget (see ../gbwidget.h).
+ * It is initialized in the init() function at the end of this file
+ */
+static GbWidget gbwidget;
+
+
+
+/******
+ * NOTE: To use these functions you need to uncomment them AND add a pointer
+ * to the function in the GbWidget struct at the end of this file.
+ ******/
+
+/*
+ * Creates a new GtkWidget of class GnomeDbDataset, performing any specialized
+ * initialization needed for the widget to work correctly in this environment.
+ * If a dialog box is used to initialize the widget, return NULL from this
+ * function, and call data->callback with your new widget when it is done.
+ */
+static GtkWidget*
+gb_gnome_db_dataset_new (GbWidgetNewData *data)
+{
+ return gnome_db_dataset_new (NULL);
+}
+
+
+
+/*
+ * Creates the components needed to edit the extra properties of this widget.
+ */
+/*
+static void
+gb_gnome_db_dataset_create_properties (GtkWidget * widget, GbWidgetCreateArgData * data)
+{
+
+}
+*/
+
+
+
+/*
+ * Gets the properties of the widget. This is used for both displaying the
+ * properties in the property editor, and also for saving the properties.
+ */
+/*
+static void
+gb_gnome_db_dataset_get_properties (GtkWidget *widget, GbWidgetGetArgData * data)
+{
+
+}
+*/
+
+
+
+/*
+ * Sets the properties of the widget. This is used for both applying the
+ * properties changed in the property editor, and also for loading.
+ */
+/*
+static void
+gb_gnome_db_dataset_set_properties (GtkWidget * widget, GbWidgetSetArgData * data)
+{
+
+}
+*/
+
+
+
+/*
+ * Adds menu items to a context menu which is just about to appear!
+ * Add commands to aid in editing a GnomeDbBrowser, with signals pointing to
+ * other functions in this file.
+ */
+/*
+static void
+gb_gnome_db_dataset_create_popup_menu (GtkWidget * widget, GbWidgetCreateMenuData * data)
+{
+
+}
+*/
+
+
+
+/*
+ * Writes the source code needed to create this widget.
+ * You have to output everything necessary to create the widget here, though
+ * there are some convenience functions to help.
+ */
+static void
+gb_gnome_db_dataset_write_source (GtkWidget * widget, GbWidgetWriteSourceData * data)
+{
+ if (data->create_widget)
+ {
+ source_add (data, " %s = gnome_db_dataset_new (NULL);\n", data->wname);
+ }
+ gb_widget_write_standard_source (widget, data);
+}
+
+
+
+/*
+ * Initializes the GbWidget structure.
+ * I've placed this at the end of the file so we don't have to include
+ * declarations of all the functions.
+ */
+GbWidget*
+gb_gnome_db_dataset_init ()
+{
+ /* Initialise the GTK type */
+ gnome_db_dataset_get_type();
+
+ /* Initialize the GbWidget structure */
+ gb_widget_init_struct(&gbwidget);
+
+ /* Fill in the pixmap struct & tooltip */
+ gbwidget.pixmap_struct = gnome_db_dataset_xpm;
+ gbwidget.tooltip = _("Database Dataset");
+
+ /* Fill in any functions that this GbWidget has */
+ gbwidget.gb_widget_new = gb_gnome_db_dataset_new;
+ gbwidget.gb_widget_write_source = gb_gnome_db_dataset_write_source;
+/*
+ gbwidget.gb_widget_create_properties = gb_gnome_db_dataset_create_properties;
+ gbwidget.gb_widget_get_properties = gb_gnome_db_dataset_get_properties;
+ gbwidget.gb_widget_set_properties = gb_gnome_db_dataset_set_properties;
+ gbwidget.gb_widget_create_popup_menu = gb_gnome_db_dataset_create_popup_menu;
+*/
+
+ return &gbwidget;
+}
diff -u --new-file -r glade/glade/gnome-db/gnomedbdsnconfig.c glade.new/glade/gnome-db/gnomedbdsnconfig.c
--- glade/glade/gnome-db/gnomedbdsnconfig.c Thu Jan 1 01:00:00 1970
+++ glade.new/glade/gnome-db/gnomedbdsnconfig.c Sun Feb 11 20:25:58 2001
@@ -0,0 +1,156 @@
+/* Gtk+ User Interface Builder
+ * Copyright (C) 2001 Carlos Perelló Marín <carlos gnome-db org>
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#include <config.h>
+
+#include <gnome-db.h>
+#include "../gb.h"
+
+/* Include the 21x21 icon pixmap for this widget, to be used in the palette */
+#include "../graphics/gnome-db-dsnconfig.xpm"
+
+/*
+ * This is the GbWidget struct for this widget (see ../gbwidget.h).
+ * It is initialized in the init() function at the end of this file
+ */
+static GbWidget gbwidget;
+
+
+
+/******
+ * NOTE: To use these functions you need to uncomment them AND add a pointer
+ * to the function in the GbWidget struct at the end of this file.
+ ******/
+
+/*
+ * Creates a new GtkWidget of class GnomeDbDsnConfig, performing any specialized
+ * initialization needed for the widget to work correctly in this environment.
+ * If a dialog box is used to initialize the widget, return NULL from this
+ * function, and call data->callback with your new widget when it is done.
+ */
+static GtkWidget*
+gb_gnome_db_dsnconfig_new (GbWidgetNewData *data)
+{
+ return gnome_db_dsn_config_new (NULL);
+}
+
+
+
+/*
+ * Creates the components needed to edit the extra properties of this widget.
+ */
+/*
+static void
+gb_gnome_db_dsnconfig_create_properties (GtkWidget * widget, GbWidgetCreateArgData * data)
+{
+
+}
+*/
+
+
+
+/*
+ * Gets the properties of the widget. This is used for both displaying the
+ * properties in the property editor, and also for saving the properties.
+ */
+/*
+static void
+gb_gnome_db_dsnconfig_get_properties (GtkWidget *widget, GbWidgetGetArgData * data)
+{
+
+}
+*/
+
+
+
+/*
+ * Sets the properties of the widget. This is used for both applying the
+ * properties changed in the property editor, and also for loading.
+ */
+/*
+static void
+gb_gnome_db_dsnconfig_set_properties (GtkWidget * widget, GbWidgetSetArgData * data)
+{
+
+}
+*/
+
+
+
+/*
+ * Adds menu items to a context menu which is just about to appear!
+ * Add commands to aid in editing a GnomeDbBrowser, with signals pointing to
+ * other functions in this file.
+ */
+/*
+static void
+gb_gnome_db_dsnconfig_create_popup_menu (GtkWidget * widget, GbWidgetCreateMenuData * data)
+{
+
+}
+*/
+
+
+
+/*
+ * Writes the source code needed to create this widget.
+ * You have to output everything necessary to create the widget here, though
+ * there are some convenience functions to help.
+ */
+static void
+gb_gnome_db_dsnconfig_write_source (GtkWidget * widget, GbWidgetWriteSourceData * data)
+{
+ if (data->create_widget)
+ {
+ source_add (data, " %s = gnome_db_dsn_config_new (NULL);\n", data->wname);
+ }
+ gb_widget_write_standard_source (widget, data);
+}
+
+
+
+/*
+ * Initializes the GbWidget structure.
+ * I've placed this at the end of the file so we don't have to include
+ * declarations of all the functions.
+ */
+GbWidget*
+gb_gnome_db_dsnconfig_init ()
+{
+ /* Initialise the GTK type */
+ gnome_db_dsn_config_get_type();
+
+ /* Initialize the GbWidget structure */
+ gb_widget_init_struct(&gbwidget);
+
+ /* Fill in the pixmap struct & tooltip */
+ gbwidget.pixmap_struct = gnome_db_dsnconfig_xpm;
+ gbwidget.tooltip = _("DSN Configurator");
+
+ /* Fill in any functions that this GbWidget has */
+ gbwidget.gb_widget_new = gb_gnome_db_dsnconfig_new;
+ gbwidget.gb_widget_write_source = gb_gnome_db_dsnconfig_write_source;
+/*
+ gbwidget.gb_widget_create_properties = gb_gnome_db_dsnconfig_create_properties;
+ gbwidget.gb_widget_get_properties = gb_gnome_db_dsnconfig_get_properties;
+ gbwidget.gb_widget_set_properties = gb_gnome_db_dsnconfig_set_properties;
+ gbwidget.gb_widget_create_popup_menu = gb_gnome_db_dsnconfig_create_popup_menu;
+*/
+
+ return &gbwidget;
+}
diff -u --new-file -r glade/glade/gnome-db/gnomedbiconlist.c glade.new/glade/gnome-db/gnomedbiconlist.c
--- glade/glade/gnome-db/gnomedbiconlist.c Thu Jan 1 01:00:00 1970
+++ glade.new/glade/gnome-db/gnomedbiconlist.c Sun Feb 11 20:18:26 2001
@@ -0,0 +1,157 @@
+/* Gtk+ User Interface Builder
+ * Copyright (C) 2001 Carlos Perelló Marín <carlos gnome-db org>
+ *
+ * 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
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#include <config.h>
+
+#include <gnome-db.h>
+#include "../gb.h"
+
+/* Include the 21x21 icon pixmap for this widget, to be used in the palette */
+#include "../graphics/gnome-db-iconlist.xpm"
+
+/*
+ * This is the GbWidget struct for this widget (see ../gbwidget.h).
+ * It is initialized in the init() function at the end of this file
+ */
+static GbWidget gbwidget;
+
+
+
+/******
+ * NOTE: To use these functions you need to uncomment them AND add a pointer
+ * to the function in the GbWidget struct at the end of this file.
+ ******/
+
+/*
+ * Creates a new GtkWidget of class GnomeDbIconList, performing any specialized
+ * initialization needed for the widget to work correctly in this environment.
+ * If a dialog box is used to initialize the widget, return NULL from this
+ * function, and call data->callback with your new widget when it is done.
+ */
+static GtkWidget*
+gb_gnome_db_iconlist_new (GbWidgetNewData *data)
+{
+ return gnome_db_icon_list_new (NULL, 0);
+}
+
+
+
+/*
+ * Creates the components needed to edit the extra properties of this widget.
+ */
+/*
+static void
+gb_gnome_db_iconlist_create_properties (GtkWidget * widget, GbWidgetCreateArgData * data)
+{
+
+}
+*/
+
+
+
+/*
+ * Gets the properties of the widget. This is used for both displaying the
+ * properties in the property editor, and also for saving the properties.
+ */
+/*
+static void
+gb_gnome_db_iconlist_get_properties (GtkWidget *widget, GbWidgetGetArgData * data)
+{
+
+}
+*/
+
+
+
+/*
+ * Sets the properties of the widget. This is used for both applying the
+ * properties changed in the property editor, and also for loading.
+ */
+/*
+static void
+gb_gnome_db_iconlist_set_properties (GtkWidget * widget, GbWidgetSetArgData * data)
+{
+
+}
+*/
+
+
+
+/*
+ * Adds menu items to a context menu which is just about to appear!
+ * Add commands to aid in editing a GnomeDbBrowser, with signals pointing to
+ * other functions in this file.
+ */
+/*
+static void
+gb_gnome_db_iconlist_create_popup_menu (GtkWidget * widget, GbWidgetCreateMenuData * data)
+{
+
+}
+*/
+
+
+
+/*
+ * Writes the source code needed to create this widget.
+ * You have to output everything necessary to create the widget here, though
+ * there are some convenience functions to help.
+ */
+static void
+gb_gnome_db_iconlist_write_source (GtkWidget * widget, GbWidgetWriteSourceData * data)
+{
+ if (data->create_widget)
+ {
+ source_add (data, " %s = gnome_db_icon_list_new (NULL, 0);\n", data->wname);
+ }
+ gb_widget_write_standard_source (widget, data);
+}
+
+
+
+/*
+ * Initializes the GbWidget structure.
+ * I've placed this at the end of the file so we don't have to include
+ * declarations of all the functions.
+ */
+GbWidget*
+gb_gnome_db_iconlist_init ()
+{
+ /* Initialise the GTK type */
+ gnome_db_icon_list_get_type();
+
+ /* Initialize the GbWidget structure */
+ gb_widget_init_struct(&gbwidget);
+
+ /* Fill in the pixmap struct & tooltip */
+ gbwidget.pixmap_struct = gnome_db_iconlist_xpm;
+ gbwidget.tooltip = _("Database Icon List");
+
+ /* Fill in any functions that this GbWidget has */
+ gbwidget.gb_widget_new = gb_gnome_db_iconlist_new;
+ gbwidget.gb_widget_write_source = gb_gnome_db_iconlist_write_source;
+/*
+ gbwidget.gb_widget_create_properties = gb_gnome_db_iconlist_create_properties;
+ gbwidget.gb_widget_get_properties = gb_gnome_db_iconlist_get_properties;
+ gbwidget.gb_widget_set_properties = gb_gnome_db_iconlist_set_properties;
+ gbwidget.gb_widget_create_popup_menu = gb_gnome_db_iconlist_create_popup_menu;
+*/
+
+ return &gbwidget;
+}
+
diff -u --new-file -r glade/glade/graphics/gnome-db-dataset.xpm glade.new/glade/graphics/gnome-db-dataset.xpm
--- glade/glade/graphics/gnome-db-dataset.xpm Thu Jan 1 01:00:00 1970
+++ glade.new/glade/graphics/gnome-db-dataset.xpm Sun Feb 11 20:37:59 2001
@@ -0,0 +1,30 @@
+/* XPM */
+static char * gnome_db_dataset_xpm[] = {
+"21 21 6 1",
+" c None",
+". c #FFFFFF",
+"+ c #000000",
+"@ c #D6D6D6",
+"# c #7B7B7B",
+"$ c #0000FF",
+" ",
+" ",
+" ................+ ",
+" .@@@@@@@@@@@@@@#+ ",
+" .@@@@@@@@@@@@@@#+ ",
+" .@@@@@$$$$@@@@@#+ ",
+" .@@@@$$$$$$@@@@#+ ",
+" .@@@$$$@@@$$@@@#+ ",
+" .@@@$$@@@@@$@@@#+ ",
+" .@@@$$@@@@@@@@@#+ ",
+" .@@@$$@@@@@@@@@#+ ",
+" .@@@$$@@@@@$@@@#+ ",
+" .@@@$$$@@@$$@@@#+ ",
+" .@@@@$$$$$$@@@@#+ ",
+" .@@@@@$$$$@@@@@#+ ",
+" .@@@@@@@@@@@@@@#+ ",
+" .@@@@@@@@@@@@@@#+ ",
+" .###############+ ",
+" +++++++++++++++++ ",
+" ",
+" "};
diff -u --new-file -r glade/glade/graphics/gnome-db-dsnconfig.xpm glade.new/glade/graphics/gnome-db-dsnconfig.xpm
--- glade/glade/graphics/gnome-db-dsnconfig.xpm Thu Jan 1 01:00:00 1970
+++ glade.new/glade/graphics/gnome-db-dsnconfig.xpm Sun Feb 11 20:37:34 2001
@@ -0,0 +1,30 @@
+/* XPM */
+static char * gnome_db_dsnconfig_xpm[] = {
+"21 21 6 1",
+" c None",
+". c #FFFFFF",
+"+ c #000000",
+"@ c #D6D6D6",
+"# c #7B7B7B",
+"$ c #0000FF",
+" ",
+" ",
+" ................+ ",
+" .@@@@@@@@@@@@@@#+ ",
+" .@@@@@@@@@@@@@@#+ ",
+" .@@@@@$$$$@@@@@#+ ",
+" .@@@@$$$$$$@@@@#+ ",
+" .@@@$$$@@@$$@@@#+ ",
+" .@@@$$@@@@@$@@@#+ ",
+" .@@@$$@@@@@@@@@#+ ",
+" .@@@$$@@@@@@@@@#+ ",
+" .@@@$$@@@@@$@@@#+ ",
+" .@@@$$$@@@$$@@@#+ ",
+" .@@@@$$$$$$@@@@#+ ",
+" .@@@@@$$$$@@@@@#+ ",
+" .@@@@@@@@@@@@@@#+ ",
+" .@@@@@@@@@@@@@@#+ ",
+" .###############+ ",
+" +++++++++++++++++ ",
+" ",
+" "};
diff -u --new-file -r glade/glade/graphics/gnome-db-iconlist.xpm glade.new/glade/graphics/gnome-db-iconlist.xpm
--- glade/glade/graphics/gnome-db-iconlist.xpm Thu Jan 1 01:00:00 1970
+++ glade.new/glade/graphics/gnome-db-iconlist.xpm Sun Feb 11 20:37:12 2001
@@ -0,0 +1,30 @@
+/* XPM */
+static char * gnome_db_iconlist_xpm[] = {
+"21 21 6 1",
+" c None",
+". c #FFFFFF",
+"+ c #000000",
+"@ c #D6D6D6",
+"# c #7B7B7B",
+"$ c #0000FF",
+" ",
+" ",
+" ................+ ",
+" .@@@@@@@@@@@@@@#+ ",
+" .@@@@@@@@@@@@@@#+ ",
+" .@@@@@$$$$@@@@@#+ ",
+" .@@@@$$$$$$@@@@#+ ",
+" .@@@$$$@@@$$@@@#+ ",
+" .@@@$$@@@@@$@@@#+ ",
+" .@@@$$@@@@@@@@@#+ ",
+" .@@@$$@@@@@@@@@#+ ",
+" .@@@$$@@@@@$@@@#+ ",
+" .@@@$$$@@@$$@@@#+ ",
+" .@@@@$$$$$$@@@@#+ ",
+" .@@@@@$$$$@@@@@#+ ",
+" .@@@@@@@@@@@@@@#+ ",
+" .@@@@@@@@@@@@@@#+ ",
+" .###############+ ",
+" +++++++++++++++++ ",
+" ",
+" "};
diff -u --new-file -r glade/glade.desktop.in glade.new/glade.desktop.in
--- glade/glade.desktop.in Thu Jan 1 01:00:00 1970
+++ glade.new/glade.desktop.in Sun Feb 11 22:06:07 2001
@@ -0,0 +1,7 @@
+[Desktop Entry]
+_Name=Glade
+_Comment=GTK+ GUI builder
+Exec=glade
+Terminal=0
+Type=Application
+Icon=glade.png
diff -u --new-file -r glade/po/ChangeLog glade.new/po/ChangeLog
--- glade/po/ChangeLog Wed Feb 7 17:49:24 2001
+++ glade.new/po/ChangeLog Sun Feb 11 22:09:33 2001
@@ -1,3 +1,7 @@
+2001-02-11 Carlos Perelló Marín <carlos gnome-db org>
+
+ * POTFILES.in: Added new files to translate
+
2001-02-07 Christophe Merlet <redfox eikonex org>
* fr.po: Updated French translation.
diff -u --new-file -r glade/po/POTFILES.in glade.new/po/POTFILES.in
--- glade/po/POTFILES.in Sun Sep 24 22:59:36 2000
+++ glade.new/po/POTFILES.in Sun Feb 11 22:07:37 2001
@@ -1,4 +1,6 @@
# List of source files containing translatable strings.
+glade.desktop.in
+
glade/debug.c
glade/editor.c
glade/gbsource.c
@@ -135,9 +137,12 @@
glade/gnome-db/gnomedbbrowser.c
glade/gnome-db/gnomedbcombo.c
+glade/gnome-db/gnomedbdataset.c
+glade/gnome-db/gnomedbdnsconfig.c
glade/gnome-db/gnomedberror.c
glade/gnome-db/gnomedberrordlg.c
glade/gnome-db/gnomedbgrid.c
+glade/gnome-db/gnomedbiconlist.c
glade/gnome-db/gnomedblist.c
glade/gnome-db/gnomedblogin.c
glade/gnome-db/gnomedblogindlg.c
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]