Commit Graph

104 Commits

Author SHA1 Message Date
Richard Cohen
a63247ba49 Fix a typo in French Canadian account template 2023-05-13 13:03:51 +01:00
Frank H. Ellenberger
b9c5416a00 Merge PR #1457 into maint 2023-02-19 17:42:42 +01:00
Frank H. Ellenberger
d922876d18 L10N:DE:SKR04 drop a placeholder 2023-02-19 15:01:49 +01:00
Ralf Habacker
7c605043c3 Bug 798732: Type of balance carry forward accounts for german skr49 account template fixed
The accounts listed are of the EQUITY type and not ASSET.
2023-01-24 11:08:25 +01:00
Julien Bartels
020934c3a4 L10N:DE:Updating accounts from 0001 to 8000 DATEV-SKR04 2022-01-01
type="new"
2022-11-10 13:38:07 +01:00
Laurent Bigonville
6730bc05f2 Standardize the root "Equity" account as "Capitaux propres"
All other French account templates are already doing so
2022-09-07 11:22:59 +02:00
Laurent Bigonville
e19b9f7479 Standardize the root assets account as "Actif"
All other French templates are already doing so
2022-09-07 11:21:47 +02:00
alexchap
d4622e7748 Update CMakeLists.txt
Add pme-19 template
2022-08-25 21:55:39 +02:00
alexchap
b91e81aff9 Create acctchrt_pme-19.gnucash-xea
Swiss SMB account chart

Update acctchrt_pme-19.gnucash-xea

Fix name of parent equity account + children
2022-08-25 21:55:38 +02:00
Franco Berni
eb48f0830e Add account hierarchy templates for locale es_AR 2022-07-01 11:52:00 -03:00
Frank H. Ellenberger
5aa09bc559 Review of account templates C—missing placeholders, redundancies 2022-06-29 11:29:00 +02:00
Geert Janssens
04bafdebf0 Redo icon handling in cmake
Using globs for file copying prevents cmake from discovering newly added icons.
Writing rules that explicitly use lists of icons will fix this as a new icon
in the sources will have to be added to the list and will force reparsing by
cmake. We have to maintain the lists anyway for our dist target so there's
actually no extra work involved for the devs.
2022-04-03 19:22:56 +02:00
pmraps
de935c6f3c L10N:pt_PT: add templates checkbook and business
squashed PR #1234
2022-01-12 15:16:27 +01:00
Brian Hsu
250444b3ba Mark non-leaf account as placeholder in zh_TW example. 2021-06-07 14:19:41 +08:00
Brian Hsu
496a85fb38 add account examples for zh_TW. 2021-06-06 22:14:09 +08:00
Timotheus Pokorra
51fb3f361e SKR-49: add missing code 4500-4504 2021-06-02 19:12:13 +02:00
Timotheus Pokorra
ce1818da08 SKR49: drop duplicate account 5490 2021-06-02 19:11:10 +02:00
Timotheus Pokorra
e8a36ddb95 SKR49: fix account code 0674 2021-06-02 19:10:22 +02:00
Robert Fewell
2be07b3e1c Make the chart on the report page icon larger to align better with the account page icon. 2021-03-23 10:25:03 +00:00
Philip Munksgaard
62914acd08
Also make underholdning and afstemning placeholders
As per the discussion in https://github.com/Gnucash/gnucash/pull/873#pullrequestreview-567912602
2021-01-16 10:14:16 +01:00
Frank H. Ellenberger
e6b97849a5 Merge PR #874 into maint 2021-01-14 08:26:19 +01:00
Philip Munksgaard
42c692250b
Rename "Amt" to "Region" in Danish template
There have not been any "Amt" in Denmark since 2007. The new name is "Region".
2021-01-13 20:27:28 +01:00
Philip Munksgaard
985271daa5
Mark most parent accounts as placeholders in Danish templates
Most of these, like "Udgifter", correspond directly to directly to en_GB
equivalents, like "Expenses". However, unlike in the en_GB version, the parent
accounts in the Danish templates are not marked as placeholders.

I have used my own judgement in a few cases where there was no direct equivalent
in the en_GB templates.
2021-01-13 20:22:53 +01:00
Frank H. Ellenberger
4016819959 Fix indentation of accounts/de_AT/common
Seen in Bug 798038 Part 2: Austria
2020-12-31 23:36:51 +01:00
Frank H. Ellenberger
60aededafb Bug 798038 - Incorrect spelling in german account templates 'common' and
'full' part 2: AT

