Re: small typo

From: Dave Page <dpage(at)pgadmin(dot)org>
To: Euler Taveira de Oliveira <euler(at)timbira(dot)com>
Cc: pgadmin-hackers <pgadmin-hackers(at)postgresql(dot)org>
Subject: Re: small typo
Date: 2009-12-05 09:10:58
Message-ID: 937d27e10912050110o6f2636drde61aaa2ca401fa6@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Thanks - applied to trunk (not to the 1.10 branch as it'll break all
the translations).

On Sat, Dec 5, 2009 at 3:00 AM, Euler Taveira de Oliveira
<euler(at)timbira(dot)com> wrote:
> Hi,
>
> While updating the pt-br translation, I noticed that the sentence "This action
> will delete ALL data in the table!" should use the plural form i.e. "This
> action will delete ALL data in the tables!" when it is used for TRUNCATE ...
> CASCADE. Trivial patch is attached.
>
>
> --
>  Euler Taveira de Oliveira
>  http://www.timbira.com/
>
> Index: pgadmin/schema/pgTable.cpp
> ===================================================================
> --- pgadmin/schema/pgTable.cpp  (revisão 8098)
> +++ pgadmin/schema/pgTable.cpp  (cópia de trabalho)
> @@ -1618,7 +1618,7 @@
>
>  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);
>
>
> --
> Sent via pgadmin-hackers mailing list (pgadmin-hackers(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgadmin-hackers
>
>

--
Dave Page
EnterpriseDB UK: http://www.enterprisedb.com

In response to

  • small typo at 2009-12-05 03:00:03 from Euler Taveira de Oliveira

Browse pgadmin-hackers by date

  From Date Subject
Next Message Guillaume Lelarge 2009-12-05 19:23:38 Next patch for 8.5 support: columns for UPDATE event in CREATE TRIGGER
Previous Message svn 2009-12-05 09:06:57 SVN Commit by dpage: r8117 - trunk/pgadmin3/pgadmin/schema