Bad string from the translation point of view

Поиск
Список
Период
Сортировка
От Marek Černocký
Тема Bad string from the translation point of view
Дата
Msg-id 1417126720.23556.35.camel@sirius
обсуждение исходный текст
Ответы Re: Bad string from the translation point of view
Список pgadmin-hackers
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;


Regards
Marek Černocký



В списке pgadmin-hackers по дате отправления:

Предыдущее
От: Alexey Loginov
Дата:
Сообщение: Fwd: Wrong desktop file
Следующее
От: Sanket Mehta
Дата:
Сообщение: Re: potential invalid input field of pgAdmin New Column GUI