Re: [GNC-dev] build fail maint and master related to scm - no code for module

2020-02-29 Thread c . holtermann
maint and master compile fine now, great ! thanks ! Christoph Am 2020-02-28 19:34, schrieb Geert Janssens: There were several issues which your logs below nicely illustrated. Interestingly these issues only surfaced when using the cmake's makefile generator. All was fine using ninja. This shows

Re: [GNC-dev] [GNC] Failed - import of QIF files from Quicken

2020-02-29 Thread Christopher Lam
I think I've nailed this bug. Apply this modification to qif-to-gnc.scm and it should handle empty S fields. C modified gnucash/import-export/qif-imp/qif-to-gnc.scm @@ -584,13 +584,11 @@ (hash-ref qif-memo-map qif-memo))) (

Re: [GNC-dev] Build on MacOS

2020-02-29 Thread jean laroche
I started from a fresh user, with no trace of brew. I'm getting many fails. I created a pastebin with the messages of a re-run of jhbuild build, so you can see the details: https://pastebin.com/293FMgVk Let me know what you think. I'll be away from the mac until next Wed, but I'll be within em

Re: [GNC-dev] Build on MacOS

2020-02-29 Thread John Ralls
Skipping the itstool module caused the gtk-doc failure, and skipping that caused the gtk+ failure, and so on. When a build fails you have to fix it, so don't *ever* use [3] give up on module. The itstool failure itself is because python3 when built from scratch doesn't create a python or python

[GNC-dev] translating python - how to generate pot file?

2020-02-29 Thread c . holtermann
Hello, I got stuck trying to implement the python translations. I have cleaned up the PR: https://github.com/Gnucash/gnucash/pull/655 I'd like to add some translations but I don't manage to get that done. It seems to me that the next step would be creating the pot file. There is documentation (

Re: [GNC-dev] Report stylesheets are broken in git 3.8b-169-gb9d625d25+(2020-02-28)

2020-02-29 Thread Richard Ullger
On 29/02/2020 00:26, Christopher Lam wrote: > This may be caused by some recent changes to html-fonts when the gtk > theme is dark. Tell us what theme you're using? > I'm using kde plasma with the breeze-dark theme and krita dark colour scheme. GTK theme is breeze dark. Gnucash doesn't adhere to

Re: [GNC-dev] translating python - how to generate pot file?

2020-02-29 Thread John Ralls
Christoph, Please post the output of `make pot` or `ninja pot` and remind us what OS you're building on. Regards, John Ralls > On Feb 29, 2020, at 2:49 PM, c.holterm...@gmx.de wrote: > > Hello, > > I got stuck trying to implement the python translations. I have cleaned > up the PR: https://gi

Re: [GNC-dev] translating python - how to generate pot file?

2020-02-29 Thread c . holtermann
Hello John, I'm on debian buster. make pot leads to make: *** Keine Regel, um „pot“ zu erstellen. Schluss. or LANG=en_US.utf8 make pot make: *** No rule to make target 'pot'. Stop. or using ninja: make ninja ninja: error: unknown target 'pot', did you mean 'foo'? make pot on branch 3.

Re: [GNC-dev] translating python - how to generate pot file?

2020-02-29 Thread c . holtermann
Hello, I don't have gettext 0.20. That disables potfile generation. It would be helpful if that message was shown when trying to make pot. If I remove that condition in CMakeList.txt pot file gets build. I'll work with that one to provide german translations for the python strings. regards, Chr