dh_ackergaul
vor 3 Tagen 5bbf43c1b146439ab882815c12ed6292f1d7b4df
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
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
{
    "101": "Grid medium",
    "102": "Grid large",
    "103": "Add object on the left",
    "104": "Add object to the right",
    "105": "Add object at the top",
    "106": "Add object below",
    "107": "Place object freely",
    "108": "Total object width - update when mouse over object",
    "109": "Normal mode",
    "110": "Delete object",
    "111": "Rotate object",
    "112": "Push object",
    "113": "Copy object",
    "114": "Back",
    "115": "Print",
    "116": "Save project",
    "117": "Load project",
    "118": "New project",
    "119": "Project properties",
    "120": "Show/hide catalogue",
    "121": "Open animation",
    "122": "Close animation",
    "123": "Hide/show front",
    "124": "Shadow on/off",
    "125": "Colours",
    "126": "Object errors",
    "127": "Perspective from top right",
    "128": "Perspective from top left",
    "129": "Perspective from the front",
    "130": "Perspective from above",
    "131": "Saving/loading camera positions",
    "132": "Top view",
    "133": "View",
    "134": "Camera forwards/backwards",
    "135": "Rotate camera",
    "136": "Rotate camera around object",
    "137": "Slide camera left / right / up / down",
    "138": "Floor colour",
    "139": "Background colour",
    "140": "The planning error is displayed when the mouse pointer is moved over an object marked in red/white.",
    "141": "Would you like to save the changes?",
    "142": "H x W x D",
    "143": "Object not found",
    "144": "Order to",
    "145": "Dimensioning",
    "146": "The licence expires in aaaaaa days. Please contact the support team.",
    "147": "The licence has expired! Please contact the support team.",
    "148": "The licence expires on aaaaaa. Please contact the support team.",
    "149": "D149",
    "150": "Selection",
    "151": "Single object",
    "152": "Objects on a wall",
    "153": "Group",
    "154": "All",
    "155": "Cancel selection",
    "156": "Delete",
    "157": "Single object",
    "158": "All objects",
    "159": "Push",
    "160": "Dissolve planning group",
    "161": "Change front stop",
    "162": "beforehand please",
    "163": "Change stop",
    "164": "Change inside / outside stop",
    "170": "Turning",
    "171": "90° Left",
    "172": "-90° Right",
    "173": "45° Left",
    "174": "-45° Right",
    "175": "?°",
    "176": "0° Absolute",
    "177": "New width is smaller min. width!",
    "178": "New width exceeds max. width!",
    "179": "New width corresponds to the old width or is 0.0!",
    "180": "Change dimension",
    "181": "Width",
    "182": "Depth",
    "183": "Height",
    "184": "Fit width",
    "185": "Fitting width not possible:",
    "186": "Missing internal data!",
    "187": "Cabinet shape is not cuboid!",
    "188": "The maximum width is 0.0!",
    "189": "- Distance is not rounded to two decimal places!",
    "190": "Configure wall",
    "191": "Delete wall",
    "192": "Show gable triangle on the left",
    "193": "Do not show the gable triangle on the left",
    "194": "Display gable triangle on the right",
    "195": "Do not display gable triangle on the right",
    "196": "VAT.",
    "197": "Price without",
    "198": "Price incl.",
    "199": "D199",
    "200": "Accessories",
    "201": "D201",
    "202": "",
    "203": "W x H x D",
    "204": "D x W x H",
    "205": "Standard configuration",
    "206": "Available columns",
    "207": "Assigned columns",
    "208": "Printing without CloudID",
    "220": "Printing options",
    "221": "Settings",
    "222": "as standard",
    "223": "Use temporarily",
    "224": "Article prices",
    "225": "identify",
    "226": "MC numbers",
    "227": "none",
    "228": "Print article numbers",
    "229": "Print total price",
    "230": "Perspective as a line representation",
    "231": "Do not print",
    "232": "Print current perspective",
    "233": "Perspective as a colour image",
    "234": "Printout floor plan",
    "235": "always",
    "236": "Current planning",
    "237": "Current flooring as standard",
    "238": "Slide onto the floor",
    "240": "Adjust height",
    "245": "Print manufacturer name",
    "246": "Print programme name",
    "250": "Do not evaluate objects",
    "251": "Do not evaluate all objects from this manufacturer",
    "252": "Do not evaluate all objects in this programme",
    "253": "Evaluate all objects normally",
    "254": "Evaluate all objects from this manufacturer normally",
    "255": "Evaluate all objects of this programme normally",
    "256": "Animation",
    "257": "Individual animation",
    "300": "Preferred combinations",
    "301": "Should all previous objects be deleted?",
    "302": "The preferred/proposed combination is cancelled",
    "303": "Do you really want to delete all elements?",
    "304": "Resolve proposal",
    "400": "Switch all invisible",
    "401": "now! Pedal switch",
    "402": "Please enter the desired number of pedal switches.",
    "403": "Switch all visible",
    "404": "Absolute top edge",
    "405": "absolute lower edge",
    "406": "Execute",
    "407": "Push maximum",
    "408": "shift around:",
    "409": "Limit value:",
    "410": "Direction:",
    "411": "left",
    "412": "right",
    "413": "Top",
    "414": "below",
    "415": "front",
    "416": "back",
    "417": "maximum",
    "418": "Room divider",
    "419": "slide by page thickness:",
    "420": "absolutely at height:",
    "421": "Options",
    "422": "Trade fairs",
    "423": "Floor area",
    "424": "Import / Export",
    "425": "Selection via images",
    "500": "Pick = delete",
    "501": "Pick = mark",
    "502": "Picking + sliding the mouse = sliding forwards/backwards",
    "503": "Picking + moving the mouse = moving in the plane",
    "504": "Pick + move mouse = move left/right",
    "505": "Pick + move mouse = reposition",
    "506": "Pick + move mouse = move up/down",
    "507": "Additional items",
    "508": "Start",
    "509": "Cheeks",
    "510": "Sleeping",
    "511": "Working",
    "512": "Elements+NOW!sit",
    "514": "Video",
    "515": "Online help",
    "516": "Version",
    "517": "Licence conditions",
    "518": "Existing positions:",
    "519": "Change width",
    "520": "Change height",
    "521": "Change depth",
    "522": "Actual size",
    "523": "Limit values",
    "524": "minimal",
    "525": "maximum",
    "526": "new size in cm",
    "527": "Execute single object",
    "528": "Execute on line",
    "529": "back",
    "530": "front",
    "531": "Selected object",
    "532": "All on the wall",
    "533": "All marked objects",
    "534": "Fixation",
    "535": "Adjacent objects",
    "536": "Push along",
    "537": "Do not push along",
    "538": "Object selection",
    "539": "Add article",
    "550": "This article has not yet been released by the manufacturer or has already been discontinued.",
    "600": "Corner cupboard",
    "610": "Without wreath",
    "611": "With wreath",
    "612": "Sloping roof options",
    "613": "The minimum distance required by the design has already been taken into account and is",
    "614": "Additional distance from the object to the roof slope",
    "615": "Slide to the left",
    "616": "Slide to the right",
    "617": "Bevelled centre of the middle side",
    "618": "Spatial planning",
    "620": "A collision is currently not taken into account. All dimensions used refer to Pos x to",
    "621": "Distance from left",
    "622": "Distance from right",
    "623": "Distance from the front",
    "624": "Distance from the rear",
    "625": "Spotlight position left/right",
    "626": "Spotlight position front/rear",
    "627": "Change width",
    "628": "Change depth",
    "629": "Change height",
    "630": "Scale total",
    "690": "Positioning",
    "691": "Preferred combination",
    "692": "Wardrobe",
    "693": "Bed",
    "694": "Console left",
    "695": "Console right",
    "700": "One or more values incorrect!",
    "701": "change is made automatically.",
    "800": "Planning file",
    "900": "Export / Import",
    "901": "File",
    "902": "Vector formats",
    "903": "Grid formats",
    "904": "Resolution",
    "905": "Notes on the software",
    "906": "Send feedback email",
    "907": "Open the last backup of the previous session",
    "908": "Send order to the manufacturer",
    "909": "furnplan Support Mail",
    "910": "Print cabinet dimensions",
    "911": "Print in standard scale",
    "912": "ECO Mobilier",
    "913": "Print room dimensions",
    "920": "The following file could not be copied:",
    "921": "The calculation of the following manufacturer is not correct:",
    "930": "furnplan end user version - for private use only - must not be used in a furniture store!",
    "931": "mirrored",
    "932": "Pushing the maximum makes no sense.",
    "933": "not possible",
    "1002": "Programme",
    "1003": "Calculation type",
    "1004": "Surcharge in %",
    "1005": "Change surcharge",
    "1006": "Select all",
    "1007": "Select nothing",
    "1008": "Save",
    "1010": "Loading",
    "1011": "Printout Perspective Save",
    "1012": "Camera positions",
    "1013": "Camera focal length",
    "1014": "Article listing",
    "1100": "Page back",
    "1101": "Page before",
    "1102": "First page",
    "1103": "Last page",
    "1104": "Zoom +",
    "1105": "Zoom -",
    "1106": "Zoom limits",
    "1107": "Shift left",
    "1108": "Shift right",
    "1109": "Shift up",
    "1110": "Shift down",
    "1111": "Mark object for editing",
    "1112": "Print",
    "1113": "Explode - Prerequisite for deleting individual base elements",
    "1114": "Delete additional elements and base elements (an explode is required beforehand for base elements)",
    "1115": "Element manipulation - moving / resizing etc.",
    "1116": "Ortho mode - elements are created or manipulated in 90 degree steps",
    "1117": "Snap mode - elements are snapped to other elements",
    "1118": "Boundary formation mode - New element may create additional space between the print areas",
    "1119": "Mode solid line thin",
    "1120": "Mode solid line medium",
    "1121": "Mode solid line thick",
    "1122": "Mode dashed line thin",
    "1123": "Mode dashed line medium",
    "1124": "Mode dashed line thick",
    "1125": "Draw element line",
    "1126": "Draw circle element",
    "1127": "Draw rectangle element",
    "1128": "Draw element dimensioning",
    "1129": "Draw arrow element",
    "1130": "Insert text",
    "1131": "Position text mode",
    "1132": "Move line",
    "1133": "Change radius",
    "1134": "Edit text",
    "1135": "Change text size",
    "1136": "Line thickness",
    "1137": "Delete element",
    "1145": "Position list",
    "1200": "Grouping",
    "1201": "Dissolve grouping",
    "1202": "Group selected objects",
    "1203": "Temporarily cancel grouping globally",
    "1204": "Switch on grouping globally",
    "1300": "All furniture",
    "1301": "All accessories",
    "1302": "Placement suggestions",
    "1310": "Neutral article",
    "1320": "End furnplan",
    "1350": "Basic/additional element",
    "1351": "Automatic",
    "1352": "Basic element",
    "1353": "Add-on element",
    "1354": "Glass version",
    "1355": "Clear glass",
    "1356": "Satinised",
    "1400": "Furniture store name",
    "1401": "Furniture store address",
    "1402": "Name of the consultant",
    "1403": "Commission number",
    "1404": "Commission name",
    "1405": "Desired delivery date",
    "1406": "Delivery address",
    "1500": "Delivery to",
    "1501": "Seller",
    "1502": "Telephone number",
    "1503": "Fax number",
    "1504": "Mobile phone number",
    "1505": "Order data",
    "1506": "Order number",
    "1507": "Commission designation",
    "1508": "Desired delivery date YYYYMMDD or YYYYWW",
    "1509": "Desired delivery date",
    "1510": "Remarks",
    "1511": "Confirm e-mail",
    "1512": "E-mail address",
    "1513": "Send e-mail to",
    "1514": "Create e-mail",
    "1515": "ATTENTION: The order has already been sent once!",
    "1516": "order",
    "1517": "data",
    "1518": "Customer number of the client",
    "1519": "Customer number of the shipping address",
    "1520": "Placement",
    "1521": "Programme abbreviation",
    "1522": "Execution abbreviation",
    "1523": "Division",
    "1524": "Licence plate studio",
    "1525": "Licence plate mounting",
    "1526": "Display licence plate",
    "1527": "Clerk/contact person at the customer",
    "1528": "Name",
    "1529": "Order data of the customer",
    "1530": "Placement discount",
    "1531": "Remarks",
    "1532": "Get last settings",
    "1533": "Delete all values",
    "1550": "Placement discount",
    "1551": "Remarks",
    "1552": "Get last settings",
    "1555": "Delete all values",
    "1560": "Assembly",
    "1600": "Administrator dialogue",
    "1601": "Imputed surcharges",
    "1602": "Online",
    "1603": "order",
    "1604": "Settings",
    "1605": "Dealer ILN number",
    "1606": "Retailer - Delivery to - ILN data",
    "1607": "Description of the",
    "1608": "new",
    "1609": "Customer data of the retailer at the manufacturer",
    "1610": "Customer number",
    "1611": "Number",
    "1612": "Activation",
    "1613": "password",
    "1614": "Check",
    "1615": "Wrong password!",
    "1616": "Password correct!",
    "1617": "Please contact your administrator.",
    "1618": "The confirmed password is not the same password!",
    "1619": "The value is invalid!",
    "1620": "Saving has been completed.",
    "1621": "Attention: All mandatory fields must be filled in!",
    "1622": "The file to be loaded does not exist:",
    "1623": "not available",
    "1624": "File not found",
    "1625": "The selected elements could not be changed",
    "1626": "Input not correct!",
    "1627": "Article not available!",
    "1629": "The article was not found in the programme-specific table!",
    "1630": "The dimensions within the corner element are not correct - cancellation!",
    "1631": "Error",
    "1632": "Please contact the manufacturer for approval!",
    "1633": "The planning contains errors!",
    "1634": "An order inevitably leads to enquiries!",
    "1635": "Do you still want to fulfil the order?",
    "1636": "Immediately",
    "1637": "Print views",
    "1640": "Width has been corrected to",
    "1641": "Height was corrected to",
    "1642": "Depth has been corrected to",
    "1650": "The dimensions within the corner element are not correct - cancellation!",
    "1651": "Error",
    "1700": "Execution",
    "1701": "Assign to all articles",
    "1702": "Assign an article",
    "1703": "Assign to a component",
    "1704": "Retain local properties",
    "1705": "Change most common version",
    "1706": "There are different variants of this design in the planning stage",
    "1707": "The selected version is assigned to all scheduled items.",
    "1708": "Only those articles whose versions are in the majority are assigned the selected version.",
    "1709": "The selected colour or version is assigned to a selected item.",
    "1710": "The selected version is assigned to a specific component of an item.",
    "1711": "Insert article",
    "1712": "Search for items in the catalogue",
    "1713": "Back to the start page of the selected model",
    "1714": "Inspiration",
    "1800": "ATTENTION: The imputed surcharge is not set. Please contact your administrator or the person responsible for the calculation!",
    "1820": "Technical support",
    "1821": "Hotline for planning furniture",
    "1822": "Licence holder",
    "1823": "Incl. surcharge for special size",
    "1824": "Alternative currency",
    "1825": "available version",
    "1826": "current version",
    "1827": "Installed version",
    "1850": "Graphic display",
    "1851": "Graphic display in the action",
    "1852": "Graphic display at rest",
    "1853": "white",
    "1854": "coloured",
    "1855": "texturised",
    "1856": "Photorealistic representation",
    "1857": "Start calculation",
    "1859": "Insert",
    "1860": "Edit",
    "1862": "Better quality",
    "1863": "Lighting",
    "1864": "visible",
    "1865": "high",
    "1866": "normal",
    "1867": "fast",
    "1868": "Very fast",
    "1869": "quality",
    "1870": "Edge smoothing",
    "1871": "Light radius visible",
    "1872": "< 1 min",
    "1873": "< 2 min",
    "1874": "< 5 min",
    "1875": "> 5 min",
    "1876": "new size in mm",
    "1877": "new size in m",
    "1878": "new size in dm",
    "1879": "Header data",
    "1880": "Errors in the price calculation - please contact the furniture manufacturer",
    "1881": "Delete all local",
    "1882": "Help",
    "1883": "The specified article number is not valid!",
    "1884": "This article cannot be scheduled via direct input!",
    "1885": "No decimal values in the unit mm allowed",
    "1886": "File",
    "1887": "Export configuration",
    "1888": "Created with furnplan",
    "1889": "The configuration was exported successfully.",
    "1890": "Error saving the configuration:",
    "1891": "furnplan administration",
    "1892": "- are not forwarded to any manufacturer",
    "1893": "Simple branch management",
    "1894": "Save configuration",
    "1895": "Configuration has been saved",
    "1896": "You need administrator rights to be able to edit branch management!",
    "1897": "Use store management",
    "1898": "Store list",
    "1899": "Edit",
    "1900": "Service settings",
    "1901": "Start service",
    "1902": "Install service",
    "1903": "End service",
    "1904": "Uninstall service",
    "1905": "User name",
    "1906": "password",
    "1907": "Domain",
    "1908": "General settings",
    "1909": "Maximum simultaneous connections",
    "1910": "Log debug entries",
    "1911": "Waiting time between test intervals",
    "1912": "Transfer time",
    "1913": "Information",
    "1914": "Show log",
    "1915": "Last synchronisation",
    "1916": "Transfer service running",
    "1917": "Transfer service installed",
    "1918": "Action",
    "1919": "Saving and testing",
    "1920": "Reset",
    "1921": "Save",
    "1922": "Synchronise now",
    "1923": "Test settings",
    "1924": "Error when starting the furnplanTransferService",
    "1925": "Error when terminating the furnplanTransferService",
    "1926": "Testing",
    "1927": "Please enter at least one user name.",
    "1928": "Test failed.",
    "1929": "Test successful.",
    "1930": "Store settings",
    "1931": "Activate synchronisation of this branch.",
    "1932": "Last synchronisation",
    "1933": "Destination path",
    "1934": "Time zone",
    "1935": "Select",
    "1936": "Advanced settings",
    "1937": "Only enter your access data here if it differs from the main access data!",
    "1938": "OK",
    "1939": "Cancel",
    "1940": "Branch management",
    "1941": "Active",
    "1942": "Customer no.",
    "1943": "Branch",
    "1944": "Last sync",
    "1945": "The transfer has been initiated, further information can be found in the logs.",
    "1946": "No lighting in the scene, rendering deactivated.",
    "3000": "Information",
    "3001": "Sloping roof",
    "3002": "Links",
    "3003": "Right",
    "3004": "Rear",
    "3005": "Body dimensions",
    "3006": "Dimensions according to sketch",
    "3010": "View on separate sketch",
    "3020": "Imputed mark-up not found",
    "3100": "Pos.",
    "3101": "ArtNo",
    "3102": "Description of the",
    "3103": "Quantity",
    "3104": "E-price",
    "3105": "G-Price",
    "3106": "To place an order, please contact your now! dealer.",
    "3107": "ORDER",
    "3108": "Automatically generated form - without guarantee",
    "3109": "Planning:",
    "3110": "Customer:",
    "3111": "Date:",
    "3112": "Total amount",
    "3113": "Page",
    "3114": "has not yet been planned.",
    "3115": "have not yet been planned.",
    "3116": "pcs.",
    "3117": "H/W/D",
    "3118": "Project number:",
    "3119": "eMail:",
    "3120": "Tel. company:",
    "3121": "Tel. private:",
    "3122": "Mobile phone:",
    "3123": "Fax:",
    "3124": "Lines",
    "3125": "Programme features",
    "3126": "Commission",
    "3127": "Special dimensions",
    "3128": "Special version",
    "3129": "Accessories",
    "3130": "without guarantee",
    "6083": "Check data.",
    "6100": "Floor",
    "6101": "Wall",
    "6102": "Ceiling",
    "6103": "Windows",
    "6104": "Door",
    "6105": "Standard rooms",
    "6106": "Customised room planning",
    "6107": "Room height:",
    "6108": "sill height",
    "6109": "Window width:",
    "6110": "Window height:",
    "6111": "If the length is 0, the leg is not drawn.",
    "6112": "Door height:",
    "6113": "Door width:",
    "6114": "External stop left",
    "6115": "Inside stop left",
    "6116": "Outside stop right",
    "6117": "Inside stop right",
    "6118": "RAL colour palette",
    "6119": "Wood",
    "6120": "Other",
    "6121": "Wall height = Global room height",
    "6122": "Wall height",
    "6123": "Wall thickness",
    "6124": "Sloping roof",
    "6125": "Edit individual wall",
    "6126": "Edit room",
    "6127": "Delete wall",
    "6128": "Delete room",
    "6129": "Plan colours",
    "6130": "Schedule windows",
    "6131": "Schedule doors",
    "6132": "Delete window",
    "6133": "Edit window",
    "6134": "Delete door",
    "6135": "Edit door",
    "6136": "rectangular space",
    "6137": "Room with a head start",
    "6138": "two walls",
    "6139": "U-shape",
    "6140": "Single window transom left",
    "6141": "Single window transom right",
    "6142": "Window with muntin bars transom left",
    "6143": "Window with muntin bars transom right",
    "6144": "Window with two sashes",
    "6145": "Window with two sashes and glazing bars",
    "6146": "Window with three sashes",
    "6147": "Window with three sashes and glazing bars",
    "6148": "Breakthrough",
    "6149": "Simple door",
    "6150": "Door with glass",
    "6151": "Door with two glasses",
    "6152": "Door with glass and glazing bars",
    "6153": "Door with two glass panes and glazing bars",
    "6154": "Marked wall",
    "6155": "marked window",
    "6156": "marked door",
    "6157": "Skylight",
    "6158": "Show gable triangle on the left",
    "6159": "Do not show the gable triangle on the left",
    "6160": "Display gable triangle on the right",
    "6161": "Do not show gable triangle on the right",
    "6162": "Copy wall",
    "6163": "Floor reflections",
    "6164": "Marked floor",
    "6165": "Delete ceiling or floor",
    "6166": "Transfer to another screen",
    "6167": "Triangular window",
    "6168": "Triangular window on the left",
    "6169": "Triangular window on the right",
    "6170": "Round window",
    "6171": "Round window with glazing bars",
    "6172": "Round window with sash",
    "6173": "Glass front",
    "6200": "Roof overhangs",
    "6201": "Links 0",
    "6202": "Links 25.0",
    "6203": "Enter value for links",
    "6204": "Right 0",
    "6205": "Right 25.0",
    "6206": "Enter value for right",
    "6207": "Half roof profile width",
    "6208": "View of this wall",
    "6209": "Delete",
    "6210": "This wall",
    "6211": "All walls",
    "6212": "Wall coverings",
    "6213": "Bay window (angle 90°)",
    "6214": "Bay window (enter angle freely)",
    "6300": "Push",
    "6301": "Along the wall axis",
    "6302": "Across the wall axis",
    "6303": "Dimension",
    "6304": "Height",
    "6305": "Width C",
    "6306": "Width L",
    "6307": "Width R",
    "6308": "Length - Left fixed",
    "6309": "Length - Right fixed",
    "6311": "by relative angle",
    "6312": "Rotate this wall",
    "6313": "to absolute angle",
    "6314": "by relative angle",
    "6315": "Two-sided wall",
    "6316": "Wall one-sided",
    "6317": "Properties",
    "6318": "Cutting plane",
    "6319": "Show section plane",
    "6320": "Hide cutting plane",
    "6321": "Cutting plane depth",
    "6400": "Finished with the wall",
    "6401": "Enter wall length",
    "6402": "Enter wall length & internal angle - Right",
    "6403": "Enter wall length & internal angle - Left",
    "6404": "Enter distance A",
    "6405": "Enter distance B",
    "6406": "Perpendicular to this wall edge",
    "6408": "No neighbour on the left!",
    "6410": "Total height incl. wreath!",
    "6411": "Total height without wreath!",
    "6412": "Total height incl. cover plate",
    "6413": "Overall height without cover plate",
    "6414": "Total depth incl. front!",
    "6415": "Carcase dimensions without front!",
    "6416": "Overall dimensions incl. outer sides!",
    "6417": "Base dimensions without outer sides!",
    "6418": "Attention! Please allow for an assembly clearance of 2cm!",
    "6419": "Plinth dimensions incl. 1 side!",
    "6500": "Min",
    "6501": "Max",
    "6502": "Error",
    "6503": "Length",
    "6504": "Inside angle",
    "6600": "Change wall individually",
    "6601": "Rasch wallpaper factory",
    "7000": "Standard price rounding",
    "7001": "Round price to whole unit",
    "7002": "Prices",
    "7003": "Price management",
    "7004": "Pressure",
    "7005": "Print management",
    "7006": "Add configuration",
    "7007": "Delete configuration",
    "7008": "Should the configuration really be deleted?",
    "7009": "Article listing 1st page",
    "7010": "Article listing from 2nd page",
    "7011": "Views",
    "7012": "Line representation",
    "7013": "Colour image",
    "7014": "Floor plan",
    "7015": "Rounding type",
    "7016": "Start date",
    "7017": "The configuration has been changed, should it be saved?",
    "7018": "End date",
    "7019": "Standard",
    "7020": "Active",
    "7021": "This designation already exists!",
    "7022": "Pages",
    "7023": "Here you can optionally enter the reason for the change",
    "7024": "Global settings",
    "7025": "Global font setting",
    "7026": "Global calculation setting",
    "7027": "Set calculation factors in furnplan",
    "7028": "Read costing factors from merchandise management",
    "7029": "Online order",
    "7030": "Shop settings",
    "7031": "select",
    "7032": "Change",
    "7033": "Show history",
    "7034": "Price group1",
    "7035": "Price group2",
    "7036": "Price group3",
    "7037": "Price group4",
    "7038": "Price group5",
    "7039": "Price group6",
    "7040": "Price group7",
    "7041": "Price group8",
    "7042": "Price group9",
    "7043": "Price group10",
    "7044": "Alternative manufacturer name",
    "7045": "Alternative programme name",
    "7046": "User configuration",
    "7047": "Transfer configuration",
    "7048": "Test connection",
    "7049": "Connection successfully tested",
    "7050": "Path details",
    "7051": "Project target path",
    "7052": "Time settings",
    "7053": "Time zone Destination",
    "7054": "Access data (if required)",
    "7055": "Time settings",
    "7056": "Please wait...",
    "7057": "Font",
    "7058": "Scaling",
    "7059": "DimX",
    "7060": "DimY",
    "7061": "PosX",
    "7062": "PosY",
    "7063": "Font size",
    "7064": "Standard print settings",
    "7065": "Activate furnplan logo",
    "7066": "Activate footer",
    "7067": "Left-aligned",
    "7068": "Centred",
    "7069": "Right-aligned",
    "7070": "Activate standard logo",
    "7071": "Activate standard address line",
    "7072": "Starting point- X",
    "7073": "Starting point- Y",
    "7074": "End point X",
    "7075": "Endpoint Y",
    "7076": "Line thickness",
    "7077": "Alignment",
    "7078": "Left-aligned",
    "7079": "Centred",
    "7080": "Right-aligned",
    "7081": "Price type",
    "7082": "Individual gross purchase price",
    "7083": "Standard gross purchase price",
    "7084": "Non-binding sales price",
    "7085": "Programme is closed.",
    "7086": "Print selection",
    "7087": "Branch active in this installation",
    "7088": "opus_dversion.dht does not exist. Programme is closed.",
    "7089": "Functions are not available in this version.",
    "7090": "Text from Project Manager",
    "7091": "Calculation at manufacturer level",
    "7092": "Calculation at programme level",
    "7093": "Impact selection",
    "7094": "Article settings",
    "7095": "Service for store management is installed but not started. Should it be started?",
    "7096": "Activated",
    "7097": "Deactivated",
    "7098": "Branch management",
    "7099": "Pictures",
    "7100": "Lines",
    "7101": "Display individual surcharges only.",
    "7102": "Filters",
    "7103": "Item number",
    "7104": "Licence plate",
    "7105": "Extended filter",
    "7106": "Set up",
    "7107": "Export",
    "7108": "HTML file",
    "7109": "CSV file",
    "7110": "Image file",
    "7111": "Read calculation from merchandise management or furnplan",
    "7112": "Determine via WaWi",
    "7113": "Transfer",
    "7114": "Should it be saved?",
    "7115": "Old password",
    "7116": "New password",
    "7117": "Confirm",
    "7118": "Change password",
    "7119": "Calculation aid",
    "7120": "Actual price",
    "7121": "Target price",
    "7122": "Current premium in %",
    "7123": "Base price",
    "7124": "New surcharge in %",
    "7125": "Individual net equity",
    "7126": "furnplan settings",
    "7127": "Use standard PDF viewer",
    "7129": "Currently used PDF viewer:",
    "7130": "Mandatory use of PDF settings",
    "7132": "Show manufacturer's information or advertising text",
    "7133": "Open PDF",
    "7134": "Delete PDF",
    "7135": "Own pictures",
    "7136": "Article type",
    "7137": "PDF could not be deleted",
    "7138": "Maximum discount",
    "7139": "Equity factor in %",
    "7140": "Hide prog.",
    "7141": "Old price quick view",
    "7142": "Load old planning",
    "7143": "This planning has been created with an old furnplan data status. ~YES= load with old data status ~NO = load with new data status",
    "7144": "Rounds to full hundreds",
    "7145": "Favourites only",
    "7146": "Only entries with names",
    "7147": "Reset filter",
    "7148": "Enter/edit name",
    "7149": "generated by furnray",
    "7150": "generated by expression",
    "7151": "Favourite",
    "7152": "Open planning from the cloud",
    "7153": "Create cloud ID",
    "7154": "Only entries with picture",
    "7155": "Save current planning in the cloud",
    "7156": "Name",
    "7157": "Time",
    "7158": "Select all",
    "7159": "furncloud-Id",
    "7160": "Calculation on a global level",
    "7161": "Global mark-up",
    "7162": "Premium (in %)",
    "7163": "on impact",
    "7164": "on final price",
    "7165": "Calculation aid",
    "7166": "Old tax rate/percentage rate",
    "7167": "New tax rate/percentage",
    "7168": "Calculated mark-up (deduction)",
    "7169": "Take over",
    "7170": "Global additional premium (in %)",
    "7171": "Global standard mark-up for EK prices",
    "7172": "Global standard mark-up for UK prices",
    "7173": "The new administration!",
    "7174": "Click on the button below to access the new administration.",
    "7175": "Switch to the new administration",
    "7176": "If you switch to the new administration, you will no longer be able to use the old AdminDialogue after the update! Do you want to switch to the new administration?",
    "7177": "Update to the new administration failed!",
    "7178": "Update to the new administration was successful!",
    "7179": "New administration is active, changes are no longer retrieved.",
    "7180": "This branch has already been migrated, do you still want to migrate your data?\nClick on \"Yes\" to migrate your data and overwrite the existing data.\nClick on \"No\" to create the \"administration\" folder and use the existing data.",
    "7200": "Choice",
    "7201": "Simply use the planning code to order from the shop assistant in the shop.",
    "7202": "Order by telephone",
    "7203": "Call us at",
    "7204": "Continue planning later?",
    "7205": "Open and continue planning in the same branch at any time.",
    "7206": "Buy in the shop",
    "7207": "Your planning code",
    "7208": "Colour R (red)",
    "7209": "Colour G (green)",
    "7210": "Colour B (blue)",
    "7211": "Line type",
    "7212": "Buy in the online shop",
    "7213": "Package",
    "7214": "Add",
    "7215": "For licensing reasons, the export of accessories is not possible.",
    "7216": "000 - 095",
    "7217": "100 - 190",
    "7218": "200 - 290",
    "7219": "300 - 390",
    "7220": "RAL design colour picker",
    "7221": "generated by AI",
    "7222": "",
    "20000": "Project manager",
    "20001": "Planning",
    "20002": "Should the planning be saved?",
    "20003": "Saving the planning?",
    "20004": "Price preview",
    "20005": "PDF view",
    "20006": "Organise",
    "20007": "Search",
    "20008": "Currently open planning",
    "20009": "Save as new",
    "20010": "Save",
    "20011": "Open",
    "20012": "Delete",
    "20013": "Cancel",
    "20014": "Refresh view",
    "20015": "Hide directories",
    "20016": "Show directories",
    "20017": "View",
    "20018": "Directory",
    "20019": "Planning",
    "20020": "Insert",
    "20021": "Administration",
    "20022": "Import plans",
    "20023": "List",
    "20024": "List with preview images",
    "20025": "Preview images",
    "20026": "Create",
    "20027": "Rename",
    "20028": "Copy",
    "20029": "Cut out",
    "20030": "Configuration",
    "20031": "Go to",
    "20032": "Overwrite selected planning",
    "20033": "Insert directories",
    "20034": "Insert plans",
    "20035": "Maximum number of plans per displayed page\nMinimum: #1 Maximum: #2",
    "20036": "Current page / Number of pages",
    "20037": "First page",
    "20038": "Previous page",
    "20039": "Next page",
    "20040": "Last page",
    "20041": "Image size",
    "20042": "Page",
    "20043": "Directory \"#1\" contains at least one plan that has been locked by a user. This directory can therefore not be deleted.",
    "20044": "Locked plans discovered.",
    "20045": "Should the directory \"#1\" with all plans and subfolders really be deleted?",
    "20046": "Delete directory?",
    "20047": "Should the selected plans be cancelled?",
    "20048": "Delete plans?",
    "20049": "Should the planning really be cancelled?",
    "20050": "Delete planning?",
    "20051": "Not all plans could be deleted as some were blocked by other users.",
    "20052": "Not all plans cancelled.",
    "20053": "Search results",
    "20054": "The planning cannot be saved as it still contains errors.\nPlease correct the input errors and try again.",
    "20055": "Planning contains input errors.",
    "20056": "The selected planning has been blocked by user '#1' with IP '#2'. Would you still like to open the planning and apply the lock?",
    "20057": "Planning was cancelled.",
    "20058": "The selected planning cannot be opened because it has been deleted.",
    "20060": "Should the planning active in furnplan be saved beforehand?",
    "20061": "Save currently open planning?",
    "20062": "Should the selected plan really be replaced by the currently open plan?",
    "20063": "Overwrite selected planning?",
    "20064": "The selected planning has been blocked by user '#1' with IP '#2'. Would you still like to overwrite the planning and apply the lock?",
    "20065": "Planning was blocked.",
    "20066": "Insert directories",
    "20067": "Insert plans",
    "20068": "Directory \"#1\" contains at least one plan that has been locked by a user. Therefore, this directory cannot be cut out.",
    "20069": "The directory cannot be moved because at least one plan has been locked.",
    "20070": "Directory not moved.",
    "20071": "Data is being copied. Please wait...",
    "20072": "It was not possible to move #1 of #2 plans because they were locked by other users.",
    "20073": "Not all plans have been postponed.",
    "20074": "It was not possible to cut out #1 of #2 plans because they were locked by other users.",
    "20075": "Not all plans cut out.",
    "20076": "The selected planning cannot be opened at the moment because another planning is being processed.",
    "20077": "Preview image",
    "20078": "Saving the current planning as new planning",
    "20079": "Saving and then regenerating a plan",
    "20080": "Saving and then opening a plan",
    "20081": "Opening a plan",
    "20082": "Saving a plan",
    "20083": "Take over",
    "20084": "Please enter a directory name",
    "20085": "Comment",
    "20086": "Print",
    "20087": "Zoom level",
    "20088": "Zoom in",
    "20089": "Taken out",
    "20090": "Zoom selection",
    "20091": "Show full page",
    "20092": "Customise on screen",
    "20093": "Show one page",
    "20094": "Show two pages",
    "20095": "Display pages continuously",
    "20096": "Hand selection",
    "20097": "Cursor",
    "20098": "Insert comment",
    "20099": "Insert text",
    "20100": "Insert marker",
    "20101": "Insert rectangle",
    "20102": "Insert ellipse",
    "20103": "Turn 90° to the left",
    "20104": "Turn 90° to the right",
    "20105": "Position",
    "20106": "ArtNo",
    "20107": "Designation",
    "20108": "H/W/D",
    "20109": "Quantity",
    "20110": "E-price",
    "20111": "G-Price",
    "20112": "Total price",
    "20113": "Please wait... Plans are imported.",
    "20114": "Please wait... Indices are updated.",
    "20115": "*MULTI",
    "20116": "Send",
    "20117": "Send planning",
    "20118": "Shipping information",
    "20119": "Field #1 is a mandatory field. Please enter a value.",
    "20120": "Mandatory field",
    "20121": "The field #1 has an input error.\nData type: #2",
    "20122": "Minimum value: #1",
    "20123": "Maximum value: #1",
    "20124": "The field data is reset.",
    "20125": "Input error",
    "20126": "Should the currently open planning be saved before dispatch?\nThis will update all information.",
    "20127": "The planning file and the preview image could not be saved.\nThe planning is therefore not sent.",
    "20128": "Error",
    "20129": "The planning items could not be determined.\nThe planning is therefore not sent.",
    "20130": "Planning is being dispatched. Please wait...",
    "20131": "Error when sending the planning",
    "20132": "Planning was sent successfully.",
    "20133": "Shipping successful",
    "20134": "Configuration of the project manager",
    "20135": "System",
    "20136": "Category",
    "20137": "Configuration",
    "20138": "Feature",
    "20139": "Add",
    "20140": "Reset",
    "20141": "Do you really want to reset column configuration '#1'?\nThis action cannot be undone.",
    "20142": "Reset configuration?",
    "20143": "Do you really want to reset configuration '#1'?\nThis action cannot be undone.",
    "20144": "Do you really want to delete configuration '#1'?\nThis action cannot be undone.",
    "20145": "Delete configuration?",
    "20146": "Properties",
    "20147": "Name",
    "20148": "Type",
    "20149": "Should property '#1' really be deleted?",
    "20150": "Delete property?",
    "20151": "Extended properties",
    "20152": "Abbreviation",
    "20153": "Field type",
    "20154": "Edit values",
    "20155": "Data type",
    "20156": "Set data type",
    "20157": "Allow ZERO",
    "20158": "Minimum value",
    "20159": "Maximum value",
    "20160": "Read-only",
    "20161": "Mandatory field",
    "20162": "Default value",
    "20163": "Value can be inherited",
    "20164": "This property has a dependency",
    "20165": "Depending on",
    "20166": "Value",
    "20167": "Obtain value from",
    "20168": "Serves as a sub-dependency of another property",
    "20169": "Subdependencies",
    "20170": "Input errors have occurred.",
    "20171": "Language text (index)",
    "20172": "Language texts",
    "20173": "Set",
    "20174": "Yes",
    "20175": "No",
    "20176": "Only for value",
    "20177": "Description of the",
    "20178": "Visible",
    "20179": "Visible in",
    "20180": "Add category",
    "20181": "Remove category",
    "20182": "Add property",
    "20183": "Remove property",
    "20184": "Category name",
    "20185": "Name of the property",
    "20186": "Should the category '#1' really be deleted?",
    "20187": "Delete category?",
    "20188": "Should property '#1' really be deleted?",
    "20189": "Delete property?",
    "20190": "Language-dependent texts",
    "20191": "Language",
    "20192": "Text",
    "20193": "Name of the configuration file",
    "20194": "Please enter the name",
    "20195": "Please enter a name.",
    "20196": "Enter name",
    "20197": "Value input",
    "20198": "Please enter a value.",
    "20199": "The specified value already exists in the list.",
    "20200": "Value already available",
    "20201": "The specified value cannot be added to the list because it does not match the data type.",
    "20202": "The directory '#1' was not found.",
    "20203": "The file '#1' was not found.",
    "20204": "Column configuration",
    "20205": "Standard configuration",
    "20206": "Available columns",
    "20207": "Assigned columns",
    "20208": "Position",
    "20209": "Optional name",
    "20210": "Column configuration has been saved.",
    "20211": "Save successfully",
    "20212": "Column configuration was not saved:\n#1",
    "20213": "Saving not successful",
    "20214": "Configuration of the IWOfurn interface",
    "20215": "Using the IWOfurn interface",
    "20216": "Directories",
    "20217": "Outgoing directory",
    "20218": "Incoming directory",
    "20219": "Archive directory",
    "20220": "Directory of the log file",
    "20221": "Communication settings",
    "20222": "Communication takes place via a system service",
    "20223": "Address of the WebService",
    "20224": "Proxy settings",
    "20225": "Do not use a proxy",
    "20226": "Use proxy from Internet Explorer",
    "20227": "Specify your own proxy",
    "20228": "Address",
    "20229": "User name",
    "20230": "password",
    "20231": "Domain",
    "20232": "Please correct the input errors before saving.",
    "20233": "An error occurred while saving the settings.",
    "20234": "Settings not saved!",
    "20235": "Settings saved successfully.",
    "20236": "Settings saved",
    "20237": "No proxy address specified.",
    "20238": "Missing directory",
    "20239": "Directory does not exist.",
    "20240": "File",
    "20241": "Progress",
    "20242": "Status",
    "20243": "Cancelled",
    "20244": "download",
    "20245": "Finished",
    "20246": "Downloads",
    "20247": "Back",
    "20248": "The selected file has already been downloaded.",
    "20249": "File already exists",
    "20250": "Explorer",
    "20251": "Online",
    "20252": "There are still active downloads for SketchUp.\nFinish furnplan anyway?",
    "20253": "Active downloads available",
    "20254": "Insert into the planning",
    "20255": "Should the selected models really be deleted?",
    "20256": "Delete models?",
    "20257": "Do you really want to delete the selected model?",
    "20258": "Delete model?",
    "20259": "Error when opening the model",
    "20260": "Forward",
    "20261": "Main page",
    "20262": "Model is being downloaded. Please wait...",
    "20264": "Found in",
    "20265": "Saving the planning",
    "20266": "Should the currently open planning be overwritten or should a new planning be created?",
    "20267": "Create new planning",
    "20268": "Overwrite",
    "20269": "furnplan - dispatch of planning '#1' with planning number '#2'",
    "20270": "Attached you will find the PDF document of planning '#1' with the planning number '#2'.",
    "20271": "furnplan - Dispatch of a planning",
    "20272": "Please find attached the PDF document of a planning.",
    "20273": "Configuration of the system service",
    "20274": "File",
    "20275": "Exit",
    "20276": "Configuration",
    "20277": "System service",
    "20278": "Transfer between (time):",
    "20279": "Maximum simultaneous connections:",
    "20280": "Waiting time between test intervals:",
    "20281": "Install",
    "20282": "Uninstall",
    "20283": "Start service",
    "20284": "Stop service",
    "20285": "Should the service really be terminated?",
    "20286": "Terminate service?",
    "20287": "Should the service really be uninstalled?",
    "20288": "Uninstall service?",
    "20289": "Configuration saved successfully.",
    "20290": "Success",
    "20291": "Configuration could not be saved.",
    "20292": "Active planning",
    "20293": "Active planning is being determined...",
    "20294": "Path",
    "20295": "Name",
    "20296": "Users",
    "20297": "IP",
    "20298": "Locked since",
    "20299": "Close",
    "20300": "Refresh",
    "20301": "Integrate into existing planning",
    "20302": "Sorting",
    "20303": "Ascending",
    "20304": "Descending",
    "20305": "Sorting",
    "20306": "Reset",
    "20307": "Show categories / properties that are only visible if they contain a value",
    "20308": "Heirs",
    "20309": "Do not inherit",
    "20310": "Display characters in plain text",
    "20311": "Log in",
    "20312": "Registration denied",
    "20313": "Registration",
    "20314": "An unexpected error has occurred in the application.",
    "20315": "Should the application be terminated?",
    "20316": "(Any unsaved data will be lost.)",
    "20317": "Unexpected error",
    "20318": "Approvals",
    "20319": "Change your own data",
    "20320": "Login data",
    "20321": "Additional information",
    "20322": "First name",
    "20323": "Surname",
    "20324": "Department",
    "20325": "Save (local)",
    "20326": "User control is active",
    "20327": "Rights",
    "20328": "Groups",
    "20329": "Departments",
    "20330": "Approvals",
    "20331": "Users",
    "20332": "Edit",
    "20333": "Designation",
    "20334": "Description of the",
    "20335": "Should the right '#1' really be deleted?",
    "20336": "Delete right?",
    "20337": "Settings",
    "20338": "Branches",
    "20339": "Should the department with the name '#1' really be deleted?",
    "20340": "Delete department?",
    "20341": "Name of the department is missing",
    "20342": "From",
    "20343": "Ends on",
    "20344": "From the administrator",
    "20345": "Starts on",
    "20346": "To",
    "20347": "Release type",
    "20348": "Users",
    "20349": "Group",
    "20350": "Department",
    "20351": "Branch",
    "20352": "Customer number D+H",
    "20353": "address",
    "20354": "Do you really want to remove the authorisation from user '#1' for '#2'?",
    "20355": "Remove release?",
    "20356": "Active",
    "20357": "User is active",
    "20358": "Groups/user rights",
    "20359": "Departments",
    "20360": "Group assignment",
    "20361": "User rights",
    "20362": "Should the user with the user name '#1' really be deleted?",
    "20363": "Delete user?",
    "20364": "Should the authorisation for user '#1' really be deleted?",
    "20365": "Name of the user already exists in the form '#1'.",
    "20366": "Username missing",
    "20367": "Username already exists",
    "20368": "furnplan - User administration",
    "20369": "Synchronise",
    "20370": "Send",
    "20371": "The configuration file with the branches could not be read in.",
    "20372": "Synchronisation failed",
    "20373": "Data is read by the branches....",
    "20374": "No path has been defined.",
    "20375": "Failed to log in to the branch.",
    "20376": "User configuration of the branch could not be read.",
    "20377": "Error during synchronisation",
    "20378": "Log debug messages:",
    "20379": "Clock",
    "20380": "Seconds",
    "20381": "Telephone",
    "20382": "Log out",
    "20383": "User:",
    "20384": "User-defined",
    "20385": "Create global group",
    "20386": "Rights",
    "20387": "Assigned",
    "20388": "Project manager is loading. Please wait...",
    "20389": "Wastepaper basket",
    "20390": "Final cancellation of all plans",
    "20391": "Restore all plans",
    "20392": "Permanently delete planning",
    "20393": "Restore planning",
    "20394": "Plans will be removed. Please wait...",
    "20395": "Should the plans really be cancelled for good?",
    "20396": "Delete plans for good?",
    "20397": "Plans will be restored. Please wait...",
    "20398": "Deleted plans",
    "20399": "Should the plans be cancelled permanently? This process cannot be cancelled.",
    "20400": "Subtotal",
    "20401": "One instance of this application is already running.",
    "20402": "Application is already running.",
    "20403": "The path to furnplan could not be determined.",
    "20404": "The application could not be initialised because the entry point could not be found.",
    "20405": "The configuration file for the standard elements could not be found.",
    "20406": "Help",
    "20407": "Use standard PDF viewer",
    "20408": "An error occurred when sending the PDF document.",
    "20409": "An error occurred when printing the PDF document.",
    "20410": "The help file could not be found.",
    "20411": "Placement suggestions",
    "20412": "The directory '#1' could not be created.",
    "20413": "Please check the authorisations on directory '#1'.",
    "20414": "Failed to check the authorisations.",
    "20415": "The project manager has been deactivated due to missing authorisations on directory '#1'. Please contact your administrator.",
    "20416": "No further plans can be saved as the maximum of #1 plans has been reached.",
    "20417": "Maximum number of permitted plans reached",
    "20418": "Import existing plans",
    "20419": "Save as standard view",
    "20420": "Standard view successfully saved.",
    "20421": "Standard view saved.",
    "20422": "Short text",
    "20423": "Should the entry '#1' really be deleted?",
    "20424": "Delete entry?",
    "20425": "Suitable for all users",
    "20426": "Training videos",
    "20427": "FURTHER INFO SEE DRAWING",
    "20428": "Your licence has expired.\nIf, contrary to this message, your licence has not expired, please perform a furnplan update.",
    "20429": "Your version is older than one year, please contact furnplan support to get a new version.",
    "20430": "Your licence is faulty, please contact furnplan support.",
    "20431": "Your licence has expired since #1 days. Please contact furnplan support.",
    "20432": "Your end customer version is older than one year, please contact the manufacturer to get a new version.",
    "20433": "Attention, planning already sold, overwriting not possible.",
    "20434": "Error when determining the planning status.",
    "20435": "Create new variant",
    "20436": "Information",
    "20437": "The planning must not be overwritten, please save the planning.",
    "20438": "Password entry",
    "20439": "Please enter the password for deletion:",
    "20440": "Ok",
    "20441": "Cancel",
    "20442": "Wrong password!\nThe planning(s) will not be deleted",
    "20443": "Wrong password!",
    "20444": "Discount",
    "20445": "Special price",
    "20446": "Change password",
    "20447": "Old password",
    "20448": "New password",
    "20449": "New password (repeat)",
    "20450": "Please enter your current password.",
    "20451": "Please enter your new password.",
    "20452": "The two passwords do not match.",
    "20453": "The current password is incorrect.",
    "20454": "Discount",
    "20455": "Specified discount not possible",
    "20456": "Old price",
    "20457": "New",
    "20458": "Refresh",
    "20459": "Reset",
    "20460": "Short name",
    "20461": "Information",
    "20462": "You do not have the necessary rights to perform this action.",
    "20463": "An error occurred when creating the PDF document",
    "20464": "Send customer data from project manager",
    "20465": "Manufacturer and programme search",
    "20466": "Your licence has expired.\nIf, contrary to this message, your licence has not expired, please perform a furnplan update.",
    "20467": "#hide# hide",
    "20468": "#Show #hide",
    "20469": "Delete plans after",
    "20470": "Delete plans in the recycle bin after",
    "20471": "Days.",
    "20472": "The selected planning cannot be opened because another user is already accessing it.",
    "20478": "The PDF cannot be saved because the file is still open.",
    "20480": "Restore planning",
    "20481": "furnplan has not finished correctly, should the planning be restored?",
    "20482": "created on:",
    "20483": "last registration on:",
    "20484": "last modified on:",
    "20485": "I hereby confirm that I have read the <a href=\"javascript:OpenURLInInternalBrowser('https://docs.google.com/document/d/1XYBGdAzdEDi7UpsD8PiNjFe06KvpkmEQiRkzG3J2ywU/edit#heading=h.wixtdz26tluq','TITEL')\"> terms of use</a> and accept them.",
    "20486": "Terms of use",
    "20487": "Please confirm that you have read the terms of use.",
    "20488": "Update index",
    "20490": "Render options",
    "20491": "AI image generation",
    "20500": "Catalogue settings",
    "20501": "Catalogue language",
    "20502": "Basic settings",
    "20503": "Print settings",
    "21000": "An error has occurred",
    "21001": "No image is defined that could be scaled",
    "21002": "The X and Y scaling of the image is incorrect",
    "21003": "Licence was renewed.",
    "21004": "Customer information has been updated.",
    "21005": "You are outside furnplan, on the website of the furniture manufacturer",
    "21006": "Factor",
    "21007": "Evaluate objects",
    "21008": "Evaluate this object and all selected objects - not all others",
    "21009": "Show floor plan in printout",
    "21010": "Do not show in printout floor plan",
    "21011": "Installation plan",
    "21012": "Important manufacturer information",
    "21013": "Please note the following information on planning with the manufacturer %s:",
    "21014": "Accept",
    "21015": "Further information",
    "21016": "Abandonment",
    "21017": "Button highlight in orange",
    "21018": "Show frame for button",
    "21019": "Production costs",
    "21020": "Area for electrical connections",
    "21021": "Area for sanitary connections",
    "21022": "Area for ventilation systems",
    "21023": "Area for communication lines",
    "21024": "Area for heating systems",
    "21025": "General connection area",
    "21026": "Socket",
    "21027": "Water connection",
    "21028": "You are loading a plan in which some items are deactivated for evaluation. Press CTRL + left mouse button on \"G-Price\" to open an overview of all items, including those that are currently hidden. There you can reactivate the deactivated articles if required.",
    "21029": "Highlight deactivated articles in the scene",
    "21030": "Switches",
    "21031": "Dimmer switch",
    "21032": "Hot and cold water",
    "21033": "Hot water",
    "21034": "Cold water",
    "21035": "Procedure",
    "21036": "Hot and cold water with drain",
    "21037": "Socket outlet with earthing contact for three-phase current (5-pin)",
    "21050": "Worktops",
    "25000": "Directory properties",
    "25001": "Directory name",
    "25002": "General",
    "25003": "Customer address",
    "25004": "Delivery address",
    "25005": "Billing address",
    "25006": "Architect's address",
    "25007": "Project name",
    "25008": "Seller name",
    "25009": "Order type",
    "25010": "Commission",
    "25011": "Delivery date planned",
    "25012": "Calendar week",
    "25013": "Remark",
    "25014": "PrePosText",
    "25015": "AfterPosText",
    "25016": "Created on",
    "25017": "Modified on",
    "25018": "Old planning number",
    "25019": "Planning number",
    "25020": "Salutation",
    "25021": "Academic title",
    "25022": "First name",
    "25023": "Surname",
    "25024": "Company",
    "25025": "Street",
    "25026": "Postcode",
    "25027": "Place",
    "25028": "Country",
    "25029": "e-mail",
    "25030": "Phone Company",
    "25031": "Private phone",
    "25032": "Mobile phone",
    "25033": "fax",
    "25034": "Letter salutation",
    "25035": "Actual customer address",
    "25036": "Recommended retail price on collection",
    "25037": "Address suffix",
    "25038": "Mr",
    "25039": "Mrs",
    "25040": "Order number",
    "25041": "Family",
    "25042": "Mrs and Mr",
    "25043": "Delivery time",
    "25044": "Days",
    "25045": "Weeks",
    "25046": "Months",
    "25047": "Unknown",
    "25048": "The delivery time request failed",
    "25049": "Web service not available",
    "25050": "Please check your internet connection",
    "25052": "Planning details",
    "25053": "Receiver ILN",
    "25054": "Transmitter ILN",
    "28000": "Change login data",
    "28001": "Change user data",
    "28002": "Approvals - Department",
    "28003": "Approvals - Branch",
    "28004": "Visibility - Department",
    "28005": "Visibility - Branch",
    "28006": "Approvals - Users",
    "28007": "Processed shop #1",
    "28008": "Transfer data to the local installation...",
    "28009": "Visibility - furnview",
    "28010": "Visibility - Department (minimal)",
    "28250": "The user can change their login details",
    "28251": "The user can change their additional information",
    "28252": "The user can create approvals for their assigned departments",
    "28253": "The user can create authorisations for their assigned branches",
    "28254": "The user can use the directories of all users in their assigned departments",
    "28255": "The user can use the directories of all users in their assigned branches",
    "28256": "The logged-in user can create releases directly for other users in their branch.",
    "28257": "The logged-in user can assign folders the property to synchronise with furnview.",
    "28258": "The user can only see the directories of all users in their assigned departments",
    "28500": "Administrators",
    "28501": "Users",
    "28750": "Group with administrative rights",
    "28751": "Group with the default user rights",
    "30000": "TEST TEXT ABC äöü Менеджер Позади никакой сосед& 散りぬるを هذا اختبا",
    "30001": "TEST TEXT ABC äöü Менеджер Позади никакой сосед& 散りぬるを هذا اختبا",
    "30002": "Navigation",
    "30003": "Dealer search",
    "30004": "Translations",
    "30005": "Language-dependent texts in furnplan",
    "30006": "Source language",
    "30007": "Target language",
    "30008": "Show pages",
    "30009": "Show time of last change",
    "30010": "Only display changed source texts",
    "30011": "Only display changed target texts",
    "30012": "Last change",
    "30013": "furnplan in use",
    "30014": "Contractual partner",
    "30015": "Test phase",
    "30016": "Use filter",
    "30017": "Contractual partner since",
    "30018": "Filter data",
    "30019": "Export data",
    "30020": "Quantity",
    "30021": "Filtered",
    "30022": "Displayed",
    "30023": "Show filter",
    "30024": "Hide filter",
    "30025": "Web service",
    "30026": "You are not logged into the system.",
    "30027": "Your login status",
    "30028": "Logon status on the system",
    "30029": "Log out of the system",
    "30030": "Server information",
    "30031": "Logged in users",
    "30032": "You do not have the necessary rights to access this page.",
    "30033": "Download language table",
    "30034": "Confirm target text",
    "30035": "Full name",
    "30036": "Country",
    "30037": "Last action",
    "30038": "Timing",
    "30039": "Manual",
    "30040": "Filter dimensions",
    "30041": "Filter articles",
    "30302": "",
    "30303": "",
    "30304": "",
    "30305": "",
    "31039": "Reset version",
    "31040": "Adopt version",
    "31041": "Country change active",
    "31042": "Manufacturer Internally active",
    "31043": "Developer status active",
    "31044": "Association management active",
    "31045": "Customise version",
    "40000": "Manufacturer data",
    "40001": "Installing the components",
    "40002": "Unpacking and copying the data (this process can take several minutes)",
    "40003": "Manufacturer selection",
    "40004": "Which manufacturers should be installed?",
    "40005": "Required components",
    "40006": "Install required components. Please wait...",
    "40007": "Check installed furnplan version",
    "40008": "It is not permitted to install an end customer version of furnplan over a normal version.",
    "40009": "Register components",
    "40010": "Manufacturer data cannot be copied as furnplan is in use.",
    "40011": "Adobe Acrobat is not installed. However, it is required for certain functions.",
    "40012": "Internet Explorer version 6 or higher is required.",
    "40013": "The installation of the components is being prepared.",
    "40014": "Components in total:",
    "40015": "Install component",
    "40016": "Carry out further file operations.",
    "40017": "Done.",
    "40018": "Adobe Acrobat Reader",
    "40019": "Install Microsoft Visual C++ Redistributable Package",
    "40020": "Install Adobe Acrobat Reader",
    "40021": "Install Microsoft Visual C++ Redistributable Package",
    "40022": "Microsoft .Net Framework 2.0",
    "40023": "Install .Net Framework 2.0",
    "40024": "Microsoft Installer 3.1 v2",
    "40025": "Install Microsoft Installer 3.1 v2",
    "40026": "Mircosoft Data Access Components 2.8 SP1",
    "40027": "Install Mircosoft Data Access Components 2.8 SP1",
    "40028": "Start furnplan Updater",
    "40029": "furnplan Updater",
    "40030": "Create links",
    "40031": "Shortcut on the desktop",
    "40032": "Shortcut in the start menu",
    "40033": "Single-user installation (full installation)",
    "40034": "Network installation (server)",
    "40035": "Network installation (client)",
    "40036": "furnplan Updater",
    "40037": "Customised installation",
    "40038": "Additional components",
    "40039": "Additional tasks",
    "40040": "Select manufacturer",
    "40041": "Please select at least one manufacturer.",
    "40042": "The FurnplanTransferService service could not be stopped. Please stop the service manually and run the setup again. After installation, the service must be started manually.",
    "40043": "The FurnplanTransferService service could not be restarted. Please start the service manually.",
    "40044": "New project manager",
    "40045": "Backup files are removed",
    "40046": "Remove backup files",
    "40047": "Restore backup...",
    "40048": "Remove files...",
    "40049": "An error occurred during installation. Backup will be restored.",
    "40050": "Scene contains planning errors! Please rectify these or contact the manufacturer for clarification",
    "40051": "In this model, articles are commercially hidden and may be present in the drawing!",
    "40052": "Back",
    "50000": "Have you just heard a sound?",
    "50002": "Question to the manufacturer",
    "51001": "Decoration",
    "51002": "Vases",
    "51003": "Plants",
    "51005": "Pictures",
    "51006": "Carpets",
    "51007": "Books",
    "51008": "Office supplies",
    "51009": "Lighting",
    "51010": "Electrical goods",
    "51012": "TV",
    "51013": "Audio",
    "51014": "Other",
    "51015": "Furniture",
    "51016": "Sofas",
    "51017": "Chairs",
    "51018": "Tables",
    "51019": "People",
    "51020": "Building objects",
    "51021": "Geometric shapes",
    "51022": "Fireplaces",
    "51023": "Room accessories",
    "51024": "Back to the list",
    "51025": "Cleanup failed",
    "51026": "This function is only possible in the 2D plan view.",
    "51027": "Sliding doors",
    "51028": "Leading glass sliding door",
    "51029": "Leading wooden sliding door",
    "51030": "Delete measuring points",
    "51031": "Unlock Pickpolys",
    "51032": "Changeable shapes",
    "51033": "Manufacturer",
    "51034": "Move to the left",
    "51035": "Move to the right",
    "51036": "Move upwards",
    "51037": "Move downwards",
    "51038": "Move to the back",
    "51039": "Move forwards",
    "51040": "Create elliptical shape",
    "51041": "Turn texture",
    "51042": "Insert new point here",
    "51043": "Corner rounding",
    "51044": "Delete this item",
    "51045": "Set offset",
    "51046": "Create cuboid",
    "51047": "Further camera options",
    "51048": "Load default values",
    "51049": "Graphic Engine",
    "51050": "For inactive work",
    "51051": "Fine tuning",
    "51052": "For active work",
    "51053": "At standstill",
    "51054": "Super visualisation at the touch of a button",
    "51055": "Create ceiling with",
    "51056": "Version info Manufacturer",
    "51057": "Accessories can also be removed with normal deletion",
    "51058": "Output settings",
    "51059": "Sun",
    "51060": "Cache *.flm file",
    "51061": "Display interval",
    "51062": "Image memory interval",
    "51063": "Finish rendering",
    "51064": "Position angle",
    "51065": "Elevation angle",
    "51066": "Add sunlight",
    "51067": "- poor quality<br>- fast preview",
    "51068": "- good quality<br>- suitable as a preview on normal PCs",
    "51069": "- better quality<br>- long rendering time until the image is clearly recognisable",
    "51070": "- best quality<br>- reduced rendering time for PCs with a good graphics card<br>(WARNING) Fully utilises the PC and can render it unusable during the rendering process!",
    "51071": "This is an experimental mode and should only be run as a developer!",
    "51072": "Expiry date:",
    "51073": "furnview",
    "51074": "Under <b>{0}</b> you can now load your planning with the following number:",
    "51075": "An email was also sent to <b>{0}</b>.",
    "51076": "Transfer configuration could not be started",
    "51077": "Executions",
    "51078": "export walls",
    "51079": "Contact person (furniture store)",
    "51080": "Name",
    "51081": "Telephone",
    "51082": "Click here to open the planning in your browser",
    "51083": "Upload",
    "51084": "Sofa - configurable",
    "51085": "Stool",
    "51086": "to the new page...",
    "51087": "Wall tattoos",
    "51088": "Black",
    "51089": "White",
    "51090": "Doors",
    "51091": "Create floor with",
    "51092": "Assign base floor",
    "51093": "Base floor",
    "51094": "Glass door clear glass",
    "51095": "Frosted glass door with partition",
    "51096": "Frosted glass door",
    "51097": "Single hinged door",
    "51098": "Hinged door with glazing bars",
    "51099": "Delete images",
    "51100": "You can also enter the RAL code directly",
    "51101": "Please select a colour",
    "51102": "Yellow",
    "51103": "Orange",
    "51104": "Red",
    "51105": "Violet",
    "51106": "Blue",
    "51107": "Green",
    "51108": "Grey",
    "51109": "Brown",
    "51110": "Black/white",
    "51111": "Here you can select a colour group",
    "51112": "You can also enter the NCS code directly",
    "51113": "Please select a colour",
    "51114": "Please select a colour",
    "51115": "NCS code has the wrong format! Example format: NCS S0300-N",
    "51116": "RAL code has the wrong format! Example format: RAL9010",
    "51117": "NCS code could not be found!",
    "51118": "RAL code could not be found!",
    "51119": "NCS Colour Picker",
    "51120": "RAL Colour Picker",
    "51121": "RGB colour picker",
    "51122": "Enter RAL code",
    "51123": "Enter NCS code",
    "51124": "Picture frame",
    "51125": "Canvas pictures",
    "51126": "Painting",
    "51127": "Architecture",
    "51128": "Miscellaneous",
    "51129": "Graphic",
    "51130": "Nature",
    "51131": "Animals",
    "51132": "Children",
    "51133": "Sikkens Colour Picker",
    "51134": "You can also enter the Sikkens code directly:",
    "51135": "ENTER SIKKENS CODE",
    "51136": "Sikkens code has the wrong format! Example format: SIKKENS ON.00.90",
    "51137": "Sikkens code could not be found!",
    "51138": "You can also enter the RALDESIGN code directly:",
    "51139": "RALDESIGN code has the wrong format! Example format: RAL 0001500",
    "51140": "RALDESIGN code could not be found!",
    "51141": "ENTER RALDESIGN CODE",
    "51142": "RALDESIGN Colour Picker",
    "51143": "Sky",
    "51144": "Panorama",
    "51145": "Evening mood",
    "51146": "Sunny",
    "51147": "Covered",
    "51148": "Covered_2",
    "51149": "Sunset",
    "51150": "Background image",
    "51151": "Slightly cloudy",
    "51152": "Cloudy",
    "51153": "Electrical installations",
    "51154": "Curtains",
    "51155": "Stairs",
    "51156": "Clothing",
    "51157": "Clear",
    "51158": "WARNING: Optimisations are necessary in the data system!",
    "51159": "ERROR: An error has occurred in the data system!",
    "51160": "ERROR: Serious errors have occurred in the logic!",
    "51161": "The \"{value}\" attribute of the \"{prop}\" feature is no longer available since version {version}!",
    "51162": "Evaluate",
    "51163": "Display",
    "51164": "Number of packages",
    "51165": "Blend",
    "51166": "Parcel area",
    "51167": "Room",
    "51168": "Determine the room situation",
    "51169": "Length",
    "51170": "Bar",
    "51171": "Total length",
    "51172": "Package length",
    "51173": "This article is not available as an additional item! Please call up the item via direct entry or via the catalogue structure.",
    "51174": "Consisting of",
    "51175": "Connections",
    "51176": "Performance",
    "51177": "Please note that the %d lights with %d connections you have selected have a total of %.0f watts ~Please check the number of ECGs ordered again",
    "51178": "Studio picture white",
    "51179": "Hint",
    "51180": "New room",
    "51181": "Make changeable floor",
    "51182": "Add a new floor",
    "51183": "Analyse articles in this area separately",
    "51184": "Display floor",
    "51185": "Floors & areas",
    "51186": "Evaluate as an article",
    "51187": "Hide articles in this area",
    "51188": "The selection options for the versions have changed.\nThe following versions have been changed:",
    "51189": "The \"{value}\" characteristic of the \"{prop}\" feature is only available from version {version}!",
    "51190": "The value \"{value}\" of the characteristic \"{prop}\" is not available!",
    "51191": "Customisation possible on request from the manufacturer!",
    "51192": "Breakthrough with frame",
    "51193": "Studio scene",
    "51194": "Background white",
    "51195": "Transparent background",
    "51196": "Pantone code has the wrong format! Example format: Pantone_XXXXX",
    "51197": "Pantone code could not be found!",
    "51198": "Enter Pantone code",
    "51199": "Pantone Colour Picker",
    "51201": "Talis",
    "51202": "SCHÖNER WOHNEN Collection",
    "51203": "Change collection",
    "51204": "The article '{article}' is no longer available",
    "51205": "The article '{article}' is only available from version {version}!",
    "51206": "The article '{article}' is no longer available since version {version}!",
    "51207": "This programme is no longer available!",
    "51208": "This programme is only available from version {version}!",
    "51209": "This programme is no longer available since version {version}!",
    "51211": "",
    "51212": "",
    "51213": "",
    "51214": "",
    "51215": "",
    "51216": "",
    "51217": "",
    "52000": "Low",
    "52001": "Medium",
    "52002": "High",
    "52003": "Customised",
    "52004": "Only a fast image is calculated.</br>Short rendering time.",
    "52005": "A good image is calculated.</br>Long render time.",
    "52006": "A very good image is calculated.</br>Very long rendering time.",
    "52007": "ATTENTION!</br>There is no time limit for rendering the image or a time can be specified.",
    "52008": "minutes",
    "52009": "Hours",
    "52010": "Calculation - general",
    "52011": "Port",
    "52012": "In domain Y/N",
    "52013": "Prevent evaluation",
    "52014": "Activate evaluation",
    "52015": "Evaluation etc.",
    "52016": "Delete redlining",
    "52017": "This planning contains redlining!",
    "52018": "This planning includes customisation!",
    "52019": "This planning contains collisions!",
    "52020": "This planning contains Redboxes!",
    "52021": "This planning contains additional items!",
    "52022": "Should this planning error be corrected now? (If you select \"No\", the file is saved and the error is transferred to the order).",
    "52023": "Minimum dimension of %.1f cm undercut",
    "53000": "Standard facepicker button visible",
    "53001": "Application language",
    "53002": "Window style",
    "53003": "Export data sheet",
    "53004": "New data sheet for each position",
    "53005": "Electrical diagram",
    "53006": "furnplan Theme",
    "60048": "Normal price",
    "60050": "Back up data to the furncloud",
    "60051": "furncloud number",
    "60052": "Extended dealer search",
    "60053": "ILN number Dealer",
    "60054": "Deliveries to ILN dealers",
    "60055": "New despatch",
    "60056": "Dealer customer number",
    "60057": "CC e-mail address",
    "60058": "Shipping",
    "60059": "Shipto number",
    "60060": "Shipto paraphrase",
    "60061": "Settings",
    "60062": "Manage my orders via ILN number",
    "60063": "Read more",
    "60064": "I don't know my ILN number and use my customer number instead.",
    "60065": "The ILN (International Location Number) is used in electronic messaging between customers and suppliers when location advice is important.",
    "60066": "This number consists of 13 digits.",
    "60067": "This number can be used, for example, to identify physical locations or legal entities,",
    "60068": "or to identify a specific shelf in a shop, for example.",
    "60069": "The ability to identify locations with a unique number is the key to many business processes.",
    "60070": "New password\n for e-mail",
    "60071": "Current price",
    "60072": "<--Save -->",
    "60073": "Domain",
    "60074": "Calculation - General",
    "60075": "furncloud",
    "60076": "Proxy",
    "60077": "Login",
    "60078": "Confirm password",
    "60079": "Texts",
    "60080": "Use warehouse management",
    "60081": "You can activate or deactivate warehouse management here.",
    "60082": "The FurnplanTransferService is automatically removed if the warehouse management is not active.",
    "60083": "Check delay",
    "60084": "Transmission hour (0-24)",
    "60085": "Last transmission:",
    "60086": "TransferService is executed",
    "60087": "TransferService installed",
    "60088": "Actions",
    "60089": "Transfer now",
    "60090": "Log",
    "60091": "Destination path",
    "60092": "Name of the shop",
    "60093": "Store properties",
    "60094": "Export prices",
    "60095": "Tree structure",
    "60096": "Attention!",
    "60097": "Admin dialogue",
    "60098": "Please enter a valid ILN!",
    "60099": "Message",
    "60100": "ProgShort",
    "60101": "ILN",
    "60102": "WaWiSign",
    "60103": "PDF",
    "60104": "Max. Discount",
    "60105": "Purchase price deduction",
    "60106": "Reference art.",
    "60107": "Searches for the entered text in all cells of the table.",
    "60108": "Filters out all rows in the table that do not contain the specified text",
    "60109": "All values must exist",
    "60110": "Save as...",
    "60111": "Saved filter:",
    "60112": "Advanced filter options ...",
    "60113": "delete-->",
    "60114": "delete -->",
    "60115": "Already set",
    "60116": "Only numbers allowed!",
    "60117": "CcMailAddress",
    "60118": "Invalid password!",
    "60119": "Password valid ... save!",
    "60120": "Font size",
    "60121": "orgResX",
    "60122": "orgResY",
    "60123": "ResX",
    "60124": "ResY",
    "60125": "KdNr",
    "60126": "Log file",
    "60127": "Main log",
    "60128": "Execute thread under",
    "60129": "ExternalCalculationFile",
    "60130": "Value",
    "60131": "Default value",
    "60132": "Zero allowed",
    "60133": "Guid",
    "60134": "guid",
    "60135": "Used to transfer furnplan configurations to branches",
    "60136": "Exporting the table to other formats",
    "60137": "Manufacture.",
    "60138": "Dealer search extended",
    "60139": "Tree structure",
    "60140": "Scene contains no lighting!",
    "60141": "Rendering with furnray",
    "60142": "Sketch",
    "60143": "Normal",
    "60144": "High",
    "60145": "Basic lighting",
    "60146": "None",
    "60147": "Little",
    "60148": "Medium",
    "60149": "Much",
    "60150": "Function to add additional information to objects",
    "60151": "Two functions on the button",
    "60152": "Click on the left to open furnray",
    "60153": "Right-click to start the super display",
    "60154": "You will be informed by e-mail as soon as the order has been completed.",
    "60155": "e-mail",
    "60156": "The right-click function is not available in Terminal Server mode.",
    "60157": "Save",
    "60158": "Reset",
    "60159": "Like furnplan",
    "60160": "furncloud history",
    "60161": "Sets all other versions that can also have the currently selected value to this value.",
    "60162": "Prevents the action of taking over the value of another execution here.",
    "60163": "Very little",
    "60164": "Cloud password:",
    "60165": "The cloud password is used when you download cloud files\nvia our web service.",
    "60166": "Standard discount",
    "60167": "Flags",
    "60263": "Server",
    "60274": "Loading",
    "60276": "Floor reflection",
    "60277": "Mirror reflection",
    "60278": "Edge shadow",
    "60279": "<strong>Please note</strong>: The version of 'furnray' available here is currently still in the <strong>beta phase!</strong> There may be deviations from the furnplan scene. If you have any questions, please contact",
    "60280": "furnray can only be used if uploading to furncloud is activated. You can find instructions on how to do this <a href=\"https://goo.gl/6T4b7g\" target=\"_blank\">here</a> </br>If you have any questions, please contact support or send an email to",
    "60281": "furnray",
    "60282": "Print article numbers (views)",
    "60283": "Redlining",
    "60284": "Electrical diagram",
    "60285": "The more lighting is planned in the scene, the lower the basic lighting should be set!",
    "60286": "Move camera with left mouse button",
    "60287": "Mon. - Fri., 9:00 - 17:00 (CET)",
    "60288": "Spouses",
    "60289": "Family",
    "60290": "Light",
    "60291": "Dark",
    "60292": "Please restart the programme to apply the changes",
    "60293": "Window sill:",
    "60294": "add",
    "60295": "Expand",
    "60296": "Use old redlining",
    "60297": "I hereby confirm that I have read the terms of use and accept them.",
    "60298": "Window division:",
    "60299": "Edge line in furniture colour",
    "60300": "Automatically transfer properties for only one object in the scene",
    "60301": "",
    "60302": "",
    "60303": "",
    "60304": "",
    "61001": "Warning!",
    "61002": "Change log",
    "61003": "The render export is only possible with data from the already available trading status!",
    "61004": "Adjusting the track width",
    "61005": "St arrangement",
    "61010": "Set current material as standard",
    "61011": "Behaviour of the dimensional chains",
    "61012": "Catch points perpendicular",
    "61013": "2D dimension chains for floor plan printing",
    "61014": "Change wall inside / outside",
    "61015": "The planning to be opened has been redirected to catalogue %s. Please only use this catalogue for adjustments.",
    "61016": "Primary colour",
    "61017": "Secondary colour",
    "61018": "Material",
    "61019": "Tiles",
    "61020": "Stone",
    "61021": "Leather and fabrics",
    "61022": "Glass",
    "61023": "Chrome",
    "61024": "Wall tattoos",
    "61025": "2D dimension chains for frontal print view",
    "61026": "Floor lamps",
    "61027": "Ceiling lights",
    "61028": "Table lamps",
    "61029": "Wall lights",
    "61030": "Undefined",
    "61031": "Include decorative mattress as standard",
    "61032": "Customer",
    "61033": "Invalid e-mail address",
    "61034": "Indirect lighting",
    "61035": "Import Edigraph file",
    "61036": "Outdoor",
    "61037": "Bathroom",
    "61038": "Restart required after selecting furnplan!",
    "61039": "Some elements have been removed as there is no activation for this customer number.",
    "61040": "Import",
    "62000": "Camera is looking at the outside wall! Please change your point of view.",
    "62001": "Own images are not supported by furnray.",
    "62002": "or",
    "62003": "The use of criminally relevant and infringing content (in particular incitement to hatred and child pornography) is prohibited (see GTC).\nPlease note that you must indemnify us against any costs incurred in the event of a claim against us due to content uploaded by you (see GTC).",
    "62004": "Cancel export?",
    "62005": "There are non-configured additional items, cancel export?",
    "512100": "Without",
    "4041001": "Sikkens Colour Picker 4041",
    "5051001": "Sikkens Colour Picker 5051",
    "-1002": "No neighbour downstairs!",
    "-1003": "No neighbour upstairs!",
    "-1004": "No neighbour in front!",
    "-1005": "No neighbour at the back!",
    "-1006": "Determined Z dimension not possible due to min/max values!",
    "-1007": "The room height was exceeded!",
    "-1008": "Is there sufficient mounting clearance (see type list) for the room height?",
    "-1009": "Straight topsoil too short!",
    "-1010": "Straight top shelf too narrow!",
    "-1011": "Sloping topsoil too short!",
    "-1012": "Height in cupboard too small!",
    "-1013": "Partial lateral bevelling not possible!",
    "-1014": "Complete lateral bevelling not possible!",
    "-1015": "Partial rear bevelling not possible!",
    "-1016": "Complete bevelling at the rear not possible!",
    "-1017": "Partial bevelling at rear left (for corner units) not possible!",
    "-1018": "Complete bevelling at the rear left (for corner units) not possible!",
    "-1019": "Partial bevelling at the rear right (for corner units) not possible!",
    "-1020": "Complete bevelling at the rear right (for corner units) not possible!",
    "-1021": "Width reduction not possible!",
    "-1022": "Depth reduction not possible!",
    "-1023": "Height reduction not possible!",
    "-1024": "Left-hand bevelling only permitted with right-hand stop!",
    "-1025": "Right bevelling only permitted with left stop!",
    "-1026": "Upper horizontal leg too short!",
    "-1027": "Determined Y dimension not possible due to min/max values!",
    "-1028": "Determined X dimension not possible due to min/max values!",
    "-1029": "Width enlargement available and not permitted",
    "-1030": "Depth magnification available and not permitted",
    "-1031": "Height magnification available and not permitted",
    "-1037": "Set first measuring point (left-click)",
    "-1038": "Set second measuring point (left-click)",
    "-1039": "Set the depth of the dimension chain (move the mouse, then left-click)",
    "aaa": "Depth magnification available and not permitted",
    "adminHtml.applicationBehavior.Collapse": "Folding",
    "adminHTML.applicationBehavior.directoryRow.question": "The specified directory does not exist, do you still want to keep the entered value?",
    "adminHTML.applicationBehavior.directoryRow.question.caption": "Question",
    "adminHtml.applicationBehavior.exception": "An error has occurred",
    "adminHtml.applicationBehavior.Expand": "Unfold",
    "adminHtml.applicationBehavior.import.exception": "The import could not be performed.\\r\\nPlease check the values in your ApplicationBehavior to ensure that the values are correct.",
    "adminHtml.applicationBehavior.InitializationFailed": "Error when initialising the application behaviour",
    "adminHtml.applicationBehavior.loading": "Loading...",
    "adminHtml.applicationBehavior.Restore": "Do you really want to reset the settings?",
    "adminHtml.applicationBehavior.Search": "Search",
    "adminHtml.applicationBehavior.Search.Close": "Close search",
    "adminHtml.applicationBehavior.ValidatingEditorMessage": "The value {0} is not correct. Please note {1}",
    "adminHtml.directoryrow.selectDirectory": "Please enter a list",
    "adminHtml.DSGVO.TabCaption": "GDPR",
    "adminHtml.licenseupdate.license": "Licence",
    "adminHtml.licenseupdate.noPathProvided": "No path has been stored for the shop",
    "adminHtml.licenseupdate.notInitialized": "The licence updater has not been initialised",
    "adminHtml.licenseupdate.serverNotReachable": "The server was not accessible",
    "adminHtml.licenseupdate.updateDealerInfo": "Renew customer information",
    "adminHtml.licenseupdate.updateLicense": "Renew licence",
    "adminHtml.migration.shouldImport.caption": "Import",
    "adminHtml.migration.shouldImport.question": "An applicationBehavior file was found in your Furnplan directory\\r\\n\\r\\nWould you like to import the applicationBehavior?",
    "adminHtml.migration.shouldImport.safetyQuestion": "An applicationBehavior file was found in your Furnplan directory\\r\\n\\r\\nWould you like to import the applicationBehavior?",
    "adminHtml.numberrow.errorBig": "The value must be greater than <b>{0}</b>",
    "adminHtml.numberrow.errorFooter": "The value was set to {0} to avoid errors",
    "adminHtml.numberrow.errorSmall": "The value must be less than <b>{0}</b>",
    "adminHtml.numberrow.max": "Max",
    "adminHtml.numberrow.min": "Min",
    "adminHtml.numberrow.nulltext": "Please enter a whole number",
    "adminHtml.ServiceInstaller.AllowDataExchange": "Allow data exchange between service and desktop",
    "adminHtml.ServiceInstaller.Continue": "continue service",
    "adminHtml.ServiceInstaller.DisplayName": "Display name",
    "adminHtml.ServiceInstaller.Pause": "Pause service",
    "adminHtml.ServiceInstaller.ServiceState": "Service status",
    "adminHtml.ServiceInstaller.UserNotFound": "User not found",
    "adminHtml.ServiceInstaller.UserNotFoundQuestion": "The user you specified was not found, do you still want to continue?",
    "adminHtml.ServiceInstaller.UseSystemAccount": "Use local system account",
    "adminHtml.ServiceInstaller.UseUserAccount": "Use user",
    "administrationX.addNewGroup": "Create new group",
    "administrationX.addNewProperty": "Create new property",
    "administrationX.addRow": "Add row",
    "administrationX.allocation": "Allocation",
    "administrationX.article.ean": "EAN",
    "administrationX.article.notfound.caption": "Data error",
    "administrationX.article.notfound.content": "Unfortunately, no data was found for your enquiry.",
    "administrationX.article.pg1": "PG 1",
    "administrationX.article.pg10": "PG 10",
    "administrationX.article.pg2": "PG 2",
    "administrationX.article.pg3": "PG 3",
    "administrationX.article.pg4": "PG 4",
    "administrationX.article.pg5": "PG 5",
    "administrationX.article.pg6": "PG 6",
    "administrationX.article.pg7": "PG 7",
    "administrationX.article.pg8": "PG 8",
    "administrationX.article.pg9": "PG 9",
    "administrationX.articleCalculation.articleText": "Article text",
    "administrationX.articleCalculation.defaultDiscount": "Standard discount",
    "administrationX.articlelevel": "Calculation at item level",
    "administrationX.articleNotFound.caption": "Articles were not found",
    "administrationX.articleNotFound.content": "Sorry, the articles were not found. Please reload the page and try again.",
    "administrationX.assignGlobalCalculationSettings": "Assign global calculation settings to all participants in store management.",
    "administrationX.assigniln": "Assign ILN to all participants in branch management.",
    "administrationX.assignToAll": "Assign to all",
    "administrationX.assignToAllInfo": "The configuration is assigned to all participants in the file management.",
    "administrationX.branch.store.email": "Email addresses for error notification",
    "administrationX.branch.store.emailNumberDeclaration": "Please enter multiple e-mail addresses separated by a ;",
    "administrationX.branchManagement.add": "",
    "administrationX.branchManagement.deleteInfo.caption": "Branch management information",
    "administrationX.branchManagement.deleteInfo.content": "The shop has been added to store management. The individual configuration planning has been deleted. Please remember to carry out a new configuration planning.",
    "administrationX.branchManagement.masterInfo": "The main branch is always part of the branch administration.",
    "administrationX.branchManagement.participants": "Branch management participants",
    "administrationX.branchManagement.remove.deleteInfo.content": "The shop has been removed from store management. The individual configuration planning has been deleted. Please remember to inform the shop that a new configuration planning must be carried out.",
    "administrationX.calculation.erpSigns": "WaWi sign",
    "administrationX.calculation.programShortcut": "Programme abbreviation",
    "administrationX.calculation.referenceArticleNumber": "Reference article number",
    "administrationX.caption.resetAll": "Reset",
    "administrationX.changeCustomerNumber": "Switching the customer number was not successful.",
    "administrationX.codepage": "Code page for import and export",
    "administrationX.configuration.delete.failed.caption": "Delete failed",
    "administrationX.configuration.delete.failed.content": "It is not possible to delete the configuration as it is still actively selected.",
    "administrationX.content.resetAll": "Would you like to set all values to default values?",
    "administrationX.copyRow": "Copy row",
    "administrationX.createNewConfiguration.createOn": "Created on:",
    "administrationX.createNewConfiguration.updateOn": "Updated on:",
    "administrationX.currentDhts": "Current dht's from the",
    "administrationX.deleteAssignmentsContent": "Should all other assignments be deleted?",
    "administrationX.deleteAssignmentsTitle": "Delete assignments",
    "administrationX.deleteHeader": "Delete address line",
    "administrationX.deleteHeader.content": "Should the image for the address bar be deleted?",
    "administrationX.deleteLogo": "Delete logo",
    "administrationX.deleteLogo.content": "Should the image for the logo be deleted?",
    "administrationX.discard": "Discard",
    "administrationX.executeExport": "Perform export",
    "administrationX.export.canceled": "An internal error has occurred while retrieving the data.\nPlease restart furnplan. If this message still appears, please contact furnplan support.",
    "administrationX.export.failed": "The data export has failed. Please contact D+H customer support.",
    "administrationX.export.noExport": "Administration - Export failed.\nThe data could not be exported.\nThe export data from %s is still being used.\nPlease contact your administrator to restart the export.",
    "administrationX.export.serverNotReachable": "No connection to the administration server.\nIt was not possible to retrieve current data.\nThe export data from %s is still being used.\nPlease contact your administrator to check the connection.",
    "administrationX.export.unequalVersions": "The data provided by the administration is available in a lower version than the current furnplan version.",
    "administrationX.exportBasicValues": "Export base values only",
    "administrationX.exportFinished": "Current data has been finalised.",
    "administrationX.exportInQueue": "The export order has been accepted.",
    "administrationX.exportStarted": "Export has been started.",
    "administrationX.exportStatus": "Export status",
    "administrationX.globalRounding": "Global rounding type",
    "administrationX.hideRows": "hide inactive rows",
    "administrationX.import.capture": "Table import",
    "administrationX.import.failed.content": "The import was not successful.",
    "administrationX.import.successful.content": "The import was successful.",
    "administrationX.individualSettings": "Customised settings",
    "administrationX.info.selectProgramCaption": "Select programme",
    "administrationX.info.selectProgramContent": "Please select at least one programme.",
    "administrationX.infobox.choseConfiguration.caption": "Missing configurations",
    "administrationX.infobox.choseConfiguration.content": "Please select a suitable configuration for each configuration setting.",
    "administrationX.inheritsfrom": "Inherits from",
    "administrationX.invalid": "Invalid entries",
    "administrationX.invalidPleaseCorrect": "You have made invalid entries. Please correct them before saving.",
    "administrationX.lastExport": "Last export from",
    "administrationX.license": "Renew licence and customer information",
    "administrationX.licenseNew": "Licences and customer information have been renewed.",
    "administrationX.licenseNotNew": "Licences and customer information have not been renewed.",
    "administrationX.link": "Link",
    "administrationX.live.deletedPrintConfigurationCapture": "Configuration deleted",
    "administrationX.live.deletedPrintConfigurationText": "The configuration you are editing has been deleted by another access.",
    "administrationX.login.missingCustomerNumber": "Customer number is missing.",
    "administrationX.merge.database": "Database",
    "administrationX.merge.local": "Local",
    "administrationX.mergedialog": "Conflict - The data has been changed by another user",
    "administrationX.myData": "My change",
    "administrationX.newProfile": "New profile",
    "administrationX.notExportedChanges": "There are non-exported changes. Would you like to export the configurations now?",
    "administrationX.notInheritable": "Not inheritable",
    "administrationX.notPermission": "You are not authorised to change the configuration of this branch.",
    "administrationX.openArticleCalculation": "Open article calculation",
    "administrationX.pdf.notAvailable": "There is no pdf available yet. Please upload a pdf first and save it.",
    "administrationX.pdf.size.program": "The file size must not exceed 30 MB.",
    "administrationX.planningGroupInfo": "The planning settings can be made in this area.",
    "administrationX.planningGroupName": "Planning settings",
    "administrationX.planningNumberMaxInfo": "Represents the number up to which the planning numbers are incremented.",
    "administrationX.planningNumberMaxName": "Planning numbers maximum",
    "administrationX.planningNumberMinInfo": "Sets the number from which the planning numbers are incremented.",
    "administrationX.planningNumberMinName": "Planning numbers minimum",
    "administrationX.positionDownFail.content": "The row is already in the last position.",
    "administrationX.positionSelectFail.content": "Please select only the row you wish to move.",
    "administrationX.positionUpFail.content": "The row is already in the first position.",
    "administrationX.pricecalculation.articletype.proposal": "Proposal/preference",
    "administrationX.print.alreadyUploaded": "You have already uploaded this image.",
    "administrationX.print.customAddressLine": "Customised address line:",
    "administrationX.print.customLogo": "Customised logo:",
    "administrationX.print.format": "The format of your image must be 1000 px * 500 px.",
    "administrationX.print.formatHeader": "The format of your image must be 1000 px * 50 px.",
    "administrationX.print.large": "File too large",
    "administrationX.print.standard.currentFoot": "Currently uploaded address line",
    "administrationX.print.standard.currentLogo": "Currently uploaded logo",
    "administrationX.profile": "Profile",
    "administrationX.profile.delete.failed.content": "It is not possible to delete the profile as it is still actively selected.",
    "administrationX.profilemanagement": "Profile management",
    "administrationX.profilePin": "Profile pin",
    "administrationX.profiles": "Profiles",
    "administrationX.programcalculation.onlyIndividualValues": "Only display individual values",
    "administrationX.releaseId": "Release Id",
    "administrationX.removeGroup": "Delete selected group",
    "administrationX.removeRow": "Remove row",
    "administrationX.renewalNotSuccessful": "Renewal not successful",
    "administrationX.renewalSuccessful": "Successful renewal",
    "administrationX.selectGroup": "Please select a group in advance in which the property is to be created.",
    "administrationX.selection": "Selection",
    "administrationX.store.dataExport": "Status of data export for furnplan",
    "administrationX.table.discount": "Equity discount",
    "administrationX.table.manufacturerId": "Manufacturer Id WaWi",
    "administrationX.table.maximumDiscount": "Maximum discount",
    "administrationX.table.standardDiscount": "Standard discount",
    "administrationX.title.bequeathed": "Activate/deactivate inherit value",
    "administrationX.title.inherited": "Activate/deactivate inherit value",
    "administrationX.title.reset": "Set to the default value",
    "administrationX.wawi.branch": "Branch",
    "administrationX.wawi.configurationid": "Configuration Id",
    "administrationX.wawi.publishedId": "Published ID",
    "administrationX.wawi.url": "Url",
    "administrationX.yourData": "Existing data",
    "administrationXexportCustomValues": "Only export your own values",
    "adress": "Address",
    "aiImageGen.active": "No AI rendering",
    "aiImageGen.AiDirect": "",
    "aiImageGen.AiFurnray": "",
    "aiImageGen.aiLabel": "",
    "aiImageGen.atmosphere": "Ambience",
    "aiImageGen.atmosphere1": "Neutral",
    "aiImageGen.atmosphere2": "Warm",
    "aiImageGen.atmosphere3": "Cool",
    "aiImageGen.atmosphere4": "Evening",
    "aiImageGen.atmosphere5": "At night",
    "aiImageGen.atmosphereOwn": "Enter ambience",
    "aiImageGen.city": "City",
    "aiImageGen.distanceView": "View into the distance",
    "aiImageGen.distanceView1": "Big city",
    "aiImageGen.distanceView2": "Village",
    "aiImageGen.distanceView3": "Meadow",
    "aiImageGen.distanceView4": "Forest",
    "aiImageGen.distanceView5": "Mountains",
    "aiImageGen.distanceView6": "Lakeland",
    "aiImageGen.distanceView7": "Beach with sea",
    "aiImageGen.errorIllegalWords": "User input for AI contains forbidden words! No image is generated, remove the words and upload again.",
    "aiImageGen.finishReason.BLOCKLIST": "The model stopped generating because the content contains a term from a configured blocklist.",
    "aiImageGen.finishReason.FINISH_REASON_UNSPECIFIED": "The finish reason is unspecified.",
    "aiImageGen.finishReason.IMAGE_OTHER": "The image generation stopped for a reason not otherwise specified.",
    "aiImageGen.finishReason.IMAGE_PROHIBITED_CONTENT": "The generated image may contain prohibited content.",
    "aiImageGen.finishReason.IMAGE_RECITATION": "The generated image may be a recitation from a source.",
    "aiImageGen.finishReason.IMAGE_SAFETY": "The generated image potentially violates safety policies.",
    "aiImageGen.finishReason.MALFORMED_FUNCTION_CALL": "The model generated a function call that is syntactically invalid and can't be parsed.",
    "aiImageGen.finishReason.MAX_TOKENS": "The model generated the maximum number of tokens allowed by the maxOutputTokens parameter.",
    "aiImageGen.finishReason.MODEL_ARMOR": "The model response was blocked by Model Armor.",
    "aiImageGen.finishReason.NO_IMAGE": "The model was expected to generate an image, but didn't.",
    "aiImageGen.finishReason.OTHER": "The model stopped generating for a reason not otherwise specified.",
    "aiImageGen.finishReason.PROHIBITED_CONTENT": "The model stopped generating because the content may be prohibited.",
    "aiImageGen.finishReason.RECITATION": "The model stopped generating because the content may be a recitation from a source.",
    "aiImageGen.finishReason.SAFETY": "The model stopped generating because the content potentially violates safety policies. NOTE: When streaming, the content field is empty if content filters block the output.",
    "aiImageGen.finishReason.SPII": "The model stopped generating because the content may contain sensitive personally identifiable information (SPII).",
    "aiImageGen.finishReason.STOP": "The model reached a natural stopping point or a configured stop sequence.",
    "aiImageGen.finishReason.undefined": "An unspecified error has occurred.",
    "aiImageGen.finishReason.UNEXPECTED_TOOL_CALL": "The model generated a function call that is semantically invalid. This can happen, for example, if function calling is not enabled or the generated function is not in the function declaration.",
    "aiImageGen.hint": "",
    "aiImageGen.hintTxt": "",
    "aiImageGen.noAI": "",
    "aiImageGen.noFurnray": "",
    "aiImageGen.person": "Insert persons",
    "aiImageGen.renderStyle.ID_RENDER_COLOREDPENCIL": "",
    "aiImageGen.renderStyle.ID_RENDER_COPICMARKER": "",
    "aiImageGen.renderStyle.ID_RENDER_MIXED_MEDIA": "",
    "aiImageGen.renderStyle.ID_RENDER_PASTELCHALK": "",
    "aiImageGen.renderStyle.ID_RENDER_PHOTO": "",
    "aiImageGen.renderStyle.ID_RENDER_WATERCOLOR": "",
    "aiImageGen.room": "Room / Surroundings",
    "aiImageGen.room1": "Living room",
    "aiImageGen.room10": "Garage",
    "aiImageGen.room11": "Terrace",
    "aiImageGen.room12": "Garden",
    "aiImageGen.room2": "Bedroom",
    "aiImageGen.room3": "Entrance area / corridor",
    "aiImageGen.room4": "Bathroom",
    "aiImageGen.room5": "Kitchen",
    "aiImageGen.room6": "Children's room",
    "aiImageGen.room7": "Youth room",
    "aiImageGen.room8": "Baby room",
    "aiImageGen.room9": "Workshop",
    "aiImageGen.roomStyle": "Interior design",
    "aiImageGen.roomStyle1": "Insert accessories",
    "aiImageGen.roomStyle2": "Generate new room situation with AI",
    "aiImageGen.sanitizeItems": "The following elements have been adapted:",
    "aiImageGen.sanitizeMessage": "Your user prompt has been customised:",
    "aiImageGen.scope": "Scope",
    "aiImageGen.scope.option1": "Simple, fast and beautiful incl. room and accessories",
    "aiImageGen.scope.option2": "Exclusively AI rendering of the scene",
    "aiImageGen.scope.option3": "Customised settings",
    "aiImageGen.style": "Style direction",
    "aiImageGen.style1": "Modern",
    "aiImageGen.style10": "Country",
    "aiImageGen.style2": "Classic",
    "aiImageGen.style3": "Scandinavian",
    "aiImageGen.style4": "Mediterranean",
    "aiImageGen.style5": "Industrial",
    "aiImageGen.style6": "Boho",
    "aiImageGen.style7": "Minimalist",
    "aiImageGen.style8": "Japandi",
    "aiImageGen.style9": "Retro/Vintage",
    "aiImageGen.userVal": "Own input",
    "aiImageGen.windowView": "View from the window",
    "aiImageGen.windowView1": "Balcony",
    "aiImageGen.windowView2": "Terrace",
    "aiImageGen.windowView3": "Pavement and busy street",
    "aiImageGen.windowView4": "Garden",
    "and_agree_with_this": "and agree with it.",
    "application_frame": "Standard application framework",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_ACCESSOIRE": "Show 'Accessories' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_ANYDESK": "Creates an AnyDesk button next to the \"Help\" button.",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_CLOUD": "Show 'Cloud' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_COPY": "Show 'Copy object' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_DELETE": "Show 'Delete object' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_ECO_MOBILIER": "Show 'ECO Mobilier France' in the print options",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_EXTRAWAWI_IWOFURN": "Show 'IWOfurn' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_EXTRAWAWI_USER_DEFINED": "Determines the path of the button for an extra WAWI",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_FILE_NEW": "Show 'New project' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_FILE_OPEN": "Show 'Load project' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_FILE_SAVE": "Show 'Save project' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_FURNRAY": "Shows the 'furnray' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_FURNSHOW": "Show furnshow button in the \"Help\" interface",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_GENERAL_MAIL_RECEIVER": "Enter a general e-mail address for \"Question to manufacturer\" and \"Send order to manufacturer\".",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_GPRICE": "Show 'G price' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_GPRICE_CTRL_RIGHT_MOUSE_CLICK": "Activate 'CTRL-right click on G-price'",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_GPRICE_RIGHT_MOUSE_CLICK": "Activate 'Right-click on G-price'",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_HELP": "Show 'Help' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_HOME_VIEWER": "Show 'Homeviewer' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_KATA_ONOFF": "Show/hide catalogue' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_MAIL": "Show 'Send planning' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_MAIL_MAIL": "Show 'Send planning' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_MAIL_MANUFACTURER_QUESTION": "Show 'Send planning to the manufacturer' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_MAIL_ORDER": "Show button 'Send order to manufacturer'",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_MAIL_SUPPORT": "Show 'Support Mail' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_MOVE": "Show 'Move object' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_NEWUI": "Hide 'New furnplan interface' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_OPTIONS_EXPORT": "Hide 'Import / Export' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_OPTIONS_MEASURE": "Show '3D Measure' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_OPTIONS_OPTIONS": "Show 'Options' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_OPTIONS_PRINT": "Show 'Print options' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_PRINT": "Hide 'Print' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_PRINT_ARTICLE_NO_PRICE": "Hides the button in the print options.",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_PRINT_ARTICLE_NUMBERS": "Shows the 'Item numbers' option in the print settings",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_PRINT_ARTICLE_OPTIONS": "Shows the 'Item listing' option in the print settings",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_PRINT_ARTICLE_PRICE": "Hides the button in the print options.",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_PRINT_COMBI_SUBPOS": "Show box 'Combination of sub-items'",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_PRINT_ELECTRONIC_PLAN": "Shows the 'Electrical diagram' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_PRINT_GROUND_PLAN": "Shows the 'Print floor plan' option in the print settings",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_PRINT_GROUND_PLAN_CUPBOARD_SIZES": "Shows the 'Print cabinet dimensions' option in the print settings",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_PRINT_GROUND_PLAN_TRUE_TO_SCALE": "Shows the option 'Print at standard scale' in the print settings",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_PRINT_MANUFACTURER_NAME": "Hide 'Print manufacturer name' box",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_PRINT_PERS_AS_COLOR": "Shows the option 'Perspective as colour image' in the print settings",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_PRINT_PERS_AS_LINE": "Shows the option 'Perspective as line display' in the print settings",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_PRINT_PROGRAM_NAME": "Show 'Print programme name' box",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_PRINT_REDLINING": "Shows the button to open the redlining",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_PRINT_TOTAL_PRICE": "Shows the option 'Print total price' in the print settings",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_PRINT_VIEW_ARTICLE_NUMBERS": "Shows the option 'Print article numbers' in the print settings",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_PRINT_VIEW_EAN": "Shows the \"Print EAN\" option",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_PRINT_WITHOUT_CLOUD_ID": "Another print button is created under the print options, where no cloud ID is created.",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_PROGRAM_SEARCH": "Show 'Programme search' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_ROTATE": "Show 'Rotate object' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_STRETCH": "Show 'Normal mode' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_TEAMVIEWER": "Show 'TeamViewer' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_UNDO": "Show 'Back' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_VIEW_FINETUNING": "Show 'Finetuning'",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_VIEW_GRAPHIC_SETTINGS": "Show 'Graphic settings",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_WALLS": "Show 'Room planning' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_WITH_BORDER": "Frame around button in the new UI",
    "applicationBehaviorDefine.dht.info.APP_KATA_ONOFF": "Show 'Manufacturer catalogue",
    "applicationBehaviorDefine.dht.info.CAM_VIEW_MAX_VALUES": "Defines how many camera positions can be saved per planning.",
    "applicationBehaviorDefine.dht.info.DEALER_ALWAYS_SAVE_DHP_XML_PDF_PRINT__FILENAME_FURNVIEW_FILENAME_FORMAT": "Format in which the file name is written in the case of furnview at DealerAlwaysSaveDhpXmlPdf. Variables: %F = branch, %V = salesperson abbreviation, %A = order no.",
    "applicationBehaviorDefine.dht.info.DEFAULT_DELIVERY_ADDRESS": "Enter the standard delivery address if you want to send an order to the manufacturer.",
    "applicationBehaviorDefine.dht.info.DRAWING_LINE_POS_Z_0_UNDER_FRONT_VIEW": "Creates a line at height 0 on the \"Print views\" page.",
    "applicationBehaviorDefine.dht.info.ERP_POS_CHANGE_NONINTEGER_VALUES": "Decimal places in the number of items in the item listing are truncated.\nExample:\n1.7 becomes 1",
    "applicationBehaviorDefine.dht.info.ERP_POS_REMOVE_NEGATIVE_VALUES": "Negative items are listed under the main item and not as a separate item.",
    "applicationBehaviorDefine.dht.info.EXPORT_IWOFURN_AUTO_PLANNING_ID_PREFIX": "Automatically enters a prefix for Planning ID",
    "applicationBehaviorDefine.dht.info.EXPORT_IWOFURN_AUTO_SET_PLANNING_ID": "Automatically enters the planning number in the Planning ID field",
    "applicationBehaviorDefine.dht.info.EXPORT_IWOFURN_EMPTY_FILIALID": "For the IWOfurn export, the branch ID is set to empty instead of the default value 1",
    "applicationBehaviorDefine.dht.info.EXPORT_IWOFURN_FORCE_ORIG_PROGNAME": "When exporting IWOfurn, use the original programme name instead of the alternative name",
    "applicationBehaviorDefine.dht.info.furnplan-web.furnview.mailer.host": "Host name of the mail server",
    "applicationBehaviorDefine.dht.info.furnplan-web.furnview.mailer.ignore_tls": "If ON and 'Use encryption' is OFF then the connection does not use TLS, even if the server reports support for STARTTLS.",
    "applicationBehaviorDefine.dht.info.furnplan-web.furnview.mailer.password": "Password of the account",
    "applicationBehaviorDefine.dht.info.furnplan-web.furnview.mailer.port": "Port of the mail server",
    "applicationBehaviorDefine.dht.info.furnplan-web.furnview.mailer.require_tls": "If ON and 'Use encryption' is OFF then the connection will attempt to use STARTTLS, even if the server has not reported support for this. If the connection cannot be secured in this way, the email will not be sent.",
    "applicationBehaviorDefine.dht.info.furnplan-web.furnview.mailer.secure": "If ON, the connection uses TLS to establish a connection to the server. If OFF (default), the connection uses TLS if the server supports STARTTLS. This is often required for connections to port 465 (ON), but not for ports 587 or 25 (OFF).",
    "applicationBehaviorDefine.dht.info.furnplan-web.furnview.mailer.user": "User name of the account",
    "applicationBehaviorDefine.dht.info.furnplan-web.furnview.webui": "Path to the WebUI folder",
    "applicationBehaviorDefine.dht.info.furnplan-web-api.enable": "Activate Furnplan WebAPI Server",
    "applicationBehaviorDefine.dht.info.furnplan-web-api.server-address": "Furnplan WebAPI Server address",
    "applicationBehaviorDefine.dht.info.furnplan-web-api.server-port": "Furnplan WebAPI Server Port. Furnview communicates with furnplan WebAPI via this port",
    "applicationBehaviorDefine.dht.info.furnplan-web-api.server-stores": "Path to the WebApi branch configuration",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_ausf_center_preserve_local_properties": "Executions Checkbox 'Keep local properties' ticked?",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_ausf_center_show_level_1": "Executions Button 'Assign to all articles'",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_ausf_center_show_level_2": "Executions Button 'Assign to an article'",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_ausf_center_show_level_3": "Executions Button 'Assign to a component'",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_ausf_center_show_preserve_local_properties": "Executions Button 'Keep local properties'",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_show_wall_A": "Wall A",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_show_wall_AB": "Wall AB",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_show_wall_AB_L_Corner": "Wall AB Corner left",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_show_wall_AB_R_Corner": "Wall AB Corner right",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_show_wall_ABC_ANGLE_DOWN": "Wall ABC Angle Bottom",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_show_wall_ABC_ANGLE_UP": "Wall ABC Angle Top",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_show_wall_ABCD1": "Wall ABCD1",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_show_wall_ABCD2": "Wall ABCD2",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_show_wall_ABCDE": "Wall ABCDE",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_show_wall_ABCDE_ANGLE_UP": "Wall ABCDE Angle top",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_show_wall_BACD": "Wall BACD",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_show_wall_BCAD": "Wall BCAD",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_show_wall_ceiling_onclick": "Ceiling",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_show_wall_DACB": "Wall DACB",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_show_wall_DCAB": "Wall DCAB",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_show_wall_DCBA1": "Wall DCBA1",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_show_wall_DCBA2": "Wall DCBA2",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_show_wall_del_all_walls": "Delete room",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_show_wall_del_ceiling": "Delete ceiling or floor",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_show_wall_del_wall": "Delete wall",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_show_wall_door": "Schedule doors",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_show_wall_floor_onclick": "Floor",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_show_wall_free_edit": "Edit room",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_show_wall_individual": "Customised room planning",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_show_wall_simple": "Standard rooms",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_show_wall_tex": "Plan colours",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_show_wall_wall_copy": "Copy wall",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_show_wall_window": "Schedule windows",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_toolbar_mhs_print": "Displays the MHS Print button. A URL for the MHS web service must also be entered at the top of the print settings.",
    "applicationBehaviorDefine.dht.info.furnview.sonstiges.start_scene_dhp_path": "This value specifies the path to the DHP file that is used as the start scene in furnview. Please note that this path applies to the system on which the furnview service is running.",
    "applicationBehaviorDefine.dht.info.FurnviewSettingsSendToWebService": "Sets whether the furnview relevant data should be sent to the furnview web service each time it is saved",
    "applicationBehaviorDefine.dht.info.FurnviewSettingsType": "Standard - configuration for normal login, Embedded - configuration for integration into other systems",
    "applicationBehaviorDefine.dht.info.FurnviewSettingsWebService": "The address for the furnview web service. This can be used to configure the endpoint to which the settings for furnview are sent",
    "applicationBehaviorDefine.dht.info.PREISSPALTEN_UNTERBINDEN": "Hides the individual and total prices in the quick view and the PDF.",
    "applicationBehaviorDefine.dht.info.PRINT_FILENAME_ON_DOCUMENTS": "The name of the DHP file is displayed on each page of the PDF.",
    "applicationBehaviorDefine.dht.info.PRINT_HIDE_0_PRICES": "If items with 0€ are analysed, the price is hidden.",
    "applicationBehaviorDefine.dht.info.PRINT_HIDE_0_PRICES_ALTERNATIVE_DISPLAY_TEXT": "Alternative text that is displayed instead of the price of € 0.00 if € 0.00 prices are hidden.",
    "applicationBehaviorDefine.dht.info.PRINT_ORDER_NEW_PAGE_AFTER_NEW_MANUFAC": "Creates a new page for each manufacturer in the price listing.",
    "applicationBehaviorDefine.dht.info.PRINT_PAGES_BIT": "Selection of which PDF pages are printed. The selection in the print options is ignored.",
    "applicationBehaviorDefine.dht.info.PRINT_PREVENT_MANUFACTURER_NAME_AND_LOGO": "Show manufacturer name and logo on the PDF",
    "applicationBehaviorDefine.dht.info.PRINT_WAWI_REF_NR_LEVEL_ART": "",
    "applicationBehaviorDefine.dht.info.PRINT_WAWI_REF_NR_LEVEL_MANU": "",
    "applicationBehaviorDefine.dht.info.PRINT_WAWI_REF_NR_LEVEL_PROG": "",
    "applicationBehaviorDefine.dht.info.PROJECTMANAGER_TAB": "Setting as to whether the project manager can be called up/is visible or not.",
    "applicationBehaviorDefine.dht.info.ROOM_CEILING_DEFAULT": "Always create a ceiling as standard in the standard rooms.",
    "applicationBehaviorDefine.dht.info.ROOM_FLOOR_DEFAULT": "Always generate a floor as standard in the standard rooms.",
    "applicationBehaviorDefine.dht.info.ROOM_HEIGHT_DEFAULT": "Standard room height (in millimetres).",
    "applicationBehaviorDefine.dht.info.SHARE": "Show share button",
    "applicationBehaviorDefine.dht.info.ShowCefDeveloperTools": "Allows you to view the developer tools of the Chromium embedded framework.",
    "applicationBehaviorDefine.dht.info.SUPPRESS_REOPEN_AFTER_CRASH_REQUEST": "Deactivates the message \"Restore planning?\" after a furnplan crash.",
    "applicationBehaviorDefine.dht.info.Text_Discount": "This setting can be used to set the \"Discount\" text in the printout",
    "applicationBehaviorDefine.dht.info.Text_SpecialPrice": "This setting can be used to set the \"Special price\" text in the printout",
    "applicationBehaviorDefine.dht.info.URL_MHS_PRINT_SOAP_SERVICE": "URL for the MHS print interface",
    "applicationBehaviorDefine.dht.info.VAT_CUSTOM_RATES": "Freely definable list of VAT percentages for selection in Furnplan.",
    "applicationBehaviorDefine.dht.info.WALL_THICKNESS_DEFAULT": "Standard wall thickness (in millimetres).",
    "applicationBehaviorDefine.dht.info.XML_EXPORT_INCLUDING_EAN": "Add the EAN for XML exports",
    "applicationBehaviorDefine.dht.info.XML_EXPORT_INCLUDING_ORIG_PROGNAME": "For XML exports, use the original programme name instead of the alternative name",
    "applicationBehaviorDefine.dht.text.APP_BUTTON_ANYDESK": "Show extra AnyDesk button",
    "applicationBehaviorDefine.dht.text.APP_BUTTON_EXTRAWAWI_IWOFURN": "IWOfurn",
    "applicationBehaviorDefine.dht.text.APP_BUTTON_EXTRAWAWI_USER_DEFINED": "Path Button ExtraWAWI",
    "applicationBehaviorDefine.dht.text.APP_BUTTON_FURNSHOW": "furnshow",
    "applicationBehaviorDefine.dht.text.APP_BUTTON_GENERAL_MAIL_RECEIVER": "Store standard e-mail address",
    "applicationBehaviorDefine.dht.text.APP_BUTTON_MAIL": "Show 'E-Mail' button",
    "applicationBehaviorDefine.dht.text.APP_BUTTON_NEWUI": "New UI",
    "applicationBehaviorDefine.dht.text.APP_BUTTON_PRINT_ARTICLE_NO_PRICE": "Show button \"No item prices\"",
    "applicationBehaviorDefine.dht.text.APP_BUTTON_PRINT_ARTICLE_PRICE": "Show button \"Show item prices\"",
    "applicationBehaviorDefine.dht.text.APP_BUTTON_PRINT_VIEW_EAN": "Print EAN",
    "applicationBehaviorDefine.dht.text.APP_BUTTON_PRINT_WITHOUT_CLOUD_ID": "Create PDF without Cloud ID",
    "applicationBehaviorDefine.dht.text.APP_BUTTON_TEAMVIEWER": "TeamViewer",
    "applicationBehaviorDefine.dht.text.APP_BUTTON_WITH_BORDER": "Frame around button",
    "applicationBehaviorDefine.dht.text.APP_KATA_ONOFF": "Manufacturer catalogue",
    "applicationBehaviorDefine.dht.text.CAM_VIEW_MAX_VALUES": "Maximum number of saved camera positions",
    "applicationBehaviorDefine.dht.text.DEFAULT_DELIVERY_ADDRESS": "Store standard delivery address",
    "applicationBehaviorDefine.dht.text.DRAWING_LINE_POS_Z_0_UNDER_FRONT_VIEW": "Create line at height 0",
    "applicationBehaviorDefine.dht.text.ERP_POS_CHANGE_NONINTEGER_VALUES": "Truncate decimal places for quantity",
    "applicationBehaviorDefine.dht.text.ERP_POS_REMOVE_NEGATIVE_VALUES": "Remove negative positions",
    "applicationBehaviorDefine.dht.text.EXPORT_IWOFURN_AUTO_PLANNING_ID_PREFIX": "IWOfurn Export set prefix for planning ID",
    "applicationBehaviorDefine.dht.text.EXPORT_IWOFURN_AUTO_SET_PLANNING_ID": "IWOfurn Export set the planning ID equal to the planning number",
    "applicationBehaviorDefine.dht.text.EXPORT_IWOFURN_EK_PRICE_INCL_DISCOUNT": "",
    "applicationBehaviorDefine.dht.text.EXPORT_IWOFURN_EMPTY_FILIALID": "Set IWOfurn Export branch ID to empty",
    "applicationBehaviorDefine.dht.text.EXPORT_IWOFURN_FORCE_ORIG_PROGNAME": "IWOfurn Export with original programme name",
    "applicationBehaviorDefine.dht.text.EXPORT_IWOFURN_VK_PRICE_INCL_DISCOUNT": "",
    "applicationBehaviorDefine.dht.text.furnplan-node.connection.host": "Domain of the management server",
    "applicationBehaviorDefine.dht.text.furnplan-node.connection.port": "TCP port for logging on to the management server",
    "applicationBehaviorDefine.dht.text.furnplan-node.furnplan.allowLocalCloudAccess": "Activate web interface for local planning",
    "applicationBehaviorDefine.dht.text.furnplan-node.get-app-connection-data-export-path": "Export path for printouts from the app interface",
    "applicationBehaviorDefine.dht.text.furnplan-node.mongodb.host": "Domain / IP of the database server",
    "applicationBehaviorDefine.dht.text.furnplan-node.mongodb.pass": "Database password",
    "applicationBehaviorDefine.dht.text.furnplan-node.mongodb.port": "Database TCP port",
    "applicationBehaviorDefine.dht.text.furnplan-node.mongodb.user": "Database user name",
    "applicationBehaviorDefine.dht.text.furnplan-node.websocket.domain": "Domain / IP of this server",
    "applicationBehaviorDefine.dht.text.furnplan-node.websocket.externalPort": "TCP port for connection with browser",
    "applicationBehaviorDefine.dht.text.furnplan-node.websocket.internalPorts.max": "TCP port range for connection with internal furnplan instance (upper limit)",
    "applicationBehaviorDefine.dht.text.furnplan-node.websocket.internalPorts.min": "TCP port range for connection with internal furnplan instance (lower limit)",
    "applicationBehaviorDefine.dht.text.furnplan-node-manager.ports.http": "TCP port for process communication",
    "applicationBehaviorDefine.dht.text.furnplan-node-manager.ports.manager": "TCP port for instance server login",
    "applicationBehaviorDefine.dht.text.furnplan-node-manager.server.strictServerAssignment": "Strict server assignment",
    "applicationBehaviorDefine.dht.text.furnplan-web.connections.mongodb.pass": "Database password",
    "applicationBehaviorDefine.dht.text.furnplan-web.connections.mongodb.port": "Database TCP port",
    "applicationBehaviorDefine.dht.text.furnplan-web.connections.mongodb.user": "Database user name",
    "applicationBehaviorDefine.dht.text.furnplan-web.connections.port": "HTTP port",
    "applicationBehaviorDefine.dht.text.furnplan-web.furnview.enableLocal": "Allow start via local furnplan installation",
    "applicationBehaviorDefine.dht.text.furnplan-web.furnview.mailer.host": "Host",
    "applicationBehaviorDefine.dht.text.furnplan-web.furnview.mailer.ignore_tls": "Ignore TLS",
    "applicationBehaviorDefine.dht.text.furnplan-web.furnview.mailer.password": "password",
    "applicationBehaviorDefine.dht.text.furnplan-web.furnview.mailer.port": "Port",
    "applicationBehaviorDefine.dht.text.furnplan-web.furnview.mailer.require_tls": "Required TLS",
    "applicationBehaviorDefine.dht.text.furnplan-web.furnview.mailer.secure": "Use encryption",
    "applicationBehaviorDefine.dht.text.furnplan-web.furnview.mailer.user": "User name",
    "applicationBehaviorDefine.dht.text.furnplan-web.furnview.webui": "Path to the WebUI folder",
    "applicationBehaviorDefine.dht.text.furnplan-web-api.enable": "Activate Furnplan WebAPI Server",
    "applicationBehaviorDefine.dht.text.furnplan-web-api.server-address": "Furnplan WebAPI Server address",
    "applicationBehaviorDefine.dht.text.furnplan-web-api.server-port": "Furnplan WebAPI Server Port",
    "applicationBehaviorDefine.dht.text.furnplan-web-api.server-stores": "Path Branch configuration",
    "applicationBehaviorDefine.dht.text.furnplan-web-projectmanager.server-port": "Furnplan WebAPI Server Port",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_ausf_center_preserve_local_properties": "Executions Checkbox 'Keep local properties' ticked?",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_ausf_center_show_level_1": "Executions Button 'Assign to all articles'",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_ausf_center_show_level_2": "Executions Button 'Assign to an article'",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_ausf_center_show_level_3": "Executions Button 'Assign to a component'",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_ausf_center_show_preserve_local_properties": "Executions Button 'Keep local properties'",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_article_input_line": "Article input line",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_program_selection": "Programme selection line",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_toolbar": "furnplan toolbar",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_wall_A": "Wall A",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_wall_AB": "Wall AB",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_wall_AB_L_Corner": "Wall AB Corner left",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_wall_AB_R_Corner": "Wall AB Corner right",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_wall_ABC_ANGLE_DOWN": "Wall ABC Angle Bottom",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_wall_ABC_ANGLE_UP": "Wall ABC Angle Top",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_wall_ABCD1": "Wall ABCD1",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_wall_ABCD2": "Wall ABCD2",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_wall_ABCDE": "Wall ABCDE",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_wall_ABCDE_ANGLE_UP": "Wall ABCDE Angle top",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_wall_BACD": "Wall BACD",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_wall_BCAD": "Wall BCAD",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_wall_ceiling_onclick": "Ceiling",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_wall_DACB": "Wall DACB",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_wall_DCAB": "Wall DCAB",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_wall_DCBA1": "Wall DCBA1",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_wall_DCBA2": "Wall DCBA2",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_wall_del_all_walls": "Delete room",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_wall_del_ceiling": "Delete ceiling or floor",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_wall_del_wall": "Delete wall",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_wall_door": "Schedule doors",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_wall_floor_onclick": "Floor",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_wall_free_edit": "Edit room",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_wall_individual": "Individual rooms",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_wall_simple": "Standard rooms",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_wall_tex": "Plan colours",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_wall_wall_copy": "Copy wall",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_wall_window": "Schedule windows",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_toolbar_cloud": "Cloud button",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_toolbar_grid": "Grid",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_toolbar_manufacturer": "Manufacturer dropdown",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_toolbar_manufacturer_editable": "Manufacturer dropdown editable",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_toolbar_mhs_print": "MHS print button",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_toolbar_new_scene": "New project button",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_toolbar_placer": "Placement direction",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_toolbar_print": "Print button",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_toolbar_project_manager": "Project manager button",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_toolbar_reload": "Reload button",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_toolbar_undo": "Undo button",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.panel_right_register_old_accessories": "Accessories panel",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.panel_right_register_old_furnray": "furnray panel",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.panel_right_register_old_wall_selection": "Wall panel",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.toolbar_furnplan_toolbar": "MAPEO panel",
    "applicationBehaviorDefine.dht.text.furnview.sonstiges.start_scene_dhp_path": "Absolute path to the start scene (DHP file)",
    "applicationBehaviorDefine.dht.text.FurnviewSettingsSendToWebService": "furnview Send relevant data to web service",
    "applicationBehaviorDefine.dht.text.FurnviewSettingsType": "Type of configuration",
    "applicationBehaviorDefine.dht.text.FurnviewSettingsWebService": "furnview web service address",
    "applicationBehaviorDefine.dht.text.HOME_VIEWER": "Homeviewer",
    "applicationBehaviorDefine.dht.text.mongo.net.port": "Database TCP port",
    "applicationBehaviorDefine.dht.text.mongo.net.security": "Activate security",
    "applicationBehaviorDefine.dht.text.PREISSPALTEN_UNTERBINDEN": "Hide price column",
    "applicationBehaviorDefine.dht.text.PRINT_FILENAME_ON_DOCUMENTS": "Display the file name of the DHP file on the PDF",
    "applicationBehaviorDefine.dht.text.PRINT_HIDE_0_PRICES": "Show 0 prices",
    "applicationBehaviorDefine.dht.text.PRINT_ORDER_NEW_PAGE_AFTER_NEW_MANUFAC": "New page for each manufacturer in the price listing",
    "applicationBehaviorDefine.dht.text.PRINT_PAGES_BIT": "Content of the generated PDF",
    "applicationBehaviorDefine.dht.text.PRINT_PREVENT_MANUFACTURER_NAME_AND_LOGO": "Hide manufacturer name and logo",
    "applicationBehaviorDefine.dht.text.PROJECTMANAGER_TAB": "Project Manager Tab",
    "applicationBehaviorDefine.dht.text.ROOM_CEILING_DEFAULT": "Ceiling of the standard rooms",
    "applicationBehaviorDefine.dht.text.ROOM_FLOOR_DEFAULT": "Floor of the standard rooms",
    "applicationBehaviorDefine.dht.text.ROOM_HEIGHT_DEFAULT": "Standard room height",
    "applicationBehaviorDefine.dht.text.SHARE": "Share",
    "applicationBehaviorDefine.dht.text.ShowCefDeveloperTools": "Show developer tools for CEF",
    "applicationBehaviorDefine.dht.text.SUPPRESS_REOPEN_AFTER_CRASH_REQUEST": "Deactivate 'Restore planning' after starting furnplan",
    "applicationBehaviorDefine.dht.text.Text_Discount": "Discount text",
    "applicationBehaviorDefine.dht.text.Text_SpecialPrice": "Special price text",
    "applicationBehaviorDefine.dht.text.URL_MHS_PRINT_SOAP_SERVICE": "URL for the MHS print interface",
    "applicationBehaviorDefine.dht.text.VAT_CUSTOM_RATES": "Customised VAT settings",
    "applicationBehaviorDefine.dht.text.WALL_THICKNESS_DEFAULT": "Standard wall thickness",
    "applicationBehaviorDefine.dht.text.XML_EXPORT_INCLUDING_EAN": "XML export including EAN",
    "applicationBehaviorDefine.dht.text.XML_EXPORT_INCLUDING_ORIG_PROGNAME": "XML export with original programme name",
    "applicationBehaviorTree.dht.general.text.calculation": "Calculation",
    "applicationBehaviorTree.dht.info.furnplan-web-projectmanager": "Settings for the project manager in furnview",
    "applicationBehaviorTree.dht.info.furnview.furnplan-catalogue": "Further settings for the furnplan catalogue in furnview",
    "applicationBehaviorTree.dht.text.buttons": "Control elements",
    "applicationBehaviorTree.dht.text.defined-filters": "Defined filters",
    "applicationBehaviorTree.dht.text.export": "Export",
    "applicationBehaviorTree.dht.text.furnplan-node": "furnplan-node",
    "applicationBehaviorTree.dht.text.furnplan-node-manager": "furnplan-node-manager",
    "applicationBehaviorTree.dht.text.furnplan-web": "furnplan-web",
    "applicationBehaviorTree.dht.text.furnplan-web-projectmanager": "Web Project Manager",
    "applicationBehaviorTree.dht.text.furnport": "Furnport",
    "applicationBehaviorTree.dht.text.furnview.furnplan-catalogue": "Furnplan catalogue",
    "applicationBehaviorTree.dht.text.furnview-server-configuration": "Furnview Server configuration",
    "applicationBehaviorTree.dht.text.general": "General",
    "applicationBehaviorTree.dht.text.mailer": "Mail server",
    "applicationBehaviorTree.dht.text.manufacturerInternal": "Manufacturer values",
    "applicationBehaviorTree.dht.text.mongodb": "Database",
    "applicationBehaviorTree.dht.text.montage": "Assembly",
    "applicationBehaviorTree.dht.text.print": "Print",
    "applicationBehaviorTree.dht.text.registryValues": "Registry switch",
    "applicationBehaviorTree.dht.text.registryValues.Visiono": "Visiono",
    "applicationBehaviorTree.dht.text.security": "Security",
    "applicationBehaviorTree.dht.text.support": "Support",
    "applicationBehaviorTree.dht.text.xxxl": "XXXL",
    "ar.button.open": "Open AR",
    "art_add_favorites": "Favourite article",
    "articleinfodesk.allManus": "All manufacturers",
    "articleinfodesk.allProgs": "All programmes",
    "articleinfodesk.articleGenDuration": "Duration:",
    "articleinfodesk.articleGenDurationText": "Can take several seconds per item, with a single manufacturer this process can take up to 1 hour",
    "articleinfodesk.articleGenLabelText": "Runs through all articles in the article table, generates images and prepares database entries.",
    "articleinfodesk.articleGenMultitask": "Multitask:",
    "articleinfodesk.catalogImageGenDurationText": "Depending on the computing power, this process can take several seconds per image and, depending on the number of items, can take several hours.",
    "articleinfodesk.catalogImageGenInfoText": "If activated, runs through all articles in the article table and generates rendered catalogue images which replace the line images.",
    "articleinfodesk.catalogueGeneration": "Catalogue generation",
    "articleinfodesk.checkGenericKataTree": "Data control area",
    "articleinfodesk.createDB": "Create database",
    "articleinfodesk.createDBLabelDuration": "Duration:",
    "articleinfodesk.createDBLabelDurationText": "a few minutes",
    "articleinfodesk.createDBLabelSingletask": "Singletask:",
    "articleinfodesk.createDBLabelSingletaskText": "Takes the prepared data from the multitask processes and collects it in the \"article_autogen.dht\" determines the possible categories, saves them in \"categories_inuse.dht\" and assembles the SQL database.",
    "articleinfodesk.currentManu": "Current manufacturer",
    "articleinfodesk.currentProg": "Current programme",
    "articleinfodesk.datacheck": "Data control area",
    "articleinfodesk.defaultCatalogImages": "Standard catalogue images",
    "articleinfodesk.dhpGenDuration": "Duration:",
    "articleinfodesk.dhpGenDurationText": "Can take up to 1 minute per DHP",
    "articleinfodesk.dhpGenMultitask": "Multitask:",
    "articleinfodesk.dhpGenText": "Collects all plans in the PlaceProposales folders, generates images of them and prepares database entries.",
    "articleinfodesk.exportAccessoires": "Generate accessories",
    "articleinfodesk.exportAccessoiresInfo": "Accessories:",
    "articleinfodesk.exportAccessoiresInfoText": "If activated, the above settings are ignored and the global accessories programme is used for generation.",
    "articleinfodesk.exportCrossarticle": "Generate accessories",
    "articleinfodesk.exportCrossarticleInfoText": "If activated, the above settings are ignored and the global cross article is generated",
    "articleinfodesk.exportCrossarticlesInfo": "Cross Article:",
    "articleinfodesk.generateArticles": "Generate article",
    "articleinfodesk.generateCatalogImage": "Render catalogue images (all)",
    "articleinfodesk.generatePlacePropsals": "Generate placement suggestions",
    "articleinfodesk.generateVS": "Generate proposal combinations",
    "articleinfodesk.generateVZ": "Generate preferred combinations",
    "articleinfodesk.ignoreTypG": "",
    "articleinfodesk.ignoreTypGInfo": "",
    "articleinfodesk.ignoreTypGText": "",
    "articleinfodesk.onlyGenerics": "Generic programmes only",
    "articleinfodesk.onlyGenericsInfo": "Info:",
    "articleinfodesk.onlyGenericsInfoText": "If activated, only programs that also have a generic catalogue can be exported.",
    "articleinfodesk.onlyNewCatalogImageGen": "Render catalogue images (missing)",
    "articleinfodesk.silentMode": "Background mode",
    "articleinfodesk.silentModeMultitask": "Multitask:",
    "articleinfodesk.silentModeMultitaskText": "SilentMode is used to run all processes in the background. FurnPlan is minimised during the entire process and cannot be used!",
    "articleinfodesk.startProcess": "Start",
    "articleinfodesk.status": "Status...",
    "articleinfodesk.vsGenDurationText": "Generating suggestion combinations takes more time than generating articles, possibly several seconds per combination",
    "articleinfodesk.vsGenInfo": "Info:",
    "articleinfodesk.vsGenInfoText": "If not activated, articles with the class ID -10000 are ignored",
    "articleinfodesk.vzGenDuration": "Duration:",
    "articleinfodesk.vzGenDurationText": "Generating preferred combinations takes more time than generating articles, possibly several seconds per combination",
    "articleinfodesk.vzGenInfo": "Info:",
    "articleinfodesk.vzGenInfoText": "If not activated, articles with the class ID -10003 are ignored",
    "articleinfodesk.warningImageGenDuration": "WARNING - rendering the catalogue images is time-consuming.",
    "asap": "As quickly as possible",
    "augmented_reality": "Augmented Reality",
    "branchAddress": "Store address",
    "branchName": "Store name",
    "cat.1tuerig": "1 door",
    "cat.2tuerig": "2 door",
    "cat.3tuerig": "3 door",
    "cat.4tuerig": "4 door",
    "cat.5tuerig": "5 door",
    "cat.6tuerig": "6 door",
    "cat.7tuerig": "7 door",
    "cat.8tuerig": "8 door",
    "cat.abgerundet": "Round",
    "cat.abschlusselement": "Closing element",
    "cat.abschlussregal": "End shelf",
    "cat.abzugshaube": "Extractor bonnet",
    "cat.accessoires": "Accessories",
    "cat.adapter": "Adapter",
    "cat.airfryer": "Airfryer",
    "cat.anbauelement": "Add-on element",
    "cat.anschlusswert": "Connected load",
    "cat.arbeitsplatz": "Workplace",
    "cat.armatur": "Fitting",
    "cat.artikeltyp": "Article type",
    "cat.aufsatz": "Essay",
    "cat.aufsatzbecken": "Countertop basin",
    "cat.auftaustufe": "Defrosting stage",
    "cat.aussenelement": "Exterior elements",
    "cat.aussenschubkasten": "External drawer",
    "cat.ausstattung": "Equipment",
    "cat.ausziehbares_element": "Extendable elements",
    "cat.backfunktionen": "Baking functions",
    "cat.backfunktionenanzahl": "Number of baking functions",
    "cat.backofen": "Oven",
    "cat.backofen_hochschrank": "Oven tall unit",
    "cat.backofen_schrank": "Oven cabinet",
    "cat.backofen_unterschrank": "Oven base unit",
    "cat.backofenoptionen": "Oven options",
    "cat.backrauminnenmass": "Oven interior dimensions",
    "cat.bad": "Bathroom",
    "cat.badarmatur": "Bathroom fitting",
    "cat.badhaengeschrank": "Bathroom wall unit",
    "cat.badhochschrank": "Bathroom tall unit",
    "cat.badpodest": "Bathroom pedestal",
    "cat.badschrank": "Bathroom cabinet",
    "cat.badspiegel": "Bathroom mirror",
    "cat.badspiegelschrank": "Bathroom mirror cabinet",
    "cat.badunterschrank": "Bathroom vanity unit",
    "cat.badwaschtischkonsole": "Bathroom washbasin console",
    "cat.badwaschtischplatte": "Bathroom vanity top",
    "cat.badzubehoer": "Bathroom accessories",
    "cat.bank": "Bank",
    "cat.bedienung": "Operation",
    "cat.befestigungszubehoer": "Mounting accessories",
    "cat.befestigungzubehoer": "Fastening accessories",
    "cat.beleuchtung": "Lighting",
    "cat.beleuchtungsart": "Type of lighting",
    "cat.bestecksystem": "Cutlery system",
    "cat.bestseller": "Bestseller",
    "cat.betriebsart": "Operating mode",
    "cat.bett": "Bed",
    "cat.bettbank": "Bed bench",
    "cat.bettdecke": "Duvet",
    "cat.bettzubehoer": "Bed accessories",
    "cat.bezug": "Upholstery cover",
    "cat.bild": "Picture",
    "cat.bodenleuchte": "Floor light",
    "cat.bogenleuchte": "Arc light",
    "cat.bord_wandregal": "Board",
    "cat.boxspringbett": "Box spring bed",
    "cat.boxsystem": "Box system",
    "cat.buerostuhl": "Office chair",
    "cat.c_fuss": "C-foot",
    "cat.champagner": "Champagne",
    "cat.container": "Container",
    "cat.couchtisch_beistelltisch": "Couch/side table",
    "cat.crossarticle": "Crossarticle",
    "cat.dampfgarer": "Steam cooker",
    "cat.dauer_eco_programm": "Eco programme duration",
    "cat.deckenleuchte": "Ceiling light",
    "cat.deckenspanner": "Ceiling tensioner",
    "cat.dhacces_bgstruktur": "BG structures",
    "cat.dhacces_dev": "In development",
    "cat.dhacces_installationselemente": "Installation elements",
    "cat.dhacces_installationselemente_elektro": "Electrical installation",
    "cat.dhacces_installationselemente_sanitaer": "Sanitary installations",
    "cat.dhacces_kare_design": "KARE Design",
    "cat.dhacces_kuechen_moebel": "Kitchen",
    "cat.dhacces_malerifabrikken": "Painting factories",
    "cat.dhacces_rolf_benz": "Rolf Benz",
    "cat.dhacces_sixay": "Sixay",
    "cat.dhacces_sonstige_sofas": "General",
    "cat.dhacces_tv_hintergrund": "TV background",
    "cat.diele": "Hallway",
    "cat.drehtuer": "Revolving door",
    "cat.durchmesser_abluftstutzen": "Exhaust air connection diameter",
    "cat.eckelement": "Corner element",
    "cat.eckvariante": "Corner variant",
    "cat.eco": "Eco",
    "cat.eigengeraet": "",
    "cat.eigenschaft": "Feature",
    "cat.einbaubreite": "Installation width",
    "cat.einbaubreite_030": "Installation width 30 cm",
    "cat.einbaubreite_045": "Installation width 45 cm",
    "cat.einbaubreite_050": "Installation width 50 cm",
    "cat.einbaubreite_060": "Installation width 60 cm",
    "cat.einbaubreite_080": "Installation width 80 cm",
    "cat.einbaubreite_090": "Installation width 90 cm",
    "cat.einbaubreite_120": "Installation width 120 cm",
    "cat.einbauhoehe": "Installation height",
    "cat.einbauhoehe_032": "Installation height 32 cm",
    "cat.einbauhoehe_040": "Installation height 40 cm",
    "cat.einbauhoehe_060": "Installation height 60 cm",
    "cat.einbauhoehe_082": "Installation height 82 cm",
    "cat.einbauhoehe_088": "Installation height 88 cm",
    "cat.einbauhoehe_102": "Installation height 102 cm",
    "cat.einbauhoehe_122": "Installation height 122 cm",
    "cat.einbauhoehe_140": "Installation height 140 cm",
    "cat.einbauhoehe_145": "Installation height 145 cm",
    "cat.einbauhoehe_158": "Installation height 158 cm",
    "cat.einbauhoehe_178": "Installation height 178 cm",
    "cat.einbaumass": "Installation dimension",
    "cat.einbautiefe": "Installation depth",
    "cat.einhebelmischer": "Single lever mixer",
    "cat.einsatz": "Deployments",
    "cat.einsatzbecken": "Insert basin",
    "cat.einsatzbereich": "Field of application",
    "cat.einteilung": "Classifications",
    "cat.einzelsofa": "Single sofa",
    "cat.elektrisch_verstellbar": "Electrically height-adjustable",
    "cat.energieeffizienz": "Energy efficiency",
    "cat.energieeffizienzklasse": "Energy efficiency class",
    "cat.energieverbrauch": "Energy consumption",
    "cat.energieverbrauch_jahr": "Energy consumption/year",
    "cat.falttuer": "Folding door",
    "cat.farbtemperatur": "",
    "cat.fassungsvermoegen": "Capacity",
    "cat.fittingsets": "Fitting sets",
    "cat.frontzubehoer": "Front accessories",
    "cat.funktionen": "Functions",
    "cat.funktionsbett": "Functional bed",
    "cat.fuss_holz": "Wooden base",
    "cat.fuss_metall": "Metal base",
    "cat.garderobe": "Wardrobe",
    "cat.garraum_breite": "Cooking chamber width",
    "cat.garraum_hoehe": "Cooking chamber height",
    "cat.garraum_tiefe": "Cooking cabinet depth",
    "cat.geblaeseleistung": "Blower capacity",
    "cat.geblaesestufenanzahl": "Total number of fan stages",
    "cat.geeigneter_kohlefilter_umluftbetrieb": "Suitable carbon filter for recirculation mode",
    "cat.gefrierautomat": "Automatic freezer",
    "cat.gefrierfachanordnung": "Freezer compartment arrangement",
    "cat.gefriervermoegen_je_stunde": "Freezing capacity per hour",
    "cat.geraete": "Devices",
    "cat.geraeteumbau": "Device conversion",
    "cat.geraeuschemission_in_db": "Noise emission in dB",
    "cat.geraeuschemissionsklasse": "Noise emission class",
    "cat.geraeuschwert_in_abluftbetrieb": "Noise value in exhaust air mode",
    "cat.geraeuschwert_in_umluftbetrieb": "Noise level in recirculation mode",
    "cat.geschirrspueler": "Dishwasher",
    "cat.geschirrspueler_schrank": "Dishwasher cabinet",
    "cat.geschirrspueler_unterschrank": "Dishwasher base unit",
    "cat.gestellbett": "Frame bed",
    "cat.gewicht": "Weight",
    "cat.grill_mit_oberhitze": "Grill with top heat",
    "cat.grill_mit_oberhitze_und_umluft": "Grill with top heat and convection",
    "cat.grill_mit_umluft": "Grill with convection",
    "cat.grillfunktion": "Grill function",
    "cat.groesse_in_liter": "Size in litres",
    "cat.grundelement": "Basic element",
    "cat.grundfarbe": "Base colour",
    "cat.haenge": "Hanging",
    "cat.haengeregister": "Suspension file",
    "cat.halterung": "Bracket",
    "cat.handtuchhalter": "Towel rail",
    "cat.herausziehbare_brause": "Pull-out shower head",
    "cat.highboard": "Highboard",
    "cat.hochschrank": "Tall unit",
    "cat.hocker": "Stool",
    "cat.inneneinteilung": "Interior division",
    "cat.innenschubkasten": "Interior drawer",
    "cat.kabelmanagement": "Cable management",
    "cat.kamin": "Fireplace",
    "cat.keramik": "Ceramics",
    "cat.kissen": "Cushion",
    "cat.klappbett": "Folding bed",
    "cat.klappe": "Flap",
    "cat.kleiderschrank": "Wardrobe",
    "cat.kochfeld": "Hob",
    "cat.kochfeld_schrank": "Hob cabinet",
    "cat.kochfeld_unterschrank": "Hob base unit",
    "cat.kochfeldausstattung": "Hob equipment",
    "cat.kochfeldfunktionen": "Hob functions",
    "cat.kochzonenanzahl": "Number of cooking zones",
    "cat.koffertuer": "Suitcase door",
    "cat.kombibackofen": "Combi oven",
    "cat.kombikochfeld": "Combi hob",
    "cat.kommode": "Chest of drawers",
    "cat.komplettschrank": "Complete cabinet",
    "cat.korpus": "Body",
    "cat.korpuselement": "Body element",
    "cat.korpusfronten": "Carcase fronts",
    "cat.kueche": "Kitchen",
    "cat.kuechenarmatur": "Kitchen tap",
    "cat.kuechenzubehoer": "Kitchen",
    "cat.kuehlautomat": "Cooling machine",
    "cat.kuehlgefrierautomat": "Automatic fridge freezer",
    "cat.kuehlgeraet": "Cooling unit",
    "cat.kuehlgeraet_hochschrank": "Refrigerated larder unit",
    "cat.kuehlgeraet_schrank": "Fridge",
    "cat.kuehlgeraet_unterschrank": "Refrigerated base cabinet",
    "cat.kufentisch": "Skid table",
    "cat.lampenanzahl": "Number of lamps",
    "cat.lattenrost": "Slatted frame",
    "cat.leuchte": "Luminaire",
    "cat.lichtfarbe": "",
    "cat.lichtstrom": "",
    "cat.lowboard": "Lowboard",
    "cat.manuell_verstellbar": "Comfort height adjustment",
    "cat.markenkennzeichnung": "",
    "cat.massiv": "Solid",
    "cat.massiv_champagner": "Solid champagne",
    "cat.matratze": "Mattress",
    "cat.max_wasseranschluss": "Max water connection",
    "cat.medienelement": "Media element",
    "cat.medienzubehoer": "Media accessories",
    "cat.midischrank": "Midi cupboard",
    "cat.mikrowelle": "Microwave",
    "cat.mikrowellen_hochschrank": "Microwave oven",
    "cat.mikrowellen_schrank": "Microwave oven",
    "cat.mit_beleuchtung": "With lighting",
    "cat.montagetechnik": "Assembly technology",
    "cat.nachttisch": "Bedside table",
    "cat.neuer_artikel": "NEW!",
    "cat.neuer_artikel_filter": "New articles",
    "cat.nutzinhalt_gefrieren_netto": "Net freezer capacity",
    "cat.nutzinhalt_gesamt_netto": "Total net usable capacity",
    "cat.nutzinhalt_kuehlen_netto": "Net cooling capacity",
    "cat.nutzvolumen": "Useful volume",
    "cat.ober_und_unterhitze": "Top/bottom heat",
    "cat.ober_und_unterhitze_mit_umluft": "Top and bottom heat with convection",
    "cat.oberhitze": "Top heat",
    "cat.ohne_beleuchtung": "Without lighting",
    "cat.paneel": "Panel",
    "cat.pendelleuchte": "Pendant light",
    "cat.pflegeprodukte": "Care accessories",
    "cat.planungsschrank": "Planning cabinet",
    "cat.planungsvorschlag": "Planning proposal",
    "cat.planungsvorschlag_gespiegelt": "Planning proposal (mirrored)",
    "cat.polster_abschlusselement_links": "End element left",
    "cat.polster_abschlusselement_rechts": "End element right",
    "cat.polster_eckelement": "Corner element",
    "cat.polster_longchair": "Longchair",
    "cat.polster_ottomane": "Ottaman",
    "cat.polster_recamiere": "Recamiere",
    "cat.polster_relaxfunktion": "Relax function",
    "cat.polster_schlaffunktion": "Sleeping function",
    "cat.polster_sitztiefenverstellung": "Seat depth adjustment",
    "cat.polster_zwischenbauelement": "Intermediate element",
    "cat.polsterzubehoer": "Upholstery accessories",
    "cat.quadratrohrgestell": "Square tube frame",
    "cat.rahmenkasten": "Frame box",
    "cat.raumteileranlage": "Room divider system",
    "cat.raumteilertuer": "Room divider door",
    "cat.rechtecktisch": "Rectangular table",
    "cat.reduzierelement": "Reducing element",
    "cat.regal": "Shelf",
    "cat.regalsystem": "Shelving system",
    "cat.rollkorpus": "Roll body",
    "cat.rund": "Round",
    "cat.rundfuss": "Round base",
    "cat.rundtisch": "Round table",
    "cat.saeulentisch": "Column table",
    "cat.schiebetuer": "Sliding door",
    "cat.schiebetuer_basis": "Base",
    "cat.schlafen": "Sleeping",
    "cat.schnellaufheizung": "Rapid heating",
    "cat.schrankhaube": "Under-cabinet bonnet",
    "cat.schrankzubehoer": "Wardrobe accessories",
    "cat.schreibtisch": "Desk",
    "cat.schreibtischleuchte": "Desk lamp",
    "cat.schubkasten": "Drawer",
    "cat.schuhschrank": "Shoe cabinet",
    "cat.schutzart": "",
    "cat.schwenkschreibtisch": "Swivel desk",
    "cat.seitlich_platzierbares_element": "Laterally placeable elements",
    "cat.sessel": "Armchair",
    "cat.sichtschutzwand": "Screen wall",
    "cat.sideboard": "Sideboard",
    "cat.sofaelement": "Sofa element",
    "cat.sofahocker": "Sofa stool",
    "cat.speisen": "Food",
    "cat.spiegel": "Mirror",
    "cat.spuele": "Sink unit",
    "cat.spuelen_schrank": "Sink unit",
    "cat.spuelen_unterschrank": "Sink base unit",
    "cat.spuelprogrammanzahl": "Number of washing programmes",
    "cat.standleuchte": "Floor lamp",
    "cat.standregal": "Standing shelf",
    "cat.stuhl": "Chair",
    "cat.teilintegriert": "Partially integrated",
    "cat.teppich": "Carpet",
    "cat.tisch": "Table",
    "cat.tischgruppe": "Table group",
    "cat.tischleuchte": "Table lamp",
    "cat.tischzubehoer": "Table accessories",
    "cat.topper": "Topper",
    "cat.truhenelement": "Chest element",
    "cat.tv_elemente": "TV elements",
    "cat.u_fuss": "U-foot",
    "cat.umluft": "Recirculated air",
    "cat.unter_fachboden_platzierbares_element": "Elements that can be placed under shelves",
    "cat.unterhitze": "Bottom heat",
    "cat.unterschrank": "Base cabinet",
    "cat.variables_korpussystem": "Variable carcass system",
    "cat.verblendung": "Veneering",
    "cat.verblendungsmaterial": "Veneering material",
    "cat.verschiebbares_element": "Sliding elements",
    "cat.verwendung": "Utilisation",
    "cat.vierfusstisch": "Four-legged table",
    "cat.vitrine": "Display case",
    "cat.vollintegriert": "Fully integrated",
    "cat.vorschlagskombination": "Proposal combination",
    "cat.vorschlagskombination_gespiegelt": "Proposal combination(mirrored)",
    "cat.vorzugskombination": "Preferred combination",
    "cat.vorzugskombination_gespiegelt": "Preferred combination(mirrored)",
    "cat.wandhaube": "Wall bonnet",
    "cat.wandleuchte": "Wall light",
    "cat.wandschrank": "Wall cupboard",
    "cat.wandtablar": "Wall shelf",
    "cat.wange": "Cheek",
    "cat.wangenboden": "Cheek bottom",
    "cat.wangentisch": "Cheek table",
    "cat.waschbeckenunterschrank": "Vanity unit",
    "cat.waschtischunterschrank": "Vanity unit",
    "cat.wasserverbauch_eco_programm": "Water consumption Eco programme",
    "cat.watt": "",
    "cat.wechseloptionen": "Change options",
    "cat.wechselseitig": "Reciprocity",
    "cat.wickelkommode": "Changing unit",
    "cat.wohnen": "Living",
    "cat.wohnlandschaft": "Living landscape",
    "cat.zusatzbauteile": "Additional components",
    "cat.zweihebelmischer": "Two-lever mixer",
    "cat.zwischenbau": "Intermediate building",
    "cat_art_open": "Show article in catalogue",
    "cat_pag_open": "Open catalogue page",
    "collections": "Collections",
    "companyName": "Company name",
    "customerNo": "Customer number",
    "dhcat_agrob": "",
    "dhcat_agrob_alcina": "",
    "dhcat_agrob_area": "",
    "dhcat_agrob_evalia": "",
    "dhcat_agrob_kiano": "",
    "dhcat_brandedmat": "",
    "dhcat_carpet": "",
    "dhcat_egger": "",
    "dhcat_fabric": "",
    "dhcat_genericmat": "",
    "dhcat_iking": "",
    "dhcat_leather": "",
    "dhcat_miscellaneous": "",
    "dhcat_rasch": "",
    "dhcat_rasch_bambino": "",
    "dhcat_rasch_bbhomepassionv": "",
    "dhcat_rasch_decostyle": "",
    "dhcat_rasch_digbambinoxvii": "",
    "dhcat_rasch_glam": "",
    "dhcat_rasch_lucyinthesky": "",
    "dhcat_rasch_newbeats": "",
    "dhcat_rasch_outofafrica": "",
    "dhcat_rasch_softsenses": "",
    "dhcat_rasch_souvenir": "",
    "dhcat_schreibtisch": "Desk",
    "dhcat_spuelen_schrank": "Sink unit",
    "dhcat_stone": "",
    "dhcat_stoneslikestones": "",
    "dhcat_tile": "",
    "dhcat_wallcovering": "",
    "dhcat_weitzer": "",
    "dhcat_wood": "",
    "dhclass_eco": "",
    "dhclass_grill_oberhitze": "",
    "discount_relative": "Discount",
    "discounted_price_inclusive_vat": "Special price (incl. VAT)",
    "email": "E-mail",
    "email_mandatory": "E-mail*",
    "enter_NCS_code": "Enter NCS code",
    "enter_RAL_code": "Enter RAL code",
    "erpArtModify.productGroup.Babyzimmer": "Baby room",
    "erpArtModify.productGroup.Badezimmer": "Bathroom",
    "erpArtModify.productGroup.Buero": "Office",
    "erpArtModify.productGroup.Couchtische": "Coffee tables",
    "erpArtModify.productGroup.Diele": "Entrance hall/vestibule",
    "erpArtModify.productGroup.Jugendzimmer": "Youth room",
    "erpArtModify.productGroup.Kleinmoebel": "Small furniture",
    "erpArtModify.productGroup.Matratzen": "Mattresses",
    "erpArtModify.productGroup.Schlafen": "Sleeping",
    "erpArtModify.productGroup.Sofas": "Sofa/loungers",
    "erpArtModify.productGroup.Speisen": "Food",
    "erpArtModify.productGroup.Wohnen": "Living",
    "ERROR.FILE.OPEN.CLASS.CREATE": "An error occurred when opening the planning.\nOne or more objects could not be loaded.\nPlease close furnplan and try to open the planning again.\nIf the same error message appears again, please contact support.\nThank you for your understanding!",
    "ex.tools.table.check.ampersand": "Cell content must begin with '&'",
    "ex.tools.table.check.d": "Cell content must be of type double",
    "ex.tools.table.check.df": "Cell content is not a correct formula",
    "ex.tools.table.check.diff": "The cell may only contain the following data: [%s]",
    "ex.tools.table.check.error_message": "Do you want to save despite errors?",
    "ex.tools.table.check.first_is_backslash": "Cell content must begin with '\\'",
    "ex.tools.table.check.first_is_nubersighn": "Cell content must begin with '#'",
    "ex.tools.table.check.first_is_slash": "Cell content must begin with '/'",
    "ex.tools.table.check.has_file_extension": "The cell content contains the wrong file extension [%s]",
    "ex.tools.table.check.has_fix_length": "The cell content does not depend on the length %d",
    "ex.tools.table.check.has_max_length": "The cell content is greater than the maximum length of %d",
    "ex.tools.table.check.has_non_alpha": "Cell content must contain letters from the alphabet",
    "ex.tools.table.check.has_non_alpha_ext": "Cell content may not start with a number and may only contain A-Z 0-9 and _",
    "ex.tools.table.check.is_lowercase": "Cell content must be written in lower case",
    "ex.tools.table.check.is_unique": "Cell content is duplicate (not unique), first found in row %d",
    "ex.tools.table.check.is_unique_not_empty": "Cell content must not be empty, as it must be unique",
    "ex.tools.table.check.is_uppercase": "Cell content must be capitalised",
    "ex.tools.table.check.l": "Cell content must be of type Long",
    "ex.tools.table.check.must_empty": "Cell must be empty",
    "ex.tools.table.check.never_empty": "Cell must not be empty",
    "ex.tools.table.check.newline": "The cell content must not contain a line break [%d]",
    "ex.tools.table.check.no_leading_spaces": "Cell content must not start with spaces",
    "ex.tools.table.check.no_spaces": "Cell content must not contain spaces",
    "ex.tools.table.check.no_trailing_spaces": "Cell content must not end with a space",
    "ex.tools.table.check.only_spaces": "The cell must not only contain spaces",
    "ex.tools.table.check.rel_if_size": "ValueA (column %d: %s) is not (%s) to valueB (%s)",
    "ex.tools.table.check.rel_if_than": "Cell content combination is not ok for search criterion [%s]. Column [%d] not set.",
    "ex.tools.table.check.rel_if_than.must_empty": "Column [%d] must be empty.",
    "ex.tools.table.check.rel_if_than.not_empty": "Column [%d] must not be empty.",
    "ex.tools.table.check.rel_if_than_ext": "Cell content combination is not ok for the search criterion [%s].",
    "ex.tools.table.check.rel_must_set": "All of the following cells must be set if cell [%d] is set. Cells: [%s]",
    "ex.tools.table.check.rel_ne": "All cells in the following list must be set. Cells: [%s]",
    "ex.tools.table.check.rel_only_one": "Only one of the following cells may be set. Cells: [%s]",
    "ex.tools.table.check.rel_unique": "The sum of the cell contents is not unique [%s], first found in row %d",
    "ex.tools.table.check.string_expression_format": "Cell content must not contain double '+' characters and must contain a '+' before a $ / § character. This only applies if $ / § are not at the beginning.",
    "existing_planning_number": "Existing planning number",
    "ext_vw_drs": "Exterior view with doors",
    "finpara.baumwolle": "Cotton",
    "finpara.echtleder": "Genuine leather",
    "finpara.edelstahl": "Stainless steel",
    "finpara.galvanisiert": "galvanised",
    "finpara.gebuerstet": "brushed",
    "finpara.geflammt": "flamed",
    "finpara.grundgewebe": "Base fabric",
    "finpara.lackiert": "varnished",
    "finpara.metal": "Metal",
    "finpara.oberflaeche": "Surface",
    "finpara.polyester": "Polyester",
    "finpara.polypropylen": "Polypropylene",
    "finpara.polyurethan": "Polyurethane",
    "finpara.pulverbeschichtet": "Powder-coated",
    "finpara.verchromt": "chrome-plated",
    "first_name_mandatory": "First name*",
    "fp.additionalPositions.eggo.error.filialIdNotFound": "Your shop was not found in the StoreList, therefore no prices are displayed. Please contact your administrator",
    "fp.additionalPositions.Offer": "Offer",
    "fp.additionalPositions.Order": "Order",
    "fp.additionalPositions.SinglePrice": "Unit price",
    "fp.additionalPositions.warningMinMaxDimension": "One of the dimensions entered is not within the range between the min. and max. dimension of the individual dimming levels",
    "fp.printoptions.combi.subpos": "Combination of sub-items",
    "fp.printoptions.print_position_number": "Print item numbers",
    "fp.Projectmanager.Directory.DeleteFailed": "The directory could not be removed",
    "fp.Projectmanager.NewFolder": "New folder",
    "fp.Projectmanager.PleaseSelectFolder": "Please select a directory",
    "fp.Updater.Download.Exception.RetryMaxReached": "Maximum number of attempts has been reached. The download of component #1 could not be performed.",
    "fr.mail.subject": "Your furnray rendering - \"%s\"",
    "front_show_hide": "Show/hide front",
    "fs.broadcaster.abort_btn": "Exit",
    "fs.broadcaster.additional_hint_1": "- Your customer sees not only furnplan, but basically your entire screen (e.g. also when you open your email programme, etc...).",
    "fs.broadcaster.additional_hint_2": "- Your customer always sees the \"1st\" screen that has been defined as 1 in your Windows settings under Display. (Only relevant if you have several screens in use!) -",
    "fs.broadcaster.alternative_url": "Alternatively, you can provide your customer with this web address:",
    "fs.broadcaster.copy_tooltip": "copy",
    "fs.broadcaster.hint_1": "Your customer goes to the website: www.furnplan.de",
    "fs.broadcaster.hint_2": "Your customer must enter the session ID in the green input field on the right-hand side and click on <nobr>\"START SESSION!\"</nobr>.",
    "fs.broadcaster.hint_3": "A new window will then open for the customer. Here he may have to press the play button at the bottom left.",
    "fs.broadcaster.hint_4": "Now your customer sees your screen. You can start the consultation!",
    "fs.broadcaster.hint_5": "To end the session, press the \"End\" button. The transfer is now ended.",
    "fs.broadcaster.hint_headline": "NOTES:",
    "fs.broadcaster.session_id": "Session ID:",
    "fv.article.door_hinge": "Door hinge:",
    "fv.article.placeMidWall": "Place article in the centre of the wall",
    "fv.boxStyle.boundingBox.title": "Selection box",
    "fv.boxStyle.color.label": "Colour",
    "fv.boxStyle.corner.type.box": "Cube",
    "fv.boxStyle.corner.type.label": "Corner type",
    "fv.boxStyle.corner.type.none": "No corner",
    "fv.boxStyle.corner.type.sphere": "Ball",
    "fv.boxStyle.cornerStyle.title": "Corner style",
    "fv.boxStyle.customSettings": "Own setting",
    "fv.boxStyle.depth.label": "Deep text",
    "fv.boxStyle.depth.left_bottom": "Bottom left",
    "fv.boxStyle.depth.left_top": "Top left",
    "fv.boxStyle.depth.right_bottom": "Bottom right",
    "fv.boxStyle.depth.right_top": "Top right",
    "fv.boxStyle.enable.label": "Active",
    "fv.boxStyle.height.label": "Height Text",
    "fv.boxStyle.height.left_back": "Left rear",
    "fv.boxStyle.height.left_front": "Left front",
    "fv.boxStyle.height.right_back": "Right rear",
    "fv.boxStyle.height.right_front": "Right front",
    "fv.boxStyle.highlightBox.title": "Highlight box",
    "fv.boxStyle.hover.label": "Mouse over",
    "fv.boxStyle.lineStyle.title": "Line style",
    "fv.boxStyle.markerBox.title": "Marking box",
    "fv.boxStyle.measureBox.title": "Dimension box",
    "fv.boxStyle.opacity.label": "Visibility",
    "fv.boxStyle.textOverride.title": "Text style",
    "fv.boxStyle.vplacerReplaceBox.title": "VPlacerReplaceBox",
    "fv.boxStyle.width.bottom_back": "Bottom back",
    "fv.boxStyle.width.bottom_front": "Bottom front",
    "fv.boxStyle.width.label": "Wide text",
    "fv.boxStyle.width.top_back": "Top back",
    "fv.boxStyle.width.top_front": "Top front",
    "fv.button.label.share": "Share planning",
    "fv.button.next": "Further",
    "fv.configuration.save_notice.text": "Save your configuration",
    "fv.copied": "copied",
    "fv.create_furnray_upload.action": "Create a photorealistic image",
    "fv.create_furnray_upload.duration_notice": "This can take up to 30 seconds",
    "fv.create_furnray_upload.please_wait": "Please wait a few seconds...",
    "fv.default.request.customer.template_Header": "Customer enquiry",
    "fv.default.request.customer.template_text": "A customer has sent an enquiry from the online configurator:",
    "fv.default.request.customer.template_text2": "Message from the customer",
    "fv.depthInCm": "Depth in cm",
    "fv.dimchange.caption": "Dimensional change",
    "fv.dimchange.confirm": "Confirm",
    "fv.dimchange.depth": "Depth",
    "fv.dimchange.description.depth": "New depth in cm",
    "fv.dimchange.description.height": "New height in cm",
    "fv.dimchange.description.short.depth": "",
    "fv.dimchange.description.short.height": "",
    "fv.dimchange.description.short.width": "",
    "fv.dimchange.description.width": "New width in cm",
    "fv.dimchange.height": "Height",
    "fv.dimchange.maximal": "maximum",
    "fv.dimchange.minimal": "minimal",
    "fv.dimchange.width": "Width",
    "fv.email.alternative": "Alternatively, this can also be called up on the %s page by entering the number %s.",
    "fv.email.available": "We are pleased to inform you that your recently created furniture planning is now available on the web.",
    "fv.email.complimentary_close": "Yours sincerely,",
    "fv.email.contactName": "Contact person",
    "fv.email.contactPhone": "Telephone number",
    "fv.email.errorrenderingemail.export": "your scene export with the order number:",
    "fv.email.errorrenderingemail.failure": "could not be processed.",
    "fv.email.errorrenderingemail.notification": "The furnray team has been informed.",
    "fv.email.expiration": "The planning will be available online up to and including <u>%s</u>.",
    "fv.email.finishplaningmail.export": "You will receive your planning documents as a PDF file.",
    "fv.email.finishplaningmail.planingnumber": "Your planning number is: <b>%s</b>",
    "fv.email.finishrenderingemail.export": "You will receive your finished rendered scene.",
    "fv.email.homeviewer.send_request_customer.close_1": "If you have any questions, please get in touch with your contact person at the furniture store.",
    "fv.email.homeviewer.send_request_customer.contact_header": "Details of your contact person at the furniture store",
    "fv.email.homeviewer.send_request_customer.covering_1": "You are receiving this automatically generated e-mail because you have recently sent an enquiry to your furniture retailer.",
    "fv.email.homeviewer.send_request_customer.covering_1_to_myself_only": "You are receiving this automatically generated e-mail because you have recently requested your planning.",
    "fv.email.homeviewer.send_request_customer.covering_2": "The data is summarised below for your records.",
    "fv.email.homeviewer.send_request_customer.covering_3": "Your data",
    "fv.email.homeviewer.send_request_customer.email": "e-mail",
    "fv.email.homeviewer.send_request_customer.message": "Message",
    "fv.email.homeviewer.send_request_customer.name": "Name",
    "fv.email.homeviewer.send_request_customer.phone": "Telephone",
    "fv.email.homeviewer.send_request_customer.planingnumber": "Planning number",
    "fv.email.homeviewer.send_request_customer.salutation": "Dear customer,",
    "fv.email.homeviewer.send_request_customer.subject": "furnview: Summary of your data",
    "fv.email.homeviewer.send_request_dealer.close_1": "If you have any questions about planning, please contact the customer.",
    "fv.email.homeviewer.send_request_dealer.close_2": "If you have any questions about furncloud, please contact D+H Software on the usual telephone number.",
    "fv.email.homeviewer.send_request_dealer.covering_1": "You receive this automatically generated e-mail because a customer has sent you an enquiry.",
    "fv.email.homeviewer.send_request_dealer.covering_2": "The cloud ID is",
    "fv.email.homeviewer.send_request_dealer.customer_mail": "E-mail of the customer",
    "fv.email.homeviewer.send_request_dealer.customer_message": "Message from the customer",
    "fv.email.homeviewer.send_request_dealer.customer_name": "Name of the customer",
    "fv.email.homeviewer.send_request_dealer.customer_phone": "Telephone number of the customer",
    "fv.email.homeviewer.send_request_dealer.salutation": "Ladies and Gentlemen,",
    "fv.email.homeviewer.send_request_dealer.subject": "furnview: A customer has sent a request for the cloud ID %s",
    "fv.email.homeviewer.share_by_mail.close_1": "If you have any questions, please get in touch with your contact person at the furniture store.",
    "fv.email.homeviewer.share_by_mail.covering_1": "A plan was recently shared with you.",
    "fv.email.homeviewer.share_by_mail.planningnumber": "The planning number is",
    "fv.email.homeviewer.share_by_mail.salutation": "Ladies and Gentlemen,",
    "fv.email.homeviewer.share_by_mail.subject": "furnview: A furniture plan was shared with you",
    "fv.email.homeviewer.share_by_mail.text_1": "You can access these under the link %s.",
    "fv.email.open": "You can open the planning under the following link:",
    "fv.email.salutation": "Ladies and Gentlemen,",
    "fv.email.service_text": "A service from D+H Software GmbH",
    "fv.email.subject": "furnview: You can now view your furniture planning!",
    "fv.email.webui.dealer_request.subject": "furnview: Enquiry",
    "fv.email.webui.dealer_request.template": "<!DOCTYPE html>\n<html>\n\t<head>\n        <meta charset=\"utf-8\">\n\n        <style>\n            body, table {\n                font-family: Arial, Helvetica, sans-serif;\n                font-size: 10pt;\n            }\n\t\t\t\n\t\t\t.bold {\n\t\t\t\tfont-weight: bold;\n\t\t\t}\n\t\t\t\n\t\t\t.underline {\n\t\t\t\ttext-decoration: underline;\n\t\t\t}\n\t\t\t\n            .paragraph {\n                margin-top: 1em;\n                margin-bottom: 1em;\n            }\n\n            .line {\n                margin: 0;\n                padding: 0;\n            }\n\n            .monospace {\n                font-family: Courier, monospace;\n                font-size: 11pt;\n            }\n\n            .message {\n                margin-left: 2em;\n                max-width: 30em;\n            }\n\n            .cloud-id:before {\n                content: \" \";\n            }\n\n            table {\n                border-collapse: collapse;\n            }\n\n            .data td {\n                padding: 0 1em 0 0;\n            }\n\n            a, a:visited {\n                colour: #ff8014;\n            }\n\t\t\ttr {\n\t\t\t\theight: 25px;\n\t\t\t}\n        </style>\n    </head>\n\n    <body>\n\t\t<div class=\"paragraph\">An enquiry was recently created by a customer.</div>\n\t\t\n\t\t<br>\n\t\t\n\t\t<div class=\"paragraph\">\n\t\t\t<h4>Customer information:</h4>\n\t\t\t<div class=\"paragraph\">\n\t\t\t\t<table>\n\t\t\t\t\t<tr>\n\t\t\t\t\t\t<td><span class=\"bold underline\">Name:</span></td><td>@@name@@</td>\n\t\t\t\t\t</tr>\n\t\t\t\t\t<tr>\n\t\t\t\t\t\t<td><span class=\"bold underline\">First name:</span></td><td>@@surname@@</td>\n\t\t\t\t\t</tr>\n\t\t\t\t\t<tr>\n\t\t\t\t\t\t<td><span class=\"bold underline\">Email:</span></td><td>@@email@@</td>\n\t\t\t\t\t</tr>\n\t\t\t\t\t<tr>\n\t\t\t\t\t\t<td><span class=\"bold underline\">Phone:</span></td><td>@@phone@@</td>\n\t\t\t\t\t</tr>\n\t\t\t\t\t<tr>\n\t\t\t\t\t\t<td><span class=\"bold underline\">Postcode:</span></td><td>@@postcode@@</td>\n\t\t\t\t\t</tr>\n\t\t\t\t</table>\n\t\t\t</div>\n\t\t</div>\n\t\t\n\t\t<br>\n\n        <div class=\"paragraph\">\n            <div class=\"line\">\n\t\t\t\tThis is the planning number of the enquiry: <span class=\"bold underline\">@@number@@</span>\n            </div>\n        </div>\n\t\t<div class=\"paragraph\">Message from the customer:</div>\n\t\t<div class=\"paragraph\">@@message@@</div>\n\n        <img src=\"cid:furnview-logo\">\n\n        <br>\n\n        <span style=\"font-size: 10px\">A service of D+H Software GmbH</span>\n\n    \n\t</body>\n</html>",
    "fv.email.webviewer.share_by_mail.template": "<!DOCTYPE html>\n<html>\n    <head>\n        <meta charset=\"utf-8\"/>\n\n        <style>\n            body, table {\n                font-family: Arial, Helvetica, sans-serif;\n                font-size: 10pt;\n            }\n\n            .paragraph {\n                margin-top: 1em;\n                margin-bottom: 1em;\n            }\n\n            .line {\n                margin: 0;\n                padding: 0;\n            }\n\n            .monospace {\n                font-family: Courier, monospace;\n                font-size: 11pt;\n            }\n\n            .message {\n                margin-left: 2em;\n                max-width: 30em;\n            }\n\n            .cloud-id:before {\n                content: \" \";\n            }\n\n            table {\n                border-collapse: collapse;\n            }\n\n            .data td {\n                padding: 0 1em 0 0;\n            }\n\n            a, a:visited {\n                colour: #ff8014;\n            }\n        </style>\n    </head>\n\n    <body>\n        <div class=\"paragraph\">Dear Sir or Madam,</div>\n\n        <div class=\"paragraph\">A planning was recently shared with you.</div>\n\n        <div class=\"paragraph\">\n            <div class=\"line\">\n                You can access this under the link <a href=\"@@url@@\">@@url@@</a>.\n            </div>\n        </div>\n\t\t\n\t\t<div class=\"paragraph\">@@message@@</div>\n\n        <img src=\"cid:furnview-logo\"/>\n\n        <br/>\n\n        <span style=\"font-size: 10px\">A service of D+H Software GmbH</span>\n\n    </body>\n</html>",
    "fv.error.return": "Back",
    "fv.error.title.error": "Error",
    "fv.error.to_many_reloads": "You have tried to reload the page too often.",
    "fv.fileUpload.otfMaterial": "Create your own materials",
    "fv.fileUpload.selectImageFile": "Select your image file",
    "fv.generickatatree.alternativeArticel": "Alternative articles for filtering",
    "fv.generickatatree.articles": "Article",
    "fv.generickatatree.ausfuehrungen": "Executions",
    "fv.generickatatree.b": "B",
    "fv.generickatatree.catalog": "Catalogue",
    "fv.generickatatree.collection": "Collection",
    "fv.generickatatree.depth": "Depth",
    "fv.generickatatree.h": "H",
    "fv.generickatatree.height": "Height",
    "fv.generickatatree.import3d": "3D imports",
    "fv.generickatatree.indiviuell_tv": "Customised TVs",
    "fv.generickatatree.konfiguration": "Configuration",
    "fv.generickatatree.manufacturer": "Manufacturer",
    "fv.generickatatree.nothingFound": "No articles found.",
    "fv.generickatatree.placeproposals": "Catalogue groups",
    "fv.generickatatree.positionieren": "Positioning",
    "fv.generickatatree.program": "Programme",
    "fv.generickatatree.section": "Category",
    "fv.generickatatree.specialPages.modelCompilation": "Model composition",
    "fv.generickatatree.t": "T",
    "fv.generickatatree.tooltip.moreInformations": "More info",
    "fv.generickatatree.variables_korpussystem": "Variable carcass system",
    "fv.generickatatree.vorschau": "Preview",
    "fv.generickatatree.vorschlag": "Proposal",
    "fv.generickatatree.width": "Width",
    "fv.generickatatree.zubehoer": "Accessories",
    "fv.genericwizard.back_to": "back to",
    "fv.genericwizard.buy_online": "Buy online",
    "fv.genericwizard.configuration.back_to_shop": "Back to the shop",
    "fv.genericwizard.configuration.save_dxf": "",
    "fv.genericwizard.configuration.save_obj": "Save OBJ",
    "fv.genericwizard.configuration.save_pdf": "Save PDF",
    "fv.genericwizard.configuration.save_skp": "Save SKP",
    "fv.genericwizard.configuration.save_xls": "",
    "fv.genericwizard.configuration.save_xml": "Save XML",
    "fv.genericwizard.configuration.share_config": "Share configuration",
    "fv.genericwizard.configuration_as_pdf": "Save PDF",
    "fv.genericwizard.configuration_share": "Share configuration",
    "fv.genericwizard.goto_dealer_search": "to the dealer search",
    "fv.genericwizard.modal.proptrans.cancel": "Close",
    "fv.genericwizard.modal.proptrans.select": "Select",
    "fv.genericwizard.modify_elements": "Change individual areas",
    "fv.genericwizard.new_configuration": "New configuration",
    "fv.genericwizard.overview": "Overview",
    "fv.genericwizard.redbox_caption": "Your furniture cannot be planned like this",
    "fv.genericwizard.search_dealer": "Find a dealer",
    "fv.genericwizard.template_caption.W_ARTICLE": "Models",
    "fv.genericwizard.template_caption.W_CONFIGURATION": "Prices and details",
    "fv.genericwizard.template_caption.W_PROGPROPERTIES": "Colours and surfaces",
    "fv.genericwizard.template_caption.W_PROPTRANSFER": "Options",
    "fv.genericwizard.template_caption.W_SHOPPINGCART_ARTICLE": "Accessories",
    "fv.genericwizard.template_caption.W_SPECIAL": "Special options",
    "fv.genericwizard.template_caption.W_SPECIAL.cover_edit": "Machining the cover plate",
    "fv.genericwizard.to_shopping_cart": "Add to shopping basket",
    "fv.genericwizard.tooltip.addArticle": "Add article",
    "fv.genericwizard.tooltip.infoArticle": "more information",
    "fv.genericwizard.tooltip.removeArticle": "Remove article",
    "fv.genericwizard.your_configuration": "Your configuration",
    "fv.global.back": "Back",
    "fv.global.manufacturer": "Manufacturer",
    "fv.global.program": "Programme",
    "fv.heightInCm": "Height in cm",
    "fv.home.form.error.expired": "This planning has expired. Please get in touch with your contact person.",
    "fv.home.form.error.number.missing": "Please enter a number.",
    "fv.home.form.error.number.wait": "Please wait %s seconds until the next attempt.",
    "fv.home.form.error.number.wrong": "This number does not exist.",
    "fv.home.form.header": "View planning",
    "fv.home.form.loading": "Planning is loaded",
    "fv.home.form.notice": "Please enter the planning number you received with our e-mail in the field below.",
    "fv.home.form.number_placeholder": "Number",
    "fv.home.form.submit_label": "Open",
    "fv.home.panel.floor": "Floor",
    "fv.home.panel.wall": "Wall",
    "fv.home.panel.wood": "Wood",
    "fv.info.cookie.nag": "We use cookies to improve your experience. By continuing to browse the site, you are agreeing to our use of cookies.",
    "fv.info.message.PLEASE_SELECT_ELEMENT": "Please click on the piece of furniture to be configured.",
    "fv.info.message.PROP_TRANSFER_FITTING": "** Equipment",
    "fv.info.message.PROP_TRANSFER_FITTING_NOTFOUND": "** No equipment was found.",
    "fv.info.message.PROPERTIES": "** Versions",
    "fv.info.message.PROPERTIES_NOTFOUND": "No versions were found.",
    "fv.invalid.input": "Invalid input",
    "fv.iwofurn.branchID": "Branch ID",
    "fv.iwofurn.planingname": "Planning name",
    "fv.iwofurn.planningID": "Planning ID",
    "fv.iwofurn.sellerID": "Seller ID",
    "fv.iwofurn.warning": "Please check your entries",
    "fv.konfigurator.berechtigung.ausfuehrung": "Executions",
    "fv.konfigurator.berechtigung.header": "Authorisation list",
    "fv.konfigurator.berechtigung.kategorie": "Category",
    "fv.konfigurator.berechtigung.suchen": "Search",
    "fv.konfigurator.berechtigung.upload_pdf": "Upload PDF",
    "fv.konfigurator.caption": "Article URL Configurator",
    "fv.konfigurator.darstellungsBit.1": "Exclusively for furnview - Not visible by default",
    "fv.konfigurator.darstellungsBit.2": "Only visible in furnview",
    "fv.konfigurator.datengespeichert": "Data has been saved!",
    "fv.konfigurator.gespeichert": "Saved",
    "fv.konfigurator.kategorie.einstellungen.maxobjects": "** Unique",
    "fv.konfigurator.keinname": "No name was given.",
    "fv.konfigurator.konfiguration": "Configurations",
    "fv.konfigurator.konfiguration.download": "Download the configuration",
    "fv.konfigurator.konfiguration.erstellen": "Create a new configuration",
    "fv.konfigurator.konfiguration.floorShadow": "Ground shade",
    "fv.konfigurator.konfiguration.floorShadow.info": "Show floor, shadows and placers are deactivated",
    "fv.konfigurator.konfiguration.id": "ID",
    "fv.konfigurator.konfiguration.loeschen": "Deleting the configuration",
    "fv.konfigurator.konfiguration.loeschenAusfuehrungsListe": "Deletes the stored execution list from the configuration",
    "fv.konfigurator.konfiguration.loeschenLand": "Deletes the stored country from the configuration",
    "fv.konfigurator.konfiguration.loeschenMailEinstellung": "Deletes the stored e-mail setting from the configuration",
    "fv.konfigurator.konfiguration.loeschenPrintEinstellung": "Deletes the stored pressure setting from the configuration",
    "fv.konfigurator.konfiguration.loeschenProgrammListe": "Deletes the stored programme list from the configuration",
    "fv.konfigurator.konfiguration.name": "Name",
    "fv.konfigurator.konfiguration.oeffnen": "Opening the configuration",
    "fv.konfigurator.konfiguration.oeffnenListe": "Opens the list of existing configurations",
    "fv.konfigurator.konfiguration.savePlanning": "Saves the current planning as the basic planning for this configuration",
    "fv.konfigurator.konfiguration.speichern": "Saving the configuration",
    "fv.konfigurator.konfiguration.speichernAls": "Saving the configuration as",
    "fv.konfigurator.konfiguration.speichernUndAktualisieren": "Saves the current configuration and displays it as a preview in the window above",
    "fv.konfigurator.konfiguration.templateErstellen": "Create a new template",
    "fv.konfigurator.konfiguration.templateOeffnen": "Open template",
    "fv.konfigurator.konfiguration.templateSpeichern": "Save template",
    "fv.konfigurator.konfiguration.ueberschreiben": "Overwrite configuration",
    "fv.konfigurator.konfiguration.urlErstellen": "Creates a URL based on the currently open configuration",
    "fv.konfigurator.konfiguration.urlKopieren": "Copy the URL to the clipboard",
    "fv.konfigurator.konfiguration.urlOeffnen": "Opens the URL in a new window",
    "fv.konfigurator.konfigurationMail.erstellen": "Create a new mail setting",
    "fv.konfigurator.konfigurationMail.loeschen": "Delete the mail setting",
    "fv.konfigurator.konfigurationMail.oeffnen": "Opening the mail setting",
    "fv.konfigurator.konfigurationMail.oeffnenListe": "Opens the list of existing mail settings",
    "fv.konfigurator.konfigurationMail.speichern": "Saving the mail setting",
    "fv.konfigurator.konfigurationPrint.erstellen": "Creating a new print setting",
    "fv.konfigurator.konfigurationPrint.loeschen": "Deleting the print setting",
    "fv.konfigurator.konfigurationPrint.oeffnen": "Opening the pressure setting",
    "fv.konfigurator.konfigurationPrint.oeffnenListe": "Opens the list of existing print settings",
    "fv.konfigurator.konfigurationPrint.speichern": "Saving the pressure setting",
    "fv.konfigurator.landing.page": "** Landing page",
    "fv.konfigurator.landing.page.basis.beschreibung": "Description of the",
    "fv.konfigurator.landing.page.basis.bild": "Upload image",
    "fv.konfigurator.landing.page.basis.custom": "** User-specific",
    "fv.konfigurator.landing.page.basis.height": "** Height",
    "fv.konfigurator.landing.page.basis.kategorie": "** Category",
    "fv.konfigurator.landing.page.basis.planung": "Upload planning",
    "fv.konfigurator.landing.page.basis.price": "** Price",
    "fv.konfigurator.landing.page.basis.price.uvp": "RRP",
    "fv.konfigurator.landing.page.basis.standard.keyname": "** (Untitled)",
    "fv.konfigurator.landing.page.basis.width": "** Width",
    "fv.konfigurator.landing.page.kategorie.drei": "** U-shape",
    "fv.konfigurator.landing.page.kategorie.eins": "Straight shape",
    "fv.konfigurator.landing.page.kategorie.frei": "Free planning",
    "fv.konfigurator.landing.page.kategorie.zwei": "L-shape",
    "fv.konfigurator.landing.page.key": "** Key",
    "fv.konfigurator.landing.page.value": "** Value",
    "fv.konfigurator.logout": "Log out",
    "fv.konfigurator.modal.delete.cancel": "** Cancel",
    "fv.konfigurator.modal.delete.header": "** Delete configuration",
    "fv.konfigurator.modal.delete.ok": "** Delete",
    "fv.konfigurator.moebel": "Furniture",
    "fv.konfigurator.moebel.artikelnr": "Article no.",
    "fv.konfigurator.moebel.initial_planning": "Initial planning",
    "fv.konfigurator.nichtgespeichert": "Not saved",
    "fv.konfigurator.optionen.artikeltypen": "Article types",
    "fv.konfigurator.optionen.artikeltypen.artikel": "Article",
    "fv.konfigurator.optionen.artikeltypen.artikel.tooltip": "Determines whether items can be scheduled in furnview",
    "fv.konfigurator.optionen.artikeltypen.combination": "Combination",
    "fv.konfigurator.optionen.artikeltypen.combination.tooltip": "Determines whether combinations can be scheduled in furnview",
    "fv.konfigurator.optionen.artikeltypen.platzierungsvorschlaege": "Placement suggestions",
    "fv.konfigurator.optionen.artikeltypen.platzierungsvorschlaege.tooltip": "Determines whether placement proposals can be scheduled in furnview",
    "fv.konfigurator.optionen.autolux": "Automatic light placement",
    "fv.konfigurator.optionen.autolux.settings.rangein_offset_forward": "RangeIn offset forwards",
    "fv.konfigurator.optionen.autolux.settings.rangein_offset_forward_threshold": "RangeIn Offset forwards Limit value",
    "fv.konfigurator.optionen.autolux.settings.rangein_offset_left_right": "RangeIn Offset to left/right",
    "fv.konfigurator.optionen.autolux.settings.spotlight_color": "Autolux Spotlight colour",
    "fv.konfigurator.optionen.automatic.wall": "Create automatically",
    "fv.konfigurator.optionen.automatic.wall.height": "** Height",
    "fv.konfigurator.optionen.automatic.wall.offset": "** Lateral overhang",
    "fv.konfigurator.optionen.boden": "Floor",
    "fv.konfigurator.optionen.boden.bodenanzeigen": "Show floor",
    "fv.konfigurator.optionen.boden.bodenanzeigen.tooltip": "Determines whether furnview should display a floor or not",
    "fv.konfigurator.optionen.boden.transparency": "Floor transparency",
    "fv.konfigurator.optionen.camera.force_no_interaction": "Deactivate camera interaction",
    "fv.konfigurator.optionen.camera.settings": "Camera settings",
    "fv.konfigurator.optionen.camera.settings.bottom": "** Angle below",
    "fv.konfigurator.optionen.camera.settings.deactivate_pan": "Deactivate move",
    "fv.konfigurator.optionen.camera.settings.deactivate_rotate": "Deactivate rotation around the scene",
    "fv.konfigurator.optionen.camera.settings.deactivate_rotate2": "Deactivate rotation around own axis",
    "fv.konfigurator.optionen.camera.settings.depth.offset": "** Extra Offset",
    "fv.konfigurator.optionen.camera.settings.fixedview": "Reset on change",
    "fv.konfigurator.optionen.camera.settings.left": "** Angle left",
    "fv.konfigurator.optionen.camera.settings.max.distance": "** Maximum distance",
    "fv.konfigurator.optionen.camera.settings.min.distance": "** Minimum distance",
    "fv.konfigurator.optionen.camera.settings.right": "** Angle right",
    "fv.konfigurator.optionen.camera.settings.rotation_point": "Rotation point",
    "fv.konfigurator.optionen.camera.settings.rotation_point.back_center": "Rear centred",
    "fv.konfigurator.optionen.camera.settings.rotation_point.center": "Centred",
    "fv.konfigurator.optionen.camera.settings.top": "** Angle top",
    "fv.konfigurator.optionen.camera.settings.vector.reset": "Fix line of vision",
    "fv.konfigurator.optionen.camera.settings.vector.special": "Optional camera alignment",
    "fv.konfigurator.optionen.custom-roompage-enable-door-selection": "** Door selection",
    "fv.konfigurator.optionen.custom-roompage-enable-wall-and-floor-properties": "** Wall and floor versions",
    "fv.konfigurator.optionen.custom-roompage-enable-window-selection": "** Window selection",
    "fv.konfigurator.optionen.depthSelection": "** TreeUpSelection",
    "fv.konfigurator.optionen.depthSelection.enable": "** Alt. Activate selection",
    "fv.konfigurator.optionen.depthSelection.fittings": "** Equipment selection",
    "fv.konfigurator.optionen.depthSelection.front": "** Front selection",
    "fv.konfigurator.optionen.disable.wall.selection": "Deactivate selection",
    "fv.konfigurator.optionen.disable_polygon_offset": "Deactivate edge line offset",
    "fv.konfigurator.optionen.druckeinstellung": "Pressure setting",
    "fv.konfigurator.optionen.enable_environment_lighting": "Ambient lighting",
    "fv.konfigurator.optionen.filter": "Filters",
    "fv.konfigurator.optionen.filter.artikel": "Article",
    "fv.konfigurator.optionen.filter.artikel.tooltip": "Activates the article number field in the article filter",
    "fv.konfigurator.optionen.filter.dimensionslist": "Hide dimensions",
    "fv.konfigurator.optionen.filter.dimensionslist.tooltip": "Hides the dimensions in the article filter",
    "fv.konfigurator.optionen.filter.hersteller": "Manufacturer",
    "fv.konfigurator.optionen.filter.hersteller.tooltip": "Activates the manufacturer selection in the article filter",
    "fv.konfigurator.optionen.filter.initialArticle": "Initial article",
    "fv.konfigurator.optionen.filter.initialArticle.tooltip": "Defines the standard article of a programme that is loaded initially",
    "fv.konfigurator.optionen.filter.kategorie_idm": "Category(IDM)",
    "fv.konfigurator.optionen.filter.kategorie_idm.tooltip": "Activates the category selection (IDM) in the article filter",
    "fv.konfigurator.optionen.filter.programm": "Programme",
    "fv.konfigurator.optionen.filter.programm.tooltip": "Activates the programme selection in the article filter",
    "fv.konfigurator.optionen.filter.programmgruppe": "Programme group",
    "fv.konfigurator.optionen.filter.programmgruppe.tooltip": "Show or hide programme groups",
    "fv.konfigurator.optionen.filter.programmimages": "Milieu photos",
    "fv.konfigurator.optionen.filter.programmimages.tooltip": "Activates the programme selection via environment photos",
    "fv.konfigurator.optionen.filter.programmimagesreset": "Reset scene",
    "fv.konfigurator.optionen.filter.resetScene": "** Delete scene",
    "fv.konfigurator.optionen.filter.resetSceneBasicPlaning": "** Restore scene",
    "fv.konfigurator.optionen.filter.selectedArticle": "Article",
    "fv.konfigurator.optionen.filter.selectedArticle.tooltip": "Defines the article to be used when loading furnview.",
    "fv.konfigurator.optionen.filter.selectedKataPage": "Catapult",
    "fv.konfigurator.optionen.filter.selectedKataPage.tooltip": "Defines the catapage to be used when loading furnview.",
    "fv.konfigurator.optionen.filter.selectedManufacturer": "Manufacturer",
    "fv.konfigurator.optionen.filter.selectedManufacturer.tooltip": "Specifies the manufacturer to be used when loading furnview.",
    "fv.konfigurator.optionen.filter.selectedProg": "Programme",
    "fv.konfigurator.optionen.filter.selectedProg.tooltip": "Defines the programme that is used when furnview is loaded.",
    "fv.konfigurator.optionen.filter.selectedProgGroup": "Programme group",
    "fv.konfigurator.optionen.filter.selectedProgGroup.tooltip": "Defines the programme group that is used when furnview is loaded.",
    "fv.konfigurator.optionen.furnray.settings": "Furnray settings",
    "fv.konfigurator.optionen.hr": "Register HR-Mode",
    "fv.konfigurator.optionen.kamera.dreid.default": "3D camera as standard",
    "fv.konfigurator.optionen.kamera.traegheit": "Camera inertia",
    "fv.konfigurator.optionen.kamera.zweid.default": "2D camera as standard",
    "fv.konfigurator.optionen.laenderauswahl": "Select country",
    "fv.konfigurator.optionen.maileinstellung": "E-mail setting",
    "fv.konfigurator.optionen.offsetSelection.enable": "** Offset Highlight",
    "fv.konfigurator.optionen.panel": "Panel",
    "fv.konfigurator.optionen.panel.ausstattung": "** Combine equipment",
    "fv.konfigurator.optionen.panel.hr_backend_configurator": "HRTheme Configurator",
    "fv.konfigurator.optionen.panel.managearticlecontexts": "Manage article contexts",
    "fv.konfigurator.optionen.panel.new_hr_mode": "** New HR mode",
    "fv.konfigurator.optionen.panel.none_full_height_catalog": "** Wizard catalogue not fluid",
    "fv.konfigurator.optionen.panel.register_custom_roompage": "** Room configuration",
    "fv.konfigurator.optionen.panel.registeraccessoiresgeneric": "Accessories(generic)",
    "fv.konfigurator.optionen.panel.registeraccessoiresgeneric.tooltip": "Activates the \"Accessories (generic)\" tab",
    "fv.konfigurator.optionen.panel.registerausfuehren": "Executions",
    "fv.konfigurator.optionen.panel.registerausfuehren.disabled.property.buttons": "Show all versions",
    "fv.konfigurator.optionen.panel.registerausfuehren.disabled.property.buttons.tooltip": "Also displays versions that cannot be changed.",
    "fv.konfigurator.optionen.panel.registerausfuehren.tooltip": "Activates the \"Executions\" tab",
    "fv.konfigurator.optionen.panel.registerauswertung": "Evaluation",
    "fv.konfigurator.optionen.panel.registerboden": "Floor",
    "fv.konfigurator.optionen.panel.registerboden.tooltip": "Activates the \"Floor\" tab",
    "fv.konfigurator.optionen.panel.registerhr": "HR",
    "fv.konfigurator.optionen.panel.registerhr.tooltip": "Activates the \"HR\" tab",
    "fv.konfigurator.optionen.panel.registerinitaloeffnen": "Open catalogue initially",
    "fv.konfigurator.optionen.panel.registerinitaloeffnen.tooltip": "Determines whether the catalogue should be opened in furnview when the website is called up",
    "fv.konfigurator.optionen.panel.registerkatalog": "Old catalogue",
    "fv.konfigurator.optionen.panel.registerkatalog.tooltip": "Activates the \"Old catalogue\" tab",
    "fv.konfigurator.optionen.panel.registerkatatree": "New catalogue",
    "fv.konfigurator.optionen.panel.registerkatatree.tooltip": "Activates the \"New catalogue\" tab",
    "fv.konfigurator.optionen.panel.registerkatatreegeneric": "Catalogue(generic)",
    "fv.konfigurator.optionen.panel.registerkatatreegeneric.tooltip": "Activates the \"Catalogue (generic)\" tab",
    "fv.konfigurator.optionen.panel.registeroldkatatree": "furnplan catalogue",
    "fv.konfigurator.optionen.panel.registeroldkatatree.tooltip": "Activates the \"furnplan catalogue\" tab",
    "fv.konfigurator.optionen.panel.registerwand": "Wall",
    "fv.konfigurator.optionen.panel.registerwand.tooltip": "Activates the \"Wall\" tab",
    "fv.konfigurator.optionen.panel.registerzubehoer": "Accessories",
    "fv.konfigurator.optionen.panel.registerzubehoer.tooltip": "Activates the \"Accessories\" tab",
    "fv.konfigurator.optionen.panel.share": "** Share",
    "fv.konfigurator.optionen.panel.show_toggler": "Show sidebar toggler",
    "fv.konfigurator.optionen.pdfviewer.settings": "PDF Viewer",
    "fv.konfigurator.optionen.pdfviewer.settings.full": "Full screen",
    "fv.konfigurator.optionen.pdfviewer.settings.location": "Range",
    "fv.konfigurator.optionen.pdfviewer.settings.static": "Static",
    "fv.konfigurator.optionen.pdfviewer.settings.transition": "Animated",
    "fv.konfigurator.optionen.planning": "** Planning settings",
    "fv.konfigurator.optionen.planning.3dtext.hide": "Programme",
    "fv.konfigurator.optionen.planning.3dtext.screenshot.hide": "",
    "fv.konfigurator.optionen.planning.disable.moveobject": "",
    "fv.konfigurator.optionen.planning.disable.moveobjectx": "",
    "fv.konfigurator.optionen.planning.disable.moveobjectz": "",
    "fv.konfigurator.optionen.planning.disable.uiControls": "Deactivate UIControls",
    "fv.konfigurator.optionen.planning.disable-collision": "** Deactivate collision",
    "fv.konfigurator.optionen.planning.disable-measure-absz": "** Fitting - deactivate paragraph",
    "fv.konfigurator.optionen.planning.disable-redbox-modal": "Deactivate RedBox Modal",
    "fv.konfigurator.optionen.planning.dragdrop_canceldirection": "** Prohibit drag direction",
    "fv.konfigurator.optionen.planning.dragndrop": "** Deactivate drag & drop",
    "fv.konfigurator.optionen.planning.enable.advanced.context.menu": "",
    "fv.konfigurator.optionen.planning.enable.deleteContextMenuFilter": "Delete Context Menu Filter",
    "fv.konfigurator.optionen.planning.enable.dim-change": "** Activate change dimensions",
    "fv.konfigurator.optionen.planning.enable.dimchangeContextMenu": "Dimensions ContextMenu",
    "fv.konfigurator.optionen.planning.enable.frontstopContextMenu": "Change stop Context Menu",
    "fv.konfigurator.optionen.planning.enable.selectionContextMenu": "** Selection ContextMenu",
    "fv.konfigurator.optionen.planning.fitting-auto-disable": "** Automatically hide FittingBox",
    "fv.konfigurator.optionen.planning.fitting-measure": "** Fitting dimensioning",
    "fv.konfigurator.optionen.planning.free_dragdrop": "** Drag&Drop + free placement",
    "fv.konfigurator.optionen.planning.horizontal_dragdrop": "** Horizontal",
    "fv.konfigurator.optionen.planning.measureBox": "** Show dimension box",
    "fv.konfigurator.optionen.planning.measureBox.color": "** Dimension box colour",
    "fv.konfigurator.optionen.planning.measureBox.ext_Text": "Extended dimensioning box Texts",
    "fv.konfigurator.optionen.planning.measureBox.ext_Text.depth": "Depth",
    "fv.konfigurator.optionen.planning.measureBox.ext_Text.height": "Height",
    "fv.konfigurator.optionen.planning.measureBox.ext_Text.width": "Width",
    "fv.konfigurator.optionen.planning.measureBox.selectionContext": "Dimension box for selected elements",
    "fv.konfigurator.optionen.planning.measureBoxDefault": "** Show dimension box by default",
    "fv.konfigurator.optionen.planning.measureWalls": "** Walls dimensioned",
    "fv.konfigurator.optionen.planning.moebelselektierbar": "Furniture selectable",
    "fv.konfigurator.optionen.planning.moebelselektierbar.tooltip": "Determines whether furniture should be selectable",
    "fv.konfigurator.optionen.planning.placerMagnet": "Deactivate docking",
    "fv.konfigurator.optionen.planning.placing": "Placer",
    "fv.konfigurator.optionen.planning.placing.tooltip": "Activates the placement of furniture in a plan",
    "fv.konfigurator.optionen.planning.redbox": "Show Redbox",
    "fv.konfigurator.optionen.planning.redbox.text.onselection": "Show redbox text on selection",
    "fv.konfigurator.optionen.planning.rightClickSwitch": "** Deactivate right-click",
    "fv.konfigurator.optionen.planning.rotationSwitch": "Deactivate rotation",
    "fv.konfigurator.optionen.planning.selectionOnly": "** Selection only (no scene update)",
    "fv.konfigurator.optionen.planning.singleSelection": "** Single selection",
    "fv.konfigurator.optionen.planning.snapToNearest": "Snap with near element",
    "fv.konfigurator.optionen.planning.snapToNearest.distance_unit": "mm",
    "fv.konfigurator.optionen.planning.snapToNearest.label_distance": "max. snap distance",
    "fv.konfigurator.optionen.planning.use_placer_groups_from_planfile": "Use PlacerGroup from the planning",
    "fv.konfigurator.optionen.planning.vertical_dragdrop": "** Vertical",
    "fv.konfigurator.optionen.planning.waendeselektierbar": "Walls selectable",
    "fv.konfigurator.optionen.print.settings": "** Print settings",
    "fv.konfigurator.optionen.print.settings.print-without-door": "** Without fronts",
    "fv.konfigurator.optionen.properties.alternativetransfer": "**alternative_progproperties_transfer",
    "fv.konfigurator.optionen.properties.dragDrop": "** Activate drag & drop",
    "fv.konfigurator.optionen.properties.row": "** Two per line",
    "fv.konfigurator.optionen.properties.selection": "** Transfer globally only",
    "fv.konfigurator.optionen.properties.value.counter": "** Deactivate number",
    "fv.konfigurator.optionen.query_parameters": "URL Query Parameter",
    "fv.konfigurator.optionen.remove_markerbox_after_transfer": "Do not highlight if property is already on object",
    "fv.konfigurator.optionen.remove_properties_if_exists": "Show only new property transfers",
    "fv.konfigurator.optionen.session.settings": "** Session settings",
    "fv.konfigurator.optionen.session.settings.reset-message": "Due to inactivity, the planning is reset in<@TIME@>seconds.",
    "fv.konfigurator.optionen.session.settings.reset-session-time": "Notification time",
    "fv.konfigurator.optionen.session.settings.session-auto-reset": "** Automatic reset",
    "fv.konfigurator.optionen.session.settings.show-reset-info-time": "Time until notification",
    "fv.konfigurator.optionen.sonstiges": "Miscellaneous",
    "fv.konfigurator.optionen.sonstiges.artikelinfoanzeigen": "Show article info",
    "fv.konfigurator.optionen.sonstiges.artikelinfoanzeigen.tooltip": "Determines whether information (height, width...) should be displayed in",
    "fv.konfigurator.optionen.sonstiges.deactivate_splashscreen": "Deactivate loading view",
    "fv.konfigurator.optionen.sonstiges.enable_app_connection_data": "** Activate GetAppConnectionData",
    "fv.konfigurator.optionen.sonstiges.enable_app_connection_data_delegated": "** Activate GetAppConnectionDataDelegated",
    "fv.konfigurator.optionen.sonstiges.enable_autoplace_accessoires": "Place accessories automatically",
    "fv.konfigurator.optionen.sonstiges.enable_external_property_updates": "Activate external execution updates",
    "fv.konfigurator.optionen.sonstiges.enable_modular_textures": "** Modular texture page",
    "fv.konfigurator.optionen.sonstiges.enable-wizard-shopping-cart": "Show final page",
    "fv.konfigurator.optionen.sonstiges.fraction_digits": "Decimal places",
    "fv.konfigurator.optionen.sonstiges.hilfeanzeigen": "YouTube link",
    "fv.konfigurator.optionen.sonstiges.icon_primary_color": "Primary icon colour",
    "fv.konfigurator.optionen.sonstiges.only-manu-cats": "** Manu-Cats only",
    "fv.konfigurator.optionen.sonstiges.preiseanzeigen": "Show prices",
    "fv.konfigurator.optionen.sonstiges.preiseanzeigen.tooltip": "Determines whether prices should be displayed",
    "fv.konfigurator.optionen.sonstiges.preis-overlay-anzeigen": "Show price overlay",
    "fv.konfigurator.optionen.sonstiges.price_fraction_digits": "Price decimal places",
    "fv.konfigurator.optionen.sonstiges.redbox.tooltip": "Show Redbox",
    "fv.konfigurator.optionen.sonstiges.redo": "**Redo",
    "fv.konfigurator.optionen.sonstiges.request_leave_confirmation": "Confirm exit",
    "fv.konfigurator.optionen.sonstiges.shoppingCart": "Transfer of shopping basket",
    "fv.konfigurator.optionen.sonstiges.show_furnray_module": "Furnray module",
    "fv.konfigurator.optionen.sonstiges.show_logo": "Show manufacturer logo",
    "fv.konfigurator.optionen.sonstiges.show_logo.tooltip": "Determines whether the manufacturer logo should be displayed in furnview",
    "fv.konfigurator.optionen.sonstiges.show_share_button": "Share button",
    "fv.konfigurator.optionen.sonstiges.show_shipping_costs_notice": "Shipping costs",
    "fv.konfigurator.optionen.sonstiges.show-article-number": "Show article number",
    "fv.konfigurator.optionen.sonstiges.undo": "Undo",
    "fv.konfigurator.optionen.sonstiges.uvp-preis-text": "Show UVP text",
    "fv.konfigurator.optionen.sonstiges.web_ui_handles_shopping_cart": "WebUI triggers shopping basket",
    "fv.konfigurator.optionen.sonstiges.wizard": "Wizard",
    "fv.konfigurator.optionen.sonstiges.wizard-katalog-rechts": "** Catalogue right",
    "fv.konfigurator.optionen.sprache": "Language",
    "fv.konfigurator.optionen.toolbar": "Toolbar",
    "fv.konfigurator.optionen.toolbar.accessoires": "Accessories",
    "fv.konfigurator.optionen.toolbar.animation": "Animation",
    "fv.konfigurator.optionen.toolbar.animation.tooltip": "Activates the \"Animation\" button",
    "fv.konfigurator.optionen.toolbar.ar": "AR mode",
    "fv.konfigurator.optionen.toolbar.ar.tooltip": "Activate AR mode",
    "fv.konfigurator.optionen.toolbar.article_group": "Product group",
    "fv.konfigurator.optionen.toolbar.article_group.tooltip": "Activates the \"Product group\" button",
    "fv.konfigurator.optionen.toolbar.frontschalter": "Front switch",
    "fv.konfigurator.optionen.toolbar.frontschalter.tooltip": "Activates the \"Show/hide fronts\" button",
    "fv.konfigurator.optionen.toolbar.info": "Info",
    "fv.konfigurator.optionen.toolbar.info.tooltip": "Activates the \"Information\" button",
    "fv.konfigurator.optionen.toolbar.kamera.dreid": "3D camera",
    "fv.konfigurator.optionen.toolbar.kamera.dreid.tooltip": "Activates the \"Reset camera\" button",
    "fv.konfigurator.optionen.toolbar.kamera.zweid": "2D camera",
    "fv.konfigurator.optionen.toolbar.maximum_discount": "Maximum discount",
    "fv.konfigurator.optionen.toolbar.maximum_discount.tooltip": "Activates the \"Maximum discount\" button",
    "fv.konfigurator.optionen.toolbar.optionen": "Options",
    "fv.konfigurator.optionen.toolbar.planungabschliessen": "Finalise planning",
    "fv.konfigurator.optionen.toolbar.planungabschliessen.tooltip": "Activates the \"Save planning\" button",
    "fv.konfigurator.optionen.toolbar.rendering": "Rendering",
    "fv.konfigurator.optionen.toolbar.settings": "Render settings",
    "fv.konfigurator.optionen.toolbar.settings.defaults": "Standard settings",
    "fv.konfigurator.optionen.toolbar.settings.konfigurierbar": "Configuration interface",
    "fv.konfigurator.optionen.toolbar.settings.tooltip": "Activates the \"Render settings\" button",
    "fv.konfigurator.optionen.toolbar.settings.vb-ssao-renderSettings": "VB-SSAO settings",
    "fv.konfigurator.optionen.toolbar.slipscene": "** Shift scene",
    "fv.konfigurator.optionen.toolbar.takescreenshot": "Take a screenshot",
    "fv.konfigurator.optionen.toolbar.takescreenshot.tooltip": "Activates the \"Screenshot\" button",
    "fv.konfigurator.optionen.toolbar.translate": "Change language",
    "fv.konfigurator.optionen.toolbar.translate.tooltip": "Activates the \"Select language\" button",
    "fv.konfigurator.optionen.toolbar.vollbild": "Full screen",
    "fv.konfigurator.optionen.toolbar.vollbild.tooltip": "Activates the \"Full screen\" button",
    "fv.konfigurator.optionen.toolbar.vplacer": "VPlacer",
    "fv.konfigurator.optionen.toolbar.vplacer.tooltip": "Activate VPlacer",
    "fv.konfigurator.optionen.toolbar.zoom": "Zoom",
    "fv.konfigurator.optionen.toolbar.zoom.tooltip": "Activates the \"Zoom\" button",
    "fv.konfigurator.optionen.wall": "Wall",
    "fv.konfigurator.optionen.wallFittingMove.enable": "** Slide wall panels",
    "fv.konfigurator.optionen.webuimode": "** Own WebUI",
    "fv.konfigurator.optionen.wizard": "Wizard",
    "fv.konfigurator.optionen.wizard.tooltip": "Determines whether the wizard should be displayed",
    "fv.konfigurator.settings.katalogHintergrundFarbe.label": "Catalogue background colour",
    "fv.konfigurator.settings.katalogHintergrundFarbe.tooltip": "Defines the background colour of the catalogue",
    "fv.konfigurator.settings.katalogRahmen.label": "Catalogue with frame",
    "fv.konfigurator.settings.katalogRahmen.tooltip": "The catalogue is outlined with a dark colour",
    "fv.konfigurator.tab.ausfuehrungsliste": "Execution list",
    "fv.konfigurator.tab.autoZoomListe": "** AutoZoom categories",
    "fv.konfigurator.tab.contact": "Contact person",
    "fv.konfigurator.tab.default-article-list": "Standard article",
    "fv.konfigurator.tab.default-autozoom-angle-list": "** AutoZoom angle categories",
    "fv.konfigurator.tab.default-autozoom-box-list": "** AutoZoom Box Categories",
    "fv.konfigurator.tab.druckeinstellungen": "Print settings",
    "fv.konfigurator.tab.emaileinstellung": "E-mail settings",
    "fv.konfigurator.tab.entry-valid": "Entry Valid",
    "fv.konfigurator.tab.hrTheme.settings": "HRTheme settings",
    "fv.konfigurator.tab.initial-plannings": "Initial planning",
    "fv.konfigurator.tab.kategorieeinstellungen": "** Category Settings",
    "fv.konfigurator.tab.kategorienliste": "Catalogue categories",
    "fv.konfigurator.tab.konfigurator": "Options",
    "fv.konfigurator.tab.landing.page": "** Landing page",
    "fv.konfigurator.tab.programmliste": "Programme list",
    "fv.konfigurator.tab.property-order-list": "Execution sequence",
    "fv.konfigurator.tab.requestSettings": "Send enquiry fields",
    "fv.konfigurator.tab.user_hints": "User instructions",
    "fv.konfigurator.tab.webshop_api": "** Webshop API",
    "fv.konfigurator.title": "furnview Link Generator",
    "fv.konfigurator.urlerstellen": "Create URL",
    "fv.konfigurator.wizard.position.ausfuehrungen": "Position Versions",
    "fv.konfigurator.wizard.position.auswertung": "Position evaluation",
    "fv.konfigurator.wizard.position.boden": "Floor position",
    "fv.konfigurator.wizard.position.hr": "HR position",
    "fv.konfigurator.wizard.position.katalog": "Position catalogue",
    "fv.konfigurator.wizard.position.speichern": "Save position",
    "fv.konfigurator.wizard.position.wand": "Wall position",
    "fv.konfigurator.wizard.position.zubehoer": "Accessories position",
    "fv.linkgenerator.error": "Error",
    "fv.linkgenerator.modal.title.sub-store-urls": "URLs for branches",
    "fv.linkgenerator.myconfig": "My configurations",
    "fv.linkgenerator.saveConfigAs": "Save configuration as",
    "fv.login.customernumber": "Customer number",
    "fv.login.login": "Log in",
    "fv.login.number": "Number",
    "fv.login.password": "password",
    "fv.login.user": "User name",
    "fv.make.an.appointment": "Make an appointment",
    "fv.menu.ar.export": "AR Export",
    "fv.menu.ar.start": "Start AR mode",
    "fv.menu.ar.stop": "Exiting AR mode",
    "fv.menu.fullscreen": "Full screen",
    "fv.menu.info": "Info",
    "fv.menu.logout": "Log out",
    "fv.menu.optionen": "Options",
    "fv.menu.rendersettings": "Settings",
    "fv.menu.screenshot": "Screenshot",
    "fv.menu.settings": "Settings",
    "fv.menu.sprachen": "Languages",
    "fv.menu.translate": "Language",
    "fv.message.connection_established": "Connection to session could not be established.",
    "fv.message.continue": "Continue",
    "fv.message.message": "",
    "fv.message.session_already_exists": "furnview is already open in another window",
    "fv.message.session_disconnect": "Connection to session has been interrupted.",
    "fv.message.session_has_been_resumed": "Your furnview session has been continued in another window",
    "fv.message.session_has_been_suspended": "Your session has been paused",
    "fv.message.title": "Test entry",
    "fv.message.unable_to_getNode": "No connection to the server could be established.",
    "fv.modal.conversion.leave": "leave",
    "fv.modal.copy_planning_number": "Copy planning number",
    "fv.modal.delete_lo.cancel": "No",
    "fv.modal.delete_lo.content": "Do you really want to delete the element?",
    "fv.modal.delete_lo.header": "Delete element",
    "fv.modal.delete_lo.ok": "Yes",
    "fv.modal.download.text": "Download your planning in PDF format.",
    "fv.modal.finishplaning.backtoplaning": "back to planning",
    "fv.modal.finishplaning.completeplaning": "Finalise planning",
    "fv.modal.finishplaning.customer_request.email": "Your e-mail",
    "fv.modal.finishplaning.customer_request.first_name": "Your first name",
    "fv.modal.finishplaning.customer_request.last_name": "Your surname",
    "fv.modal.finishplaning.customer_request.message": "Message",
    "fv.modal.finishplaning.customer_request.phone": "Your telephone number",
    "fv.modal.finishplaning.customer_request.send_request": "Send an enquiry to your furniture dealer",
    "fv.modal.finishplaning.customer_request.send_request_to_self": "Send planning to me",
    "fv.modal.finishplaning.planning_header": "Planning",
    "fv.modal.finishplaning.sendmail": "Send",
    "fv.modal.finishplaning.text_cloudid": "Your Cloud ID",
    "fv.modal.finishplaning.text_cloudid_intro": "You can use this planning number to order the planning from your furniture dealer.",
    "fv.modal.finishplaning.text_documents": "Download planning or send by e-mail",
    "fv.modal.finishplaning.text_documents_save": "Download planning documents",
    "fv.modal.finishplaning.text_documents_send": "Send planning documents to e-mail",
    "fv.modal.finishplaning.text_intro": "Do you have any questions about your configuration or would you like to print or send us your configuration? Alternatively, you can also send the configuration by e-mail.",
    "fv.modal.google_re_captcha": "Validation",
    "fv.modal.homeviewer.finishplaning.customer_request.submit_info": "The planning number will be automatically added to your enquiry.",
    "fv.modal.homeviewer.finishplaning.error_finish_message": "Unfortunately, an error occurred while sending. Please try again at a later date.",
    "fv.modal.homeviewer.finishplaning.header": "Planning number",
    "fv.modal.homeviewer.finishplaning.header.share_by_mail": "Share planning by e-mail",
    "fv.modal.homeviewer.finishplaning.mail_finish_message": "Email has been sent.",
    "fv.modal.homeviewer.finishplaning.request_finish_message": "Enquiry has been sent.",
    "fv.modal.homeviewer.finishplaning.seller.email": "E-mail of the recipient",
    "fv.modal.homeviewer.finishplaning.seller.name": "Name of the recipient",
    "fv.modal.homeviewer.finishplaning.seller.phone": "Telephone of the recipient",
    "fv.modal.homeviewer.finishplaning.share_by_mail_button": "send",
    "fv.modal.homeviewer.finishplaning.share_by_mail_info": "Here you can send your planning to any e-mail address.",
    "fv.modal.info.contact": "Contact person",
    "fv.modal.info.germany": "Germany",
    "fv.modal.info.imprint": "Imprint",
    "fv.modal.info.information": "Information",
    "fv.modal.info.management": "Management",
    "fv.modal.info.no_contact": "No contact person has been entered",
    "fv.modal.logoutconfirmation.cancel": "No",
    "fv.modal.logoutconfirmation.description": "Do you really want to unsubscribe?",
    "fv.modal.logoutconfirmation.header": "Confirm logout",
    "fv.modal.logoutconfirmation.ok": "Yes",
    "fv.modal.notification.email_successfully_sent.header": "Dispatched",
    "fv.modal.open_existing_planning_number": "Open existing planning number",
    "fv.modal.planning_number.text": "You can use this planning number to reopen and edit your planning at a later date.",
    "fv.modal.planning_number.title": "Planning number for further processing",
    "fv.modal.progimages.cancel": "Cancel",
    "fv.modal.progimages.load": "Load programme",
    "fv.modal.progimages.loadDefault": "** Restore basic planning",
    "fv.modal.programselection.cancel": "Cancel",
    "fv.modal.programselection.change": "Change collection",
    "fv.modal.programselection.info": "The current configuration is reset when the collection is changed.",
    "fv.modal.programselection.save": "Save and switch",
    "fv.modal.quantity.title": "Increase quantity",
    "fv.modal.reload.cancel": "No",
    "fv.modal.reload.content": "Do you want to reload the page?",
    "fv.modal.reload.header": "Reload",
    "fv.modal.reload.ok": "Yes",
    "fv.modal.reload.text": "Would you like to save the current configuration before restarting?",
    "fv.modal.share": "Share",
    "fv.modal.short_url_description": "You can share this link with friends and acquaintances so that they can view your planning.",
    "fv.modal.stop_ar.content": "Do you want to remove all furniture from the AR scene and continue?",
    "fv.modal.stop_ar.header": "Clean up the AR scene?",
    "fv.modal.stop_ar.no": "No",
    "fv.modal.stop_ar.yes": "Yes",
    "fv.modal.translate.description": "Please select your desired language by clicking on the corresponding country flag. The printout of your planning will also be in this language.",
    "fv.modal.translate.selectlanguage": "Choose languages",
    "fv.modal.twodview.cancel": "Cancel",
    "fv.modal.twodview.ok": "Take over",
    "fv.modal.your_planning_number": "Your planning number",
    "fv.no_elements_in_planning": "No elements in the planning",
    "fv.opened": "open",
    "fv.positionen.text": "Positions",
    "fv.prompt.enter_cloud_password": "Please enter the cloud password",
    "fv.prompt.wrong_cloud_password": "Incorrect cloud password!",
    "fv.renderer.settings.transparent_canvas_background": "** Background transparent",
    "fv.request.dealer.text": "Enquire at the dealer now",
    "fv.response.error.article.creating": "Error when creating the article",
    "fv.response.error.artikel.nopermission": "You do not have authorisation for this article.",
    "fv.response.error.authentication.accessblocked": "Access blocked",
    "fv.response.error.authentication.invalidcredentials": "Invalid access data",
    "fv.response.error.authentication.noauthorization": "No authorisation",
    "fv.response.error.authentication.sessionexpires": "The user session expires!",
    "fv.response.error.authentication.toomanyattempts": "Too many attempts. Please try again later.",
    "fv.response.error.cloud.checksumdismatch": "Upload rejected, checksums do not match.",
    "fv.response.error.cloud.cloud_id_does_not_exist": "The planning could not be found",
    "fv.response.error.cloud.cloud_id_was_not_uploaded": "Planning cannot be opened because no planning file has been uploaded",
    "fv.response.error.cloud.createuploadfail": "Upload was not successful",
    "fv.response.error.cloud.invalidcloudid": "Invalid furncloud ID",
    "fv.response.error.cloud.missingcloudidparameters": "Insufficient parameters to populate the furncloud upload number",
    "fv.response.error.cloud.missingparameters": "Parameters are missing.",
    "fv.response.error.cloud.no_permission": "There is no authorisation for this planning",
    "fv.response.error.cloud.server_error": "Planning could not be loaded because a server error occurred",
    "fv.response.error.cloud.unprocessable_request": "Download of the planning could not be carried out",
    "fv.response.error.cloud.uploadfail": "An error occurred when creating furncloud upload",
    "fv.response.error.internalerror": "Internal server error",
    "fv.response.error.languagechangeavailible": "Language not adjustable",
    "fv.response.error.manufactor.loadfailed": "Manufacturer could not be retrieved",
    "fv.response.error.nothingfound": "Nothing found",
    "fv.response.error.numbernotset": "CustomerNo, file, fileExt, _id, number is not set!",
    "fv.response.error.searchstack": "Error when searching in the stack!",
    "fv.response.error.serviceunavailable": "Service not available",
    "fv.response.error.settings.printproperties": "The print properties could not be retrieved",
    "fv.response.error.success": "Success",
    "fv.response.error.unablereq": "Request cannot be processed",
    "fv.response.error.writingname": "Errors when writing names",
    "fv.right.panel.catalogue.articlebox.article": "Article",
    "fv.right.panel.catalogue.articlebox.hits": "Hits",
    "fv.right.panel.catalogue.articlenumber": "Item no.",
    "fv.right.panel.catalogue.buildingerror": "Errors in the structure of the catalogue",
    "fv.right.panel.catalogue.dimensions.depth": "Depth",
    "fv.right.panel.catalogue.dimensions.from": "from",
    "fv.right.panel.catalogue.dimensions.height": "Height",
    "fv.right.panel.catalogue.dimensions.to": "until",
    "fv.right.panel.catalogue.dimensions.width": "Width",
    "fv.right.panel.catalogue.idm_typ": "Category",
    "fv.right.panel.catalogue.manufactor": "Manufacturer",
    "fv.right.panel.catalogue.selectidmtype": "Category",
    "fv.right.panel.catalogue.selectmanufacturer": "Manufacturer",
    "fv.right.panel.catalogue.selectprogram": "Programme",
    "fv.right.panel.floor.carpet": "Carpet",
    "fv.right.panel.floor.colors": "Colours",
    "fv.right.panel.floor.extra": "Extra",
    "fv.right.panel.floor.floor": "Floor",
    "fv.right.panel.floor.wall": "Wall",
    "fv.right.panel.floor.wallpaper": "Wallpaper",
    "fv.right.panel.floor.wood": "Wood",
    "fv.right.panel.progproperty.homeviewer.default": "Planning group",
    "fv.right.panel.walls.ceiling": "Ceiling",
    "fv.right.panel.walls.ground": "Floor",
    "fv.right.panel.walls.reload": "Reload",
    "fv.right.panel.walls.remove": "remove",
    "fv.rotationStyle.title": "Rotation ring",
    "fv.scene.alternative_description": "Virtual 3D view of a configurable piece of furniture. The display varies depending on the selected properties (e.g. colour, dimensions, equipment).",
    "fv.settings.disable_mobile_restriction": "No mobile restrictions",
    "fv.splashscreen.loading": "Loading...",
    "fv.steps.article_overview": "Article overview",
    "fv.steps.save_and_request": "Save / Appointment request",
    "fv.terms.article": "Article",
    "fv.terms.B": "B",
    "fv.terms.catalog": "Catalogue",
    "fv.terms.categories": "Categories",
    "fv.terms.H": "H",
    "fv.terms.planning": "Planning",
    "fv.terms.request": "Enquiry",
    "fv.terms.T": "T",
    "fv.text.resume_planning": "Continue planning",
    "fv.tooltip.context.delete": "Delete",
    "fv.tooltip.context.dimChange": "Dimensional change",
    "fv.tooltip.context.frontstop": "Change stop",
    "fv.tooltip.context.replaceArticle": "Exchange article",
    "fv.tooltip.toolbar.animate": "Plays an animation",
    "fv.tooltip.toolbar.arapp": "Start AR mode",
    "fv.tooltip.toolbar.camera_ar": "Select an image or photo to use as the background",
    "fv.tooltip.toolbar.camera_reset": "Resets the camera to its starting point in 3D mode",
    "fv.tooltip.toolbar.camera_reset_front": "Resets the camera to its starting point in 2D mode",
    "fv.tooltip.toolbar.measurebox": "Show dimensioning",
    "fv.tooltip.toolbar.move_rotation_toggle": "Switch between moving / rotating",
    "fv.tooltip.toolbar.pan_switch": "Activate moving the scene",
    "fv.tooltip.toolbar.pick_mode": "Switches the selection mode for objects between individual and group selection",
    "fv.tooltip.toolbar.redo": "** Undo Undo",
    "fv.tooltip.toolbar.render_pdf": "Exports the current view with additional information as a PDF file",
    "fv.tooltip.toolbar.rotationSwitch": "Switch rotation on / off",
    "fv.tooltip.toolbar.save": "Close planning",
    "fv.tooltip.toolbar.settings.ambient_light_color": "Ambi-Light / ambient lighting settings",
    "fv.tooltip.toolbar.settings.ambient_light_intensity": "Ambi-Light brightness",
    "fv.tooltip.toolbar.settings.attenuation-vb-ssao": "** Attenuation",
    "fv.tooltip.toolbar.settings.backgroundColor": "Background colour",
    "fv.tooltip.toolbar.settings.blur-sigma-vb-ssao": "** Blur Sigma",
    "fv.tooltip.toolbar.settings.cosine-thresh-vb-ssao": "** Cosine Thresh",
    "fv.tooltip.toolbar.settings.depth-sensitivity-vb-ssao": "** Depth sensitivity",
    "fv.tooltip.toolbar.settings.enable_ambient_light": "Ambi-Light / Ambient lighting",
    "fv.tooltip.toolbar.settings.enable_ibl": "Activate ImageBasedLighting",
    "fv.tooltip.toolbar.settings.enable_outdoor_lighting": "Activate outdoor lighting",
    "fv.tooltip.toolbar.settings.fog": "Activate fog",
    "fv.tooltip.toolbar.settings.fogBackground": "Fog background",
    "fv.tooltip.toolbar.settings.fogColor": "Fog colour",
    "fv.tooltip.toolbar.settings.fogFar": "Fog removal",
    "fv.tooltip.toolbar.settings.fogNear": "Beginning of fog",
    "fv.tooltip.toolbar.settings.image-based-lighting": "ImageBasedLighting settings",
    "fv.tooltip.toolbar.settings.kernel-radius-vb-ssao": "** Kernel radius",
    "fv.tooltip.toolbar.settings.occlusion-vb-ssao": "** Occlusion Multplikator",
    "fv.tooltip.toolbar.settings.outdoor-lighting-direction": "Light direction",
    "fv.tooltip.toolbar.settings.scene_render_scale_factor": "Scaling factor",
    "fv.tooltip.toolbar.settings_menu.fxaa": "Antialiasing",
    "fv.tooltip.toolbar.settings_menu.lines": "Edge lines",
    "fv.tooltip.toolbar.settings_menu.mirror": "Floor mirroring",
    "fv.tooltip.toolbar.settings_menu.outdoor-lighting": "Outdoor scenario",
    "fv.tooltip.toolbar.settings_menu.pick_mode": "Selection mode",
    "fv.tooltip.toolbar.settings_menu.selection": "** Selection mode",
    "fv.tooltip.toolbar.settings_menu.shadow": "Shadow",
    "fv.tooltip.toolbar.settings_menu.ssao": "Edge shadow",
    "fv.tooltip.toolbar.settings_menu.toggle_renderer": "Switch shadow quality",
    "fv.tooltip.toolbar.snapping": "Docking to elements",
    "fv.tooltip.toolbar.textures": "Select textures",
    "fv.tooltip.toolbar.toggle_front": "Fades the fronts of the furniture in and out",
    "fv.tooltip.toolbar.undo": "Undo",
    "fv.tooltip.toolbar.wall_floor": "Select wall and floor covering",
    "fv.tooltip.toolbar.webui_category_filter": "Article Categories",
    "fv.tooltip.toolbar.webui_category_filter_buttons": "Filter categories",
    "fv.tooltip.toolbar.zoom_in": "Zooming in on the scene",
    "fv.tooltip.toolbar.zoom_out": "Zooming out the scene",
    "fv.tooltop.context.rotate.sink": "",
    "fv.transfer.failure": "Transmission failed",
    "fv.transfer.success": "Transfer successful",
    "fv.widthInCm": "Width in cm",
    "fv.window.hinge": "Window stop",
    "fv.window.hinge.left": "Window stop left",
    "fv.window.hinge.right": "Window stop right",
    "fv.wizard.addToCart": "Add to shopping basket",
    "fv.wizard.steps.accessoires": "Accessories",
    "fv.wizard.steps.analysis": "Evaluation",
    "fv.wizard.steps.filter": "Product",
    "fv.wizard.steps.finale": "Save",
    "fv.wizard.steps.finish": "Execution",
    "fv.wizard.steps.fitting": "Accessories",
    "fv.wizard.steps.floor": "Room",
    "fv.wizard.steps.hr": "HR",
    "fv.wizard.steps.interiorProperty": "Equipment",
    "fv.wizard.steps.surfaces": "Surfaces",
    "fv.wizard.steps.wall": "Wall",
    "fv-form-loading-text": "Your kitchen is put together",
    "geminiAI-additional-prompt-text": "Additional wishes",
    "geminiAI-fpVersion": "(Beta)",
    "generalCalc.roundType.noRounding": "Do not round price",
    "genKatatreeConfigurator.articleView": "The value \"horizontal\" can be specified here, there are two views, the normal and the horizontal view for e.g. cheeks, if not stored then the standard view is used",
    "genKatatreeConfigurator.ArtNoToReplace": "This can be used to change several article numbers in the article list",
    "genKatatreeConfigurator.ArtPropsToHide": "Here you can store article numbers of property transfers or fittings that are to be hidden",
    "genKatatreeConfigurator.ArtPropsToShow": "Analogue to \"ArtPropsToHide\", this switch works in reverse. If no entry is made here, all entries are displayed. As soon as a value is entered here, all other values are hidden and only the entry entered is displayed. ArtPropsToShow overlays the values if available in ArtPropsToHide\n",
    "genKatatreeConfigurator.artPropVarsListSize": "Specifies how many entries are displayed in the selection list without scrolling\n",
    "genKatatreeConfigurator.ausfCenterShowBgButton": "Hiding the BG button in the execution menu",
    "genKatatreeConfigurator.ausfCenterShowMenu": "Hide the execution menu (assign to all components etc.)",
    "genKatatreeConfigurator.categoriePriosToHide": "Category priorities/filter levels that are to be hidden in the filter can be specified here",
    "genKatatreeConfigurator.categoriesToHide": "Categories that are not taken into account in the module and should not be displayed can be stored here, even if they exist in the database",
    "genKatatreeConfigurator.dimensionOrder": "Defines the order in which the individual article dimensions are displayed",
    "genKatatreeConfigurator.DimensionsShowAll": "Must be set to FALSE so that measurements can be switched off by other settings, if set to TRUE then measurements are also displayed although all values are the same for a dimesnion",
    "genKatatreeConfigurator.DimensionsToHide": "Dimensions that are to be hidden on the article can be specified here",
    "genKatatreeConfigurator.forceAutoGenImages": "If set to TRUE then AutoGen images are always loaded, even if article images could be found or are available in the parent Kata-Images folder",
    "genKatatreeConfigurator.handleGlobalDimensionFilter": "Filter events are passed through to all modules of a catapagfe, e.g. if you filter on the control system side in the cheek model, the cheek floors also react to this",
    "genKatatreeConfigurator.hideArticleCount": "Hides the number of articles in the module header",
    "genKatatreeConfigurator.hideArticleImg": "Hides the article image",
    "genKatatreeConfigurator.hideCategorieFilter": "If the value is TRUE, the category filter is hidden.",
    "genKatatreeConfigurator.hideDimensionFilter": "If the value is TRUE, the dimension filter is hidden",
    "genKatatreeConfigurator.hideDisabledCategoriesInHigherPrio": "Hides deactivated filter buttons",
    "genKatatreeConfigurator.hideProgPropertyButton": "If the value is set to true, the button for the article-dependent execution centre is hidden",
    "genKatatreeConfigurator.ignoreVzPos": "If TRUE then a blacklist of VZs is taken into account, VZs that are entered in this list are not displayed on normal catalogue pages. This blacklist contains all VZ IDs that are included via incGenKataTree.json\n",
    "genKatatreeConfigurator.infoText": "Displays an additional text at the top of the article list, can be defined in the global-txt of the manufacturer\n",
    "genKatatreeConfigurator.labelTextDepth": "Overwrites the filter label via global-txt",
    "genKatatreeConfigurator.labelTextHeight": "Overwrites the filter label via global-txt",
    "genKatatreeConfigurator.labelTextWidth": "Overwrites the filter label via global-txt",
    "genKatatreeConfigurator.lastVisiblePrioWithoutActivation": "Defines the filter level by priority that is displayed without user action when loading the catapage, higher priorities are only displayed when an element is selected in this level",
    "genKatatreeConfigurator.limiteImgHeightShowroom": "Specifies the maximum article image height in pixels for the modal article list",
    "genKatatreeConfigurator.noEndlessScroll": "This can be used to switch off that the articles are not reloaded and all articles are rendered when a module is opened\n",
    "genKatatreeConfigurator.preSelectedFilters": "This can be used to define values that preset the filter when opening a catapage",
    "genKatatreeConfigurator.removeFittingAll": "Executes a delete for the complete fitting when the delete button is clicked",
    "genKatatreeConfigurator.replaceStringInArtNo": "This can be used to remove a specified string in the article number",
    "genKatatreeConfigurator.resetFittingInPO": "Determines the DHTODO call when resetting a property transfer If value TRUE then dh_todo('2', '0', '14125', '', '', '0', '', '14452', 'L', '1'); If value FALSE then dh_todo('2', '14125', '14125', '', '', '7', '', '14452', 'L', '1');",
    "genKatatreeConfigurator.showAdditionalArtText": "Also displays the additional texts from the article text tables\n",
    "genKatatreeConfigurator.showArticleFittings": "Determines whether the fittings assigned to an article have an influence on whether the PLUS sign should be displayed on the article to open the article accessories",
    "genKatatreeConfigurator.showArticleNumber": "Determines whether the article number of an article is displayed. However, this is overridden by the category assignment \"dhcat_nichtanzeigen_artikelnr\"",
    "genKatatreeConfigurator.showArticlesPropTrans": "Determines whether property transfers that are assigned to an item have an influence on whether the PLUS sign should be displayed on the item to open the item accessories",
    "genKatatreeConfigurator.showArticleText": "Determines whether the article text should be displayed, if the value \"showArticleNumber\" is FALSE, only the article text is displayed instead of the article number, if the value \"showArticleNumber\" and \"showArticleText\" is TRUE, the article number and article text are displayed concatenated.",
    "genKatatreeConfigurator.showArtInfoText": "Determines whether the article info text should be displayed if it is stored for the article",
    "genKatatreeConfigurator.showDimensions": "Determines whether the article dimensions should be displayed",
    "genKatatreeConfigurator.showFirstArtNoAsModTitle": "Displays the article text of the first article in the article list as the module title",
    "genKatatreeConfigurator.showShopCartArticleNumber": "Determines whether the article number should be displayed on the shopping basket item, in addition to the text. By default, only the text is displayed if there is one, if not the article number",
    "genKatatreeConfigurator.showSingleModuleCaption": "Displays the module title even if it is the only module on the catapage",
    "genKatatreeConfigurator.showTooltip": "Determines whether the tooltip text/overlay text should be displayed, is always displayed by default unless this value is set to false\n",
    "genKatatreeConfigurator.showTooltipAsArtInfoText": "If this value is set to true, the overlib text is used as the ArtInfo text\n",
    "genKatatreeConfigurator.singleRowDimText": "If, for example, a grid is stored in the DIMENSION-VALUES table, this is displayed in two lines in the filter button; this setting value switches the display back to one line.",
    "genKatatreeConfigurator.sortArticleByArtNo": "If TRUE, the items in the view are sorted by item number",
    "genKatatreeConfigurator.sortArticleByDimension": "Here you can specify the dimension by which the articles are to be sorted (height=zMax, width=xMax, depth=yMax).  This setting only applies if the value \"sortArticleByArtNo\" is set to FALSE and the value \"useDbSort\" is set to FALSE",
    "genKatatreeConfigurator.sortArticleByDimensionAscending": "This can be used to reverse the sort order if the articles are sorted using \"sortArticleByDimension\"",
    "genKatatreeConfigurator.threeRowDimText": "If TRUE, the text in the dimension filter is displayed in three lines",
    "genKatatreeConfigurator.TitelTextID": "Specifies the key of the translation text to be used as the module title. If string begins with \"cat.\" then text is taken from \"app-txt\"(OPUS), if text begins with \"localcat.\" or any other text then text is read from the \"global-txt\", if the text is not found then the last search is made in the \"glo-txt\" of the programme MUST BE ENTERED\n",
    "genKatatreeConfigurator.useComboBoxForArtPropCategory": "This can be used to make ArtProps of a category available for selection in a SELECT element",
    "genKatatreeConfigurator.useDbSort": "Can be stored in module configuration, if set to TRUE then sorting is taken from database (DB file), if set to FALSE then we sort as before according to a dimension (height, width etc.)",
    "genKatatreeConfigurator.valueCountLimit": "Specifies the maximum value of dimensions from which dimension filters are summarised",
    "genKatatreeConfigurator.valueGroupBtnHide": "This can be used to hide the grouping button of the measurement group",
    "genKatatreeConfigurator.valueGroupSize": "Specifies the range from which the measurement groups are formed",
    "genKatatreeConfigurator.verticalArtPropDataVars": "Determines whether ArtPropDataVars input fields are rendered below or next to each other",
    "hybrid_rendering": "Hybrid rendering",
    "i_have_read": "I have the",
    "IDM.CAT.ART.000": "All",
    "IDM.CAT.ART.100": "Revolving door",
    "IDM.CAT.ART.110": "Folding door/angle door",
    "IDM.CAT.ART.120": "Sliding door/floating door",
    "IDM.CAT.ART.130": "Charge",
    "IDM.CAT.ART.140": "Flap",
    "IDM.CAT.ART.150": "Extract",
    "IDM.CAT.ART.160": "Combi front",
    "IDM.CAT.ART.170": "Blinds/roller shutters/slats",
    "IDM.CAT.ART.200": "Inner drawer",
    "IDM.CAT.ART.210": "Inner compartment",
    "IDM.CAT.ART.220": "Interior division",
    "IDM.CAT.ART.230": "Wardrobe accessories (clothes rail, laundry basket ...)",
    "IDM.CAT.ART.240": "Boxes/Receiver",
    "IDM.CAT.ART.250": "TV mount",
    "IDM.CAT.ART.260": "Miscellaneous",
    "IDM.CAT.ART.300": "Cheeks/galleries/additional galleries/additional galleries",
    "IDM.CAT.ART.310": "Cleat/shelf/hang-in/light/inset shelf",
    "IDM.CAT.ART.320": "Plinth floor",
    "IDM.CAT.ART.330": "Shelf/plug-in shelf",
    "IDM.CAT.ART.340": "Back panel",
    "IDM.CAT.ART.400": "Table top",
    "IDM.CAT.ART.410": "Table frames",
    "IDM.CAT.ART.420": "Extension shelf/inset shelf",
    "IDM.CAT.ART.430": "Four-legged table/frame",
    "IDM.CAT.ART.440": "Column tables/frame",
    "IDM.CAT.ART.450": "C-foot frame",
    "IDM.CAT.ART.460": "A-foot frame",
    "IDM.CAT.ART.470": "T-leg frame",
    "IDM.CAT.ART.500": "Dining chair/stacking chair",
    "IDM.CAT.ART.510": "Swivel, wheel and swivel wheelchairs",
    "IDM.CAT.ART.520": "high chair",
    "IDM.CAT.ART.600": "Bed frame/headboard/footboard",
    "IDM.CAT.ART.610": "Loft bed/middle bed/bunk bed/cave bed",
    "IDM.CAT.ART.620": "Cot/crib",
    "IDM.CAT.ART.630": "Box spring bed",
    "IDM.CAT.ART.640": "Sofa bed/guest bed/folding couch",
    "IDM.CAT.ART.650": "Wall, folding and cupboard bed",
    "IDM.CAT.ART.660": "Waterbed",
    "IDM.CAT.ART.670": "Upholstered bed",
    "IDM.CAT.ART.700": "Bench cushion",
    "IDM.CAT.ART.710": "Handles",
    "IDM.CAT.ART.720": "Small parts",
    "IDM.CAT.ART.800": "Preferred combination",
    "IDM.CAT.ART.810": "Proposal combination",
    "IDM.CAT.AUSF.00": "All",
    "IDM.CAT.AUSF.10": "Single element",
    "IDM.CAT.AUSF.20": "Basic element",
    "IDM.CAT.AUSF.30": "Add-on element",
    "IDM.CAT.AUSF.40": "Corner element",
    "IDM.CAT.AUSF.50": "Intermediate element",
    "IDM.CAT.AUSF.60": "Add-on element",
    "IDM.CAT.AUSF.70": "Hanging element",
    "IDM.CAT.AUSF.80": "Lower part",
    "IDM.CAT.TYP.1010": "Body element",
    "IDM.CAT.TYP.1020": "Cupboard",
    "IDM.CAT.TYP.1030": "Display case",
    "IDM.CAT.TYP.1040": "Shelf",
    "IDM.CAT.TYP.1050": "Highboard/sideboard/sideboard/buffet/lowboard",
    "IDM.CAT.TYP.1060": "TV, phono and media furniture",
    "IDM.CAT.TYP.1070": "Front",
    "IDM.CAT.TYP.1080": "Shelving system element",
    "IDM.CAT.TYP.1090": "Console/console table/chest of drawers/dressing table",
    "IDM.CAT.TYP.1100": "Coffee table/side table",
    "IDM.CAT.TYP.1110": "Dining table",
    "IDM.CAT.TYP.1120": "Desk/computer desk",
    "IDM.CAT.TYP.1130": "Secretary",
    "IDM.CAT.TYP.1140": "Chair",
    "IDM.CAT.TYP.1150": "Stool/bar stool",
    "IDM.CAT.TYP.1160": "Corner bench/bench",
    "IDM.CAT.TYP.1170": "Children's/play furniture/changing table/changing top",
    "IDM.CAT.TYP.1180": "Bed",
    "IDM.CAT.TYP.1190": "Mattress/slatted frame/set",
    "IDM.CAT.TYP.1200": "Bedside table/wardrobe/dresser/chest of drawers",
    "IDM.CAT.TYP.1210": "Roll/stand container",
    "IDM.CAT.TYP.1220": "Counter systems/bar furniture",
    "IDM.CAT.TYP.1230": "Wardrobe/plank furniture",
    "IDM.CAT.TYP.1240": "Shoe cabinet",
    "IDM.CAT.TYP.1250": "Chests",
    "IDM.CAT.TYP.1260": "Mirror",
    "IDM.CAT.TYP.1270": "Panel",
    "IDM.CAT.TYP.1280": "Base/foot frame",
    "IDM.CAT.TYP.1290": "Cover plate",
    "IDM.CAT.TYP.1300": "Cornice moulding/cornice profiles/passepartout",
    "IDM.CAT.TYP.1310": "Lighting",
    "IDM.CAT.TYP.1320": "Combination/set",
    "IDM.CAT.TYP.1330": "Orifice/levelling piece",
    "IDM.CAT.TYP.1340": "Accessories",
    "IDM.CAT.TYP.1350": "Other",
    "info_option_experiomental": "This function is experimental and is only activated after the application has been restarted.",
    "int_vw": "Interior view",
    "katatree.artikelsuche": "Article search",
    "katatree.genlines": "Insert customised cuts",
    "katatree.transfer-to-global": "Transfer items to the overall collection",
    "Keep_me_logged_in": "Stay logged in?",
    "link": "Link",
    "make.an.appointment.2": "Make an appointment",
    "MatEdit.InvalidFileName": "The file name entered is invalid or contains special characters.",
    "message": "Message",
    "modal.ar.alternative": "or",
    "modal.ar.button": "Open AR",
    "modal.ar.heading": "Augmented Reality",
    "modal.ar.qrcode.information.one": "Scan the QR code with your smartphone/tablet or call up the AR view directly on your smartphone/tablet",
    "modal.ar.qrcode.information.two": "Follow the instructions on your smartphone/tablet",
    "modal.finish.content.head-text": "CONGRATULATIONS ON YOUR PERSONAL CONFIGURATION!",
    "modal.finish.content.text": "You will shortly receive your customised configuration as an article list and 8-digit configuration code by e-mail. Then take your configuration code with you to your local dealer. Your dealer can use this code to call up your customised configuration directly in their system and provide you with the best possible advice.",
    "modal.finish.find_dealer": "FIND A DEALER NEAR YOU",
    "modal.finish.head-text": "YOUR INDIVIDUAL PLANNING",
    "modal.finish.restart": "START NEW CONFIGURATION",
    "modal.loading.footer-text": "Your configuration is loaded",
    "modal.notice.header.model": "Model",
    "modal.notice.header.price": "Price (RRP)*",
    "modal.notice.head-text": "MERKLIST",
    "modal.notice.remove_button": "REMOVE FROM WATCHLIST",
    "modal.notice.select_all": "select all",
    "modal.notice.submit": "SEND PLANNING",
    "modal.notice.text.empty": "You have no plans in your watch list",
    "modal.notice.text.left": "= Call up planning again",
    "name": "Name",
    "name_mandatory": "Name*",
    "new_furnplan_ui": "New furnplan interface",
    "no_Manufacturer_released": "furnplan cannot be downloaded as no manufacturer has yet activated its catalogues.",
    "notice.text": "REMARK",
    "OLD_cat.airboard": "Airboard",
    "OLD_cat.aufsatzelement": "Add-on element",
    "OLD_cat.aufsatzelement_connectivity": "Connectivity attachment",
    "OLD_cat.aufsatzregal": "Top shelf",
    "OLD_cat.haengeschrank": "Wall cabinet",
    "OLD_cat.korpussonos": "Korpussonos",
    "OLD_cat.korpussoundbar": "Soundbar integration",
    "OLD_cat.korpussoundsystem": "Spectral sound system",
    "OLD_cat.korpusstauraum": "Storage space",
    "OLD_cat.musicboard": "Music board",
    "OLD_cat.signaturelg": "Signature LG",
    "OLD_cat.uni4all": "For all TV sets",
    "open_planning_number": "Open planning number",
    "open_planning_number_short": "Open planning",
    "opusx.assignCustomerNumbers": "Assign customer numbers",
    "opusx.assignGroups": "Assign groups",
    "opusx.assignRoles": "Assign roles",
    "opusx.contactType": "Contact type",
    "opusx.customernumber": "Assign customer numbers",
    "opusx.deliveryAddress": "Delivery address",
    "opusx.deliveryAddressTitle": "If delivery address is not selected, this is an \"other contact\"",
    "opusx.editGroup": "Edit group",
    "opusx.editUser": "Edit user",
    "opusx.error.shareIncomplete": "Please enter the lashing type and the recipient.",
    "opusX.firstLastName": "Please enter at least the first and last name.",
    "opusx.newRole": "New role",
    "opusx.newUser": "Create user",
    "opusx.roles": "Rollers",
    "opusx.shares": "Project manager approvals",
    "opusx.shares.contact": "Contact us",
    "opusx.shares.readonly": "Read only",
    "opusx.shares.recipient": "Receiver",
    "opusx.shares.recipientType": "Access type",
    "opusx.systemrole": "System roll",
    "opusx.systemroleDescription": "A system role that cannot be processed.",
    "opusx.systemroleFailed": "You cannot edit a system role.",
    "opusx.userManagement": "User administration",
    "ox.rights.duplicateKey": "",
    "ox.rights.instruction": "",
    "ox.rights.newRight": "",
    "ox.rights.rightManagement": "",
    "ox.selectCustomernumber": "Select customer number",
    "ox.selectGroup": "Group assignment for the customer number",
    "ox.selectRole": "Role assignment for the customer number",
    "phone": "Telephone",
    "play_animation": "Play animation",
    "plus_shipping_costs": "plus shipping costs",
    "plus_shipping_costsx": "plus shipping costs",
    "postal_code_mandatory": "Postcode*",
    "postcode": "Postcode",
    "preisinfo.ibek": "The individual gross purchase price is determined and provided separately by the manufacturer for each retailer.",
    "preisinfo.inek": "The individual net purchase price is determined and provided separately by the manufacturer for each retailer.",
    "preisinfo.sbek": "The standard gross purchase price is provided by the manufacturer in a standardised form.",
    "preisinfo.snek": "The standard net purchase price is provided by the manufacturer excluding VAT.",
    "preisinfo.uvp": "Recommended retail price including VAT.",
    "preisinfo.uvp_minus_vat": "Recommended retail price excluding VAT.",
    "print.MehrElementeAlsAufArtikelliste": "May contain more elements than the article list",
    "privacy_policy": "Privacy policy",
    "products": "Products",
    "program.information.configure.button": "CONFIGURE NOW",
    "program.information.overview.button": "TO OVERVIEW",
    "program.selection.title": "Select your desired model for configuration:",
    "projectManagerX.isNotOwner": "There is no authorisation for the following plans",
    "projectmanagerX.onePlanning": "Please select min/max one planning.",
    "projectManagerX.projectName": "Please enter a project name.",
    "projectManagerX.uncopiedPlannings": "The following plans were not copied",
    "projectManagerX.undeletedPlannings": "The deletion of the following plans has failed",
    "projectManagerX.unmovedPlannings": "The following plans were not postponed",
    "redlining.control.pick": "Select object for editing",
    "redlining.control.print": "Print",
    "redlining.line.dashed.medium": "Dashed line medium",
    "redlining.line.dashed.thick": "Dashed line thick",
    "redlining.line.dashed.thin": "Dashed line thin",
    "redlining.line.solid.medium": "Solid line medium",
    "redlining.line.solid.thick": "Solid line thick",
    "redlining.line.solid.thin": "Solid line thin",
    "redlining.mode.boundaryformation": "Greeting mode - New element may create additional space between the print area",
    "redlining.mode.ortho": "Ortho mode - elements are created or manipulated in 90 degree steps",
    "redlining.mode.postext": "Position text mode",
    "redlining.mode.snap": "Snap mode - elements are snapped to other elements",
    "redlining.page.first": "First page",
    "redlining.page.last": "Last page",
    "redlining.page.next": "Page before",
    "redlining.page.previous": "Page back",
    "redlining.tools.arrow": "Draw arrow element",
    "redlining.tools.circle": "Draw circle element",
    "redlining.tools.delete": "Delete additional elements and basic elements (an explode is required beforehand for basic elements)",
    "redlining.tools.explode": "Explode - Prerequisite for deleting individual base elements",
    "redlining.tools.image": "Element Draw picture",
    "redlining.tools.line": "Draw element line",
    "redlining.tools.manipulation": "Element manipulation - sliding / resizing etc.",
    "redlining.tools.rectangle": "Draw element square",
    "redlining.tools.scope": "Draw element dimensioning",
    "redlining.tools.text": "Insert text",
    "redlining.viewport.move.down": "Shift down",
    "redlining.viewport.move.left": "Shift left",
    "redlining.viewport.move.right": "Shift right",
    "redlining.viewport.move.up": "Displacement High",
    "redlining.viewport.zoomfit": "Zoom limits",
    "redlining.viewport.zoomin": "Zoom +",
    "redlining.viewport.zoomout": "Zoom -",
    "remember": "Remember",
    "reset_camera_position": "Reset camera position",
    "rticleinfodesk.vsGenDuration": "Duration:",
    "send_inquiry": "Send enquiry",
    "send_link": "Send link",
    "send_request": "Send enquiry",
    "show_hide_dimensions": "Show/hide dimensions",
    "sizes": "Dimensions",
    "step.text.accessoires": "Accessories",
    "step.text.configuration": "Configuration",
    "step.text.modeloverview": "Model overview",
    "step.text.noticelist": "watch list",
    "storeAddress": "Address",
    "storeName": "Company",
    "surname": "Surname",
    "template": "Template",
    "TischMitBank": "",
    "TischMitEckbank": "",
    "TischMitStuhl": "",
    "tot_inc_vat": "Total price incl. VAT",
    "total_price_inclusive_vat": "Total amount (incl. VAT)",
    "Translate-Test-LF": "Test entry",
    "TXT_EPLAN_KA": "Cable outlet",
    "TXT_EPLAN_S": "Switches",
    "TXT_EPLAN_SD": "Socket",
    "type_art_nr": "Type/ArtNo.",
    "undo": "Undo",
    "unit.name.cm": "centimetre",
    "unit.name.m": "metres",
    "unit.name.mm": "Millimetre",
    "webcab.ArrangeEqually": "Distribute evenly",
    "webcab.BackSlope": "Rear roof pitches",
    "webcab.CabCount": "Number of cabinets",
    "webcab.Cabinet": "Cupboard",
    "webcab.CabinetHeight": "Height",
    "webcab.CabinetParams": "Enclosure parameters",
    "webcab.CabinetWidth": "Width",
    "webcab.CopySlopeLeftRightValuesOnSwitch": "Copy lateral change of angle",
    "webcab.cornerOffset_L": "Corner distance left",
    "webcab.cornerOffset_R": "Corner distance right",
    "webcab.Depth": "Depth",
    "webcab.DepthNoSlope": "Depth not at an angle",
    "webcab.DepthSlope": "Slant depth",
    "webcab.EnableCabinetWidthAdjustRoomActive": "Cupboard width despite space",
    "webcab.EnableItemMarking": "Individual cabinet labelling",
    "webcab.EnableRoomUI": "Edit room",
    "webcab.FloatSteps": "Decimal point increment",
    "webcab.IndividualSettings": "Individual cabinet dimensions",
    "webcab.InnerFrame": "Cabinet dimensions",
    "webcab.IntSteps": "Integer increase",
    "webcab.ItemCountInput": "Number of cabinets",
    "webcab.JamWallHeightBack": "Knee height",
    "webcab.JamWallLeft": "Knee height left",
    "webcab.JamWallRight": "Knee height right",
    "webcab.LeftSlope": "Left bevel",
    "webcab.LeftSlope_item": "Cupboard width",
    "webcab.MaxCabDepth": "Maximum depth",
    "webcab.MaxCabHeight": "Maximum height",
    "webcab.MaxCabWidth": "Maximum width",
    "webcab.MaxCabWidthUnderSlope": "Max. enclosure width in incline",
    "webcab.MaxCornerOffset_L": "max. corner distance left",
    "webcab.MaxCornerOffset_R": "max. corner distance right",
    "webcab.MaxRoomHeight": "Maximum height",
    "webcab.MaxRoomWidth": "Maximum width",
    "webcab.MaxSlopeMiterOffset": "max. distance",
    "webcab.Middle": "no bevel",
    "webcab.Middle_item": "Cupboard width",
    "webcab.MiddleOnly": "no bevel",
    "webcab.MiddleOnly_item": "Cupboard",
    "webcab.MinCabDepth": "Minimum depth",
    "webcab.MinCabHeight": "Minimum height",
    "webcab.MinCabWidth": "Minimum width",
    "webcab.MinCornerOffset_L": "min. Corner distance left",
    "webcab.MinCornerOffset_R": "min. Corner distance right",
    "webcab.MinHeightSlopeLeft": "min. Height left slope",
    "webcab.MinHeightSlopeRight": "min. Height right slope",
    "webcab.MinJamWallHeightBackRoom": "min. Knee height",
    "webcab.MinOffsetSide": "Minimum distance side",
    "webcab.MinOffsetSlope": "Minimum sloping distance",
    "webcab.MinOffsetTop": "Minimum distance above",
    "webcab.MinRoomHeight": "Minimum height",
    "webcab.MinRoomWidth": "Minimum width",
    "webcab.MinSlopeCabHeight": "min cabinet height Sloping",
    "webcab.MinTopWidth": "min. Top width",
    "webcab.MinWidthSlopeLeft": "min. Sloping width left",
    "webcab.MinWidthSlopeRight": "min. Sloping width right",
    "webcab.NewElement": "Wall unit",
    "webcab.OffsetBottom": "Distance below",
    "webcab.OffsetLeft": "Distance left",
    "webcab.OffsetRight": "Distance right",
    "webcab.OffsetSlopeBack": "Distance bevelled",
    "webcab.OffsetSlopeLeft": "Distance bevel left",
    "webcab.OffsetSlopePolysAgainstSlopeDirection": "Overhang sloping VH",
    "webcab.OffsetSlopePolysInSlopeDirection": "Overhang inclined LR",
    "webcab.OffsetSlopeRight": "Distance sloping right",
    "webcab.OffsetTop": "OffsetTop",
    "webcab.OuterFrame": "Room dimensions",
    "webcab.OuterFrameHeight": "Height",
    "webcab.OuterFrameWidth": "Width",
    "webcab.PlaceObject": "place",
    "webcab.PositioningOption": "Placement variant",
    "webcab.PositioningOptions": "Placement variants",
    "webcab.PreferredCabWidth": "Preferred cabinet width",
    "webcab.Raumparameter": "Room parameters",
    "webcab.RegelnSeitlicheSchraege": "Rules lateral slope",
    "webcab.RemoveFromCorner": "Remove from corner situation",
    "webcab.RightSlope": "right bevel",
    "webcab.RightSlope_item": "Cupboard width",
    "webcab.Room": "Room",
    "webcab.RoomHeight": "Room height",
    "webcab.RoomParams": "Room parameters",
    "webcab.RoomWidth": "Room width",
    "webcab.RULE_OPTIMIZEBY_DIMENSIONSOLVER_HALFSIZE_FULLSIZE_L": "Half cupboard width in bevelled edge, remainder left",
    "webcab.RULE_OPTIMIZEBY_DIMENSIONSOLVER_HALFSIZE_FULLSIZE_R": "Half cupboard width in bevelled edge, rest on the right",
    "webcab.RULE_OPTIMIZEBY_DIMENSIONSOLVER_MAXSIZE_BETTER": "Maximum width",
    "webcab.RULE_OPTIMIZEBY_DIMENSIONSOLVER_PREFERED_WIDTH": "Recommended width",
    "webcab.RULE_WIDTHCHANGE_ALL_NOTCHANGED_SAME_SIZE": "all not changed same size",
    "webcab.RULE_WIDTHCHANGE_ALL_SAME_SIZE": "all same size",
    "webcab.RULE_WIDTHCHANGE_LAST_CHANGED_LAST": "last changed last",
    "webcab.RuleOptimizeBySwitch": "Distribution variant",
    "webcab.RulePosChangeAllowedForSlopes": "Position adjustment on slopes",
    "webcab.RulesGeneral": "General settings",
    "webcab.RuleSlopeMiter": "separate at an angle",
    "webcab.RuleWidhtChange": "WidhtChange",
    "webcab.RuleWidthChangeAllowed": "WidthChangeAllowed",
    "webcab.Schrankparameter": "Enclosure parameters",
    "webcab.SideSlope": "Lateral roof pitches",
    "webcab.SlopeGeneral": "Roof pitch parameters",
    "webcab.SlopeLeftDX": "Wide bevel left",
    "webcab.SlopeMiter": "Mitre parameters",
    "webcab.SlopeMiterMinHorizontalWidth": "min. horizontal width",
    "webcab.SlopeMiterMinSlopeWidth": "min. Sloping width",
    "webcab.SlopeRightDX": "Wide bevel right",
    "webcab.SlopeSettings": "Sloping roofs",
    "webcab.Unit": "cm",
    "webcab_Room": "Room",
    "your_message": "Your message",
    "your_selection": "Your selection",
    "zoom_in_with_camera": "Zoom in with camera",
    "zoom_out_with_camera": "Zoom out with camera",
    "zubehoer.nicht.erlaubt": "Must not be inserted here!"
}