[gnome-db] Fix for #153292: Unlocalized Items in Mergeant Database
- From: Jorge Bernal <koke amedias org>
- To: Gnome-DB <gnome-db-list gnome org>
- Subject: [gnome-db] Fix for #153292: Unlocalized Items in Mergeant Database
- Date: Tue, 12 Apr 2005 14:33:50 +0200
I've done this little patch, which fixes #153292, I'd like
you to review it and apply. I'm not sure if it's the Right
Way :)
Thanks,
Koke
PS: The patch is also attached to the bug report.
Index: libgda/gda-config.c
===================================================================
RCS file: /cvs/gnome/libgda/libgda/gda-config.c,v
retrieving revision 1.62
diff -u -3 -p -r1.62 gda-config.c
--- libgda/gda-config.c 23 Jan 2005 18:35:20 -0000 1.62
+++ libgda/gda-config.c 11 Apr 2005 09:46:22 -0000
@@ -1372,7 +1372,6 @@ gda_config_get_data_source_list (void)
GdaDataSourceInfo *info;
info = g_new0 (GdaDataSourceInfo, 1);
- info->name = g_strdup ((const gchar *) l->data);
/* get the provider */
tmp = g_strdup_printf ("%s/%s/Provider", GDA_CONFIG_SECTION_DATASOURCES, (char *) l->data);
@@ -1399,6 +1398,12 @@ gda_config_get_data_source_list (void)
info->password = gda_config_get_string (tmp);
g_free (tmp);
+ if (!g_strncmp ("Default", l->data, 7)) {
+ /* This is the default data source name */
+ info->name = g_strdup (_("Default"));
+ } else {
+ info->name = g_strdup ((const gchar *) l->data);
+ }
list = g_list_append (list, info);
}
--
Personal: koke sindominio net :: koke amedias org
Jabber: koke zgzjabber ath cx
Blog: http://koke.amedias.org/
"Aquel que recibe de mi una idea se instruye a si mismo sin disminuir mi
educacion; como aquel que encienda su vela en la mia, recibe luz sin
ensombrecerme."
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]