strings fixes - Mailing list pgadmin-hackers

From Timon
Subject strings fixes
Date
Msg-id BANLkTikMB40-qiC8JvXoUHSBek0pbb69+g@mail.gmail.com
Whole thread Raw
Responses Re: strings fixes  (Dave Page <dpage@pgadmin.org>)
List pgadmin-hackers
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

Attachment

pgadmin-hackers by date:

Previous
From: Dave Page
Date:
Subject: Google Summer of Code 2011
Next
From: Guillaume Lelarge
Date:
Subject: Rework on the dialogs UI