Also Austria writes "Einkommensteuer"
2020-12-28 17:23:54 +01:00
Geert Janssens
8d61642095 Bug 798038 - Incorrect spelling in german account templates 'common' and 'full' 2020-12-20 16:00:58 +01:00
pmraps
7322e2edb8 Translation Update pt
Update glossary/pt.po
Update Spouse income accounts
Update home loan accounts
2020-11-29 14:56:04 +00:00
Ralf Habacker
573f7aaa0b Add slot "equity-type" with value "opening-balance" to account templates
The slots are added by running `util/add-opening-balances` on the
gnucash sources.
2020-11-16 08:51:51 +01:00
Frank H. Ellenberger
c1bd4c0e25 Bug 775582 - Change "Petrol" (or Gas if seen in USA) to "Fuel" 2020-07-25 15:59:36 +02:00
John Ralls
20d53cc765 Merge branch 'maint' 2020-05-07 13:05:50 -07:00
Thomas Schärli
79910e8439 L10N:de_CH: Ein weiterer Tippfehler im Kontenrahmen KMU 2020-05-05 20:23:30 +02:00
Geert Janssens
0cfb40efeb CMake - use configure_file instead of file(COPY ) wherever possible
file(COPY ) will only trigger when the destination file doesn't exist yet.
It won't retrigger on source file changes.
configure_file on the other hand will. To avoid unwanted substitution
attempts this can be invoked with the COPYONLY keyword.
Disadvantage of configure_file is that it will only take one
input file where file(COPY ) can operate on a list of files.
As such the configure_file statement has to be wrapped in a foreach.

A few uses of file(COPY ) can't be replaced as they are setting
file permissions. And the one in make_dist has been kept as that
always operates on an empty directory, hence copying is guaranteed.

The former will monitor the file for updates and copy it again
the latter will only copy the file if it doesn't exist in the destination yet
2020-04-19 21:23:22 +02:00
Thomas Schärli
0d0fddcfc5 L12N:de_CH: 3 Typos in KMU 2020-03-30 22:29:15 +02:00
shastry
0654cb5a27
Remove unwanted space from xmlns sodipodi URI.
SVG icon doesn't open with latest librsvg (2.48) due to bad URI.
XML parse error: error code=99 (3) in (null):10:72: xmlns:sodipodi: 'http://inkscape.sourceforge.net/DTD/s odipodi-0.dtd' is not a valid URI
2020-03-09 09:42:06 +05:30
Frank H. Ellenberger
5592100053 L12N:de_DE: SKR04: Do not hide accounts in templates
A former contributor had hidden several accounts, which he in his
business did not use. New users might have no clue about their
existence. To avoid cluttering the drop-down list they are now marked as
placeholder.
2020-03-04 13:42:08 +01:00
Frank H. Ellenberger
fb9e695b45 L12N:de_DE: SKR04: Part 2 of Bug 513000
Caused by an error in the german translation in 2005 I had created many
accounts of type PAYABLE, which should have been normal LIABILITY
accounts. They should not show up in the "Post [invoice] to account"
list.

Because the other german contributors in 2008 did not understand the
difference between the account types, the change had been rejected for
SKR04, although it was accepted for SKR03.
2020-03-04 09:37:07 +01:00
Frank H. Ellenberger
a6c31860ed L12N:de_DE: SKR04: Add a few missing placeholder flags, fix a typo 2020-03-04 09:37:06 +01:00
Frank H. Ellenberger
21a039f278 L12N:de_DE: Remove some redundant slots from SKR04
empty notes, flags with value false, ...

- reduces the size by 30%
2020-03-04 09:37:06 +01:00
Frank H. Ellenberger
0e6c9e2191 Merge PR #635 into maint 2020-02-19 02:27:24 +01:00
Frank H. Ellenberger
0964b31c47 L12N:de_CH: Several fixes on KMU template
Add missing namespaces.
Replace type="guid" by type="new".
Add Placeholder slot to groups.
Remove redundant
   '<act:commodity-scu>100</act:commodity-scu>' and
   '<act:description>.*</act:description>'
<act:type> adjustments:
   RECEIVABLE should only be used for invoices,
   PAYABLE: "Verbindlichkeiten aus Lieferungen und Leistungen"
   (at least one) EQUITY is required. Because we currently do not have
an account type PASSIVA, the node "Passiven" was replaced by a note in
<description> it's child accounts.
2020-02-19 01:34:53 +01:00
Geert Janssens
f27cbd4a11 Fix dist after renaming account directory hu_HU to hu 2020-02-08 13:19:23 +01:00
Frank H. Ellenberger
3fd7f19f62 Merge branch 'PR609' into maint 2020-01-29 08:33:28 +01:00
Robert Fewell
253707e199 Fix some account template issues 2020-01-19 13:25:03 +00:00
Frank H. Ellenberger
df4b728dbd Minor adjustments of ch/kmu 2013 based on emails
Also drop the obsolete chkmu
2020-01-14 22:41:42 +01:00
Marco Blind
4510a52f79 L12N:de_CH: Kontenplan für KMU, gültig seit 2013, Teil 1 2020-01-14 22:02:04 +01:00
Frank H. Ellenberger
3c6ad3ae82 L12N:hu Remove region code from account templates directory
There is no region specific file, but the language is also used in other
regions: https://hu.wikipedia.org/wiki/Magyar_nyelv
2020-01-07 13:47:50 +01:00
Ordtrogen
d688b6b15f L12N:sv_SE: Update account hierarchies according to BAS 2019 2020-01-03 17:06:15 +01:00
Frank H. Ellenberger
f4379bbd8c UK VAT template: replace obsolete EEC and EC by EU 2019-10-08 22:48:42 +02:00
Frank H. Ellenberger
e3ba73683e Fix file copy destination for accounts/he 2019-08-29 18:53:47 +02:00
Christopher Lam
2fa442638d fix typo in he/CMakelists.txt templates dist_list 2019-08-27 22:29:45 +08:00