-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
4634 lines (2656 loc) · 112 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2017-12-03 fell
* Bug 782423 - Help 10.2. Setting Preferences is outdated #105 (HEAD -> maint, origin/maint)
2017-12-03 David Thomas
* Changing text in Help to reflect changes in Preferences dialogs. The changes are in Preferences:Business, Preferences:Register, and Preferences:Scheduled Transactions. Unfortunately, my computer (a Mac) does not look the same as the screenshots in the docs; someone with the correct look should create screenshots of these three preferences tabs.
2017-10-04 fell
* Translation of the german guides metafile
2017-10-04 fell
* Fix a typo in the german guide
2017-10-04 fell
* remove duplicated lines from russian metafile
2017-08-05 fell
* Merge branch 'Bug120940' into maint (HEAD -> maint, origin/maint)
2017-08-05 fell
* Freeze help/it/gnucash-help.xml.
2017-08-05 fell
* Reset it/gnucash-help to commit 78cfa76: Remove author emails ...
2017-07-30 fell
* Remove obsolete gnucash-guide-C.omf.out
2017-07-30 fell
* Bug 120940 - automatic decimal point & calculations fail
2017-07-25 Frank H. Ellenberger
* Merge pull request #104 from DiMan/russian_ch_accts
2017-07-24 Frank H. Ellenberger
* Merge pull request #103 from DiMan/patch-2
2017-07-24 DiMan
* small spelling fix
2017-07-24 Frank H. Ellenberger
* Merge pull request #102 from DiMan/german_ch_basics
2017-07-24 Frank H. Ellenberger
* Update ch_basics.xml
2017-07-24 Frank H. Ellenberger
* Merge pull request #101 from DiMan/russian_ch_basics
2017-07-24 Frank H. Ellenberger
* Merge pull request #100 from DiMan/russian_ch_gnucash_guide
2017-07-23 Di Mang
* russian translation for 3. chapter "Accounts"
2017-07-23 Di Mang
* Update for chapter "Basics"
2017-07-23 Di Mang
* Update for some screenshots
2017-07-20 Di Mang
* Improvement of the graphical representation for 5 basic accounts
2017-07-20 Di Mang
* small spelling fixes for german translation
2017-07-20 Di Mang
* russian translation for chapter "Basics"
2017-07-20 Di Mang
* russian translation
2017-07-05 Frank H. Ellenberger
* Merge pull request #97 from DiMan/maint
2017-07-05 Frank H. Ellenberger
* Update ch_oview.xml
2017-07-03 Geert Janssens
* Merge branch 'r1' of https://github.com/phil-davis/gnucash-docs into maint
2017-07-03 Phil Davis
* Fix 1 remaining 'incomes'
2017-07-02 Di Mang
* spelling fix (german) - chapter Overview
2017-07-02 DiMan
* Update guide/ru/Makefile.am (again)
2017-06-30 DiMan
* Update translators and rename the file
2017-07-02 Geert Janssens
* Ignore target directory for help in html format as well
2017-07-01 DiMan
* Update .gitignore
2017-06-27 DiMan
* update .gitignore - ignore the temporary png-files
2017-07-01 John Ralls
* Fix misnamed russian omf file. (HEAD, maint)
2017-06-30 fell
* Improve I18n of gnucash-guide (origin/maint)
2017-06-30 Frank H. Ellenberger
* Merge pull request #92 from DiMan/guide-ru-initial
2017-06-30 fell
* Remove obsolete help/pt/gnucash-help-C.omf
2017-06-30 fell
* Set the right subject category in OMF files
2017-06-30 Frank H. Ellenberger
* Update gnucash-guide-de.omf
2017-06-29 Dima
* omf file for Scrollkeeper/yelp
2017-06-26 Dima
* These files are not relevant now
2017-06-26 Dima
* russian translation
2017-06-26 Dima
* Add the new directory "ru" into configuration files
2017-06-26 Dima
* copy of the files from guide/C
2017-06-14 Anthony Hepple
* Fix typos.
2017-05-09 David Thomas
* Improvement of PR#89 - Bug 781711: Add reversing transaction definition
2017-05-07 fell
* Improve in GuiMenus "Close Book" decription
2017-04-29 David Thomas
* Bug 781714: Add Reversing Transaction text for Help document
2017-04-25 David Thomas
* Bug 781711: Add reversing transaction definition
2017-03-27 Phil Davis
* Minor doc spelling and grammar
2017-03-25 John Ralls
* Merge branch 'regview' into maint (HEAD, origin/maint, maint)
2017-03-23 goodvibes2
* Remove section "Changing the Register View" as better handled in Guide section 4.2
2017-03-10 goodvibes2
* Bug 769457 More info re register views
2017-03-25 John Ralls
* Merge branch 'viewlots3' into maint
2017-03-22 goodvibes2
* Bug 774658 Add warning to delete lot before deleting a cap gain/loss transaction
2017-03-20 goodvibes2
* Use − instead of - for subtraction or -ve nos
2017-03-20 goodvibes2
* Fix indentation and some long lines ch_invest.xml
2017-03-02 goodvibes2
* Bug 755174 How to handle commission when buying and selling securities
2017-02-10 fell
* Set PACKAGE_BUGREPORT and PACKAGE_URL
2017-02-08 fell
* Glossary: Transactions have at least 2 splits
2017-01-23 Derek Atkins
* it's builddir, not buildir
2017-02-06 David Thomas
* Bug 777891 - Guide Glossary lacks proper ID tag or mention in Basics Chapter.
2017-02-05 Geert Janssens
* Update Italian guide translation following the merge of business chapters
2017-01-28 David Thomas
* Golly. Keep missing things!
2017-01-28 David Thomas
* Commit to rename to ch_bus_features.xml
2017-01-28 David Thomas
* Bug 777318 - Restructure Business Features Chapters.
2017-01-16 David Thomas
* Bug 777287: Guide portion
2017-01-16 David Thomas
* Bug 777287: Small changes to Guide Chapter 4.4 and Help Chapter 5.8 to add info about selecting all transactions in reconcile window.
2017-01-17 Mechtilde
* add translation of the new parts of ch_currency.xml
2017-01-16 Mechtilde
* change date of Englisch text in ch_oview.xml
2017-01-16 Mechtilde
* complete translation of ch_oview.xml
2017-01-16 Mechtilde
* translation of about author
2017-01-07 Christian Stimming
* Updated German translation of initial Help chapter.
2016-12-18 John Ralls
* Merge Phil Davis's gramnar and spelling fixes into maint
2016-12-18 Phil Davis
* Review of Help docs for typos and grammar (davis3)
2016-12-18 Phil Davis
* gnucash-guide.xml minor comment typo
2016-12-18 Phil Davis
* xmldocs.make minor comment typo (davis)
2016-12-17 John Ralls
* Update AUTHORS. (HEAD, maint)
2016-12-13 John Ralls
* Bug 775919 - Change Documentation of contributors (origin/maint)
2016-12-13 John Ralls
* Clean up additional help sections, making them (mostly) the same in both manuals.
2016-12-13 John Ralls
* Remove author emails to enhance privacy and discourage users from contacting them directly.
2016-12-10 John Ralls
* Update author list, version, and modification date for recently-revised ch_currency and ch_reports.
2016-12-10 John Ralls
* Re-merge David T.'s GnuCash Glossary.
2016-12-06 David T
* Revise glossary with better definitions and attribution.
2016-12-09 John Ralls
* Merge David T's new glossary into maint.
2016-12-06 David T
* Bug-743671: Add glossary to Tutorial and Guide.
2016-12-09 John Ralls
* Add new (from bug 633590 change) ch_reports.xml to guide C and it Makefile.am.
2016-12-09 John Ralls
* Replace defective Italian gnucash-guide.xml with a working one.
2016-12-06 David T
* Bug-770371 - Add note to documentation regarding Sort order options. Added to table in Help Section 4.3.2.3
2016-12-06 John Ralls
* Improve ch_currency formatting of tables and charts of accounts.
2016-12-06 David T
* Bug 775592 - General Rewrite of Guide Chapter on Multiple Currencies
2016-12-06 John Ralls
* Update guide/it/gnucash.xml with new chapter 10 'Reports'.
2016-12-06 John Ralls
* Fix build-script error in Italian help.
2016-11-30 fell
* Review of PR #74: Update translation
2016-11-28 Mechtilde
* prepared for PR
2016-11-27 Mechtilde
* mask links which can't refer to
2016-11-27 Mechtilde
* adoption to the first pull request
2016-11-27 Mechtilde
* Part II - translation of commit 1d753e94eebb107470514a67f246a767736ad572
2016-11-26 Mechtilde
* Part I from commit 1d753e94eebb107470514a67f246a767736ad572
2016-11-26 Mechtilde
* translate commit 2ba657161c81c66afc8ecabb79c1d6df2b4010b4
2016-11-26 Mechtilde
* translate commit c768b012db3216d835f1f4e3220ce75323cf7904 and add Englih screenshot
2016-11-26 Mechtilde
* corrected Makefile.am
2016-11-26 Mechtilde
* update gnucash-guide.xml
2016-11-26 Mechtilde
* translation of chapter Expense Accounts
2016-11-26 Mechtilde
* initial commit of guide/de/ch_expenses.xml
2016-11-26 Mechtilde
* translation of commit 09b13337cb88a80d832c20509ce5e3a09845d739
2016-11-26 Mechtilde
* translation of commit 25d860df72259f48bf532a401ad25a238c6105d5
2016-11-26 Mechtilde
* translation of commit bb525f98b551ac5ab18ba6512f385cbc1af1b184
2016-11-26 Mechtilde
* translation of commit commit df47fc56e6a94d275962366a93fcc977754ad1dd
2016-11-23 Mechtilde
* translation of commit 1259a0c4006827fc8b6418a65c8d780c0b26ea14
2016-10-31 Mechtilde
* added ch_expenses.xml and ch_reports.xml
2016-11-30 Pedro Albuquerque
* pt section of l10n.xml
2016-11-17 John Ralls
* Merge suplementary account-setup change from Dave T.
2016-11-16 David T
* Bug-397145 - Second change on this bug, as I overlooked issue noted in comment 6 on Bugzilla.
2016-11-15 John Ralls
* Merge Sunfish's Bug 397135 doc update about hidden accounts in pick lists.
2016-11-13 John Ralls
* Merge Pull Request 71, Bug 755174 Help Document Lots in Account window, into maint
2016-11-10 goodvibes2
* Fix incorrect use of mdash See discussion https://github.com/Gnucash/gnucash-docs/pull/71
2016-11-05 goodvibes2
* Bug 755174 Help Document Lots in Account window
2016-11-07 David T
* Small addition to Help File to explain that Hidden accounts still display in Account selector.
2016-11-06 John Ralls
* Merge branch 'adjust-dpi' of https://github.com/goodvibes2/gnucash-docs into maint
2016-11-05 goodvibes2
* adjust-dpi.sh: round to 1 dec instead of 2 for Help images
2016-10-30 goodvibes2
* Update dpi of guide PNGs now adjust-dpi.sh fixed
2016-10-31 goodvibes2
* Bug 755174 Document using Lots to create investment capital gains transactions
2016-10-27 goodvibes2
* Fix comment guide ch_invest.xml
2016-10-27 goodvibes2
* Whitespace cleanup help
2016-10-27 goodvibes2
* Whitespace cleanup guide
2016-10-21 David T
* Bug-633590 Update and activate Reports chapter.
2016-09-23 fell
* Add optional requirement gnome-doc-utils to README
2016-09-17 John Ralls
* Updated Italian translation with new expenses chapter (which isn't translated).
2016-09-16 John Ralls
* Release 2.6.14 (HEAD, tag: 2.6.14, maint)
2016-09-16 John Ralls
* Check for changes in guide/C/gnucash-guide.xml to decide whether to rebuild the Italian translation.
2016-09-16 John Ralls
* Add test to prevent moving gnucash-foo.xml when building in source.
2016-09-16 John Ralls
* Add new guide/C/ch_expenses.xml to Makefiles.
2016-09-16 David T
* Bug 769457: Add note to 4.3 of Guide (bug)
2016-09-16 David T
* Patch to add new chapter for expense type accounts. Bug 687290
2016-09-15 John Ralls
* Bug 769746 - Zero interest loan formula fails. (origin/maint)
2016-09-15 John Ralls
* Fix build failure in Italian translation.
2016-09-13 John Ralls
* Update Italian xml files to match current state of English documentation.
2016-09-13 John Ralls
* Automate regeneration of the Italian xml files.
2016-09-13 John Ralls
* Bug 771230 - Modify Windows portion of 8.6.3 of Guide
2016-09-13 John Ralls
* Bug 743672 - Remove What's New Sections in Chapter 1 of Guide.
2016-08-29 goodvibes2
* Modify adjust-dpi.sh to work with Ubuntu
2016-08-29 goodvibes2
* Add some extra entries to .gitignore so can use netbeans ide xlm editor + jEdit
2016-08-10 fell
* Bug 769663 - gnucash-devel - Link update on Tutorial and concepts guide
2016-08-10 fell
* Provide the pt guide for other country setting than PT
2016-08-10 fell
* Revert the italian update from the last commit
2016-08-09 fell
* Replace the confusing Release_Schedule link by 2.6-release-tour and website
2016-07-28 goodvibes2
* Bug 115461 - Slightly improve grammar.
2016-07-28 goodvibes2
* Bug 115461 - Highlight need to select Account Type when adding new stk acct
2016-08-08 fell
* Udated german translation of the F::Q appendix
2016-08-08 fell
* Update the list of Finance::Quote methods to 1.38
2016-06-24 goodvibes2
* Bug 637004 Document Payable/Receivable Aging Rpts and new options for allowing customer and vendor address info to display (HEAD, origin/maint, maint)
2016-06-22 goodvibes2
* Fix unclear statement re docbook stylesheets in README.
2016-04-18 Chris Good
* Document Investment Return of Capital in the Guide - Bug 765131
2016-04-21 Chris Good
* Clarify Account type designations in the Tutorial - Bug 712764
2016-04-22 Chris Good
* Explain how to use Find Transaction to report per-employee - Bug 751686
2016-03-28 Chris Good
* Fix order of Report menu items - Bug 754239
2016-03-28 Chris Good
* Update Report menu item names to Save Report Configuration - Bug 754239
2016-03-26 John Ralls
* Add Portuguese help omf, fix up guide omf. (HEAD, maint)
2016-03-20 Chris Good
* Add Help Doc for invoice bad debt write offs Bug 729265
2016-03-26 John Ralls
* Bug 762088 - Remove Section 9.4.3 From Guide
2016-03-20 Chris Good
* Add Help Doc for invoice bad debt write offs Bug 729265 (origin/maint)
2016-03-19 Geert Janssens
* Document partial date entry and how to configure it
2016-03-17 Geert Janssens
* Bug 728722 - Setting number format details appear wrong in Help, section 10.3.4. Counters Book Options Tab
2016-03-06 Chris Good
* Add missing sect Guide ch2.8 New book options in New Acct Hierarchy Bug 761025
2016-03-07 Geert Janssens
* Add adjust-dpi.sh script to utils
2016-03-05 pmralbuquerque
* Adjust dpi of images in Portuguese translation
2016-03-07 Geert Janssens
* Fix name of omf file
2016-03-03 Geert Janssens
* Fix typo
2016-02-28 pmralbuquerque
* Reset reports after make check
2016-02-28 pmralbuquerque
* Reset reports before make check
2016-02-26 pmralbuquerque
* Minor translation
2016-02-26 pmralbuquerque
* Commit after US-lang testing
2016-02-26 pmralbuquerque
* Draft for Accounts Summary
2016-02-26 pmralbuquerque
* Some work on the proposed documentation for reports
2016-02-22 pmralbuquerque
* Still the make Check
2016-02-22 pmralbuquerque
* Still the make check
2016-02-22 pmralbuquerque
* Correcting errors with make check
2016-03-03 Geert Janssens
* Have configure create guide/pt/Makefile
2016-02-22 pmralbuquerque
* Rename pt_PT pt
2016-02-18 pmralbuquerque
* Add initial Portuguese translation of the guide (work in progress)
2016-02-24 David T
* Simple commit to address issue I raised on Bugzilla, Bug 762088.
2016-02-24 David T
* Patch to add note for Balance Column resize (Bug 762656)
2016-01-28 fell
* Update the API section in Creating Reports
2016-01-27 fell
* Add an ID to the last inserted section
2016-01-27 Chris Good
* Add instructions for over payments - Bug 729265
2016-01-26 Chris Good
* Add format token lli in Help Counters Book Options Tab - Bug 728722
2016-01-26 fell
* Remove obsolete version number from README
2016-01-26 John Ralls
* Remove build product accidentally committed.
2016-01-26 fell
* Minor improvements of commit 5b40697
2016-01-26 Chris Good
* Add links to where common report preferences are set - Bug 649283
2016-01-26 Chris Good
* Update instructions for updating quote prices by cron - Bug 639776
2016-01-25 Chris Good
* Explain buttons in Report Options dialog - Bug 649283
2016-01-19 John Ralls
* Merge branch 'Portuguese-help-translation' into maint
2016-01-19 John Ralls
* Finish installation of pt translation.
2016-01-19 John Ralls
* Rename pt_PT to just pt.
2016-01-19 pmralbuquerque
* completed help translation
2016-01-18 pmralbuquerque
* Updated translations
2016-01-17 pmralbuquerque
* Updated translations
2016-01-16 pmralbuquerque
* Updated translations
2016-01-15 pmralbuquerque
* Updated translations
2016-01-14 pmralbuquerque
* Updated translations
2016-01-12 pmralbuquerque
* Updated translations
2016-01-10 pmralbuquerque
* Updated translations
2016-01-10 pmralbuquerque
* Updated translations. Added some more icons
2016-01-09 pmralbuquerque
* Image testings
2016-01-09 pmralbuquerque
* Updated translations and added some icons
2016-01-08 pmralbuquerque
* Updated translations
2016-01-07 pmralbuquerque
* Updated translations
2016-01-06 Pedro Albuquerque
* Updated pt_PT translations
2016-01-10 John Ralls
* Bug 760407 - Note account separator isn't always a colon. (HEAD, origin/maint, maint)
2016-01-09 John Ralls
* Remove 'Remainder To' from loan assistant page 2.
2016-01-02 John Ralls
* Clarify that creating a postponed SX will use the original date.
2016-01-02 Mechtilde
* small corrections of the translated text
2016-01-02 Mechtilde
* corrections and German screenshots for chapter bus_ap
2016-01-01 Mechtilde
* corrections and German screenshots for chapter bus_ar
2016-01-01 John Ralls
* Use letter size paper only in US or C locales.
2016-01-01 John Ralls
* Bug 760016 - 2.6.10 and master dump script error while running configure
2016-01-01 Mechtilde
* corrections and German screenshots for chapter bus_intro and bus_setup
2016-01-01 Mechtilde
* corrections and German screenshots for chapter currency - finished
2015-12-31 Mechtilde
* corrections and German screenshots for chapter currency - part boat
2015-12-31 Mechtilde
* corrections and German screenshots for chapter currency - first part
2015-12-31 Mechtilde
* corrections and German screenshots for chapter capgain
2015-12-31 Mechtilde
* first changes for chapter cap_gains
2015-12-30 Mechtilde
* translated screenshot for chapter invest
2015-12-31 fell
* Add Eclipse specific files to gitignore
2015-12-31 fell
* Improve german wordening around the last commit
2015-12-31 fell
* Formal accounting terms are selectable on the preferences accounts tab
2015-12-31 fell
* Add missing file to guide/de/Makefile.am
2015-12-30 John Ralls
* Add missing sect1 element.
2015-12-30 Mechtilde
* add als few corrections
2015-12-30 Mechtilde
* add some more files needed translation
2015-12-30 Mechtilde
* add inforamtion about chapter import_business_data
2015-12-30 Mechtilde
* add inforamtion about chapter python_bindings
2015-12-30 Mechtilde
* add inforamtion about chapter oth_assets and dep
2015-12-30 Mechtilde
* add inforamtion about chapter budgets
2015-12-30 Mechtilde
* ad inforamtion about chapter bus_pay
2015-12-30 Mechtilde
* adapt chapter bus_ap after translation chapter bus_setup
2015-12-30 Mechtilde
* adapt chapter bus_ar after translation chapter bus_setup
2015-12-30 Mechtilde
* finishing German translation of chapter bus_setup
2015-12-29 Mechtilde
* add the corresponding English screenshots
2015-12-29 Mechtilde
* first part of German translation of chapter bus_setup
2015-12-21 Mechtilde
* adapt Makefile.am and gnucash-guide.xml to chapter ch_bus_setup
2015-12-13 Mechtilde
* initial commit for German translation of chapter bus_setup
2015-12-29 John Ralls
* Fix invalid child element errors.
2015-12-29 Mechtilde
* finished German translation of chapter bus_intro
2015-12-21 Mechtilde
* adapt Makefile.am and gnucash-guide.xml to chapter ch_bus_intro
2015-12-13 Mechtilde
* initial commit for German translation of chapter bus_intro
2015-12-29 Mechtilde
* finishe German translation of chapter currency