Re: Localization (i18n) Options

2017-11-30 Thread Ivan Trombley via Digitalmars-d
Figured it out. I was initializing some member strings where they were declared in a class. I just needed to move that initialization to the constructor.

Re: Localization (i18n) Options

2017-11-30 Thread Ivan Trombley via Digitalmars-d
On Thursday, 30 November 2017 at 00:50:35 UTC, Gerald wrote: On Tuesday, 28 November 2017 at 07:39:19 UTC, Ivan Trombley wrote: On Sunday, 24 January 2016 at 19:18:28 UTC, Gerald wrote: On Monday, 18 January 2016 at 09:04:48 UTC, Luis wrote: Please, write a HowTo some where. GtkD lack of

Re: Localization (i18n) Options

2017-11-30 Thread drug via Digitalmars-d
it was typo, should be https://gitHub.com/gnunn1/tilix

Re: Localization (i18n) Options

2017-11-29 Thread Gerald via Digitalmars-d
On Tuesday, 28 November 2017 at 07:39:19 UTC, Ivan Trombley wrote: On Sunday, 24 January 2016 at 19:18:28 UTC, Gerald wrote: On Monday, 18 January 2016 at 09:04:48 UTC, Luis wrote: Please, write a HowTo some where. GtkD lack of documentation it's very anoying. I've gotten this going with

Re: Localization (i18n) Options

2017-11-27 Thread Ivan Trombley via Digitalmars-d
On Sunday, 24 January 2016 at 19:18:28 UTC, Gerald wrote: On Monday, 18 January 2016 at 09:04:48 UTC, Luis wrote: Please, write a HowTo some where. GtkD lack of documentation it's very anoying. I've gotten this going with Terminix and posted some information what it took to get it going

Re: Localization (i18n) Options

2016-01-24 Thread Luis via Digitalmars-d
On Sunday, 24 January 2016 at 19:18:28 UTC, Gerald wrote: On Monday, 18 January 2016 at 09:04:48 UTC, Luis wrote: Please, write a HowTo some where. GtkD lack of documentation it's very anoying. I've gotten this going with Terminix and posted some information what it took to get it going

Re: Localization (i18n) Options

2016-01-24 Thread Gerald via Digitalmars-d
On Monday, 18 January 2016 at 09:04:48 UTC, Luis wrote: Please, write a HowTo some where. GtkD lack of documentation it's very anoying. I've gotten this going with Terminix and posted some information what it took to get it going here: http://gexperts.com/wp/gtkd-and-localization/

Re: Localization (i18n) Options

2016-01-18 Thread Luis via Digitalmars-d
On Monday, 18 January 2016 at 14:00:05 UTC, Gerald wrote: On Monday, 18 January 2016 at 09:04:48 UTC, Luis wrote: On Sunday, 17 January 2016 at 03:03:14 UTC, Gerald wrote: On Sunday, 17 January 2016 at 02:51:30 UTC, Gerald wrote: Are there any other options out there that I might not be aware

Re: Localization (i18n) Options

2016-01-18 Thread Gerald via Digitalmars-d
On Monday, 18 January 2016 at 09:04:48 UTC, Luis wrote: On Sunday, 17 January 2016 at 03:03:14 UTC, Gerald wrote: On Sunday, 17 January 2016 at 02:51:30 UTC, Gerald wrote: Are there any other options out there that I might not be aware of? And of course, 10 minutes later you stumble across a

Re: Localization (i18n) Options

2016-01-18 Thread Luis via Digitalmars-d
On Sunday, 17 January 2016 at 03:03:14 UTC, Gerald wrote: On Sunday, 17 January 2016 at 02:51:30 UTC, Gerald wrote: Are there any other options out there that I might not be aware of? And of course, 10 minutes later you stumble across a potential option. Looks like GLib exposes gettext and

Re: Localization (i18n) Options

2016-01-18 Thread Mike Wey via Digitalmars-d
On 01/18/2016 04:06 PM, Luis wrote: Were I can find the script to generate ddox for GtkD ? https://github.com/gtkd-developers/GtkD/blob/master/makeddox.sh -- Mike Wey

Re: Localization (i18n) Options

2016-01-18 Thread karabuta via Digitalmars-d
On Monday, 18 January 2016 at 15:06:12 UTC, Luis wrote: On Monday, 18 January 2016 at 14:00:05 UTC, Gerald wrote: [...] I browse your code and grestful code a few times. I did stuff with GtkD on a different approach, using GtkBuilder and Gtk autolink of functions by name. I try to avoid

Re: Localization (i18n) Options

2016-01-18 Thread Johannes Pfau via Digitalmars-d
Am Mon, 18 Jan 2016 14:00:05 + schrieb Gerald : > On Monday, 18 January 2016 at 09:04:48 UTC, Luis wrote: > > On Sunday, 17 January 2016 at 03:03:14 UTC, Gerald wrote: > >> On Sunday, 17 January 2016 at 02:51:30 UTC, Gerald wrote: > >>> Are there any other options out there

Re: Localization (i18n) Options

2016-01-16 Thread Gerald via Digitalmars-d
On Sunday, 17 January 2016 at 02:51:30 UTC, Gerald wrote: Are there any other options out there that I might not be aware of? And of course, 10 minutes later you stumble across a potential option. Looks like GLib exposes gettext and GtkD does wrap it so I'll play around with that and see if

Localization (i18n) Options

2016-01-16 Thread Gerald via Digitalmars-d
I have a GtkD application for Linux where I would like to support localization. The current options in D seem pretty limited with the most recent being i18n-d (https://github.com/JakobOvrum/i18n-d). My code is structured for GNU gettext but I could make the effort and convert it to the way

Re: Localization (i18n) Options

2016-01-16 Thread Jakob Ovrum via Digitalmars-d
On Sunday, 17 January 2016 at 02:51:30 UTC, Gerald wrote: I have a GtkD application for Linux where I would like to support localization. The current options in D seem pretty limited with the most recent being i18n-d (https://github.com/JakobOvrum/i18n-d). My code is structured for GNU