Re: Bad string from the translation point of view

From: Guillaume Lelarge <guillaume(at)lelarge(dot)info>
To: Ashesh Vashi <ashesh(dot)vashi(at)enterprisedb(dot)com>
Cc: Marek Černocký <marek(at)manet(dot)cz>, Dave Page <dpage(at)pgadmin(dot)org>, pgadmin-hackers <pgadmin-hackers(at)postgresql(dot)org>
Subject: Re: Bad string from the translation point of view
Date: 2014-11-28 21:39:35
Message-ID: CAECtzeXKnAX4yxNrpdNgm4JFxKu=mMZ+bRDLogb1GZSupWwzWA@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

2014-11-28 15:13 GMT+01:00 Ashesh Vashi <ashesh(dot)vashi(at)enterprisedb(dot)com>:

> On Fri, Nov 28, 2014 at 3:48 AM, Marek Černocký <marek(at)manet(dot)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?
>
>
If you mean for 1.18, no. But 1.20, sure.

--
Guillaume.
http://blog.guillaume.lelarge.info
http://www.dalibo.com

In response to

Responses

Browse pgadmin-hackers by date

  From Date Subject
Next Message Sean Lavine 2014-11-28 23:45:10 tabbed query windows
Previous Message Guillaume Lelarge 2014-11-28 18:50:53 pgAdmin III commit: Update czech translation