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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
|
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * l10n_nl
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server saas~11.5+e\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-09-17 13:45+0000\n"
"PO-Revision-Date: 2018-09-17 13:45+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4043
msgid "\"Congressen, seminars en symposia\""
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_0
msgid "0% BTW"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_0_d
msgid "0% BTW diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_I_overig
msgid "0% BTW import binnen EU"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_I_overig_d
msgid "0% BTW import binnen EU diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_verk_0
msgid "0% BTW verlegd"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_20
msgid "1a. Leveringen/diensten belast met 21% (BTW)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_03
msgid "1a. Leveringen/diensten belast met hoog tarief (omzet)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_22
msgid "1b. Leveringen/diensten belast met laag tarief (BTW)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_05
msgid "1b. Leveringen/diensten belast met laag tarief (omzet)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_23
msgid "1c. Leveringen/diensten belast met overige tarieven behalve 0% (BTW)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_06
msgid "1c. Leveringen/diensten belast met overige tarieven behalve 0% (omzet)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_24
msgid "1d. Privégebruik (BTW)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_07
msgid "1d. Privégebruik (omzet)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_25
msgid "1e. Leveringen/diensten belast met 0% of niet bij u belast (BTW)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_08
msgid "1e. Leveringen/diensten belast met 0% of niet bij u belast (omzet)"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_21
#: model:account.tax.template,description:l10n_nl.btw_21_buy
msgid "21% BTW"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_21_buy_incl
msgid "21% BTW Incl."
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_21_buy_d
#: model:account.tax.template,description:l10n_nl.btw_21_d
msgid "21% BTW diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_I_21
msgid "21% BTW import binnen EU"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_I_21_d
msgid "21% BTW import binnen EU diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_ink_0
msgid "21% BTW verlegd"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_27
msgid "2a. Leveringen/diensten waarbij de heffing van Heffing van omzetbelasting naar u is verlegd (BTW)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_10
msgid "2a. Leveringen/diensten waarbij de heffing van omzetbelasting naar u is verlegd (omzet)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_12
msgid "3a. Leveringen naar landen buiten de EU (uitvoer) (omzet)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_41
msgid "3b. Leveringen naar/diensten in landen binnen de EU (omzet) (diensten)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_40
msgid "3b. Leveringen naar/diensten in landen binnen de EU (omzet) (producten)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_14
msgid "3c. Installatie/afstandsverkopen binnen de EU (omzet)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_29
msgid "4a. Leveringen/diensten uit landen buiten de EU (BTW)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_16
msgid "4a. Leveringen/diensten uit landen buiten de EU (invoer) (omzet)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_30
msgid "4b. Leveringen/diensten uit landen binnen de EU (BTW)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_17
msgid "4b. Leveringen/diensten uit landen binnen de EU (omzet)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_32
msgid "5a. Verschuldigde omzetbelasting (rubrieken 1a t/m 4b) (BTW)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_33
msgid "5b. Voorbelasting (BTW)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_35
msgid "5c. Subtotaal (rubriek 5a min 5b) (BTW)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_36
msgid "5d. Vermindering volgens de kleineondernemersregeling (BTW)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_37
msgid "5e. Schatting vorige aangifte(n) (BTW)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_38
msgid "5f. Schatting deze aangifte (BTW)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_39
msgid "5g. Totaal te betalen/terug te vragen (BTW)"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_6
#: model:account.tax.template,description:l10n_nl.btw_6_buy
msgid "6% BTW"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_6_buy_incl
msgid "6% BTW Incl."
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_6_buy_d
#: model:account.tax.template,description:l10n_nl.btw_6_d
msgid "6% BTW diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_I_6
msgid "6% BTW import binnen EU"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_I_6_d
msgid "6% BTW import binnen EU diensten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1509
msgid "Aan mij verrichte leveringen binnen EU"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1508
msgid "Aan mij verrichte leveringen buiten EU"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0610
msgid "Aandelenkapitaal"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0310
msgid "Aanschafwaarde Bedrijfsinventaris"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0330
msgid "Aanschafwaarde Fabrieksinventaris"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0110
msgid "Aanschafwaarde Gebouwen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0340
msgid "Aanschafwaarde Gereedschappen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0010
msgid "Aanschafwaarde Goodwill"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0101
msgid "Aanschafwaarde Grond "
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0370
msgid "Aanschafwaarde Kantine-inventaris"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0350
msgid "Aanschafwaarde Kantoorinventaris"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0360
msgid "Aanschafwaarde Kantoormachines"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0210
msgid "Aanschafwaarde Machines 1"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0220
msgid "Aanschafwaarde Machines 2"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0320
msgid "Aanschafwaarde Magazijninventaris"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0410
msgid "Aanschafwaarde Personenauto's"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0130
msgid "Aanschafwaarde Verbouwingen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0430
msgid "Aanschafwaarde Vrachtauto's"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0120
msgid "Aanschafwaarde Winkels"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0020
msgid "Aanschafwaarde overige immateriele vaste activa"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0420
msgid "Aanschafwaarde overige vervoersmiddelen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4601
msgid "Accountantskosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4621
msgid "Administratiekosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4525
msgid "Advertenties"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4605
msgid "Advieskosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_payable_v
msgid "Af te dragen BTW heffing verlegd"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_payable_v_d
msgid "Af te dragen BTW heffing verlegd diensten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_payable_h
msgid "Af te dragen BTW hoog tarief"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_payable_h_eu
msgid "Af te dragen BTW hoog tarief binnen de EU"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_payable_h_d_eu
msgid "Af te dragen BTW hoog tarief binnen de EU diensten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_payable_h_non_eu
msgid "Af te dragen BTW hoog tarief buiten de EU"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_payable_h_d_non_eu
msgid "Af te dragen BTW hoog tarief buiten de EU diensten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_payable_h_d
msgid "Af te dragen BTW hoog tarief diensten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_payable_l
msgid "Af te dragen BTW laag tarief"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_payable_l_eu
msgid "Af te dragen BTW laag tarief binnen de EU"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_payable_l_d_eu
msgid "Af te dragen BTW laag tarief binnen de EU diensten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_payable_l_non_eu
msgid "Af te dragen BTW laag tarief buiten de EU"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_payable_l_d_non_eu
msgid "Af te dragen BTW laag tarief buiten de EU diensten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_payable_l_d
msgid "Af te dragen BTW laag tarief diensten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_payable_0
msgid "Af te dragen BTW overige tarieven"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_payable_0_eu
msgid "Af te dragen BTW overige tarieven binnen de EU"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_payable_0_d_eu
msgid "Af te dragen BTW overige tarieven binnen de EU diensten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_payable_0_non_eu
msgid "Af te dragen BTW overige tarieven buiten de EU"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_payable_0_d_non_eu
msgid "Af te dragen BTW overige tarieven buiten de EU diensten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_payable_0_d
msgid "Af te dragen BTW overige tarieven diensten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1503
msgid "Af te dragen BTW privé-gebruik"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1635
msgid "Afdracht loonheffing"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1615
msgid "Afdracht pensioenpremies"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1550
msgid "Afdrachten/aangifte omzetbelasting"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0319
msgid "Afschrijving Bedrijfsinventaris"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0339
msgid "Afschrijving Fabrieksinventaris"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0119
msgid "Afschrijving Gebouwen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0349
msgid "Afschrijving Gereedschappen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0019
msgid "Afschrijving Goodwill"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0379
msgid "Afschrijving Kantine-inventaris"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0359
msgid "Afschrijving Kantoorinventaris"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0369
msgid "Afschrijving Kantoormachines"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0219
msgid "Afschrijving Machines 1"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0229
msgid "Afschrijving Machines 2"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0329
msgid "Afschrijving Magazijninventaris"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0419
msgid "Afschrijving Personenauto's"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0139
msgid "Afschrijving Verbouwingen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0439
msgid "Afschrijving Vrachtauto's"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0129
msgid "Afschrijving Winkels"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4550
msgid "Afschrijving dubieuze debiteuren"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_22
msgid "Afschrijving immateriële vaste activa"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_21
msgid "Afschrijving materiële vaste activa"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0029
msgid "Afschrijving overige immateriele vaste activa"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0429
msgid "Afschrijving overige vervoersmiddelen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0630
msgid "Agioreserve"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_8
msgid "Algemene Kosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0640
msgid "Algemene reserve"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4270
msgid "Assurantie machines / inventaris"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4150
msgid "Assurantie onroerend goed"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4425
msgid "Assurantie overige vervoermiddelen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4415
msgid "Assurantie personenauto's"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4405
msgid "Assurantie vrachtauto's"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4620
msgid "Assuranties"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4360
msgid "Automatiseringskosten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.group,name:l10n_nl.tax_group_0
msgid "BTW 0%"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1505
msgid "BTW 0% / niet bij mij belast"
msgstr ""
#. module: l10n_nl
#: model:account.tax.group,name:l10n_nl.tax_group_0_eu
msgid "BTW 0% EU"
msgstr ""
#. module: l10n_nl
#: model:account.tax.group,name:l10n_nl.tax_group_0_niet_eu
msgid "BTW 0% Niet EU"
msgstr ""
#. module: l10n_nl
#: model:account.tax.group,name:l10n_nl.tax_group_21
msgid "BTW 21%"
msgstr ""
#. module: l10n_nl
#: model:account.tax.group,name:l10n_nl.tax_group_21_eu
msgid "BTW 21% EU"
msgstr ""
#. module: l10n_nl
#: model:account.tax.group,name:l10n_nl.tax_group_21_niet_eu
msgid "BTW 21% Niet EU"
msgstr ""
#. module: l10n_nl
#: model:account.tax.group,name:l10n_nl.tax_group_6
msgid "BTW 6%"
msgstr ""
#. module: l10n_nl
#: model:account.tax.group,name:l10n_nl.tax_group_6_eu
msgid "BTW 6% EU"
msgstr ""
#. module: l10n_nl
#: model:account.tax.group,name:l10n_nl.tax_group_6_niet_eu
msgid "BTW 6% Niet EU"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_ink_0
msgid "BTW af te dragen verlegd (inkopen)"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_ink_0_2
#: model:account.tax.template,name:l10n_nl.btw_ink_0_2
msgid "BTW af te dragen verlegd (inkopen2)"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_verk_0
msgid "BTW af te dragen verlegd (verkopen)"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_X0_diensten
msgid "BTW export binnen EU (diensten)"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_X0_producten
msgid "BTW export binnen EU (producten)"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_X1
msgid "BTW export buiten EU"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_E2
msgid "BTW import buiten EU hoog inkopen"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_E2_d
msgid "BTW import buiten EU hoog inkopen diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_E1
msgid "BTW import buiten EU laag inkopen"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_E1_d
msgid "BTW import buiten EU laag inkopen diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_E_overig
msgid "BTW import buiten EU overig inkopen"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_E_overig_d
msgid "BTW import buiten EU overig inkopen diensten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1531
msgid "BTW oninbare vorderingen"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_21_buy_incl
msgid "BTW te vorderen hoog (inkopen incl. BTW)"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_21_buy
msgid "BTW te vorderen hoog (inkopen)"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_21_buy_d
msgid "BTW te vorderen hoog (inkopen) diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_6_buy_incl
msgid "BTW te vorderen laag (inkopen incl. BTW)"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_6_buy
msgid "BTW te vorderen laag (inkopen)"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_6_buy_d
msgid "BTW te vorderen laag (inkopen) diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_overig_buy
msgid "BTW te vorderen overig (inkopen)"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_overig_buy_d
msgid "BTW te vorderen overig (inkopen) diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_ink_0_1
#: model:account.tax.template,name:l10n_nl.btw_ink_0_1
msgid "BTW te vorderen verlegd (inkopen1)"
msgstr ""
#. module: l10n_nl
#: model:account.fiscal.position.template,name:l10n_nl.fiscal_position_template_transferred
msgid "BTW verlegd"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4630
msgid "Bankkosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4041
msgid "Bedrijfskleding"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_33
msgid "Belastingen"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_32
msgid "Belastingen & sociale lasten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4120
msgid "Belastingen onroerend goed"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4426
msgid "Belastingen overige vervoermiddelen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4416
msgid "Belastingen personenauto's"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4406
msgid "Belastingen vrachtauto's"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1350
msgid "Betalingen onderweg"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.7065
msgid "Betalingskorting crediteuren"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4930
msgid "Betalingsverschillen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4530
msgid "Beurskosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4006
msgid "Bijdrage zorgverzekeringswet (SVW)"
msgstr ""
#. module: l10n_nl
#: model:account.fiscal.position.template,name:l10n_nl.fiscal_position_template_national
msgid "Binnenland"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4902
msgid "Boekverlies vaste activa"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4901
msgid "Boekwinst vaste activa"
msgstr ""
#. module: l10n_nl
#: model:res.country.state,name:l10n_nl.state_nl_bq1
msgid "Bonaire"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4002
msgid "Bonussen en provisies"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1210
msgid "Borg"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4421
msgid "Brandstof overige vervoermiddelen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4411
msgid "Brandstof personenauto's"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4401
msgid "Brandstof vrachtauto's"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4001
msgid "Bruto lonen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4305
msgid "Contributies / abonnementen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.pay
msgid "Crediteuren"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.recv
msgid "Debiteuren"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0510
msgid "Deelneming 1"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0520
msgid "Deelneming 2"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0530
msgid "Deelneming 3"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.7020
msgid "Directe loonkosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_26
msgid "Distributiekosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.8090
msgid "Diverse overige opbrengsten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4029
msgid "Doorbelasting directe loonkosten"
msgstr ""
#. module: l10n_nl
#: model:res.country.state,name:l10n_nl.state_nl_dr
msgid "Drenthe"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1150
msgid "Dubieuze debiteuren"
msgstr ""
#. module: l10n_nl
#: model:account.fiscal.position.template,name:l10n_nl.fiscal_position_template_eu
msgid "EU landen"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_24
msgid "Effecten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0720
msgid "Egalisatiereserve groot onderhoud"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_9
msgid "Eigen vermogen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.3310
msgid "Emballage"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4130
msgid "Energiekosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4260
msgid "Energiekosten machines / inventaris"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4535
msgid "Etalagekosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_3
msgid "Financiële vaste activa"
msgstr ""
#. module: l10n_nl
#: model:res.country.state,name:l10n_nl.state_nl_fl
msgid "Flevoland"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_29
msgid "Foutenrekening"
msgstr ""
#. module: l10n_nl
#: model:res.country.state,name:l10n_nl.state_nl_fr
msgid "Friesland"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.7070
msgid "Garantiekosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0760
msgid "Garantieverplichtingen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4810
msgid "Gebouwen / verbouwingen"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_01
msgid "Gegevens omzet"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_18
msgid "Gegevens omzetbelasting (BTW)"
msgstr ""
#. module: l10n_nl
#: model:res.country.state,name:l10n_nl.state_nl_ge
msgid "Gelderland"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.3200
msgid "Gereed product 1"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.3210
msgid "Gereed product 2"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4240
msgid "Gereedschappen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4805
msgid "Goodwill"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.3001
msgid "Grondstoffen 1"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.3002
msgid "Grondstoffen 2"
msgstr ""
#. module: l10n_nl
#: model:res.country.state,name:l10n_nl.state_nl_gr
msgid "Groningen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4111
msgid "Groot onderhoud onroerend goed"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_2
msgid "Huisvestingskosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.3100
msgid "Hulpstoffen 1"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.3110
msgid "Hulpstoffen 2"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4210
msgid "Huur inventaris"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4321
msgid "Huur kantoorapparatuur"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4201
msgid "Huur machines"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4110
msgid "Huur onroerend goed"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4423
msgid "Huur overige vervoermiddelen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4413
msgid "Huur personenauto's"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4403
msgid "Huur vrachtauto's"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0811
msgid "Hypotheken o/g 1"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0812
msgid "Hypotheken o/g 2"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0813
msgid "Hypotheken o/g 3"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0814
msgid "Hypotheken o/g 4"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0815
msgid "Hypotheken o/g 5"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0561
msgid "Hypotheken u/g 1"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0562
msgid "Hypotheken u/g 2"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0563
msgid "Hypotheken u/g 3"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_17
msgid "Immateriële vaste activa"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4021
msgid "Ingeleend personeel"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.7064
msgid "Inkoopbonussen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.7060
msgid "Inkoopkosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.7061
msgid "Inkoopprovisie"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_I_21
msgid "Inkopen import binnen EU hoog"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_I_21_d
msgid "Inkopen import binnen EU hoog diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_I_21_1
#: model:account.tax.template,name:l10n_nl.btw_I_21_1
msgid "Inkopen import binnen EU hoog(1)"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_I_21_d_1
#: model:account.tax.template,name:l10n_nl.btw_I_21_d_1
msgid "Inkopen import binnen EU hoog(1) diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_I_21_2
#: model:account.tax.template,name:l10n_nl.btw_I_21_2
msgid "Inkopen import binnen EU hoog(2)"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_I_21_d_2
#: model:account.tax.template,name:l10n_nl.btw_I_21_d_2
msgid "Inkopen import binnen EU hoog(2) diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_I_6
msgid "Inkopen import binnen EU laag"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_I_6_d
msgid "Inkopen import binnen EU laag diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_I_6_1
#: model:account.tax.template,name:l10n_nl.btw_I_6_1
msgid "Inkopen import binnen EU laag(1)"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_I_6_d_1
#: model:account.tax.template,name:l10n_nl.btw_I_6_d_1
msgid "Inkopen import binnen EU laag(1) diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_I_6_2
#: model:account.tax.template,name:l10n_nl.btw_I_6_2
msgid "Inkopen import binnen EU laag(2)"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_I_6_d_2
#: model:account.tax.template,name:l10n_nl.btw_I_6_d_2
msgid "Inkopen import binnen EU laag(2) diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_I_overig
msgid "Inkopen import binnen EU overig"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_I_overig_d
msgid "Inkopen import binnen EU overig diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_I_overig_1
#: model:account.tax.template,name:l10n_nl.btw_I_overig_1
msgid "Inkopen import binnen EU overig(1)"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_I_overig_d_1
#: model:account.tax.template,name:l10n_nl.btw_I_overig_d_1
msgid "Inkopen import binnen EU overig(1) diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_I_overig_2
#: model:account.tax.template,name:l10n_nl.btw_I_overig_2
msgid "Inkopen import binnen EU overig(2)"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_I_overig_d_2
#: model:account.tax.template,name:l10n_nl.btw_I_overig_d_2
msgid "Inkopen import binnen EU overig(2) diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_E2
msgid "Inkopen import buiten EU hoog"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_E2_d
msgid "Inkopen import buiten EU hoog diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_E2_1
#: model:account.tax.template,name:l10n_nl.btw_E2_1
msgid "Inkopen import buiten EU hoog(1)"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_E2_d_1
#: model:account.tax.template,name:l10n_nl.btw_E2_d_1
msgid "Inkopen import buiten EU hoog(1) diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_E2_2
#: model:account.tax.template,name:l10n_nl.btw_E2_2
msgid "Inkopen import buiten EU hoog(2)"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_E2_d_2
#: model:account.tax.template,name:l10n_nl.btw_E2_d_2
msgid "Inkopen import buiten EU hoog(2) diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_E1
msgid "Inkopen import buiten EU laag"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_E1_d
msgid "Inkopen import buiten EU laag diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_E1_1
#: model:account.tax.template,name:l10n_nl.btw_E1_1
msgid "Inkopen import buiten EU laag(1)"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_E1_d_1
#: model:account.tax.template,name:l10n_nl.btw_E1_d_1
msgid "Inkopen import buiten EU laag(1) diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_E1_2
#: model:account.tax.template,name:l10n_nl.btw_E1_2
msgid "Inkopen import buiten EU laag(2)"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_E1_d_2
#: model:account.tax.template,name:l10n_nl.btw_E1_d_2
msgid "Inkopen import buiten EU laag(2) diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_E_overig
msgid "Inkopen import buiten EU overig"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_E_overig_d
msgid "Inkopen import buiten EU overig diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_E_overig_1
#: model:account.tax.template,name:l10n_nl.btw_E_overig_1
msgid "Inkopen import buiten EU overig(1)"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_E_overig_d_1
#: model:account.tax.template,name:l10n_nl.btw_E_overig_d_1
msgid "Inkopen import buiten EU overig(1) diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_E_overig_2
#: model:account.tax.template,name:l10n_nl.btw_E_overig_2
msgid "Inkopen import buiten EU overig(2)"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_E_overig_d_2
#: model:account.tax.template,name:l10n_nl.btw_E_overig_d_2
msgid "Inkopen import buiten EU overig(2) diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_X2
msgid "Inst./afst.verkopen binnen EU"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_X3
msgid "Inst./afst.verkopen buiten EU"
msgstr ""
#. module: l10n_nl
#: model:account.fiscal.position.template,name:l10n_nl.fiscal_position_template_eu_no_taxes_report
msgid "Installatie en Afstandsverkopen"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_X2
msgid "Installatie/afstandsverkopen binnen EU"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_X3
msgid "Installatie/afstandsverkopen buiten EU"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1507
msgid "Installatie/televerkoop binnen de EU"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4340
msgid "Internet / e-mail"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4830
msgid "Inventaris"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.7063
msgid "Invoerkosten"
msgstr ""
#. module: l10n_nl
#: model:ir.model,name:l10n_nl.model_account_journal
msgid "Journal"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4610
msgid "Juridische kosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4040
msgid "Kantinekosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4310
msgid "Kantoorbenodigdheden"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_5
msgid "Kantoorkosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4940
msgid "Kasverschillen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4250
msgid "Kleine aanschaffingen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1532
msgid "Kleine ondernemersregeling"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4910
msgid "Kleine ondernemingsregeling Omzetbelasting"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4920
#: model:account.account.template,name:l10n_nl.8920
msgid "Koersverschillen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.7004
msgid "Kostprijs Intercompany handelsgoederen 1"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.7008
msgid "Kostprijs Intercompany handelsgoederen 2"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.7012
msgid "Kostprijs Intercompany handelsgoederen 3"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.7001
msgid "Kostprijs NL handelsgoederen 1"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.7005
msgid "Kostprijs NL handelsgoederen 2"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.7009
msgid "Kostprijs NL handelsgoederen 3"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.7002
msgid "Kostprijs binnen EU handelsgoederen 1"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.7006
msgid "Kostprijs binnen EU handelsgoederen 2"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.7010
msgid "Kostprijs binnen EU handelsgoederen 3"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.7003
msgid "Kostprijs buiten EU handelsgoederen 1"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.7007
msgid "Kostprijs buiten EU handelsgoederen 2"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.7011
msgid "Kostprijs buiten EU handelsgoederen 3"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_10
msgid "Kostprijs van de omzet"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.7040
msgid "Kostprijs werk derden"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4560
msgid "Kredietbeperking debiteuren"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_15
msgid "Langlopende schulden"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0740
msgid "Latente belastingverplichting"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4211
msgid "Lease inventaris (operational lease)"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4322
msgid "Lease kantoorinventaris (operational lease)"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4202
msgid "Lease machines (operational lease)"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4424
msgid "Lease overige vervoermiddelen (operational lease)"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4414
msgid "Lease personenauto's (operational lease)"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4404
msgid "Lease vrachtauto's (operational lease)"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0821
msgid "Leningen o/g 1"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0822
msgid "Leningen o/g 2"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0823
msgid "Leningen o/g 3"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0824
msgid "Leningen o/g 4"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0825
msgid "Leningen o/g 5"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0565
msgid "Leningen u/g 1"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0566
msgid "Leningen u/g 2"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0567
msgid "Leningen u/g 3"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_21
msgid "Leveringen/diensten belast met hoog tarief (BTW)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_04
msgid "Leveringen/diensten belast met hoog tarief (omzet)"
msgstr ""
#. module: l10n_nl
#: model:res.country.state,name:l10n_nl.state_nl_li
msgid "Limburg"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_25
msgid "Liquide middelen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.l10nnl_chart_template_liquidity_transfer
msgid "Liquidity Transfer"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_1
msgid "Lonen en salarissen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1630
msgid "Loonheffing"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4820
msgid "Machines"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4020
msgid "Managementvergoedingen"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_23
msgid "Materiële vaste activa"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4280
msgid "Milieukosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.7071
msgid "Mutatie garantieverplichting"
msgstr ""
#. module: l10n_nl
#: model:account.chart.template,name:l10n_nl.l10nnl_chart_template
msgid "Nederlands Grootboekschema"
msgstr ""
#. module: l10n_nl
#: model:ir.ui.menu,name:l10n_nl.account_reports_nl_statements_menu
msgid "Netherlands"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1620
msgid "Netto lonen"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_11
msgid "Netto omzet"
msgstr ""
#. module: l10n_nl
#: model:account.fiscal.position.template,name:l10n_nl.fiscal_position_template_non_eu
msgid "Niet-EU landen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1450
msgid "Nog te ontvangen facturen"
msgstr ""
#. module: l10n_nl
#: model:res.country.state,name:l10n_nl.state_nl_nb
msgid "Noord-Brabant"
msgstr ""
#. module: l10n_nl
#: model:res.country.state,name:l10n_nl.state_nl_nh
msgid "Noord-Holland"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.8004
msgid "Omzet Intercompany handelsgoederen 1"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.8014
msgid "Omzet Intercompany handelsgoederen 2"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.8024
msgid "Omzet Intercompany handelsgoederen 3"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.8044
msgid "Omzet Intercompany werk derden"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.8001
msgid "Omzet NL handelsgoederen 1"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.8011
msgid "Omzet NL handelsgoederen 2"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.8021
msgid "Omzet NL handelsgoederen 3"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.8041
msgid "Omzet NL werk derden"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.8002
msgid "Omzet binnen EU handelsgoederen 1"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.8012
msgid "Omzet binnen EU handelsgoederen 2"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.8022
msgid "Omzet binnen EU handelsgoederen 3"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.8042
msgid "Omzet binnen EU werk derden"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.8003
msgid "Omzet buiten EU handelsgoederen 1"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.8013
msgid "Omzet buiten EU handelsgoederen 2"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.8023
msgid "Omzet buiten EU handelsgoederen 3"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.8043
msgid "Omzet buiten EU werk derden"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4230
msgid "Onderhoud inventaris"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4320
msgid "Onderhoud kantoorinventaris"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4220
msgid "Onderhoud machines"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4112
msgid "Onderhoud onroerend goed"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4422
msgid "Onderhoud overige vervoermiddelen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4412
msgid "Onderhoud personenauto's"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4402
msgid "Onderhoud vrachtauto's"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4690
msgid "Overige algemene kosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4950
msgid "Overige baten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4970
msgid "Overige baten voorgaande jaren"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4290
msgid "Overige bedrijfskosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_16
msgid "Overige bedrijfsopbrengsten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4190
msgid "Overige huisvestingskosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4390
msgid "Overige kantoorkosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_13
#: model:account.account.template,name:l10n_nl.1490
msgid "Overige kortlopende schulden"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1290
msgid "Overige kortlopende vorderingen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4419
msgid "Overige kosten personenauto's"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4408
msgid "Overige kosten vrachtauto's"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4960
msgid "Overige lasten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4980
msgid "Overige lasten voorgaande jaren"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4428
msgid "Overige overige vervoermiddelen"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_19
#: model:account.account.template,name:l10n_nl.4090
msgid "Overige personeelskosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4042
msgid "Overige reiskosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4795
msgid "Overige rentebaten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4790
msgid "Overige rentelasten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0650
msgid "Overige reserves"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4590
msgid "Overige verkoopkosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4490
msgid "Overige vervoerskosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0750
msgid "Overige voorzieningen"
msgstr ""
#. module: l10n_nl
#: model:res.country.state,name:l10n_nl.state_nl_ov
msgid "Overijssel"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_20
msgid "Pensioenlasten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1610
msgid "Pensioenpremies"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4350
msgid "Porti"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4418
msgid "Privégebruik personenauto's"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.7030
msgid "Produktiekosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4520
msgid "Reclamekosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4510
msgid "Reis- en verblijfkosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4024
msgid "Reiskosten ingeleend personeel"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4505
msgid "Relatiegeschenken"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_30
msgid "Rente baten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4705
msgid "Rente hypotheek"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4710
msgid "Rente lening"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4720
msgid "Rente rekening-courant bank"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_31
msgid "Rente- en overige financiële lasten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.9150
msgid "Reorganisatiekosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4515
msgid "Representatiekosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.9011
msgid "Resultaat deelneming 1"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.9012
msgid "Resultaat deelneming 2"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.9013
msgid "Resultaat deelneming 3"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_12
msgid "Resultaat overige activa"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_02
msgid "Rubriek 1: Prestaties binnenland"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_19
msgid "Rubriek 1: Prestaties binnenland (BTW)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_26
msgid "Rubriek 2: Verleggingsregelingen binnenland (BTW)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_09
msgid "Rubriek 2: Verleggingsregelingen binnenland (omzet)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_11
msgid "Rubriek 3: Prestaties naar of in het buitenland (omzet)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_28
msgid "Rubriek 4: Prestaties vanuit het buitenland aan u verricht (BTW)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_15
msgid "Rubriek 4: Prestaties vanuit het buitenland aan u verricht (omzet)"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.tag_nl_31
msgid "Rubriek 5: Voorbelasting, kleineondernemersregeling en totaal (BTW)"
msgstr ""
#. module: l10n_nl
#: model:res.country.state,name:l10n_nl.state_nl_bq2
msgid "Saba"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4140
msgid "Schoonmaakkosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1599
msgid "Schuld omzetbelasting (einde boekjaar)"
msgstr ""
#. module: l10n_nl
#: model:res.country.state,name:l10n_nl.state_nl_bq3
msgid "Sint Eustatius"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_18
msgid "Sociale lasten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4045
msgid "Studie- en opleidingskosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1560
msgid "Suppletie omzetbelasting"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4004
msgid "Tantièmes"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1460
msgid "Te betalen VPB"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1470
msgid "Te betalen VPB voorgaande jaren"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1430
msgid "Te betalen accountantskosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1420
msgid "Te betalen dividend"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1480
msgid "Te betalen dividendbelasting"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1625
msgid "Te betalen netto lonen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1410
msgid "Te betalen rente"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1440
msgid "Te betalen telefoonkosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1640
msgid "Te betalen vakantiedagen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1650
msgid "Te betalen vakantiegeld"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1220
msgid "Te ontvangen rente"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1230
msgid "Te ontvangen ziekengeld"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4330
msgid "Telefoon / telefax"
msgstr ""
#. module: l10n_nl
#: model:ir.model,name:l10n_nl.model_account_chart_template
msgid "Templates for Account Chart"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4113
msgid "Toevoeging egalisatiereserve Groot onderhoud"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.2010
msgid "Tussenrekening beginbalans"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_28
msgid "Tussenrekeningen"
msgstr ""
#. module: l10n_nl
#: model:res.country.state,name:l10n_nl.state_nl_ut
msgid "Utrecht"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4003
msgid "Vakantietoeslag"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.9900
msgid "Vennootschapsbelasting"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.9950
msgid "Vennootschapsbelasting voorgaande jaren"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4019
msgid "Vergoeding overige kosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4018
msgid "Vergoeding overige reiskosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4017
msgid "Vergoeding studiekosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4016
msgid "Vergoeding woon- werkverkeer"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_7
msgid "Verkoopkosten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_X0_diensten
msgid "Verkopen export binnen EU (diensten)"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_X0_producten
msgid "Verkopen export binnen EU (producten)"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_X1
msgid "Verkopen export buiten EU"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_21
msgid "Verkopen/omzet hoog"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_21_d
msgid "Verkopen/omzet hoog diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_6
msgid "Verkopen/omzet laag"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_6_d
msgid "Verkopen/omzet laag diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_0
msgid "Verkopen/omzet onbelast (nul-tarief)"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_0_d
msgid "Verkopen/omzet onbelast (nul-tarief) diensten"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_overig
msgid "Verkopen/omzet overig"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,name:l10n_nl.btw_overig_d
msgid "Verkopen/omzet overig diensten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.3300
msgid "Verpakkingsmateriaal"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4840
msgid "Vervoermiddelen"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_6
msgid "Vervoerskosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_refund_h
msgid "Voorbelasting hoog"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_refund_h_eu
msgid "Voorbelasting hoog binnen de EU"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_refund_h_d_eu
msgid "Voorbelasting hoog binnen de EU diensten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_refund_h_non_eu
msgid "Voorbelasting hoog buiten EU"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_refund_h_d_non_eu
msgid "Voorbelasting hoog buiten EU diensten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_refund_h_d
msgid "Voorbelasting hoog diensten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_refund_l
msgid "Voorbelasting laag"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_refund_l_eu
msgid "Voorbelasting laag binnen de EU"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_refund_l_d_eu
msgid "Voorbelasting laag binnen de EU diensten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_refund_l_non_eu
msgid "Voorbelasting laag buiten EU"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_refund_l_d_non_eu
msgid "Voorbelasting laag buiten EU diensten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_refund_l_d
msgid "Voorbelasting laag diensten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_refund_0
msgid "Voorbelasting overige"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_refund_0_eu
msgid "Voorbelasting overige binnen de EU"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_refund_0_d_eu
msgid "Voorbelasting overige binnen de EU diensten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_refund_0_non_eu
msgid "Voorbelasting overige buiten EU"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_refund_0_d_non_eu
msgid "Voorbelasting overige buiten EU diensten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_refund_0_d
msgid "Voorbelasting overige diensten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_refund_v
msgid "Voorbelasting verlegd"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_refund_v_eu
msgid "Voorbelasting verlegd binnen de EU"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_refund_v_d_eu
msgid "Voorbelasting verlegd binnen de EU diensten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_refund_v_non_eu
msgid "Voorbelasting verlegd buiten EU"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_refund_v_d_non_eu
msgid "Voorbelasting verlegd buiten EU diensten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.vat_refund_v_d
msgid "Voorbelasting verlegd diensten"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_4
msgid "Voorraden"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1621
msgid "Voorschot loon"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1405
msgid "Vooruit ontvangen bedragen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1205
msgid "Vooruitbetaalde kosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0730
msgid "Voorziening deelnemingen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1160
msgid "Voorziening dubieuze debiteuren"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.7050
msgid "Voorziening incourante voorraad grondstof"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.7052
msgid "Voorziening incourante voorraad handelsgoederen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.7051
msgid "Voorziening incourante voorraad hulpstof"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0710
msgid "Voorziening pensioenverplichtingen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4015
msgid "Voorziening vakantiedagen"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_14
msgid "Voorzieningen"
msgstr ""
#. module: l10n_nl
#: model:account.account.tag,name:l10n_nl.account_tag_27
msgid "Vorderingen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0551
msgid "Vorderingen op deelneming 1"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0552
msgid "Vorderingen op deelneming 2"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0553
msgid "Vorderingen op deelneming 3"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.1040
msgid "Vraagposten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4570
#: model:account.account.template,name:l10n_nl.7062
msgid "Vrachtkosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0570
msgid "Waarborgsommen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4540
msgid "Websitekosten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4010
msgid "Werkgeversdeel loonheffingen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4011
msgid "Werkgeversdeel pensioenen"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4012
msgid "Werkgeversdeel sociale lasten"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4022
msgid "Werkkostenregeling (WKR max 1.2% brutoloon)"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4005
msgid "Werknemersbijdrage auto"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4044
msgid "Wervingskosten personeel"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.0620
msgid "Wettelijke reserves"
msgstr ""
#. module: l10n_nl
#: model:res.country.state,name:l10n_nl.state_nl_ze
msgid "Zeeland"
msgstr ""
#. module: l10n_nl
#: model:account.account.template,name:l10n_nl.4030
msgid "Ziekteverzuimverzekering"
msgstr ""
#. module: l10n_nl
#: model:res.country.state,name:l10n_nl.state_nl_zh
msgid "Zuid-Holland"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_overig
#: model:account.tax.template,description:l10n_nl.btw_overig_buy
msgid "variabel BTW"
msgstr ""
#. module: l10n_nl
#: model:account.tax.template,description:l10n_nl.btw_overig_buy_d
#: model:account.tax.template,description:l10n_nl.btw_overig_d
msgid "variabel BTW diensten"
msgstr ""
|