mirror of
https://github.com/Gnucash/gnucash.git
synced 2025-02-25 18:55:30 -06:00
* src/import-export/qif-import/qif-parse.scm: fix i18n
* src/import-export/qif-import/qif-import.scm: don't use gw-gnc git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@6321 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
parent
d7bd4bd160
commit
3490f91e25
@ -7,7 +7,7 @@
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
|
||||
(define-module (gnucash import-export qif-import))
|
||||
(use-modules (gnucash main) (g-wrapped gw-gnc)) ;; FIXME: delete after we finish modularizing.
|
||||
(use-modules (gnucash main)) ;; FIXME: delete after we finish modularizing.
|
||||
(use-modules (g-wrapped gw-runtime))
|
||||
(use-modules (gnucash gnc-module))
|
||||
(use-modules (ice-9 slib))
|
||||
@ -19,6 +19,7 @@
|
||||
|
||||
(gnc:module-load "gnucash/engine" 0)
|
||||
(gnc:module-load "gnucash/app-utils" 0)
|
||||
(gnc:module-load "gnucash/gnome-utils" 0)
|
||||
|
||||
(load-from-path "qif-import/qif-objects.scm") ;; class definitions
|
||||
(load-from-path "qif-import/qif-parse.scm") ;; string-to-value
|
||||
|
@ -252,12 +252,13 @@
|
||||
'xout)
|
||||
; ((vest)
|
||||
; 'vest)
|
||||
(else
|
||||
(else
|
||||
(gnc:warning-dialog
|
||||
(string-append
|
||||
(sprintf #f "The file contains an unknown Action '%s'.\n"
|
||||
(string-append
|
||||
(sprintf #f (_ "The file contains an unknown Action '%s'.")
|
||||
read-value)
|
||||
"Some transactions may be discarded."))
|
||||
"\n"
|
||||
(_ "Some transactions may be discarded.")))
|
||||
#f)))
|
||||
#f))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user