Re: strings fixes

From: Dave Page <dpage(at)pgadmin(dot)org>
To: Timon <timosha(at)gmail(dot)com>
Cc: pgadmin-hackers <pgadmin-hackers(at)postgresql(dot)org>
Subject: Re: strings fixes
Date: 2011-04-07 12:46:46
Message-ID: BANLkTimVZna3BPFagwcdPsLL6hopzmwNyw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Thanks, patch applied.

On Thu, Apr 7, 2011 at 11:03 AM, Timon <timosha(at)gmail(dot)com> wrote:
> In some files I found strings like this:
> Are you sure you wish to drop column \"%s?\"
> but they should be like this
> Are you sure you wish to drop column \"%s\"?
>
> Patch in attachment fixes all such occurrences.
> Or you can just run little script:
> find -name *.cpp -exec sed -i 's/\\"%s?\\"/\\"%s\\"?/' {} \;
>
> --
> All bugs reserved
>
>
> --
> 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
Blog: http://pgsnake.blogspot.com
Twitter: @pgsnake

EnterpriseDB UK: http://www.enterprisedb.com
The Enterprise PostgreSQL Company

In response to

Responses

Browse pgadmin-hackers by date

  From Date Subject
Next Message Dave Page 2011-04-07 12:58:11 Re: Rework on the dialogs UI
Previous Message Dave Page 2011-04-07 12:46:45 pgAdmin III commit: Fix a number of strings where question marks were i