Re: Bad string from the translation point of view
От | Ashesh Vashi |
---|---|
Тема | Re: Bad string from the translation point of view |
Дата | |
Msg-id | CAG7mmoyav-j03h4T9c3TcmoAzrDEjjuZ5uB-2jBHhko2BV=X5w@mail.gmail.com обсуждение исходный текст |
Ответ на | Bad string from the translation point of view (Marek Černocký <marek@manet.cz>) |
Ответы |
Re: Bad string from the translation point of view
|
Список | pgadmin-hackers |
On Fri, Nov 28, 2014 at 3:48 AM, Marek Černocký <marek@manet.cz> wrote:
The construction:
if (wxMessageBox(_("Are you sure you wish to move objects from ") +
GetQuotedFullIdentifier() + _(" to ") + rdo.GetTablespace() + _("?"),
_("Move tablespace?"), wxYES_NO) != wxYES)
return;
in pgadmin/schema/pgTablespace.cpp is bad from the point of view of
translation. It should be:
if (wxMessageBox(wxString::Format(_("Are you sure you wish to move
objects from %s to %s?"), GetQuotedFullIdentifier(),
rdo.GetTablespace()), _("Move tablespace?"), wxYES_NO) != wxYES)
return;
Agree.
Dave,
Can we consider this as bug?
Regards
Marek Černocký
--
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers
В списке pgadmin-hackers по дате отправления: