[libgda] Fixed more typos, thanks again to Andika Triwidada



commit 1b9b18a004380bdd4387a6dcaf07f8b80fe58356
Author: Vivien Malerba <malerba gnome-db org>
Date:   Mon Jul 9 21:52:06 2012 +0200

    Fixed more typos, thanks again to Andika Triwidada

 providers/jdbc/libmain.c                          |    2 +-
 providers/mysql/mysql_specs_create_view.xml.in    |    2 +-
 providers/sqlite/sqlite_specs_create_table.xml.in |    2 +-
 tools/browser/common/gdaui-data-import.c          |    2 +-
 tools/browser/ldap-browser/hierarchy-view.c       |    2 +-
 tools/browser/support.h                           |    2 +-
 6 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/providers/jdbc/libmain.c b/providers/jdbc/libmain.c
index a00d206..b944c07 100644
--- a/providers/jdbc/libmain.c
+++ b/providers/jdbc/libmain.c
@@ -480,7 +480,7 @@ load_jvm ()
 	else {
 		__CreateJavaVM = NULL;
 		if (g_getenv ("GDA_SHOW_PROVIDER_LOADING_ERROR"))
-			g_warning (_("Could not the JVM runtime (libjvm.so), JDBC provider is unavailable."));
+			g_warning (_("Could not find the JVM runtime (libjvm.so), JDBC provider is unavailable."));
 	}
 
 	g_static_mutex_unlock (&vm_create);
diff --git a/providers/mysql/mysql_specs_create_view.xml.in b/providers/mysql/mysql_specs_create_view.xml.in
index 82bbf1f..45c5c24 100644
--- a/providers/mysql/mysql_specs_create_view.xml.in
+++ b/providers/mysql/mysql_specs_create_view.xml.in
@@ -4,7 +4,7 @@
     <parameter id="VIEW_NAME" _name="Name" _descr="View's name" gdatype="gchararray" nullok="FALSE">
       <gda_value>table_name</gda_value>
     </parameter>
-    <parameter id="VIEW_OR_REPLACE" _name="Replace it already exists" _descr="Replace view definition if it already exists" gdatype="gboolean">
+    <parameter id="VIEW_OR_REPLACE" _name="Replace if it already exists" _descr="Replace view definition if it already exists" gdatype="gboolean">
       <gda_value>FALSE</gda_value>
     </parameter>
     <parameter id="VIEW_DEF" _name="Definition" _descr="View's definition" gdatype="gchararray" nullok="FALSE"/>
diff --git a/providers/sqlite/sqlite_specs_create_table.xml.in b/providers/sqlite/sqlite_specs_create_table.xml.in
index ec5f3ba..d50c086 100644
--- a/providers/sqlite/sqlite_specs_create_table.xml.in
+++ b/providers/sqlite/sqlite_specs_create_table.xml.in
@@ -26,7 +26,7 @@
     <gda_array_field id="COLUMN_CHECK" _name="Check" _descr="Check constraint" gdatype="gchararray"/>
     <!-- To translators: "Compare method" refers to the method SQLite has to compare values -->
     <gda_array_field id="COLUMN_COLLATE" _name="Compare method" _descr="Collation name (BINARY|NOCASE)" gdatype="gchararray"/>
-    <gda_array_field id="COLUMN_CONFLICT" _name="Conflict" _descr="Conflict resolution method (ROLLBACK|ABORT|FAIL|IGNORE|REPLACE" gdatype="gchararray"/>
+    <gda_array_field id="COLUMN_CONFLICT" _name="Conflict" _descr="Conflict resolution method (ROLLBACK|ABORT|FAIL|IGNORE|REPLACE)" gdatype="gchararray"/>
   </gda_array>
 
   <!-- foreign key spec: not supported by SQLite -->
diff --git a/tools/browser/common/gdaui-data-import.c b/tools/browser/common/gdaui-data-import.c
index 5c21fd1..8b90093 100644
--- a/tools/browser/common/gdaui-data-import.c
+++ b/tools/browser/common/gdaui-data-import.c
@@ -212,7 +212,7 @@ gdaui_data_import_init (GdauiDataImport * import)
 	g_signal_connect (G_OBJECT (entry), "toggled",
 			  G_CALLBACK (spec_changed_cb), import);
 
-	entry = gtk_radio_button_new_with_label_from_widget (GTK_RADIO_BUTTON (entry), _("Semi column"));
+	entry = gtk_radio_button_new_with_label_from_widget (GTK_RADIO_BUTTON (entry), _("Semi colon"));
 	import->priv->sep_array [SEP_SEMICOL] = entry;
 	gtk_table_attach (GTK_TABLE (table), entry, 2, 3, 3, 4, GTK_FILL, 0, 0, 0);
 	g_object_set_data (G_OBJECT (entry), "_sep", ";");
diff --git a/tools/browser/ldap-browser/hierarchy-view.c b/tools/browser/ldap-browser/hierarchy-view.c
index 6bdb44e..b5138bd 100644
--- a/tools/browser/ldap-browser/hierarchy-view.c
+++ b/tools/browser/ldap-browser/hierarchy-view.c
@@ -565,7 +565,7 @@ go_to_row (HierarchyView *eview, GtkTreePath *path)
 		else {
 			/* DN not found! */
 			browser_show_message (GTK_WINDOW (gtk_widget_get_toplevel ((GtkWidget*) eview)),
-					      _("Could not find LDAP entry whith DN '%s'"), tofind);
+					      _("Could not find LDAP entry with DN '%s'"), tofind);
 			goto out;
 		}
 	}
diff --git a/tools/browser/support.h b/tools/browser/support.h
index ebb5a6f..bfd4590 100644
--- a/tools/browser/support.h
+++ b/tools/browser/support.h
@@ -120,7 +120,7 @@ GdaDataModel       *browser_get_connections_list (void);
 			 "<b><tt>##&lt;variable name&gt;::&lt;type&gt;[::null]</tt></b>\n" \
 			 "For example:\n"				\
 			 "<span foreground=\"#4e9a06\"><b><tt>##id::int</tt></b></span>\n      defines <b>id</b> as a non NULL integer\n" \
-			 "<span foreground=\"#4e9a06\"><b><tt>##age::string::null</tt></b></span>\n      defines <b>age</b> as a a string\n\n" \
+			 "<span foreground=\"#4e9a06\"><b><tt>##age::string::null</tt></b></span>\n      defines <b>age</b> as a string\n\n" \
 			 "Valid types are: <tt>string</tt>, <tt>boolean</tt>, <tt>int</tt>,\n" \
 			 "<tt>date</tt>, <tt>time</tt>, <tt>timestamp</tt>, <tt>guint</tt>, <tt>blob</tt> and\n" \
 			 "<tt>binary</tt></small>")



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]