Fix typo [Euler Taveira de Oliveira]
authordpage <dpage@a7884b65-44f6-0310-8a51-81a127f17b15>
Sat, 5 Dec 2009 09:06:56 +0000 (09:06 +0000)
committerdpage <dpage@a7884b65-44f6-0310-8a51-81a127f17b15>
Sat, 5 Dec 2009 09:06:56 +0000 (09:06 +0000)
git-svn-id: svn://svn.pgadmin.org/trunk/pgadmin3@8117 a7884b65-44f6-0310-8a51-81a127f17b15

pgadmin/schema/pgTable.cpp

index 3e4bef4c38a1213104458da2da4d79890fc37770..3b34a887f59d2af6aba3b59b13c787e59ad414b6 100644 (file)
@@ -1618,7 +1618,7 @@ truncateCascadedFactory::truncateCascadedFactory(menuFactoryList *list, wxMenu *
 
 wxWindow *truncateCascadedFactory::StartDialog(frmMain *form, pgObject *obj)
 {
-    if (wxMessageBox(_("Are you sure you wish to truncate this table and all tables that have foreign key references to this table?\n\nWARNING: This action will delete ALL data in the table!"), _("Truncate table cascaded"), wxYES_NO) == wxNO)
+    if (wxMessageBox(_("Are you sure you wish to truncate this table and all tables that have foreign key references to this table?\n\nWARNING: This action will delete ALL data in the tables!"), _("Truncate table cascaded"), wxYES_NO) == wxNO)
         return 0;
 
     ((pgTable*)obj)->Truncate(true);