glom r1631 - in trunk: . glom



Author: murrayc
Date: Sat Jun 21 17:22:35 2008
New Revision: 1631
URL: http://svn.gnome.org/viewvc/glom?rev=1631&view=rev

Log:
2008-06-21  Murray Cumming  <murrayc murrayc com>

* glom/dialog_import_csv_progress.cc: on_idle_import(): Corrected the grammar 
in two strings.

Modified:
   trunk/ChangeLog
   trunk/glom/dialog_import_csv_progress.cc

Modified: trunk/glom/dialog_import_csv_progress.cc
==============================================================================
--- trunk/glom/dialog_import_csv_progress.cc	(original)
+++ trunk/glom/dialog_import_csv_progress.cc	Sat Jun 21 17:22:35 2008
@@ -128,7 +128,7 @@
 
   if(m_current_row == m_data_source->get_row_count())
   {
-    // Don't response immediately, so the user has a chance to read the
+    // Don't do the response immediately, so the user has a chance to read the
     // warnings and errors, if any.
     set_response_sensitive(Gtk::RESPONSE_CANCEL, false);
     set_response_sensitive(Gtk::RESPONSE_OK, true);
@@ -156,7 +156,7 @@
           {
             value = Gnome::Gda::Value();
 
-            Glib::ustring message(Glib::ustring::compose(_("Warning importing row %1: The value for field %2 must be unique, but is already in use. Don't importing the value.\n"), m_current_row + 1, field->get_name()));
+            const Glib::ustring message(Glib::ustring::compose(_("Warning: Importing row %1: The value for field %2 must be unique, but is already in use. The value will not be imported.\n"), m_current_row + 1, field->get_name()));
             add_text(message);
           }
         }
@@ -165,7 +165,7 @@
       }
       else
       {
-        Glib::ustring message(Glib::ustring::compose(_("Warning importing row %1: The value for field %2, \"%3\" could not be converted to the field's type. Don't importing the value.\n"), m_current_row + 1, field->get_name(), m_data_source->get_data(m_current_row, i)));
+        const Glib::ustring message(Glib::ustring::compose(_("Warning: Importing row %1: The value for field %2, \"%3\" could not be converted to the field's type. The value will not be imported.\n"), m_current_row + 1, field->get_name(), m_data_source->get_data(m_current_row, i)));
         add_text(message);
       }
     }



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