Re: [Interest] represent QHostAddress as locale dependent string

2017-10-04 Thread Soroush Rabiei
On Thu, Sep 21, 2017 at 1:43 PM, Konrad Rosenbaum wrote: > > European/Latin derived scripts are left to right. Arabic and other Semitic > scripts are right to left. Fortunately they use the dot in a very similar > way to Latin based scripts. However: after you translated the digits from > Latin lo

Re: [Interest] represent QHostAddress as locale dependent string

2017-09-21 Thread Thiago Macieira
On quinta-feira, 21 de setembro de 2017 00:42:12 PDT Manner Róbert wrote: > I understand your point, and most probably there are bigger problems in the > world than this... I just wish if I knew if this is really a problem for > arabic users, never using myself apps other than english. > I would su

Re: [Interest] represent QHostAddress as locale dependent string

2017-09-21 Thread Manner Róbert
On Thu, Sep 21, 2017 at 11:13 AM, Konrad Rosenbaum wrote: > Hi, > > On Thu, September 21, 2017 09:42, Manner Róbert wrote: > > On Wed, Sep 20, 2017 at 5:49 PM, Thiago Macieira > > > > wrote: > >> IP addresses are not localiseable. > >> > > > > I understand your point, and most probably there ar

Re: [Interest] represent QHostAddress as locale dependent string

2017-09-21 Thread Konrad Rosenbaum
Hi, On Thu, September 21, 2017 09:42, Manner Róbert wrote: > On Wed, Sep 20, 2017 at 5:49 PM, Thiago Macieira > > wrote: >> IP addresses are not localiseable. >> > > I understand your point, and most probably there are bigger problems in > the > world than this... I just wish if I knew if this i

Re: [Interest] represent QHostAddress as locale dependent string

2017-09-21 Thread Reinhardt Behm
On Thursday 21 September 2017 09:43:17 Manner Róbert wrote: > On Wed, Sep 20, 2017 at 2:35 PM, Konstantin Tokarev > wrote: > 20.09.2017, 15:17, "Manner Róbert" : > > Hi, > > > > is there a way convert an ip address locale dependent as string? I mean, > > similarly as QLocale().toString() does for

Re: [Interest] represent QHostAddress as locale dependent string

2017-09-21 Thread Manner Róbert
On Wed, Sep 20, 2017 at 2:35 PM, Konstantin Tokarev wrote: > > > 20.09.2017, 15:17, "Manner Róbert" : > > Hi, > > > > is there a way convert an ip address locale dependent as string? I mean, > similarly as QLocale().toString() does for numbers or dates: for eg arabic > locale it gives back arabic

Re: [Interest] represent QHostAddress as locale dependent string

2017-09-21 Thread Manner Róbert
On Wed, Sep 20, 2017 at 5:49 PM, Thiago Macieira wrote: > On quarta-feira, 20 de setembro de 2017 05:16:51 PDT Manner Róbert wrote: > > Hi, > > > > is there a way convert an ip address locale dependent as string? I mean, > > similarly as QLocale().toString() does for numbers or dates: for eg > ar

Re: [Interest] represent QHostAddress as locale dependent string

2017-09-20 Thread Thiago Macieira
On quarta-feira, 20 de setembro de 2017 05:16:51 PDT Manner Róbert wrote: > Hi, > > is there a way convert an ip address locale dependent as string? I mean, > similarly as QLocale().toString() does for numbers or dates: for eg arabic > locale it gives back arabic "hieroglyphs". > > I have tried Q

Re: [Interest] represent QHostAddress as locale dependent string

2017-09-20 Thread Konstantin Tokarev
20.09.2017, 15:17, "Manner Róbert" : > Hi, > > is there a way convert an ip address locale dependent as string? I mean, > similarly as QLocale().toString() does for numbers or dates: for eg arabic > locale it gives back arabic "hieroglyphs". > > I have tried QHostAddress::toString(), but it sti

[Interest] represent QHostAddress as locale dependent string

2017-09-20 Thread Manner Róbert
Hi, is there a way convert an ip address locale dependent as string? I mean, similarly as QLocale().toString() does for numbers or dates: for eg arabic locale it gives back arabic "hieroglyphs". I have tried QHostAddress::toString(), but it still returns european numbers for eg arabic. Thanks fo