dh_ackergaul
vor 3 Tagen bb80cdf5a6157ca1f3a276e12e9faae9a4739cb7
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 to left",
    "104": "Add object to right",
    "105": "Add object to top",
    "106": "Add object below",
    "107": "Free positioning",
    "108": "Overall object width - updating by mouse over object",
    "109": "Normal mode",
    "110": "Delete object",
    "111": "Revolve object",
    "112": "Move object",
    "113": "Copy object",
    "114": "Back",
    "115": "Print",
    "116": "Save project",
    "117": "Load project",
    "118": "New project",
    "119": "project attributes",
    "120": "Show/ hide catalogue",
    "121": "Open animation",
    "122": "Close animation",
    "123": "Show / hide fronts",
    "124": "Shadow on /off",
    "125": "Colours",
    "126": "Errors in objects",
    "127": "View from top right",
    "128": "View from top left",
    "129": "Front view",
    "130": "Bird's eye view",
    "131": "Save /load camera positions",
    "132": "Plan view",
    "133": "Front view",
    "134": "Camera zoom in/out",
    "135": "Turn camera",
    "136": "Turn camera around object",
    "137": "Push camera left /right /up /down",
    "138": "Floor colour",
    "139": "Background colour",
    "140": "Hover mouse over red/white striped object to see planning error",
    "141": "Do you wish to save before leaving?",
    "142": "H x W x D",
    "143": "Object not found",
    "144": "Send order to",
    "145": "Dimensions",
    "146": "The licence will expire 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": "E149",
    "150": "Selection",
    "151": "Single object",
    "152": "Objects on one wall",
    "153": "Group",
    "154": "All",
    "155": "Cancel selection",
    "156": "Delete",
    "157": "Single object",
    "158": "All objects",
    "159": "Move",
    "160": "Delete planning group",
    "161": "Change door hinge",
    "162": "before please",
    "163": "Change hinge side",
    "164": "Change inner / outer hinge",
    "170": "Revolve",
    "171": "90° left",
    "172": "-90° right",
    "173": "45° left",
    "174": "-45° right",
    "175": "?°",
    "176": "0° absolute",
    "177": "DxNew is smaller than DxMin!",
    "178": "DxNew is larger than DxMax!",
    "179": "DxNew is similar to dx or DxNew equals 0.0!",
    "180": "Alter size",
    "181": "Width",
    "182": "Depth",
    "183": "Height",
    "184": "Adjust width",
    "185": "The width cannot be modified:",
    "186": "missing internal data!",
    "187": "Cupboard is not ashlar-shaped!",
    "188": "DxMax equals 0.0!",
    "189": "- Distance is not rounded on two decimal places!",
    "190": "Configure wall",
    "191": "Delete wall",
    "192": "Show left gable",
    "193": "Do not show left gable",
    "194": "Show right gable",
    "195": "Do not show right gable",
    "196": "VAT",
    "197": "Price without",
    "198": "Price includes",
    "199": "E199",
    "200": "Accessories",
    "201": "E201",
    "202": "Store standard e-mail address",
    "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": "Print options",
    "221": "Settings",
    "222": "Use as standard",
    "223": "Use temporarily",
    "224": "Article prices",
    "225": "Show prices",
    "226": "Show type numbers",
    "227": "Hide prices",
    "228": "Print article numbers",
    "229": "Print total price",
    "230": "Perspective as line drawing",
    "231": "Do not print",
    "232": "Print line drawing",
    "233": "Perspective as coloured drawing",
    "234": "Ground plan",
    "235": "always",
    "236": "current planning",
    "237": "Current floor as standard",
    "238": "Move on the floor",
    "240": "Adjust height",
    "245": "Print manufacturer name",
    "246": "Print program name",
    "250": "Do not evaluate any object",
    "251": "Do not evaluate any object relating to this manufacturer",
    "252": "Do not evaluate any object relating to this program",
    "253": "Default evaluation of all objects",
    "254": "Default evaluation of all of the manufacturer's objects",
    "255": "Default evaluation of all of the program's objects",
    "256": "Animation",
    "257": "Individual animation",
    "300": "Special combinations",
    "301": "Delete all previous objects?",
    "302": "The special combination / suggested combination is deleted !",
    "303": "Do you really want to delete all units?",
    "304": "Delete planning proposal",
    "400": "Render invisible",
    "401": "now! footswitch",
    "402": "Please enter the required number of footswitches.",
    "403": "Render visible",
    "404": "Absolute top edge",
    "405": "Absolute bottom edge",
    "406": "Process",
    "407": "Maximum move",
    "408": "Move with:",
    "409": "Limit:",
    "410": "Direction:",
    "411": "Left",
    "412": "Right",
    "413": "Top",
    "414": "Bottom",
    "415": "Front",
    "416": "Rear",
    "417": "Maximum",
    "418": "Room divider",
    "419": "Change thickness sides:",
    "420": "Change absolute height:",
    "421": "Options",
    "422": "measure",
    "423": "area",
    "424": "import / export",
    "425": "Selection via images",
    "500": "pick = delete",
    "501": "pick = highlight",
    "502": "pick + move mouse = move forward /back",
    "503": "pick + move mouse = move in level",
    "504": "pick + move mouse = move left /right",
    "505": "pick + move mouse = reposition",
    "506": "pick + move mouse = move up /down",
    "507": "Additonal articles",
    "508": "Start",
    "509": "Side-panel",
    "510": "Bedroom",
    "511": "Office",
    "512": "Units+NOW!sit",
    "514": "Video",
    "515": "Online help",
    "516": "Version",
    "517": "Licence conditions",
    "518": "Existing positions:",
    "519": "Alter width",
    "520": "Alter height",
    "521": "Alter depth",
    "522": "Current size",
    "523": "Limits",
    "524": "Minimum",
    "525": "Maximum",
    "526": "New size in cm",
    "527": "Execute on single object",
    "528": "Execute on row",
    "529": "back",
    "530": "front",
    "531": "Chosen object",
    "532": "All units on wall",
    "533": "All marked objects",
    "534": "Fixation",
    "535": "Adjoining objects",
    "536": "Move rest of the units !",
    "537": "Do not move the rest of the units !",
    "538": "Selection of objects",
    "539": "Add article",
    "550": "Discontinued article: The article is not available anymore.",
    "600": "Corner Shelf",
    "610": "Without cornice",
    "611": "With cornice",
    "612": "options for sloping ceilings",
    "613": "The minimum distance to ceiling has already been taken into account and is",
    "614": "Additional distance of the unit to sloping ceiling",
    "615": "Move to the left",
    "616": "Move to the right",
    "617": "Central sloping on centre partition",
    "618": "room planning",
    "620": "Collisions are currently ignored. All used measurements refer to position x up to 'centre spotlamp'.",
    "621": "distance from the left hand side",
    "622": "distance from the right hand side",
    "623": "distance from front",
    "624": "distance from back",
    "625": "spotlamp position left / right",
    "626": "spotlamp position front / back",
    "627": "Alter width",
    "628": "Alter depth",
    "629": "Alter height",
    "630": "Scale all",
    "690": "Position",
    "691": "Special combination",
    "692": "Wardrobe",
    "693": "Bed",
    "694": "Console on the left",
    "695": "Console on the right",
    "700": "One or more incorrect data!",
    "701": "Alteration done automatically",
    "800": "Planning file",
    "900": "Export / import",
    "901": "file",
    "902": "Vector format",
    "903": "Grid format",
    "904": "resolution",
    "905": "Note to software",
    "906": "Send Feedback eMail",
    "907": "Load last backup of previous session !",
    "908": "Send order to manufacturer",
    "909": "furnplan Support Mail",
    "910": "print cupboard sizes",
    "911": "print true-to-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 consumer version - only for private use - can not be used in a furniture store!",
    "931": "mirror-inverted",
    "932": "No use moving maximum distance",
    "933": "not possible",
    "1002": "Program",
    "1003": "Type of calculation",
    "1004": "Surcharge in %",
    "1005": "Alter price premium",
    "1006": "Select all",
    "1007": "Do not select !",
    "1008": "Save",
    "1010": "Load",
    "1011": "Save view for printing",
    "1012": "Camera position",
    "1013": "Camera focal distance",
    "1014": "Article listing",
    "1100": "Page back",
    "1101": "Page forward",
    "1102": "First page",
    "1103": "Last page",
    "1104": "Zoom +",
    "1105": "Zoom -",
    "1106": "Limit zoom",
    "1107": "Move left",
    "1108": "Move right",
    "1109": "Move up",
    "1110": "Move down",
    "1111": "Mark object for processing",
    "1112": "Print",
    "1113": "Enlarge - necessary for deleting single basic units",
    "1114": "Deleting additional units and basic units (Enlarge basic units before deleting)",
    "1115": "Unit manipulation - Moving / enlarging etc.",
    "1116": "Ortho mode - units are created or manipulated in steps of 90°",
    "1117": "Snap mode - units are caught on other units",
    "1118": "Margin mode - New unit created additional space between printing areas if applicable",
    "1119": "Thin unbroken line mode",
    "1120": "Medium unbroken line mode",
    "1121": "Thick unbroken line mode",
    "1122": "Thin dotted line mode",
    "1123": "Medium dotted line mode",
    "1124": "Thick dotted line mode",
    "1125": "Draw unit line",
    "1126": "Draw unit circle",
    "1127": "Draw unit rectangle",
    "1128": "Draw unit dimensions",
    "1129": "Draw unit arrow",
    "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 unit",
    "1145": "Position list",
    "1200": "Grouping",
    "1201": "Undo grouping",
    "1202": "Group marked objects",
    "1203": "Cancel global grouping temporarily",
    "1204": "Switch on global grouping",
    "1300": "All furniture",
    "1301": "All accessories",
    "1302": "Showroom suggestions",
    "1310": "Neutral articles",
    "1320": "Close furnplan",
    "1350": "Basic unit/Extension unit",
    "1351": "Automatic",
    "1352": "Basic unit",
    "1353": "Extension unit",
    "1354": "Glass version",
    "1355": "Clear glass",
    "1356": "Satinized glass",
    "1400": "Retailer",
    "1401": "Retailer address",
    "1402": "Sales person",
    "1403": "Order number",
    "1404": "Customer name",
    "1405": "Requested delivery date",
    "1406": "Delivery address",
    "1500": "Deliver to",
    "1501": "Sales person",
    "1502": "Telephone number",
    "1503": "Fax number",
    "1504": "Mobile phone number",
    "1505": "Order data",
    "1506": "Order number",
    "1507": "Order name",
    "1508": "Requested delivery date YYYYMMDD or YYYYWW",
    "1509": "Requested delivery date",
    "1510": "Notes",
    "1511": "Confirm e-mail",
    "1512": "e-mail address",
    "1513": "Send e-mail to",
    "1514": "Write e-mail",
    "1515": "NOTE: order has already been sent once",
    "1516": "Order",
    "1517": "Data",
    "1518": "Customer number of client",
    "1519": "Customer number of delivery address",
    "1520": "Placement",
    "1521": "Range abbreviation",
    "1522": "Version abbreviation",
    "1523": "Category",
    "1524": "Studio code",
    "1525": "Assembly code",
    "1526": "Display code",
    "1527": "Contact person at retailer",
    "1528": "Name",
    "1529": "Order data from customer",
    "1530": "Showroom placement discount",
    "1531": "Notes",
    "1532": "Recall last settings",
    "1533": "Delete all values",
    "1550": "Showroom placement discount",
    "1551": "Notes",
    "1552": "Recall last settings",
    "1555": "Delete all values",
    "1560": "Montage",
    "1600": "Administrator dialogue",
    "1601": "Calculation surcharges",
    "1602": "Online",
    "1603": "Order",
    "1604": "Settings",
    "1605": "Dealers ILN number",
    "1606": "Dealer - ship-to - ILN data",
    "1607": "Description",
    "1608": "new",
    "1609": "Customer data of dealer at manufacturers",
    "1610": "Customer number",
    "1611": "Number",
    "1612": "Activation",
    "1613": "Password",
    "1614": "Check",
    "1615": "Wrong password!",
    "1616": "Correct password!",
    "1617": "Please ask your administrator",
    "1618": "The stored password does not match!",
    "1619": "This value is invalid!",
    "1620": "Saved successfully.",
    "1621": "Note: all mandatory boxes must be filled in",
    "1622": "The file to be loaded does not exist:",
    "1623": "not available",
    "1624": "File not found",
    "1625": "The marked elements could not be changed",
    "1626": "Input not correct!",
    "1627": "Article not available!",
    "1629": "The article was not found in the table for the range!",
    "1630": "The sizes are not correct in the corner unit - aborted!",
    "1631": "Error",
    "1632": "Please get in touch with the manufacturers concerning clearance!",
    "1633": "There are some errors in the project!",
    "1634": "This order will definitely lead to some queries!",
    "1635": "Do you still wish to place this order?",
    "1636": "As soon as possible",
    "1637": "Print views",
    "1640": "Width has been corrected to",
    "1641": "Height has been corrected to",
    "1642": "Depth has been corrected to",
    "1650": "The sizes are not correct in the corner unit - aborted!",
    "1651": "Error",
    "1700": "Finish",
    "1701": "Assign to all articles",
    "1702": "Assign to one article",
    "1703": "Assign to assembly part",
    "1704": "Retain local settings",
    "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 color 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 catalog",
    "1713": "Back to the start page of the selected model",
    "1714": "Inspiration",
    "1800": "ATTENTION: The surcharge factor has not been implemented. Please contact your administrator.",
    "1820": "Base hotline",
    "1821": "Hotline for furniture planning",
    "1822": "Licence holder",
    "1823": "Including extra charge for nonstandard measurement",
    "1824": "alternative currency",
    "1825": "Version available",
    "1826": "current version",
    "1827": "installed version",
    "1850": "graphic design",
    "1851": "graphic design in the action",
    "1852": "graphic design in an inactive activity",
    "1853": "white",
    "1854": "coloured",
    "1855": "texturise",
    "1856": "Photo-realistic design",
    "1857": "Start calculation",
    "1859": "Insert",
    "1860": "Edit",
    "1862": "Better quality",
    "1863": "Lights",
    "1864": "Visual",
    "1865": "High",
    "1866": "Normal",
    "1867": "Quick",
    "1868": "Very quick",
    "1869": "Quality",
    "1870": "Smoothing of edges",
    "1871": "Visual light radius",
    "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 dater",
    "1880": "Error in the price calculation - please contact the manufacturer",
    "1881": "Delete all local",
    "1882": "Help",
    "1883": "The specified article number is not valid!",
    "1884": "This article cannot be planned by direct input!",
    "1885": "No decimal values allowed in the unit mm",
    "1886": "File",
    "1887": "Export configuration",
    "1888": "Created with furnplan",
    "1889": "Configuration exportet successful.",
    "1890": "Error while exporting:",
    "1891": "Furnplan administration",
    "1892": "- will not be sent to any manufacturer",
    "1893": "Simple Store Management",
    "1894": "Save Configuration",
    "1895": "Configuration successfully saved",
    "1896": "You need Administrator-Rights to edit the Store Transfer Administration!",
    "1897": "Use Store Management",
    "1898": "Store list",
    "1899": "Edit",
    "1900": "Service Settings",
    "1901": "Start Service",
    "1902": "Install Service",
    "1903": "Stop Service",
    "1904": "Remove Service",
    "1905": "Username",
    "1906": "Password",
    "1907": "Domain",
    "1908": "Common Settings",
    "1909": "Concurrent Connections",
    "1910": "Log Debug Entries",
    "1911": "Interval Time",
    "1912": "Transfertime",
    "1913": "Information",
    "1914": "Show Log",
    "1915": "Last Sync",
    "1916": "Transfer-Service started",
    "1917": "Transfer-Service installed",
    "1918": "Action",
    "1919": "Save And Test",
    "1920": "Reset",
    "1921": "Save",
    "1922": "Sync Now",
    "1923": "Test Settings",
    "1924": "Error while starting service",
    "1925": "Error while stopping service",
    "1926": "Test",
    "1927": "Please insert at least a Username.",
    "1928": "Test failed.",
    "1929": "Test succeeded.",
    "1930": "Store-Settings",
    "1931": "Activate sync of this store.",
    "1932": "Last sync",
    "1933": "Target-Path",
    "1934": "Timezone",
    "1935": "Choose",
    "1936": "Extended Settings",
    "1937": "Add your credentials for this store here only, if they differ to the main credentials!",
    "1938": "OK",
    "1939": "Cancel",
    "1940": "Store Management",
    "1941": "Active",
    "1942": "Cust-No.",
    "1943": "Store",
    "1944": "Last sync",
    "1945": "Transfer has been started, view log for more information.",
    "1946": "No lighting in the scene, rendering deactivated.",
    "3000": "Information",
    "3001": "Roof slope",
    "3002": "Left",
    "3003": "Right",
    "3004": "Rear",
    "3005": "Cabinet frame dimensions",
    "3006": "Measurements according to drawing",
    "3010": "View on separate drawing",
    "3020": "Surcharge not found",
    "3100": "Pos.",
    "3101": "Code",
    "3102": "Description",
    "3103": "Q.ty",
    "3104": "Unit price",
    "3105": "Tot.price",
    "3106": "To order please contact your now! dealer.",
    "3107": "ORDER",
    "3108": "Automatically generated - without liability",
    "3109": "Project:",
    "3110": "Customer:",
    "3111": "Date:",
    "3112": "Total",
    "3113": "Page",
    "3114": "has not been planned yet",
    "3115": "have not been planned yet",
    "3116": "pcs",
    "3117": "H / W / D",
    "3118": "Project number:",
    "3119": "e-mail:",
    "3120": "Tel. company",
    "3121": "Tel. private",
    "3122": "Tel. mobile",
    "3123": "Fax",
    "3124": "Rows",
    "3125": "Range features",
    "3126": "commission / client",
    "3127": "Special size",
    "3128": "Special version",
    "3129": "Accessories",
    "3130": "without liability",
    "6083": "Test credentials",
    "6100": "Floor",
    "6101": "Wall",
    "6102": "Ceiling",
    "6103": "Window",
    "6104": "Door",
    "6105": "Standard rooms",
    "6106": "Individual room project",
    "6107": "Ceiling height",
    "6108": "Parpet height",
    "6109": "Window width:",
    "6110": "Window height:",
    "6111": "With a lenght of 0 the leg will not be drawn.",
    "6112": "Door height:",
    "6113": "Door width:",
    "6114": "Outside hinge left",
    "6115": "Inside hinge left",
    "6116": "Outside hinge right",
    "6117": "Inside hinge right",
    "6118": "RAL colour palette",
    "6119": "Wood",
    "6120": "Other",
    "6121": "Wall height = Overall room height",
    "6122": "Wall height",
    "6123": "Wall thickness",
    "6124": "Ceiling slope",
    "6125": "Work on single wall",
    "6126": "Work on room",
    "6127": "Delete wall",
    "6128": "Delete room",
    "6129": "Plan colours",
    "6130": "Plan windows",
    "6131": "Plan doors",
    "6132": "Delete windows",
    "6133": "Work on windows",
    "6134": "Delete door",
    "6135": "Work on door",
    "6136": "Right-angled room",
    "6137": "Room with protrusion",
    "6138": "Two walls",
    "6139": "U-shape",
    "6140": "Plain window handle left",
    "6141": "Plain window handle right",
    "6142": "Window with rungs, handle left",
    "6143": "Window with rungs, handle right",
    "6144": "Window with two wings",
    "6145": "Window with two wings and rungs",
    "6146": "Window with three wings",
    "6147": "Window with three wings and rungs",
    "6148": "Opening",
    "6149": "Plain door",
    "6150": "Glass door",
    "6151": "Door with 2 glass panes",
    "6152": "Glass door with rungs",
    "6153": "Door with two glass panes and rungs",
    "6154": "Amend single wall",
    "6155": "Amend single window",
    "6156": "Amend single door",
    "6157": "Skylight",
    "6158": "Show left pediment",
    "6159": "Do not show left pediment",
    "6160": "Show right pediment",
    "6161": "Do not show right pediment",
    "6162": "Copy wall",
    "6163": "Floor Reflections",
    "6164": "Amend selected floor",
    "6165": "Delete ceiling",
    "6166": "Transfer to a second display",
    "6167": "Triangular window",
    "6168": "Triangular window, left-hand side",
    "6169": "Triangular window, right-hand side",
    "6170": "Round window",
    "6171": "Round window with rods",
    "6172": "Round sash window",
    "6173": "Glass front",
    "6200": "Roof protrusions",
    "6201": "Left 0",
    "6202": "Left 25.0",
    "6203": "Enter value for left",
    "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": "Paneling",
    "6213": "Bay with a 90° angle",
    "6214": "Bay",
    "6300": "Push",
    "6301": "Along wall axis",
    "6302": "Lateral to wall axis",
    "6303": "Size",
    "6304": "Height",
    "6305": "Width C",
    "6306": "Width L",
    "6307": "Width R",
    "6308": "Length - left fixed",
    "6309": "Length - right fixed",
    "6311": "Through relative angle",
    "6312": "Revolve this wall",
    "6313": "To absolute angle",
    "6314": "Through relative angle",
    "6315": "Wall - twin-sided",
    "6316": "Wall - single-sided",
    "6317": "Attributes",
    "6318": "Cutting plane",
    "6319": "Apply cutting plane",
    "6320": "Undo cutting plane",
    "6321": "Cutting plane - depth",
    "6400": "Wall completed",
    "6401": "Enter wall length for segment",
    "6402": "Enter wall length & inside angle - right",
    "6403": "Enter wall length & inside angle - left",
    "6404": "Enter distance A",
    "6405": "Enter distance B",
    "6406": "Perpendicular to the edge of this wall",
    "6408": "Not connected on the left side!",
    "6410": "Total height incl. pelmet",
    "6411": "Total height excl.pelmet",
    "6412": "Total height incl. cover",
    "6413": "Total height excl. cover",
    "6414": "Total depth incl. front!",
    "6415": "Dimension without front!",
    "6416": "Total size incl. outer sides\n",
    "6417": "Plinth dimension without outer sides!",
    "6418": "Plinth size without outer sides",
    "6419": "Plinth dimension incl. 1 side!",
    "6500": "Min",
    "6501": "Max",
    "6502": "Error",
    "6503": "Length",
    "6504": "Inside angle",
    "6600": "Alter single wall",
    "6601": "Rasch wallpaper manufacturer",
    "7000": "Standard price rounding",
    "7001": "Price rounded to unit",
    "7002": "Prices",
    "7003": "Price management",
    "7004": "Print",
    "7005": "Print management",
    "7006": "Add configuration",
    "7007": "Delete configuration",
    "7008": "Do you really want to delete the configuration?",
    "7009": "Article register 1. page",
    "7010": "Article register from 2. page",
    "7011": "Views",
    "7012": "Perspective as line drawing",
    "7013": "Perspective as coloured drawing",
    "7014": "Ground plan",
    "7015": "Rounding type",
    "7016": "Start date",
    "7017": "The configuration has been changed. Would you like to save it?",
    "7018": "End date",
    "7019": "Standard",
    "7020": "Active",
    "7021": "These description is already existing.",
    "7022": "Pages",
    "7023": "You can enter the reason for the amendment here (optional)",
    "7024": "Global settings",
    "7025": "Global font setting",
    "7026": "Global calculation setting",
    "7027": "Adjust calculation parameters in furnplan",
    "7028": "Import calculation parameters from your ERP-appliction",
    "7029": "Online Order",
    "7030": "Store adjustments",
    "7031": "Choose out",
    "7032": "Change",
    "7033": "Show history",
    "7034": "Pricegroup 1",
    "7035": "Pricegroup 2",
    "7036": "Pricegroup 3",
    "7037": "Pricegroup 4",
    "7038": "Pricegroup 5",
    "7039": "Pricegroup 6",
    "7040": "Pricegroup 7",
    "7041": "Pricegroup 8",
    "7042": "Pricegroup 9",
    "7043": "Pricegroup 10",
    "7044": "Alternative manufacturer name",
    "7045": "Alternative program name",
    "7046": "User configuration",
    "7047": "Transfer configuration",
    "7048": "Test connection",
    "7049": "Test connection successfully",
    "7050": "Path details",
    "7051": "Target path",
    "7052": "Time settings",
    "7053": "Time zone destination",
    "7054": "Access information (if necessary)",
    "7055": "Time settings",
    "7056": "Please wait...",
    "7057": "Font type",
    "7058": "Scale",
    "7059": "Dimension X",
    "7060": "Dimension Y",
    "7061": "Position X",
    "7062": "Position Y",
    "7063": "Font size",
    "7064": "Settings for standard print",
    "7065": "Activate furnplan logo",
    "7066": "Activate footer",
    "7067": "Flush-left",
    "7068": "Centered",
    "7069": "Flush-right",
    "7070": "Activate standard logo",
    "7071": "Activate standard address line",
    "7072": "Starting point X",
    "7073": "Starting point Y",
    "7074": "Endpoint X",
    "7075": "Endpoint Y",
    "7076": "Line width",
    "7077": "Alignment",
    "7078": "Flush-left",
    "7079": "Centered",
    "7080": "Flush-right",
    "7081": "Price type",
    "7082": "Individual gross purchase price",
    "7083": "Standard gross purchase price",
    "7084": "Non-binding retail price",
    "7085": "Closing program",
    "7086": "Print selection",
    "7087": "Active branch in this installation",
    "7088": "opus_dversion.dht does not exist. Closing application.",
    "7089": "Functions are not available in this version.",
    "7090": "Text from project manager",
    "7091": "Calculation at manufacturer's level",
    "7092": "Calculation at program's level",
    "7093": "Surcharge selection",
    "7094": "Article settings",
    "7095": "The service for the store management is installed but not started. Would you like to start it now?",
    "7096": "Activated",
    "7097": "Disabled",
    "7098": "Store management",
    "7099": "Images",
    "7100": "Lines",
    "7101": "Show only individual premium",
    "7102": "Filter",
    "7103": "Article number",
    "7104": "Code",
    "7105": "Adjusted filter",
    "7106": "Arrange",
    "7107": "Export",
    "7108": "HTML-File",
    "7109": "CSV-File",
    "7110": "Image-File",
    "7111": "Read calculation from  ERP or furnplan",
    "7112": "Check ERP system",
    "7113": "Assign",
    "7114": "Do you wish to save?",
    "7115": "Old password",
    "7116": "new password",
    "7117": "confirm",
    "7118": "Change password",
    "7119": "Calculation aid",
    "7120": "current price",
    "7121": "target price",
    "7122": "current surcharge in %",
    "7123": "ground price",
    "7124": "New surcharge in %",
    "7125": "individual net purchase price",
    "7126": "Furnplan settings",
    "7127": "Use standard PDF viewer",
    "7129": "Currently used PDF viewer:",
    "7130": "Force PDF Settings",
    "7132": "advertising text by manufacturer",
    "7133": "PDF open",
    "7134": "Delete PDF",
    "7135": "My Pictures",
    "7136": "Article type",
    "7137": "Cannot delete PDF",
    "7138": "Max. discount",
    "7139": "Procurement factor in %",
    "7140": "Hide prog.",
    "7141": "old price quick view",
    "7142": "Loading older planning",
    "7143": "This planning has been made with an outdated version of furnplan.~YES = keep on loading with the outdated version ~NO = use the latest version",
    "7144": "Rounding to the nearest hundreds",
    "7145": "Favourites only",
    "7146": "Only named entries",
    "7147": "Reset filter",
    "7148": "Enter/Edit Name",
    "7149": "created by furnray",
    "7150": "generated by expression",
    "7151": "Favorite",
    "7152": "Open planning in the Cloud",
    "7153": "Create Cloud-ID",
    "7154": "Only entries with images",
    "7155": "Store current planning in the cloud",
    "7156": "Name",
    "7157": "Timestamp",
    "7158": "Select all",
    "7159": "furncloud ID",
    "7160": "Calculation at global level",
    "7161": "global AddOn",
    "7162": "AddOn (in %)",
    "7163": "on AddOn",
    "7164": "on Endprice",
    "7165": "Calculation Aid",
    "7166": "old tax value",
    "7167": "old tax value",
    "7168": "calculated addon",
    "7169": "Apply",
    "7170": "Additional mark-up on total price (in %)",
    "7171": "Overall mark-up on purchase price",
    "7172": "Overall mark-up on selling price",
    "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, the old admin dialog will not be available after the update! Do you wish to switch to continue ?",
    "7177": "Update of the administration failed!",
    "7178": "Update to the new administration was successful!",
    "7179": "New administration is active, changes are no longer triggered.",
    "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": "Selection",
    "7201": "Order easily from the salespersonon location using the planning code.",
    "7202": "Order by phone",
    "7203": "Call us at",
    "7204": "Continue planning later?",
    "7205": "Open planning at any time in the same branch and continue planning.",
    "7206": "Buy in the local branch",
    "7207": "Your planning code",
    "7208": "Line color R (red)",
    "7209": "Line color G (green)",
    "7210": "Line color B (blue)",
    "7211": "Line type",
    "7212": "Buy online",
    "7213": "Parcel",
    "7214": "Add to equation",
    "7215": "Accessories cannot be exported due to licensing issues.",
    "7216": "000 - 095",
    "7217": "100 - 190",
    "7218": "200 - 290",
    "7219": "300 - 390",
    "7220": "RAL design color picker\n",
    "7221": "created by AI",
    "7222": "View on this device",
    "20000": "Projectmanager",
    "20001": "Planning",
    "20002": "Should the planning be saved?",
    "20003": "Do you wish to save the planning?",
    "20004": "Price preview",
    "20005": "PDF view",
    "20006": "Arrange",
    "20007": "Search",
    "20008": "Current 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": "Adminstration",
    "20022": "Import drawings",
    "20023": "List",
    "20024": "List with preview pictures",
    "20025": "Preview pictures",
    "20026": "Create",
    "20027": "Rename",
    "20028": "Copy",
    "20029": "Cut out",
    "20030": "Configuration",
    "20031": "Go to",
    "20032": "Overwrite the selected planning",
    "20033": "Insert directories",
    "20034": "Insert planning",
    "20035": "Maximum number of designs per indicated page \r\n\r\nMinimum: #1 maxima: #2",
    "20036": "Current page / Side number",
    "20037": "First page",
    "20038": "Previous page",
    "20039": "Next page",
    "20040": "Last page",
    "20041": "Picture size",
    "20042": "Page",
    "20043": "In the directory \"#1\" is at least one planning which is locked by a user. This directory can therefore not be deleted.",
    "20044": "Found locked plannings.",
    "20045": "Do you really want to delete the directory \"#1\" with all plannings and sub-folders?",
    "20046": "Delete directory?",
    "20047": "Do you really want to delete the selected planning?",
    "20048": "Delete plannings?",
    "20049": "Do you really want to delete the planning?",
    "20050": "Delete planning?",
    "20051": "Not all drawings could be deleted, because some of them are locked by other users.",
    "20052": "Not all drawings are deleted.",
    "20053": "Matching results",
    "20054": "The drawing cannot be saved, because it still contains mistakes.\r\n\r\nPlease rectify the errors and try again.",
    "20055": "Planning contains input errors.",
    "20056": "The selected planning is locked by the user '#1' with the IP '#2'. Would you still like to open the planning and ignor the lock?",
    "20057": "The planning is locked.",
    "20058": "The selected planning can not be opened, because it was deleted.",
    "20060": "Do you wish to save the current planning?",
    "20061": "Save the current planning?",
    "20062": "Do you wish to overwrite the selected planning with the current planning?",
    "20063": "Overwrite the selected planning?",
    "20064": "The selected planning is locked by the user '#1' with the IP '#2'. Would you nevertheless overwrite the planning and ignore the lock?",
    "20065": "The planning is locked.",
    "20066": "Insert directory",
    "20067": "Insert planning",
    "20068": "In the directory \"#1\" is still one planning that is closed by a user. This directory can therefore not be cut out.",
    "20069": "The directory can not be moved, because at least one planning is locked.",
    "20070": "Directory has not been moved.",
    "20071": "Copying data, please wait...",
    "20072": "#1 of #2 plannings could not be moved, because these are locked by other users.",
    "20073": "Not all plannings were moved.",
    "20074": "#1 of #2 plannings could not be cut out, because these are locked by other users.",
    "20075": "Not all plannings were cut out.",
    "20076": "At the moment, the selected planning cannot be opened because another planning is in preparation.",
    "20077": "Preview picture",
    "20078": "Save the current planning as new",
    "20079": "Save and generate afterwards a new planning",
    "20080": "Save and open afterwards a planning",
    "20081": "Open a planning",
    "20082": "Save a planning",
    "20083": "Apply",
    "20084": "Please indicate a directory name",
    "20085": "Comment",
    "20086": "Print",
    "20087": "Zoom-Level",
    "20088": "Zoom in",
    "20089": "Zoom out",
    "20090": "Zoom the selection",
    "20091": "Show the whole page",
    "20092": "Adapt to screensize",
    "20093": "Show one page",
    "20094": "Show two pages",
    "20095": "Show page continuously",
    "20096": "Hand picked",
    "20097": "Cursor",
    "20098": "Insert comment",
    "20099": "Insert text",
    "20100": "Insert mark",
    "20101": "Insert rectangle",
    "20102": "Insert ellipse",
    "20103": "Turn 90° to the left",
    "20104": "Turn 90° to the right",
    "20105": "Position",
    "20106": "Article number",
    "20107": "Description",
    "20108": "H/W/D",
    "20109": "Quantity",
    "20110": "single price",
    "20111": "total price",
    "20112": "Total price",
    "20113": "Importing plannings, please wait...",
    "20114": "Updating indices, please wait...",
    "20115": "*MULTI*",
    "20116": "Send",
    "20117": "Send planning",
    "20118": "Dispatch information",
    "20119": "The field #1 is a mandatory field. Please insert a value.",
    "20120": "Mandatory field",
    "20121": "The field #1 contains an input error. Data type: #2",
    "20122": "Minimum value: #1",
    "20123": "Maximum value: #1",
    "20124": "Resetting field data",
    "20125": "Input error",
    "20126": "Should the current planning be saved before it is dispatched? All information will be updated.",
    "20127": "The planning file and the preview picture could not be saved.\r\n\r\nThe planning will thererfore not dispatched.",
    "20128": "Error",
    "20129": "The positions of the planning could not be identified.\r\n\r\nSo the planning will not be dispatched.",
    "20130": "Sending planning, please wait...",
    "20131": "Error dispatching the planning",
    "20132": "Planning has been dispatched successfully.",
    "20133": "Dispatch succeeded",
    "20134": "Configuration of the project manager",
    "20135": "System",
    "20136": "Category",
    "20137": "Configuration",
    "20138": "Attribute",
    "20139": "Add",
    "20140": "Reset",
    "20141": "Should the column configuration '#1' be really removed? This step cannot be undone.",
    "20142": "Reset configuration?",
    "20143": "Do you really want to remove the configuration '#1'? This step cannot be undone.",
    "20144": "Do you really want to delete the configuration '#1'? This step cannot be undone.",
    "20145": "Delete configuration?",
    "20146": "Attributes",
    "20147": "Name",
    "20148": "Type",
    "20149": "Do you really want to delete the attribute '#1'?",
    "20150": "Delete attribute?",
    "20151": "Adjusted features",
    "20152": "Short description",
    "20153": "Field type",
    "20154": "Edit values",
    "20155": "Data type",
    "20156": "Arrage data type",
    "20157": "Allow NULL",
    "20158": "Minimum value",
    "20159": "Maximum value",
    "20160": "Write-protected",
    "20161": "Mandatory field",
    "20162": "Standard value",
    "20163": "Value can be inherited",
    "20164": "This attribute contains a connection.",
    "20165": "Dependent upon",
    "20166": "Value",
    "20167": "Get value from",
    "20168": "Provide as a subconnection to another attribute",
    "20169": "Subconnection",
    "20170": "Input error has occured.",
    "20171": "Linguistic text (Index)",
    "20172": "Linguistic texts",
    "20173": "Determine",
    "20174": "Yes",
    "20175": "No",
    "20176": "Only with value",
    "20177": "Description",
    "20178": "Viewable",
    "20179": "Viewable in",
    "20180": "Add category",
    "20181": "Delete category",
    "20182": "Add an attribute",
    "20183": "Delete attribute",
    "20184": "Name of category",
    "20185": "Name of attribute",
    "20186": "Should the category '#1' be really deleted?",
    "20187": "Delete category?",
    "20188": "Do you really want to delete the attribute '#1'?",
    "20189": "Delete attribute?",
    "20190": "Texts depend to the language",
    "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 entry",
    "20198": "Please enter a value.",
    "20199": "The inserted value already exists.",
    "20200": "Value already exists",
    "20201": "The inserted value cannot be added to the list. The data type is not compatible.",
    "20202": "The directory '#1' could not be found.",
    "20203": "The file '#1' cannot be found.",
    "20204": "Column configuration",
    "20205": "Standard configuration",
    "20206": "Available columns",
    "20207": "Assigned columns",
    "20208": "Position",
    "20209": "Optional name",
    "20210": "Column configuration was saved.",
    "20211": "Successfully saved",
    "20212": "Column configuration has not been saved: \r\n#1",
    "20213": "Failed to save",
    "20214": "Configuration of the IWOfurn-interface",
    "20215": "Use the IWOfurn-interface",
    "20216": "Directories",
    "20217": "Source directory",
    "20218": "Input directory",
    "20219": "Archive directory",
    "20220": "Log file directory",
    "20221": "Communication settings",
    "20222": "Communicating via system service",
    "20223": "Address of the web service",
    "20224": "Proxy settings",
    "20225": "Do not use a proxy",
    "20226": "Use the proxy of the Internet Explorer",
    "20227": "Enter own Proxy data",
    "20228": "Address",
    "20229": "User name",
    "20230": "Password",
    "20231": "Domain",
    "20232": "Please remove the input errors before saving.",
    "20233": "An error has occurred while saving the settings.",
    "20234": "Settings are not saved!",
    "20235": "Settings successfully saved.",
    "20236": "Settings are saved",
    "20237": "No proxy address is entered",
    "20238": "Missing directory",
    "20239": "Directory does not exist.",
    "20240": "File",
    "20241": "Progress",
    "20242": "Status",
    "20243": "Cancelled",
    "20244": "Download",
    "20245": "Done",
    "20246": "Downloads",
    "20247": "Back",
    "20248": "The selected file has already been downloaded.",
    "20249": "File already exists",
    "20250": "Explorer",
    "20251": "Online",
    "20252": "SketchUp is still downloading. Do you really wish to close furnplan?",
    "20253": "Active download present",
    "20254": "Insert into the planning",
    "20255": "Do you really want to delete the selected models?",
    "20256": "Delete plannings?",
    "20257": "Do you really want to delete the selected model?",
    "20258": "Delete planning?",
    "20259": "Error while opening the model",
    "20260": "Forward",
    "20261": "Main page",
    "20262": "Downloading model, please wait...",
    "20264": "Found in",
    "20265": "Save the planning",
    "20266": "Do you wish to overwrite the current planning or create a new one?",
    "20267": "Create new planning",
    "20268": "Overwrite",
    "20269": "furnplan - dispatching the planning '#1' with number '#2'",
    "20270": "You can find the pdf document of the planning '#1' with the number '#2' in the attachment.",
    "20271": "furnplan - dispatching the planning",
    "20272": "Please find the planning in the PDF document in the attachment",
    "20273": "Configuration of the system service",
    "20274": "File",
    "20275": "Finish",
    "20276": "Configuration",
    "20277": "System service",
    "20278": "Transfer between (time):",
    "20279": "Maximum concurrent connections:",
    "20280": "Waiting period between the test intervals:",
    "20281": "Install",
    "20282": "Reinstall",
    "20283": "Start service",
    "20284": "Stop service",
    "20285": "Do you really want to stop the service?",
    "20286": "Stop service?",
    "20287": "Do you really want to uninstall the service?",
    "20288": "Uninstall?",
    "20289": "Configuration was saved successfully.",
    "20290": "Success",
    "20291": "Configuration could not be saved successfully.",
    "20292": "Active plannings",
    "20293": "Detecting active plannings ...",
    "20294": "Path",
    "20295": "Name",
    "20296": "User",
    "20297": "IP",
    "20298": "Locked since",
    "20299": "Close",
    "20300": "Refresh",
    "20301": "Insert into established planning",
    "20302": "Sorting",
    "20303": "upwards",
    "20304": "downwards",
    "20305": "Sorting",
    "20306": "Reset",
    "20307": "Only show the categories/attributes which are containing a value",
    "20308": "Inherit",
    "20309": "Do not inherit",
    "20310": "Show letters in plain text",
    "20311": "Log in",
    "20312": "Log in denied",
    "20313": "Log in",
    "20314": "An unexpected error has occurred",
    "20315": "Do you really want to close the application?",
    "20316": "(Unsaved data will be lost.)",
    "20317": "Unexpected error",
    "20318": "Approvals",
    "20319": "Change own details",
    "20320": "Log in details",
    "20321": "Additional information",
    "20322": "First name",
    "20323": "Surname",
    "20324": "Department",
    "20325": "Save (local)",
    "20326": "User control is active",
    "20327": "Authorizations",
    "20328": "Group",
    "20329": "Departments",
    "20330": "Approvals",
    "20331": "User",
    "20332": "Edit",
    "20333": "Description",
    "20334": "Description",
    "20335": "Do you really wish to delete the authorization '#1'?",
    "20336": "Delete the authorization?",
    "20337": "Settings",
    "20338": "Stores",
    "20339": "Do you really want to delete the department named '#1'?",
    "20340": "Delete department?",
    "20341": "Name of the department is missing",
    "20342": "By",
    "20343": "Expires on",
    "20344": "By admin",
    "20345": "Starting",
    "20346": "To",
    "20347": "Release type",
    "20348": "User",
    "20349": "Group",
    "20350": "Department",
    "20351": "Store",
    "20352": "Customer number D+H",
    "20353": "Address",
    "20354": "Should the approval for '#2' really be deleted by user '#1'?",
    "20355": "Delete the approval?",
    "20356": "Active",
    "20357": "The user is active",
    "20358": "Group/User rights",
    "20359": "Departments",
    "20360": "Group allocation",
    "20361": "User rights",
    "20362": "Do you really want to delete the user named '#1'?",
    "20363": "Delete the user?",
    "20364": "Do you really want to delete the approval for the user '#1'?",
    "20365": "A username like '#1'   already exists.",
    "20366": "User name is missing",
    "20367": "User name already exists",
    "20368": "furnplan - user administration",
    "20369": "Synchronize",
    "20370": "Send",
    "20371": "The configuration file with the branches could not be read.",
    "20372": "Synchronisation failed",
    "20373": "Reading branch specific data ...",
    "20374": "Path has not been defined.",
    "20375": "Branch login failed.",
    "20376": "Branch-specific user configuration could not be read.",
    "20377": "Error while synchronising",
    "20378": "Log debug messages:",
    "20379": "Hour",
    "20380": "Seconds",
    "20381": "Phone",
    "20382": "Log off",
    "20383": "User:",
    "20384": "User defined",
    "20385": "Create global group",
    "20386": "Authorizations",
    "20387": "Assigned",
    "20388": "Loading project manager, please wait...",
    "20389": "Recycle bin",
    "20390": "Permanently delete all plannings",
    "20391": "Recover all plannings",
    "20392": "Delete planning permanently",
    "20393": "Recover planning",
    "20394": "Deleting plannings, please wait...",
    "20395": "Do you really want to permanently delete the plannings?",
    "20396": "Delete the plannings permanently?",
    "20397": "Recovering plannings, please wait...",
    "20398": "Deleted plannings",
    "20399": "Do you really want to permanently delete the plannings? This action cannot be undone.",
    "20400": "Subtotal",
    "20401": "Another instance of this application is already running.",
    "20402": "Application is already running.",
    "20403": "The path of furnplan could not be determined.",
    "20404": "The application could not be initalized, 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": "Error while sending the PDF document.",
    "20409": "Error while printing the PDF document.",
    "20410": "Help documentation could not be found.",
    "20411": "Showroom suggestions",
    "20412": "The directory '#1' could not be created.",
    "20413": "Please check the permissions on the directory '#1'.",
    "20414": "Could not verify login credentials",
    "20415": "The projectmanager was deactivated because of insufficient permissions for the directory '#1'. Please contact your adminstrator.",
    "20416": "Exceeded the limit of '#1' plannings. No more plannings can be saved.",
    "20417": "Allowed quantity op plannings has been reached",
    "20418": "Import existing plannings",
    "20419": "Save as standard view",
    "20420": "Successfully saved as default view.",
    "20421": "Saved default view.",
    "20422": "Short text",
    "20423": "Do you really want do delete the entry '#1'?",
    "20424": "Delete entry?",
    "20425": "Can be used by all users",
    "20426": "Training videos",
    "20427": "MORE INFORMATION ON THE DRAWING",
    "20428": "The installed furnplan licence file has expired. Please update the current installation.",
    "20429": "This version is more than one year old, please contact the furnplan Support team to receive a new version.",
    "20430": "The licence is incorrect, please contact the furnplan support team.",
    "20431": "Your licence is expired since #1 day(s), please get in touch with our furnplan Support team.",
    "20432": "This version is more than one year old, please contact the furnplan support team to obtain the latest version.",
    "20433": "Do you wish to overwrite the current planning or create a new one?",
    "20434": "Hub cannot be reached, cannot retrieve status",
    "20435": "Generate new version",
    "20436": "Information",
    "20437": "The planning cannot be overwritten. Please enter a new filename.",
    "20438": "Enter password",
    "20439": "To delete, please enter your password:",
    "20440": "OK",
    "20441": "Cancel\n",
    "20442": "Wrong password!",
    "20443": "Wrong password!",
    "20444": "Discount",
    "20445": "Special price",
    "20446": "Change password",
    "20447": "Old password",
    "20448": "New password",
    "20449": "New password (Wdh)",
    "20450": "Please enter your current password",
    "20451": "Please enter your new password",
    "20452": "Passwords do not match",
    "20453": "Current password is wrong",
    "20454": "Discount",
    "20455": "Specified discount not possible",
    "20456": "Old price",
    "20457": "New",
    "20458": "Refresh",
    "20459": "Reset",
    "20460": "Nick",
    "20461": "Info",
    "20462": "You are not allowd to perform this action.",
    "20463": "Error while creating the PDF document",
    "20464": "Include customer information from project manager",
    "20465": "Find manufacturer or catalogue",
    "20466": "The installed furnplan licence file has expired. Please update the current installation.",
    "20467": "hide #hide#",
    "20468": "show #hide#",
    "20469": "Delete plannings after",
    "20470": "Delete plannings in the recycle bin after",
    "20471": "days.",
    "20472": "The selected plan cannot be opened because it is already in use.",
    "20478": "The PDF cannot be saved because the file is still open.",
    "20480": "Restore planning",
    "20481": "Furnplan is not closed correctly, should the last planning be restored?",
    "20482": "created at:",
    "20483": "last login:",
    "20484": "last change:",
    "20485": "The <a href=\"javascript:OpenURLInInternalBrowser('https://docs.google.com/document/d/1XYBGdAzdEDi7UpsD8PiNjFe06KvpkmEQiRkzG3J2ywU/edit#heading=h.wcnadr8duyeq','TITLE')\"> Terms of Use</a> have been read and accepted.",
    "20486": "Terms of use",
    "20487": "Please accept our Terms of Use",
    "20488": "Update index",
    "20490": "Render options",
    "20491": "AI image generation",
    "20500": "Catalog settings",
    "20501": "Catalog language",
    "20502": "Basic settings",
    "20503": "Print settings",
    "21000": "An error occured",
    "21001": "No image to scale",
    "21002": "The X and Y scale of the image is incorrect",
    "21003": "Licence renewed.",
    "21004": "The customer information has been updated.",
    "21005": "We are not in furnplan, but on the website of the manufacturer.",
    "21006": "Factor",
    "21007": "Evaluate objects",
    "21008": "Evaluate this object and all selected - not the others",
    "21009": "Show in printout floor plan",
    "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": "Leave",
    "21017": "Button highlight in orange",
    "21018": "Show frame for button",
    "21019": "manufacturing 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 articles, 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": "Countertops",
    "25000": "Directory attributes",
    "25001": "Directory name",
    "25002": "General",
    "25003": "Customer Address",
    "25004": "Delivery address",
    "25005": "Invoice address",
    "25006": "Address - Architect",
    "25007": "Short description",
    "25008": "Designer",
    "25009": "Order type",
    "25010": "Commission",
    "25011": "Delivery date",
    "25012": "Calendar week",
    "25013": "Note",
    "25014": "Header",
    "25015": "Footer",
    "25016": "Created on",
    "25017": "Changed on",
    "25018": "Old planning number",
    "25019": "Planning number",
    "25020": "Salutation",
    "25021": "Title",
    "25022": "First name",
    "25023": "Surname",
    "25024": "Company",
    "25025": "Street",
    "25026": "ZIP-code",
    "25027": "City",
    "25028": "Country",
    "25029": "e-mail",
    "25030": "Phone - company",
    "25031": "Phone - private",
    "25032": "Phone - mobile",
    "25033": "Fax",
    "25034": "Letter salutation",
    "25035": "Customer address",
    "25036": "Recommended Retail Price excluding delivery",
    "25037": "Additional address",
    "25038": "Mr.",
    "25039": "Ms.",
    "25040": "Order Number",
    "25041": "Family",
    "25042": "Mr. and Ms.",
    "25043": "Delivery time",
    "25044": "Days",
    "25045": "Weeks",
    "25046": "Months",
    "25047": "Unknown",
    "25048": "The requested delivery time is not accepted",
    "25049": "Webservice is not available",
    "25050": "Please check internet connection",
    "25052": "Project details",
    "25053": "Receiver ILN",
    "25054": "Sender ILN",
    "28000": "Change log in details",
    "28001": "Change user details",
    "28002": "Approval - department",
    "28003": "Approval - branch",
    "28004": "Visibility - Department",
    "28005": "Visibility - store",
    "28006": "Approval - User",
    "28007": "Work on subsidiary #1",
    "28008": "Use data in the local installation",
    "28009": "Visability - furnview",
    "28010": "Visibility- Department (Minimal)",
    "28250": "The user can change his login details",
    "28251": "The user can change his additional information",
    "28252": "The user can create approvals to his assigned departments",
    "28253": "The user can create approvals to his assigned branches",
    "28254": "The user can use the directories of all users in his assigned department",
    "28255": "The user can use the diretories of all users in his assigned branch",
    "28256": "The logged on user can create approvals for other users in his assigned branch",
    "28257": "Enable logged in users to set the synchronisation properties for folders",
    "28258": "The user can only see files from departments for which the permissions are set",
    "28500": "Administrators",
    "28501": "User",
    "28750": "Group with administration rights",
    "28751": "Group with the standard user rights",
    "30000": "TEST TEXT ABC äöü      Менеджер Позади никакой сосед&  散りぬるを  هذا اختبا",
    "30001": "TEST TEXT ABC äöü      Менеджер Позади никакой сосед&  散りぬるを  هذا اختبا",
    "30002": "Navigation",
    "30003": "Searching dealer",
    "30004": "Translations",
    "30005": "Language dependent text in furnplan",
    "30006": "Source language",
    "30007": "Target language",
    "30008": "Show pages",
    "30009": "Show date of the last changes",
    "30010": "Only show changed source texts",
    "30011": "Only show changed target texts",
    "30012": "Last change",
    "30013": "furnplan in use",
    "30014": "Contractual partner",
    "30015": "Test phase",
    "30016": "Use all filter settings",
    "30017": "Contractual partner since",
    "30018": "Filter data",
    "30019": "Export data",
    "30020": "Quantity",
    "30021": "Filtered",
    "30022": "Indicated",
    "30023": "Show filter",
    "30024": "Hide filter",
    "30025": "Webservice",
    "30026": "You are not logged onto the system.",
    "30027": "Your login status",
    "30028": "Login status",
    "30029": "Log off from the system",
    "30030": "Server information",
    "30031": "Logged on user",
    "30032": "You do not have the permissions needed to open this page.",
    "30033": "Download language table",
    "30034": "Confirm target text",
    "30035": "Full Name",
    "30036": "Country",
    "30037": "Last action",
    "30038": "Date",
    "30039": "Manual",
    "30040": "Filter dimensions",
    "30041": "Filter articles",
    "30302": "Show/hide further options",
    "30303": "Will be saved",
    "30304": "Successfully saved",
    "30305": "Stay logged in",
    "31039": "Revert version",
    "31040": "Accept version",
    "31041": "Activate country switch",
    "31042": "Activate internal manufacturer",
    "31043": "Activate developer status",
    "31044": "Activate Steering Retail Organisation",
    "31045": "Change version",
    "40000": "Manufacturer data",
    "40001": "Installing components",
    "40002": "Extracting and copying data (this process could take a few minutes).",
    "40003": "Manufacturer selection",
    "40004": "Which manufacturer should be installed?",
    "40005": "Required components",
    "40006": "Installing the necessary components. Please wait ...",
    "40007": "Check installed furnplan version",
    "40008": "It is not allowed to install a retail version of furnplan on top of a regular version.",
    "40009": "Register components",
    "40010": "Manufacturer data could not be replaced because furnplan is in use.",
    "40011": "Adobe Acrobat is required but not installed.",
    "40012": "Internet Explorer version 6 or higher is required.",
    "40013": "Preparing the installation of the components.",
    "40014": "Total number of components:",
    "40015": "Installing components",
    "40016": "Processing additional file operations.",
    "40017": "Completed.",
    "40018": "Adobe Acrobat Reader",
    "40019": "Microsoft Visual C++ Redistributable Package",
    "40020": "Installing Adobe Acrobat Reader",
    "40021": "Installing Microsoft Visual C++ Redistributable Package",
    "40022": "Microsoft .Net Framework 2.0",
    "40023": "Installing Microsoft .Net Framework 2.0",
    "40024": "Microsoft Installer 3.1 v2",
    "40025": "Installing Microsoft Installer 3.1 v2",
    "40026": "Mircosoft Data Access Components 2.8 SP1",
    "40027": "Installing Mircosoft Data Access Components 2.8 SP1",
    "40028": "Starting Furnplan Updater",
    "40029": "Furnplan Updater",
    "40030": "Create links",
    "40031": "Link on the desktop",
    "40032": "Link in the start menu",
    "40033": "Stand alone installation (plenary installation)",
    "40034": "Network installation (server)",
    "40035": "Network installation (client)",
    "40036": "furnplan Updater",
    "40037": "User-defined installation",
    "40038": "Additional components",
    "40039": "Additional tasks",
    "40040": "Select manufacturer",
    "40041": "Please select at least one manufacturer.",
    "40042": "The service FurnplanTransferService could not be finished. Please stop the service manually and start the setup again. The service must be started manually after the installation.",
    "40043": "The service FurnplanTransferService could not be restarted. Please run the service manually.",
    "40044": "New project manager",
    "40045": "Removing backup files",
    "40046": "Remove backup files",
    "40047": "Restoring backup...",
    "40048": "Deleting files...",
    "40049": "An error occurred during installation, restoring backup data.",
    "40050": "Scene contains errors in planning! Please solve the issues or consult the manufacturer for a possible solution",
    "40051": "In this model, articles are commercially hidden and may be present in the drawing!",
    "40052": "Back",
    "50000": "Have you heard the sound ?",
    "50002": "Ask a question to the manufacturer",
    "51001": "Decoration",
    "51002": "Vases",
    "51003": "Plants",
    "51005": "Images",
    "51006": "Carpets",
    "51007": "Books",
    "51008": "Office supplies",
    "51009": "Lighting",
    "51010": "Electrical appliance",
    "51012": "TV",
    "51013": "Audio",
    "51014": "Other",
    "51015": "Furniture",
    "51016": "Sofa",
    "51017": "Chairs",
    "51018": "Tables",
    "51019": "People",
    "51020": "Building objects",
    "51021": "Geometrical shape",
    "51022": "Fireplaces",
    "51023": "Piling equipment",
    "51024": "Back to List",
    "51025": "Cleanup failed",
    "51026": "This function is only available in 2D Top View",
    "51027": "Sliding door",
    "51028": "Upper track sliding door - Glass",
    "51029": "Upper track sliding door - Wood",
    "51030": "delete measuring points",
    "51031": "Enable pick polygon",
    "51032": "Shiftable shapes",
    "51033": "Manufacturer",
    "51034": "Move left",
    "51035": "Move right",
    "51036": "Move up",
    "51037": "Move down",
    "51038": "Move forward",
    "51039": "Move front",
    "51040": "Create elliptic shape",
    "51041": "Rotate texture",
    "51042": "Insert new point",
    "51043": "Rounding corner",
    "51044": "Delete this point",
    "51045": "Set offset",
    "51046": "Create cuboid",
    "51047": "additional camera options",
    "51048": "Load defaults",
    "51049": "Graphics engine",
    "51050": "For inactive work",
    "51051": "finetuning",
    "51052": "Real time",
    "51053": "At standstill",
    "51054": "Superimpose on the click of a button",
    "51055": "Include ceiling",
    "51056": "Versioninfo Manufacturer",
    "51057": "Include the removal  of linked  additionals",
    "51058": "Release settings",
    "51059": "Sun",
    "51060": "Autosave *.flm file",
    "51061": "Display interval",
    "51062": "Scene safecopy interval",
    "51063": "Quit renderer",
    "51064": "Position angle",
    "51065": "Height angle",
    "51066": "Add sunlight",
    "51067": "-low quality<br>-quick preview",
    "51068": "-good quality<br>-suitable for most workstations",
    "51069": "-better quality<br>-prolonged render time",
    "51070": "-best quality<br>-advanced videocards reduce reder time<br>(Warning) Uses all available resources, could render your workstation inoperable!",
    "51071": "Experimental mode, should only be executed by developers!",
    "51072": "Expiration date:",
    "51073": "furnview",
    "51074": "You can view your planning on <b>{0}</b> using the following number:",
    "51075": "An email has been sent to <b>{0}</b>.",
    "51076": "Unable to start transferconfiguration",
    "51077": "versions",
    "51078": "export walls",
    "51079": "Contact (furniture store)",
    "51080": "Name",
    "51081": "Phone",
    "51082": "Click here to view the planning with the browser",
    "51083": "Upload",
    "51084": "Sofa - configurable",
    "51085": "Bar stool",
    "51086": "to new page..",
    "51087": "Wall decal",
    "51088": "Black",
    "51089": "White",
    "51090": "Doors",
    "51091": "Include floor creation",
    "51092": "Generate floor",
    "51093": "Base floor",
    "51094": "Clear glass door",
    "51095": "Frosted panel glazed door",
    "51096": "Frosted glass door",
    "51097": "Single wing door",
    "51098": "Wing door with sash bars",
    "51099": "Delete image",
    "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": "gray",
    "51109": "brown",
    "51110": "black/white",
    "51111": "Here you can select a color group",
    "51112": "You may also enter the NCS-code",
    "51113": "Please select a color tone",
    "51114": "Please select a colour",
    "51115": "The selected special color is not available",
    "51116": "The selected special color is not available",
    "51117": "The selected special color is not available",
    "51118": "The selected special color is not available",
    "51119": "NCS Color Picker",
    "51120": "RAL Color Picker",
    "51121": "RGB color picker",
    "51122": "Enter RAL number",
    "51123": "Enter NCS number",
    "51124": "Image frames",
    "51125": "Framed canvas",
    "51126": "Paintings",
    "51127": "Architecture",
    "51128": "Diverse",
    "51129": "Graphic",
    "51130": "Nature",
    "51131": "Animals",
    "51132": "Children",
    "51133": "Sikkens color picker",
    "51134": "You can also enter the Sikkens color code directly:",
    "51135": "ENTER SIKKENS CODE",
    "51136": "Sikkens code has the wrong format! Please check example: SIKKENS ON:0090",
    "51137": "Sikkens code could not be found.",
    "51138": "You can also enter a RALDESIGN-code directly:",
    "51139": "RALDESIGN-code has the wrong format! Please check example: RAL 0001500",
    "51140": "RALDESIGN-code could not be found!",
    "51141": "Enter RALDESIGN-CODE",
    "51142": "RALDESIGN color picker",
    "51143": "Sky",
    "51144": "Panorama",
    "51145": "Evening mood",
    "51146": "Sunny",
    "51147": "Overcast",
    "51148": "Overcast_2",
    "51149": "Sunset",
    "51150": "Background image",
    "51151": "Slightly clouded",
    "51152": "Overcast",
    "51153": "Electrical Installation",
    "51154": "Curtains",
    "51155": "Stairs",
    "51156": "Apparel",
    "51157": "Clear",
    "51158": "Please note: The files need to be optimized.",
    "51159": "ERROR: Check files.",
    "51160": "ERROR: A serious logic error has occurred!",
    "51161": "Variant '{value}' of type '{prop}' will no longer be available starting {DD}/{MM}/{YYYY} !",
    "51162": "Evaluate",
    "51163": "View",
    "51164": "Number of packages",
    "51165": "Cut-off",
    "51166": "Package surface",
    "51167": "Room",
    "51168": "Determine floors",
    "51169": "Length",
    "51170": "Plinth",
    "51171": "Total length",
    "51172": "Packet length",
    "51173": "This item cannot be added as an additional item! This item can only be entered directly or via the catalogue.",
    "51174": "Consists of",
    "51175": "Connections\n",
    "51176": "Power",
    "51177": "Note, for the %d light units with %d connections that you have selected, the total wattage is %.0f.~ Please check the ordered ballast.",
    "51178": "Studio image white",
    "51179": "Please note",
    "51180": "New room",
    "51181": "Enable modifications floor",
    "51182": "Add new floor",
    "51183": "Evaluate all articles within this range separately",
    "51184": "Show floor",
    "51185": "Floors & areas",
    "51186": "Analyze as article",
    "51187": "Do not show articles within this range",
    "51188": "Models have changed.\nThe changes apply to the following versions:",
    "51189": "The expression \"{value}\" of the feature \"{prop}\" is available from {DD}.{MM}.{YYYY}!",
    "51190": "Expression \"{value}\" of property \"{prop}\" is not available!\n",
    "51191": "Contact the manufacturer for custom designs!",
    "51192": "thru hole with enclosure",
    "51193": "Studio Scene",
    "51194": "Background white",
    "51195": "Background transparent",
    "51196": "Pantone code is invalid! Valid format: Pantone_XXXXX",
    "51197": "Pantone code could not be found!",
    "51198": "Enter Pantone code",
    "51199": "Pantone Color Picker",
    "51201": "Talis",
    "51202": "SCHÖNER WOHNEN collection",
    "51203": "Change collection",
    "51204": "The article '{article}' is no longer available",
    "51205": "The article '{article}' is available as of version {version} !",
    "51206": "The article '{article}' is since version {version} no longer available !",
    "51207": "This program is no longer available",
    "51208": "This program is available as of version {version} !",
    "51209": "This program is since version {version} no longer available !",
    "51211": "Style",
    "51212": "Mood",
    "51213": "Hand-colored sketch",
    "51214": "Render style",
    "51215": "Furnishing style",
    "51216": "Mesh lights (emission)",
    "51217": "Bloom effect",
    "52000": "Low",
    "52001": "Medium",
    "52002": "High",
    "52003": "Userdefined",
    "52004": "Fast image production</br>Short render time.",
    "52005": "Good image quality.</br> Long rendering.",
    "52006": "Excellent image quality.</br> Very long rendering.",
    "52007": "Attention!</br>No known / given  limitation render time \n",
    "52008": "Minutes",
    "52009": "Loading",
    "52010": "Hours\n",
    "52011": "Port",
    "52012": "In domain Y/N",
    "52013": "Avoid evaluation",
    "52014": "Activate evaluation",
    "52015": "Evaluations etc.",
    "52016": "Delete Redlining",
    "52017": "This planning includes redlining!",
    "52018": "This planning contains tailor-made products!",
    "52019": "This planning includes collisions!",
    "52020": "This program contains Redboxes!",
    "52021": "This program contains additional positions!",
    "52022": "Should this planning error be corrected now? (With \"No\" the file will be saved and the error will be transferred to the order).",
    "52023": "The minimum dimension of %.1f cm is not met",
    "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": "Retail Price",
    "60050": "Save data in the cloud",
    "60051": "furncloud Number",
    "60052": "Save data in the Cloud",
    "60053": "Dealer ILN number",
    "60054": "Dealer shipto ILN data",
    "60055": "new shipto",
    "60056": "Dealer customer number",
    "60057": "cc-Mailadress",
    "60058": "shipto",
    "60059": "shipto number",
    "60060": "shipto description",
    "60061": "Please choose",
    "60062": "I wish to manage my orders via ILN number.",
    "60063": "What does this mean?",
    "60064": "I don´t know my ILN number. I would like to use my customer number.",
    "60065": "The ILN (International Location Number) is used in electronic messaging between customers and suppliers, where location advice is important.",
    "60066": "This number consists of 13 digits.",
    "60067": "This number can be used to identify both physical locations and legal entities.",
    "60068": "It also can be used to identify something as specific as a particular shelf in a store.",
    "60069": "Being able to identify locations with a unique number is the key to many business processes.",
    "60070": "new password",
    "60071": "Current price",
    "60072": "<-- Save -->",
    "60073": "Domains",
    "60074": "General calulation",
    "60075": "Cloud",
    "60076": "Proxy",
    "60077": "login",
    "60078": "confirm password",
    "60079": "Texts",
    "60080": "Use StoreAdministration",
    "60081": "Click here if you wish to activate/deactivate the Store Administration.",
    "60082": "The FurnplanTransferService will be automatically removed when deactivated",
    "60083": "Check delay",
    "60084": "Transfer Hour (0-24)",
    "60085": "Last transfer:",
    "60086": "TransferService running",
    "60087": "TransferService installed",
    "60088": "Actions",
    "60089": "Transfer Now",
    "60090": "Log",
    "60091": "Targetpath",
    "60092": "Name of Store",
    "60093": "Store Properties",
    "60094": "export prices",
    "60095": "TreeView",
    "60096": "Caution!",
    "60097": "Admin Dialog",
    "60098": "Please Insert a valid ILN!",
    "60099": "Message",
    "60100": "ProgShort",
    "60101": "ILN",
    "60102": "ERPsign",
    "60103": "PDF",
    "60104": "Max. Discount",
    "60105": "Buyer rebate",
    "60106": "Article-ref.",
    "60107": "Queries all fields in table for entered text.",
    "60108": "Filter all table rows, in which the specified text is not found.",
    "60109": "All values should be entered",
    "60110": "Save as ...",
    "60111": "Saved filter:",
    "60112": "Advanced filter options ..",
    "60113": "delete-->",
    "60114": "delete -->",
    "60115": "Already set",
    "60116": "Only digits allowed!",
    "60117": "CcMailAdress",
    "60118": "incorrect password!",
    "60119": "passwort correct ... save!",
    "60120": "Fontsize\n",
    "60121": "orgResX",
    "60122": "orgResY",
    "60123": "ResX",
    "60124": "ResY",
    "60125": "CustNr",
    "60126": "Logfile",
    "60127": "Main log",
    "60128": "Running thread as",
    "60129": "ExternCalcFile",
    "60130": "Value",
    "60131": "Default value\n",
    "60132": "Null-values allowed",
    "60133": "Guid",
    "60134": "guid",
    "60135": "Transfers the Furnplan configuration to the available branches",
    "60136": "Export table in different format",
    "60137": "Manufct.",
    "60138": "Dealer locator - extended",
    "60139": "TreeView",
    "60140": "Scene contains no lighting.",
    "60141": "Render with furnray",
    "60142": "Sketch",
    "60143": "Normal",
    "60144": "High",
    "60145": "Main lighting",
    "60146": "No main lighting",
    "60147": "Low",
    "60148": "Medium",
    "60149": "High",
    "60150": "Additional object information",
    "60151": "Two functions on one button",
    "60152": "Activate furnray with a left mouseclick",
    "60153": "Superimpose with a right mouseclick",
    "60154": "You will receive an email as soon as the order has been processed",
    "60155": "eMail",
    "60156": "The right-click function is not available in Terminal Server mode.",
    "60157": "Save",
    "60158": "Reset",
    "60159": "like furnplan",
    "60160": "furncloud history",
    "60161": "Apply this value to all corresponding models.",
    "60162": "Prevents the use of values taken from other models.",
    "60163": "Very little",
    "60164": "Cloud password:",
    "60165": "The cloud password is necessary for downloading files via our web service.",
    "60166": "Default rebate",
    "60167": "Flags",
    "60263": "Server",
    "60274": "Loading",
    "60276": "Floor reflection",
    "60277": "Mirror reflection",
    "60278": "Edge shadow",
    "60279": "<strong>Attention</strong>: This is a <strong>beta-phase!</strong> version of 'furnray'. Differences in the plannings could occur. If you have any questions, please get into contact with",
    "60280": "furnray can only be used once the furncloud upload functionality is activated. A manual on this subject can be found <a href=\"https://goo.gl/6T4b7g\" target=\"_blank\"> here.</a> </br> Please contact our support by phone or email should there be any questions",
    "60281": "furnray",
    "60282": "Print article numbers (views)",
    "60283": "Redlining",
    "60284": "Electroplan",
    "60285": "The more lighting is planned in the scene, the lower the main lighting should be!",
    "60286": "Move camera with left mouse control",
    "60287": "Mo. - Fr., 9am - 5pm (CET)",
    "60288": "Spouses",
    "60289": "Family",
    "60290": "Light",
    "60291": "Dark",
    "60292": "Please restart the program to apply the changes",
    "60293": "Windowsill:",
    "60294": "Installing",
    "60295": "De-installation",
    "60296": "Use old redlining",
    "60297": "The general terms and conditions are read and accepted.",
    "60298": "Window division:",
    "60299": "Edge line in furniture color",
    "60300": "Automatically transfer properties for only one object in the scene",
    "60301": "Duplicate",
    "60302": "Add image",
    "60303": "Add line",
    "60304": "Add text",
    "61001": "Caution!",
    "61002": "Changelog",
    "61003": "The render export only works with data from an already released customer version!",
    "61004": "Adjust the track width",
    "61005": "St-Arrangement",
    "61010": "Set the current material as the default",
    "61011": "Behavior of dimensional chains",
    "61012": "Register point in right angle",
    "61013": "2D dimensional chains for printing ground plan",
    "61014": "Change inner / outer surface of the wall.",
    "61015": "The planning you tried to open has been redirected to catalogue %s. For making changes, please use this catalogue only.",
    "61016": "Primary color",
    "61017": "Secondary color",
    "61018": "Material",
    "61019": "Tiles",
    "61020": "Stone",
    "61021": "Leather and Textiles",
    "61022": "Glass",
    "61023": "Chrome",
    "61024": "Wall decal",
    "61025": "2D frontal view - dimensional chain presentation",
    "61026": "Floor lamps",
    "61027": "Ceiling lights",
    "61028": "Table lamps",
    "61029": "Wall-mounted lamps",
    "61030": "Undefined",
    "61031": "Mattress",
    "61032": "Customer",
    "61033": "e-mail address invalid",
    "61034": "Indirect lighting",
    "61035": "Import Edigraph file",
    "61036": "Outdoor",
    "61037": "Bathroom",
    "61038": "Restart after selection !?",
    "61039": "Some elements have been removed as there is no activation for this customer number.",
    "61040": "Import",
    "62000": "Camara is pointing to the outer wall! Please select another view",
    "62001": "furnray doesn't support custom images.",
    "62002": "or",
    "62003": "The use of criminal and illegal content (especially incitement to hatred and child pornography) is prohibited (see GT&C).\nPlease note that you must reimburse us for all costs in the event of claims arising from uploaded content (see GT&C).\n",
    "62004": "Cancel export?",
    "62005": "There are still unconfigured additional items, cancel the export?",
    "512100": "Without",
    "4041001": "Sikkens Color Picker 4041",
    "5051001": "Sikkens Color Picker 5051",
    "-1002": "Not connected on the lower side",
    "-1003": "Not connected on top!",
    "-1004": "Frontside is missng connection!",
    "-1005": "Not connected on the backside!",
    "-1006": "Detected Z-measurement is not possible due to the min/max values!",
    "-1007": "The room-height has been exceeded!",
    "-1008": "Is there enough space below the ceiling? (see pricelist)",
    "-1009": "Straight top shelf is too short!",
    "-1010": "Straight top shelf is too narrow!",
    "-1011": "Sloped top shelf is too short!",
    "-1012": "The height in the cupboard is too short!",
    "-1013": "Partial side bevelling not possible!",
    "-1014": "Complete side bevelling not possible!",
    "-1015": "Partial rear bevelling not possible!",
    "-1016": "Complete rear bevelling not possible!",
    "-1017": "Partial bevelling on the rear left (on corner units) not possible!",
    "-1018": "Complete bevelling on the rear left (on corner units) not possible!",
    "-1019": "Partial bevelling on the rear right (on corner units) not possible!",
    "-1020": "Complete bevelling on the rear right (on corner units) not possible!",
    "-1021": "The width cannot be reduced!",
    "-1022": "The depth cannot be reduced!",
    "-1023": "The height cannot be reduced!",
    "-1024": "Left bevelling only permitted with right hinge!",
    "-1025": "Right bevelling only permitted with left hinge!",
    "-1026": "Top horizontal bracket is too short!",
    "-1027": "Detected Y-measurement is not possible due to the min/max values!",
    "-1028": "Detected X-measurement is not possible due to the min/max values!",
    "-1029": "width expansion applied but  not allowed",
    "-1030": "depth expansion present and not allowed",
    "-1031": "YYYYMMDD or YYYYWW",
    "-1037": "Mark first point",
    "-1038": "Mark second point\n",
    "-1039": "Set the depth of the dimensional chain (move the mouse, then click with the left mouse button)\n",
    "aaa": "Depth enlarged and not allowed",
    "adminHtml.applicationBehavior.Collapse": "Fold",
    "adminHTML.applicationBehavior.directoryRow.question": "The specified directory does not exist, should the entered value be kept?",
    "adminHTML.applicationBehavior.directoryRow.question.caption": "Question",
    "adminHtml.applicationBehavior.exception": "An error has occurred",
    "adminHtml.applicationBehavior.Expand": "Flap open",
    "adminHtml.applicationBehavior.import.exception": "The import could not be carried out.\\r\\nPlease check whether ApplicationBehavior contains correct values.",
    "adminHtml.applicationBehavior.InitializationFailed": "An error has occurred while initializing the applicationBehavior",
    "adminHtml.applicationBehavior.loading": "Loading ..",
    "adminHtml.applicationBehavior.Restore": "Do you really want to reset these settings?",
    "adminHtml.applicationBehavior.Search": "Search",
    "adminHtml.applicationBehavior.Search.Close": "Stop searching",
    "adminHtml.applicationBehavior.ValidatingEditorMessage": "The value {0} is not correct. Please observe {1}",
    "adminHtml.directoryrow.selectDirectory": "Please enter the directory name",
    "adminHtml.DSGVO.TabCaption": "GDPR",
    "adminHtml.licenseupdate.license": "License",
    "adminHtml.licenseupdate.noPathProvided": "No download path was provided for the store",
    "adminHtml.licenseupdate.notInitialized": "License Updater wasn't initialized",
    "adminHtml.licenseupdate.serverNotReachable": "Server is not reachable",
    "adminHtml.licenseupdate.updateDealerInfo": "Update customer information",
    "adminHtml.licenseupdate.updateLicense": "Update license",
    "adminHtml.migration.shouldImport.caption": "Importing",
    "adminHtml.migration.shouldImport.question": "An applicationBehavior file has been found in your furnplan folder. \\r\\n\\r\\n  Do you wish to import this file?",
    "adminHtml.migration.shouldImport.safetyQuestion": "An applicationBehavior file has been found in your furnplan folder. \\r\\n\\r\\n  Do you wish to import this file?",
    "adminHtml.numberrow.errorBig": "The value must be greater than <b>{0}</b>.",
    "adminHtml.numberrow.errorFooter": "The value is set to {0} in order to prevent errors.\n",
    "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 an integer 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 want to continue anyway?",
    "adminHtml.ServiceInstaller.UseSystemAccount": "Use local  to system icon",
    "adminHtml.ServiceInstaller.UseUserAccount": "Utilising users",
    "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 request.",
    "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": "Default discount",
    "administrationX.articlelevel": "Calculation at item level",
    "administrationX.articleNotFound.caption": "Articles were not found",
    "administrationX.articleNotFound.content": "Sorry, the items 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": "Add as a participant in store management",
    "administrationX.branchManagement.deleteInfo.caption": "branch management information",
    "administrationX.branchManagement.deleteInfo.content": "The store is added to store management. The individual configuration planning has been deleted. Please remember to perform a new configuration planning.",
    "administrationX.branchManagement.masterInfo": "The main branch is always part of branch management.",
    "administrationX.branchManagement.participants": "Branch management participants",
    "administrationX.branchManagement.remove.deleteInfo.content": "The store has been removed from branch management. The individual configuration planning has been deleted. Please remember to inform the store that a new configuration planning must be performed.",
    "administrationX.calculation.erpSigns": "ERP signs",
    "administrationX.calculation.programShortcut": "Program shortcut",
    "administrationX.calculation.referenceArticleNumber": "Reference article number",
    "administrationX.caption.resetAll": "Reset",
    "administrationX.changeCustomerNumber": "Switching the customer number was not successful.",
    "administrationX.codepage": "Codepage for import and export",
    "administrationX.configuration.delete.failed.caption": "Delete failed",
    "administrationX.configuration.delete.failed.content": "It is not possible to delete the configuration because it's currently 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 line be deleted?",
    "administrationX.deleteLogo": "Delete logo",
    "administrationX.deleteLogo.content": "Should the image for the logo be deleted?",
    "administrationX.discard": "Discard",
    "administrationX.executeExport": "Execute 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": "Data export 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 finalized.",
    "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": "Individual settings",
    "administrationX.info.selectProgramCaption": "Select program",
    "administrationX.info.selectProgramContent": "Please select at least one program.",
    "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 input",
    "administrationX.invalidPleaseCorrect": "Please correct invalid entries  before saving.",
    "administrationX.lastExport": "Last export from",
    "administrationX.license": "Renew license and customer information",
    "administrationX.licenseNew": "Licenses and customer information have been renewed.",
    "administrationX.licenseNotNew": "Licenses and customer information have not been renewed.",
    "administrationX.link": "Link",
    "administrationX.live.deletedPrintConfigurationCapture": "Configuration deleted",
    "administrationX.live.deletedPrintConfigurationText": "Another user has deleted the configuration you are currently editing.",
    "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 changes that have not been exported. Do you want to export  the configuration now?",
    "administrationX.notInheritable": "Not inheritable",
    "administrationX.notPermission": "Insufficient permissions to change the configuration of this store.",
    "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": "In this area, settings can be made for planning purposes.",
    "administrationX.planningGroupName": "Planning settings",
    "administrationX.planningNumberMaxInfo": "Represents the number up to which the planning numbers are counted up.",
    "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": "Proposed/Preferred",
    "administrationX.print.alreadyUploaded": "This image has already been uploaded.",
    "administrationX.print.customAddressLine": "Custom address line:",
    "administrationX.print.customLogo": "Custom logo:",
    "administrationX.print.format": "The dimensions of this image should be 1000 px * 500 px.",
    "administrationX.print.formatHeader": "The format of your image must be 1000 px * 50 px.",
    "administrationX.print.large": "File is too large",
    "administrationX.print.standard.currentFoot": "Currently uploaded address line",
    "administrationX.print.standard.currentLogo": "Current uploaded logo",
    "administrationX.profile": "profile",
    "administrationX.profile.delete.failed.content": "It is not possible to delete the profile because it's currently selected.",
    "administrationX.profilemanagement": "Profile management",
    "administrationX.profilePin": "Profilepin",
    "administrationX.profiles": "Profiles",
    "administrationX.programcalculation.onlyIndividualValues": "Display individual values only",
    "administrationX.releaseId": "Release Id",
    "administrationX.removeGroup": "Delete selected group",
    "administrationX.removeRow": "remove row",
    "administrationX.renewalNotSuccessful": "Renewal not successful",
    "administrationX.renewalSuccessful": "Renewal successful",
    "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": "Purchase price reduction",
    "administrationX.table.manufacturerId": "Manufacturer Id ERP",
    "administrationX.table.maximumDiscount": "Maximum discount",
    "administrationX.table.standardDiscount": "Standard discount",
    "administrationX.title.bequeathed": "Activate/deactivate value inheritance",
    "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": "AI image - direct",
    "aiImageGen.AiFurnray": "AI image - with furnray prerender",
    "aiImageGen.aiLabel": "AI image",
    "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 generates 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": "Note:",
    "aiImageGen.hintTxt": "The AI image generation may change or add image content or produce errors that are not intended. Please check the generated result before use.",
    "aiImageGen.noAI": "Furnray render only",
    "aiImageGen.noFurnray": "Rendering of scene",
    "aiImageGen.person": "Insert persons",
    "aiImageGen.renderStyle.ID_RENDER_COLOREDPENCIL": "Colored pencil style",
    "aiImageGen.renderStyle.ID_RENDER_COPICMARKER": "Copic marker style",
    "aiImageGen.renderStyle.ID_RENDER_MIXED_MEDIA": "Mixed media style",
    "aiImageGen.renderStyle.ID_RENDER_PASTELCHALK": "Pastel & chalk style",
    "aiImageGen.renderStyle.ID_RENDER_PHOTO": "Photorealistic representation",
    "aiImageGen.renderStyle.ID_RENDER_WATERCOLOR": "Watercolor style",
    "aiImageGen.room": "Room / surroundings",
    "aiImageGen.room1": "Living room",
    "aiImageGen.room10": "Garage",
    "aiImageGen.room11": "Terrace",
    "aiImageGen.room12": "Garden",
    "aiImageGen.room2": "Bedroom",
    "aiImageGen.room3": "Entrance area / hallway",
    "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 adjusted:",
    "aiImageGen.sanitizeMessage": "Your user prompt has been customized:",
    "aiImageGen.scope": "Scope",
    "aiImageGen.scope.option1": "Simple, quick and beautiful incl. room and accessories",
    "aiImageGen.scope.option2": "Exclusively AI rendering of the scene",
    "aiImageGen.scope.option3": "Individual 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": "Sidewalk and busy street",
    "aiImageGen.windowView4": "Garden",
    "and_agree_with_this": "and agree with this.",
    "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": "Hide \"Cloud\" button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_COPY": "Hide \"Copy object\" button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_DELETE": "Hide \"Delete object\" button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_ECO_MOBILIER": "Hide \"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": "Hide \"New project\" button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_FILE_OPEN": "Hide \"Load project\" button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_FILE_SAVE": "Hide \"Save project\" button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_FURNRAY": "Shows the 'furnray' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_FURNSHOW": "Hides the furnshow button in the \"Help\" interface.",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_GENERAL_MAIL_RECEIVER": "General e-mail address for \"Ask a question to the manufacturer\" and \"Send order to manufacturer\".",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_GPRICE": "Hide \"G-Price\" button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_GPRICE_CTRL_RIGHT_MOUSE_CLICK": "Activate function \"CTRL-Right click on T-price\"",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_GPRICE_RIGHT_MOUSE_CLICK": "Activate function \"Right click on T-price\"",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_HELP": "Hide \"Help\" button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_HOME_VIEWER": "Hide button \"Homeviewer\"",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_KATA_ONOFF": "Hide \"Show/Hide catalog\" button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_MAIL": "Show 'Send planning' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_MAIL_MAIL": "Hide \"Send Planning\" button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_MAIL_MANUFACTURER_QUESTION": "Hide \"Send planning to manufacturer\" button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_MAIL_ORDER": "Hide \"Send order to manufacturer\" button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_MAIL_SUPPORT": "Hide \"Support Mail\" button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_MOVE": "Hide \"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": "Hide \"3D measurement\" button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_OPTIONS_OPTIONS": "Hide \"Options\" button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_OPTIONS_PRINT": "Hide \"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": "Hide \"Combination sub-positions\" tickbox",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_PRINT_ELECTRONIC_PLAN": "Shows the 'Electrical diagram' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_PRINT_GROUND_PLAN": "Shows the option 'Printout floor plan' 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\" tickbox",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_PRINT_PERS_AS_COLOR": "Shows the option 'Perspective as color 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": "Hide \"Print program names\" tickbox",
    "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 'Program search' button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_ROTATE": "Hide \"Rotate object\" button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_STRETCH": "Hide \"Default mode\" button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_TEAMVIEWER": "Hide \"TeamViewer\" button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_UNDO": "Hide \"Back\" button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_VIEW_FINETUNING": "Hide \"Fine-tuning\" button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_VIEW_GRAPHIC_SETTINGS": "Hide \"Graphics Settings\"",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_WALLS": "Hide \"Room planning\" button",
    "applicationBehaviorDefine.dht.info.APP_BUTTON_WITH_BORDER": "Frame around button in the new UI",
    "applicationBehaviorDefine.dht.info.APP_KATA_ONOFF": "Hide \"Manufacturer Catalog\"",
    "applicationBehaviorDefine.dht.info.CAM_VIEW_MAX_VALUES": "Defines, how many camerapositions can be saved in each planning.",
    "applicationBehaviorDefine.dht.info.DEALER_ALWAYS_SAVE_DHP_XML_PDF_PRINT__FILENAME_FURNVIEW_FILENAME_FORMAT": "Filename format, written for furnview in the DealerAlwaysSaveDhpXmlPdf. Variables: %F = Branch, %V = Dealer code, %A = Order number.",
    "applicationBehaviorDefine.dht.info.DEFAULT_DELIVERY_ADDRESS": "Deposit a default delivery address, when sending an order to a manufacturer.",
    "applicationBehaviorDefine.dht.info.DRAWING_LINE_POS_Z_0_UNDER_FRONT_VIEW": "Creates a line on the site \"Print views\" at height 0.",
    "applicationBehaviorDefine.dht.info.ERP_POS_CHANGE_NONINTEGER_VALUES": "Decimal places in the number of items in the item listing are truncated. \nExample:\n1.7  is displayed as 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 store 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 program name instead of the alternative name",
    "applicationBehaviorDefine.dht.info.furnplan-web.furnview.mailer.host": "Host name 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 related to the account",
    "applicationBehaviorDefine.dht.info.furnplan-web.furnview.mailer.port": "Mail server port number\n",
    "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 it. If the connection cannot be secured this way, the email will not be sent.",
    "applicationBehaviorDefine.dht.info.furnplan-web.furnview.mailer.secure": "When ON, the connection uses TLS to connect to the server. When OFF (default), the connection uses TLS if the server supports STARTTLS. Often needed for connections to port 465 (ON), rather not needed for ports 587 or 25 (OFF).",
    "applicationBehaviorDefine.dht.info.furnplan-web.furnview.mailer.user": "User name related to 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 via this port with the furnplan WebAPI",
    "applicationBehaviorDefine.dht.info.furnplan-web-api.server-stores": "Path to the store configuration for the WebAPI",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_ausf_center_preserve_local_properties": "Version checkbox \"Retain local settings\" checked?",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_ausf_center_show_level_1": "Version button \"Apply to all articles\"",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_ausf_center_show_level_2": "Version button 'Assign to one article'",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_ausf_center_show_level_3": "Version button 'Assign to assembly part'",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_ausf_center_show_preserve_local_properties": "Version button \"Retain local settings\"",
    "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 lower corner",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_show_wall_ABC_ANGLE_UP": "Wall ABC upper corner",
    "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 upper corner",
    "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": "Door planning",
    "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": "Individual 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 colors",
    "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": "Plan windows",
    "applicationBehaviorDefine.dht.info.furnview.furnplan-catalogue.old_kata_tree_toolbar_mhs_print": "Shows the MHS print button. Also, the URL for the MHS Web Service must be entered in the print settings in the upper part.",
    "applicationBehaviorDefine.dht.info.furnview.sonstiges.start_scene_dhp_path": "This value specifies the path to the DHP file which used as start scene in furnview. Please note this path applies to the system on which the furnview service is running.",
    "applicationBehaviorDefine.dht.info.FurnviewSettingsSendToWebService": "Determines whether or not furnview relevant data should be conveyed via the web service every time the save event is triggered",
    "applicationBehaviorDefine.dht.info.FurnviewSettingsType": "Standard - configuration for defaul login, Embedded - configuration for integration with other systems\n",
    "applicationBehaviorDefine.dht.info.FurnviewSettingsWebService": "The address of the furnview web service. Configures the endpoint to which Furnview settings are sent.",
    "applicationBehaviorDefine.dht.info.PREISSPALTEN_UNTERBINDEN": "Hides the individual as well as the total prices in the quick view and the PDF.",
    "applicationBehaviorDefine.dht.info.PRINT_FILENAME_ON_DOCUMENTS": "The name of the DHP-file will be shown on each page of the PDF.",
    "applicationBehaviorDefine.dht.info.PRINT_HIDE_0_PRICES": "When articles got the price 0, the price will be hide.",
    "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": "Create for each manufacturer a new page in the price listing.",
    "applicationBehaviorDefine.dht.info.PRINT_PAGES_BIT": "Select which PDF pages are printed. The selection in the print options is ignored.",
    "applicationBehaviorDefine.dht.info.PRINT_PREVENT_MANUFACTURER_NAME_AND_LOGO": "Hide the manufacturer name and logo in the pdf.",
    "applicationBehaviorDefine.dht.info.PRINT_WAWI_REF_NR_LEVEL_ART": "Write WaWiRefArtNr before the article text in the printout",
    "applicationBehaviorDefine.dht.info.PRINT_WAWI_REF_NR_LEVEL_MANU": "Manufacturer Id WaWi print",
    "applicationBehaviorDefine.dht.info.PRINT_WAWI_REF_NR_LEVEL_PROG": "Write WaWiRefArtNr in the printout after the program",
    "applicationBehaviorDefine.dht.info.PROJECTMANAGER_TAB": "Setting, which decides whether the projectmanager is visible/available or not.",
    "applicationBehaviorDefine.dht.info.ROOM_CEILING_DEFAULT": "A ceiling should always be created in the standard rooms.",
    "applicationBehaviorDefine.dht.info.ROOM_FLOOR_DEFAULT": "A floor should always be created in the standard rooms.",
    "applicationBehaviorDefine.dht.info.ROOM_HEIGHT_DEFAULT": "Default room height (specification in millimetres).",
    "applicationBehaviorDefine.dht.info.SHARE": "Show share button",
    "applicationBehaviorDefine.dht.info.ShowCefDeveloperTools": "Show development tools of Chromium embedded framework.",
    "applicationBehaviorDefine.dht.info.SUPPRESS_REOPEN_AFTER_CRASH_REQUEST": "Deactivating the possibility to restore plannings after a crash of furnplan.",
    "applicationBehaviorDefine.dht.info.Text_Discount": "Wir this setting the text \"Discount\" can be set in the printout",
    "applicationBehaviorDefine.dht.info.Text_SpecialPrice": "Wir this setting the text \"Special price\" can be set 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 VAT percentages in Furnplan.",
    "applicationBehaviorDefine.dht.info.WALL_THICKNESS_DEFAULT": "Default wall thickness (specification 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 program 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": "Deposit default e-mail address",
    "applicationBehaviorDefine.dht.text.APP_BUTTON_MAIL": "Hide \"Email\" Button",
    "applicationBehaviorDefine.dht.text.APP_BUTTON_NEWUI": "New UI",
    "applicationBehaviorDefine.dht.text.APP_BUTTON_PRINT_ARTICLE_NO_PRICE": "Hide \"No item prices\" button",
    "applicationBehaviorDefine.dht.text.APP_BUTTON_PRINT_ARTICLE_PRICE": "Hide \"Show item prices\" button",
    "applicationBehaviorDefine.dht.text.APP_BUTTON_PRINT_VIEW_EAN": "Print EAN",
    "applicationBehaviorDefine.dht.text.APP_BUTTON_PRINT_WITHOUT_CLOUD_ID": "Creating a PDF without a 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": "Herstellerkatalog",
    "applicationBehaviorDefine.dht.text.CAM_VIEW_MAX_VALUES": "Maximum amount of the saved camerapositions",
    "applicationBehaviorDefine.dht.text.DEFAULT_DELIVERY_ADDRESS": "Deposit a default delivery address",
    "applicationBehaviorDefine.dht.text.DRAWING_LINE_POS_Z_0_UNDER_FRONT_VIEW": "Create a line on height 0",
    "applicationBehaviorDefine.dht.text.ERP_POS_CHANGE_NONINTEGER_VALUES": "Truncate decimal places in article count",
    "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": "IWOfurn: Export purchase price minus discounts",
    "applicationBehaviorDefine.dht.text.EXPORT_IWOFURN_EMPTY_FILIALID": "Set IWOfurn Export store ID to empty",
    "applicationBehaviorDefine.dht.text.EXPORT_IWOFURN_FORCE_ORIG_PROGNAME": "IWOfurn Export with original program name",
    "applicationBehaviorDefine.dht.text.EXPORT_IWOFURN_VK_PRICE_INCL_DISCOUNT": "IWOfurn: Export sales price minus discount",
    "applicationBehaviorDefine.dht.text.furnplan-node.connection.host": "Domain of the administration server",
    "applicationBehaviorDefine.dht.text.furnplan-node.connection.port": "TCP port for logging in to the administration server",
    "applicationBehaviorDefine.dht.text.furnplan-node.furnplan.allowLocalCloudAccess": "Enable web interface for local planning",
    "applicationBehaviorDefine.dht.text.furnplan-node.get-app-connection-data-export-path": "Export path for App-Interface expressions",
    "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 username",
    "applicationBehaviorDefine.dht.text.furnplan-node.websocket.domain": "Domain / IP of this server",
    "applicationBehaviorDefine.dht.text.furnplan-node.websocket.externalPort": "TCP port for connection to browser",
    "applicationBehaviorDefine.dht.text.furnplan-node.websocket.internalPorts.max": "TCP port range for connection to internal furnplan instance (upper limit)",
    "applicationBehaviorDefine.dht.text.furnplan-node.websocket.internalPorts.min": "TCP port range for connection to 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 username",
    "applicationBehaviorDefine.dht.text.furnplan-web.connections.port": "HTTP port",
    "applicationBehaviorDefine.dht.text.furnplan-web.furnview.enableLocal": "Allow start by 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": "Requires TLS",
    "applicationBehaviorDefine.dht.text.furnplan-web.furnview.mailer.secure": "Encrypt",
    "applicationBehaviorDefine.dht.text.furnplan-web.furnview.mailer.user": "User name",
    "applicationBehaviorDefine.dht.text.furnplan-web.furnview.webui": "Path to 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 store configuration files",
    "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": "Version checkbox \"Retain local settings\" checked?",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_ausf_center_show_level_1": "Version button \"Apply to all articles\"",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_ausf_center_show_level_2": "Version button 'Assign to one article'",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_ausf_center_show_level_3": "Version button 'Assign to assembly part'",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_ausf_center_show_preserve_local_properties": "Version button \"Retain local settings\"",
    "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": "Program 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 lower corner",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_wall_ABC_ANGLE_UP": "Wall ABC upper corner",
    "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 upper corner",
    "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": "Door planning",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.old_kata_tree_show_wall_floor_onclick": "Walls",
    "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": "Planning colors",
    "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": "Planning 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": "Restore button",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.panel_right_register_old_accessories": "Accessory - window",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.panel_right_register_old_furnray": "furnray - window",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.panel_right_register_old_wall_selection": "Wall - window",
    "applicationBehaviorDefine.dht.text.furnview.furnplan-catalogue.toolbar_furnplan_toolbar": "MAPEO - window",
    "applicationBehaviorDefine.dht.text.furnview.sonstiges.start_scene_dhp_path": "Absolute path to the start scene (DHP file)",
    "applicationBehaviorDefine.dht.text.FurnviewSettingsSendToWebService": "Convey furnview-relevant data via web service",
    "applicationBehaviorDefine.dht.text.FurnviewSettingsType": "Configuration type",
    "applicationBehaviorDefine.dht.text.FurnviewSettingsWebService": "furnview Webservice 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": "The name of the DHP-file will be shown on the PDF",
    "applicationBehaviorDefine.dht.text.PRINT_HIDE_0_PRICES": "Hide 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 the manufacturer name and logo",
    "applicationBehaviorDefine.dht.text.PROJECTMANAGER_TAB": "Projectmanager tab",
    "applicationBehaviorDefine.dht.text.ROOM_CEILING_DEFAULT": "Ceiling from the default rooms.",
    "applicationBehaviorDefine.dht.text.ROOM_FLOOR_DEFAULT": "Floor fromt the default rooms.",
    "applicationBehaviorDefine.dht.text.ROOM_HEIGHT_DEFAULT": "Default room height",
    "applicationBehaviorDefine.dht.text.SHARE": "Share",
    "applicationBehaviorDefine.dht.text.ShowCefDeveloperTools": "Show development tools for CEF",
    "applicationBehaviorDefine.dht.text.SUPPRESS_REOPEN_AFTER_CRASH_REQUEST": "Deactivating 'Restore planning' after start of 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": "Individual VAT settings",
    "applicationBehaviorDefine.dht.text.WALL_THICKNESS_DEFAULT": "Default 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 program name",
    "applicationBehaviorTree.dht.general.text.calculation": "Calculation",
    "applicationBehaviorTree.dht.info.furnplan-web-projectmanager": "Settings for the furnview projectmanager",
    "applicationBehaviorTree.dht.info.furnview.furnplan-catalogue": "Extended settings for the furnplan catalogue in furnview",
    "applicationBehaviorTree.dht.text.buttons": "Control elements\n",
    "applicationBehaviorTree.dht.text.defined-filters": "Predefined filter",
    "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 projectmanager",
    "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's values",
    "applicationBehaviorTree.dht.text.mongodb": "Database",
    "applicationBehaviorTree.dht.text.montage": "Assembly",
    "applicationBehaviorTree.dht.text.print": "Print",
    "applicationBehaviorTree.dht.text.registryValues": "Registry key",
    "applicationBehaviorTree.dht.text.registryValues.Visiono": "Visiono",
    "applicationBehaviorTree.dht.text.security": "Safety",
    "applicationBehaviorTree.dht.text.support": "Support",
    "applicationBehaviorTree.dht.text.xxxl": "XXXL",
    "ar.button.open": "Open AR",
    "art_add_favorites": "Favorite article",
    "articleinfodesk.allManus": "All manufacturers",
    "articleinfodesk.allProgs": "All programmes",
    "articleinfodesk.articleGenDuration": "Duration:",
    "articleinfodesk.articleGenDurationText": "Can take several seconds per item, for a single manufacturer this process can take as long as 1 hour.",
    "articleinfodesk.articleGenLabelText": "Runs through all articles in the article table, generates images from them and prepares database entries.",
    "articleinfodesk.articleGenMultitask": "Multitask:",
    "articleinfodesk.catalogImageGenDurationText": "Duration: May take several seconds per image, for a single manufacturer this process may take up to one hour",
    "articleinfodesk.catalogImageGenInfoText": "Info: Once activated, it processes all articles in the article table. The rendered catalogue images will then replace the line images.",
    "articleinfodesk.catalogueGeneration": "Catalogue generation",
    "articleinfodesk.checkGenericKataTree": "Data control area",
    "articleinfodesk.createDB": "Generate database",
    "articleinfodesk.createDBLabelDuration": "Duration:",
    "articleinfodesk.createDBLabelDurationText": "Few minutes",
    "articleinfodesk.createDBLabelSingletask": "Singletask:",
    "articleinfodesk.createDBLabelSingletaskText": "Takes the prepared data from the multitask processes and collects them in the \"article_autogen.dht\". ,determines the possible categories, stores them in the \"categories_inuse.dht\" and assembles the SQL database.",
    "articleinfodesk.currentManu": "Current manufacturer",
    "articleinfodesk.currentProg": "Current programme",
    "articleinfodesk.datacheck": "Data control area",
    "articleinfodesk.defaultCatalogImages": "Default catalogue",
    "articleinfodesk.dhpGenDuration": "Duration:",
    "articleinfodesk.dhpGenDurationText": "Can take up to 1 minute per DHP",
    "articleinfodesk.dhpGenMultitask": "Multitask:",
    "articleinfodesk.dhpGenText": "Collects all plannings in the PlaceProposales folders, generates images from them and prepares database entries.",
    "articleinfodesk.exportAccessoires": "Generate accessories",
    "articleinfodesk.exportAccessoiresInfo": "Accessories:",
    "articleinfodesk.exportAccessoiresInfoText": "Once 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 items",
    "articleinfodesk.generateCatalogImage": "Generate catalog images",
    "articleinfodesk.generatePlacePropsals": "Generate placement suggestions",
    "articleinfodesk.generateVS": "Generate proposal combinations",
    "articleinfodesk.generateVZ": "Generate preferred combinations",
    "articleinfodesk.ignoreTypG": "Ignore type group",
    "articleinfodesk.ignoreTypGInfo": "Ignore type group:",
    "articleinfodesk.ignoreTypGText": "Items with this type group are excluded from the generation process, which can speed up the process considerably",
    "articleinfodesk.onlyGenerics": "Generic programmes only",
    "articleinfodesk.onlyGenericsInfo": "Info:",
    "articleinfodesk.onlyGenericsInfoText": "Once activated, only programmes that also have a generic catalogue can be exported.",
    "articleinfodesk.onlyNewCatalogImageGen": "Only render new images",
    "articleinfodesk.silentMode": "Background mode",
    "articleinfodesk.silentModeMultitask": "Multitask:",
    "articleinfodesk.silentModeMultitaskText": "The SilentMode is used to run all processes in the background. FurnPlan is minimised during the whole 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": "CAUTION! Rendering images from the catalogue takes a long time.",
    "asap": "As soon as possible",
    "augmented_reality": "Augmented Reality",
    "branchAddress": "Store name",
    "branchName": "Store name",
    "cat.1tuerig": "1 doors",
    "cat.2tuerig": "2 doors",
    "cat.3tuerig": "3 doors",
    "cat.4tuerig": "4 doors",
    "cat.5tuerig": "5 doors",
    "cat.6tuerig": "6 doors",
    "cat.7tuerig": "7 doors",
    "cat.8tuerig": "8 doors",
    "cat.abgerundet": "Round",
    "cat.abschlusselement": "Closing element",
    "cat.abschlussregal": "End shelf",
    "cat.abzugshaube": "Extractor hood",
    "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 cabinet",
    "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": "Comforter",
    "cat.bettzubehoer": "Bed accessories",
    "cat.bezug": "Upholstery cover",
    "cat.bild": "Image",
    "cat.bodenleuchte": "Floor lamp",
    "cat.bogenleuchte": "Arc lamp",
    "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 program 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": "Own device",
    "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": "Divisions",
    "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": "Color temperature",
    "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 value 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 liters",
    "cat.grundelement": "Basic element",
    "cat.grundfarbe": "Base color",
    "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": "Closet",
    "cat.kochfeld": "Hob",
    "cat.kochfeld_schrank": "Hob cabinet",
    "cat.kochfeld_unterschrank": "Cooktop 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 faucet",
    "cat.kuechenzubehoer": "Kitchen",
    "cat.kuehlautomat": "Cooling machine",
    "cat.kuehlgefrierautomat": "Automatic fridge freezer",
    "cat.kuehlgeraet": "Cooling unit",
    "cat.kuehlgeraet_hochschrank": "Tall refrigerator",
    "cat.kuehlgeraet_schrank": "Fridge",
    "cat.kuehlgeraet_unterschrank": "Refrigerated base unit",
    "cat.kufentisch": "Skid table",
    "cat.lampenanzahl": "Number of lamps",
    "cat.lattenrost": "Slatted frame",
    "cat.leuchte": "Luminaire",
    "cat.lichtfarbe": "Light color",
    "cat.lichtstrom": "Luminous flux",
    "cat.lowboard": "Lowboard",
    "cat.manuell_verstellbar": "Comfort height adjustment",
    "cat.markenkennzeichnung": "Brand",
    "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": "Ottamans",
    "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 hood",
    "cat.schrankzubehoer": "Wardrobe accessories",
    "cat.schreibtisch": "Desk",
    "cat.schreibtischleuchte": "Desk lamp",
    "cat.schubkasten": "Drawer",
    "cat.schuhschrank": "Shoe cabinet",
    "cat.schutzart": "Protection class",
    "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",
    "cat.spuelen_schrank": "Sink unit",
    "cat.spuelen_unterschrank": "Sink base unit",
    "cat.spuelprogrammanzahl": "Number of washing programs",
    "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": "Use",
    "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 hood",
    "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": "Washbasin vanity unit",
    "cat.waschtischunterschrank": "Vanity unit",
    "cat.wasserverbauch_eco_programm": "Water consumption Eco program",
    "cat.watt": "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 catalog 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": "Eco",
    "dhclass_grill_oberhitze": "Grill with top heat",
    "discount_relative": "Discount",
    "discounted_price_inclusive_vat": "Special price (incl. VAT)",
    "email": "E-mail",
    "email_mandatory": "Email*",
    "enter_NCS_code": "Enter NCS code",
    "enter_RAL_code": "Enter RAL code",
    "erpArtModify.productGroup.Babyzimmer": "Baby room",
    "erpArtModify.productGroup.Badezimmer": "Bathroom",
    "erpArtModify.productGroup.Buero": "Desk",
    "erpArtModify.productGroup.Couchtische": "Coffee tables",
    "erpArtModify.productGroup.Diele": "Hall/Anteroom",
    "erpArtModify.productGroup.Jugendzimmer": "Youth room",
    "erpArtModify.productGroup.Kleinmoebel": "Small pieces of furniture",
    "erpArtModify.productGroup.Matratzen": "Mattresses",
    "erpArtModify.productGroup.Schlafen": "Sleeping",
    "erpArtModify.productGroup.Sofas": "Sofa/Loungers",
    "erpArtModify.productGroup.Speisen": "Dishes",
    "erpArtModify.productGroup.Wohnen": "Living",
    "ERROR.FILE.OPEN.CLASS.CREATE": "An error has occurred while opening the planning.\nAt least one part of this planning could not be loaded.\nCould you please re-start furnplan and try to load this planning again?\nPlease contact our helpdesk if this errormessage remains.\nThank you for your understanding!",
    "ex.tools.table.check.ampersand": "Cell content should start with' &'",
    "ex.tools.table.check.d": "Cell content should be of type Double",
    "ex.tools.table.check.df": "Cell contains incorrect formula",
    "ex.tools.table.check.diff": "Cell may only contain the following data: [%s]",
    "ex.tools.table.check.error_message": "Do you wish to save despite errors?",
    "ex.tools.table.check.first_is_backslash": "Cell content should begin with' \\'",
    "ex.tools.table.check.first_is_nubersighn": "Cell content should begin with '#'",
    "ex.tools.table.check.first_is_slash": "Cell content should begin with '/'",
    "ex.tools.table.check.has_file_extension": "Cell contains the wrong file extension[%s]",
    "ex.tools.table.check.has_fix_length": "The cell contents do not have the length of %d",
    "ex.tools.table.check.has_max_length": "The cell content exceeds the maximum length of %d",
    "ex.tools.table.check.has_non_alpha": "Cell should contain alphabetical values",
    "ex.tools.table.check.has_non_alpha_ext": "Cell content may only consist of A-Z, 0-9, _ and not start with a number",
    "ex.tools.table.check.is_lowercase": "Cell content should be written in lowercase",
    "ex.tools.table.check.is_unique": "Cell content is double (not unique), first occurring in line %d",
    "ex.tools.table.check.is_unique_not_empty": "Cell content cannot be empty, since it should be unique",
    "ex.tools.table.check.is_uppercase": "Cell content should be written in uppercase",
    "ex.tools.table.check.l": "Cell content should be of type Long",
    "ex.tools.table.check.must_empty": "Cell should be empty",
    "ex.tools.table.check.never_empty": "Cell should not be empty",
    "ex.tools.table.check.newline": "The cell should not contain any line break[%d]",
    "ex.tools.table.check.no_leading_spaces": "Cell content should not start with white spaces",
    "ex.tools.table.check.no_spaces": "The cell should not contain white spaces",
    "ex.tools.table.check.no_trailing_spaces": "Cell content should not end with white spaces",
    "ex.tools.table.check.only_spaces": "The cell should not contain only white spaces",
    "ex.tools.table.check.rel_if_size": "Value A (column %d: %s) is not equal  (%s) to value B (%s)",
    "ex.tools.table.check.rel_if_than": "The cell content does not correspond with the search criterion [%s]. Column [%d] not set.",
    "ex.tools.table.check.rel_if_than.must_empty": "Cell content [%d] must be empty.",
    "ex.tools.table.check.rel_if_than.not_empty": "Cell content [%d] cannnot be empty.",
    "ex.tools.table.check.rel_if_than_ext": "Combined cell content invalid search criterion [%s].",
    "ex.tools.table.check.rel_must_set": "Before cell [%d] can be set, the following cells must have been entered first: [%s]",
    "ex.tools.table.check.rel_ne": "The sum of the cell content is not correct according to %s",
    "ex.tools.table.check.rel_only_one": "Only one of the following cells can be set [%s].",
    "ex.tools.table.check.rel_unique": "The sum of the cell contents is not unique [%s], first found in cell %d",
    "ex.tools.table.check.string_expression_format": "The cell should not contain double '+' characters and should contain a '+' for a $ / § character. This only applies if it does not start with $ / §  at the beginning.\n",
    "existing_planning_number": "Existing plannummer",
    "ext_vw_drs": "Exterior view with doors",
    "finpara.baumwolle": "cotton",
    "finpara.echtleder": "genuine leather",
    "finpara.edelstahl": "stainless steel",
    "finpara.galvanisiert": "galvanized",
    "finpara.gebuerstet": "brushed",
    "finpara.geflammt": "flamed",
    "finpara.grundgewebe": "woven basic fabric",
    "finpara.lackiert": "lacquered",
    "finpara.metal": "metal",
    "finpara.oberflaeche": "surface",
    "finpara.polyester": "polyester",
    "finpara.polypropylen": "polypropylene",
    "finpara.polyurethan": "polyurethane",
    "finpara.pulverbeschichtet": "powder coated",
    "finpara.verchromt": "chromed",
    "first_name_mandatory": "First name*",
    "fp.additionalPositions.eggo.error.filialIdNotFound": "This branch was not found in the storelist, therefore no prices can be displayed. Contact your administrator.\n\n",
    "fp.additionalPositions.Offer": "Offer",
    "fp.additionalPositions.Order": "Order",
    "fp.additionalPositions.SinglePrice": "single price",
    "fp.additionalPositions.warningMinMaxDimension": "One of the measurements is out of range\n",
    "fp.printoptions.combi.subpos": "Combination - lower position",
    "fp.printoptions.print_position_number": "Grid small",
    "fp.Projectmanager.Directory.DeleteFailed": "The folder could not be removed",
    "fp.Projectmanager.NewFolder": "New folder",
    "fp.Projectmanager.PleaseSelectFolder": "Please select folder",
    "fp.Updater.Download.Exception.RetryMaxReached": "Maximum number of retries for download reached. Couldn't download component #1",
    "fr.mail.subject": "Your furnray rendering - \"%s",
    "front_show_hide": "Show/hide front",
    "fs.broadcaster.abort_btn": "End",
    "fs.broadcaster.additional_hint_1": "- You are not only sharing furnplan with your customer, but the contents of the entire screen (e.g. opened email programs, etc. .) -",
    "fs.broadcaster.additional_hint_2": "- Your customer will always only see \"screen 1\", as defined in your Windows settings, under Display. (Only relevant if there are more than one monitors connected to your computer!) -",
    "fs.broadcaster.alternative_url": "Alternatively, you could convey this web address to your customer:",
    "fs.broadcaster.copy_tooltip": "copy to clipboard",
    "fs.broadcaster.hint_1": "Invite your customer to navigate to www.furnplan.de",
    "fs.broadcaster.hint_2": "Enter the session ID in the green textbox on the right-hand side and click <nobr>\"START SESSION\"!</nobr>",
    "fs.broadcaster.hint_3": "If the new window does not open automatically, please press the play button in the lower left corne",
    "fs.broadcaster.hint_4": "Now your screen is shared with your customer. The consultation can begin!",
    "fs.broadcaster.hint_5": "To end the session, please press \"End\". This will end the session.",
    "fs.broadcaster.hint_headline": "PLEASE NOTE:",
    "fs.broadcaster.session_id": "Session Id:",
    "fv.article.door_hinge": "Door hinge:",
    "fv.article.placeMidWall": "Place article in the center 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": "Sphere",
    "fv.boxStyle.cornerStyle.title": "Corner style",
    "fv.boxStyle.customSettings": "Custom setting",
    "fv.boxStyle.depth.label": "Depth 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 back",
    "fv.boxStyle.height.left_front": "Left front",
    "fv.boxStyle.height.right_back": "Back left side",
    "fv.boxStyle.height.right_front": "Front right side",
    "fv.boxStyle.highlightBox.title": "Highlight box",
    "fv.boxStyle.hover.label": "Mouse over",
    "fv.boxStyle.lineStyle.title": "Line style",
    "fv.boxStyle.markerBox.title": "Highlight 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": "Text width",
    "fv.boxStyle.width.top_back": "Top back",
    "fv.boxStyle.width.top_front": "Top front",
    "fv.button.label.share": "Share planning",
    "fv.button.next": "Next",
    "fv.configuration.save_notice.text": "Save 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 moment ..",
    "fv.default.request.customer.template_Header": "Customer inquiry",
    "fv.default.request.customer.template_text": "A customer has sent a request from the online configurator:",
    "fv.default.request.customer.template_text2": "Message from the customer",
    "fv.depthInCm": "Depth in cm",
    "fv.dimchange.caption": "Change of dimension",
    "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": "New depth (cm)",
    "fv.dimchange.description.short.height": "New height (cm)",
    "fv.dimchange.description.short.width": "New width (cm)",
    "fv.dimchange.description.width": "New width in cm",
    "fv.dimchange.height": "Height",
    "fv.dimchange.maximal": "maximum",
    "fv.dimchange.minimal": "minimum",
    "fv.dimchange.width": "Width",
    "fv.email.alternative": "Alternatively, you can visit the page on %s and manually enter 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": "Kind regards,",
    "fv.email.contactName": "Contact",
    "fv.email.contactPhone": "Phone",
    "fv.email.errorrenderingemail.export": "your exported scene with order number:",
    "fv.email.errorrenderingemail.failure": "could not be processed.",
    "fv.email.errorrenderingemail.notification": "The furnray-team has been notified.",
    "fv.email.expiration": "It will be available until <u>%s</u> inclusive.",
    "fv.email.finishplaningmail.export": "please find your planning documents attached to this mail as a PDF file.",
    "fv.email.finishplaningmail.planingnumber": "Your planning number is: <b>%s</b>",
    "fv.email.finishrenderingemail.export": "You hereby receive the finished rendering in the desired resolution",
    "fv.email.homeviewer.send_request_customer.close_1": "If you have any questions, please contact your representative in the furniture store.",
    "fv.email.homeviewer.send_request_customer.contact_header": "Contact details of your representative in the furniture store",
    "fv.email.homeviewer.send_request_customer.covering_1": "You are receiving this email because you recently sent a request to your furniture retailer.",
    "fv.email.homeviewer.send_request_customer.covering_1_to_myself_only": "You receive this automatically generated e-mail because you recently requested your planning.",
    "fv.email.homeviewer.send_request_customer.covering_2": "Please find the summary of the information below",
    "fv.email.homeviewer.send_request_customer.covering_3": "Your data",
    "fv.email.homeviewer.send_request_customer.email": "Email",
    "fv.email.homeviewer.send_request_customer.message": "Message",
    "fv.email.homeviewer.send_request_customer.name": "Name",
    "fv.email.homeviewer.send_request_customer.phone": "Phone",
    "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": "Please contact the client if there are any questions in relation to the planning.",
    "fv.email.homeviewer.send_request_dealer.close_2": "Please contact furnplan on the on the regular support number for all questions relating to furncloud.",
    "fv.email.homeviewer.send_request_dealer.covering_1": "A customer request automatically triggered this email message.",
    "fv.email.homeviewer.send_request_dealer.covering_2": "The Cloud-ID is: %s",
    "fv.email.homeviewer.send_request_dealer.customer_mail": "Customer's email address",
    "fv.email.homeviewer.send_request_dealer.customer_message": "Customer feedback\n",
    "fv.email.homeviewer.send_request_dealer.customer_name": "Customer name",
    "fv.email.homeviewer.send_request_dealer.customer_phone": "Customer phone number",
    "fv.email.homeviewer.send_request_dealer.salutation": "Dear ladies and gentlemen,",
    "fv.email.homeviewer.send_request_dealer.subject": "furnview: A customer has sent a request relating to cloud ID %s\n",
    "fv.email.homeviewer.share_by_mail.close_1": "If you have any questions, please contact your representative in the furniture store.",
    "fv.email.homeviewer.share_by_mail.covering_1": "Recently a planning has been made available to you",
    "fv.email.homeviewer.share_by_mail.planningnumber": "The planning number is\n",
    "fv.email.homeviewer.share_by_mail.salutation": "Dear customer,",
    "fv.email.homeviewer.share_by_mail.subject": "furnview: A planning has been made available to you.",
    "fv.email.homeviewer.share_by_mail.text_1": "Load this via link %s",
    "fv.email.open": "It can be viewed using the following link:",
    "fv.email.salutation": "Dear customer,",
    "fv.email.service_text": "A service by D+H Software GmbH",
    "fv.email.subject": "furnview: Your furniture planning is now ready to be viewed!",
    "fv.email.webui.dealer_request.subject": "furnview: Request",
    "fv.email.webui.dealer_request.template": "<!DOCTYPE html>\n<html><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                color: #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 application has been submitted 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\">Surname:</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\">E-Mail:</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\">Telephone:</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\">ZIP code:</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\tThe planning number: <span class=\"bold underline\">@@number@@</span>\n            </div>\n        </div>\n\t\t<div class=\"paragraph\">Message:</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\">Brought to you by D+H Software GmbH</span>\n\n    \n\n</body></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                color: #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 has recently been shared with you.</div>\n\n        <div class=\"paragraph\">\n            <div class=\"line\">\n                   You can access it via the following link <a href=\"@@url@@\">@@url@@</a> .\n            </div>\n        </div>\n\n        <img src=\"cid:furnview-logo\"/>\n\n        <br/>\n\n        <span style=\"font-size: 10px\">With compliments, D+H Software GmbH</span>\n\n    </body>\n</html>\n",
    "fv.error.return": "Back",
    "fv.error.title.error": "Error",
    "fv.error.to_many_reloads": "Page has reloaded too many times.",
    "fv.fileUpload.otfMaterial": "Create your own materials",
    "fv.fileUpload.selectImageFile": "Select your image file",
    "fv.generickatatree.alternativeArticel": "Alternative items for filtering",
    "fv.generickatatree.articles": "Article",
    "fv.generickatatree.ausfuehrungen": "Versions",
    "fv.generickatatree.b": "W",
    "fv.generickatatree.catalog": "Catalog",
    "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 TV",
    "fv.generickatatree.konfiguration": "Configuration",
    "fv.generickatatree.manufacturer": "Manufacturer",
    "fv.generickatatree.nothingFound": "No articles found",
    "fv.generickatatree.placeproposals": "Catalogue group",
    "fv.generickatatree.positionieren": "Positioning",
    "fv.generickatatree.program": "Program",
    "fv.generickatatree.section": "Section",
    "fv.generickatatree.specialPages.modelCompilation": "Model composition",
    "fv.generickatatree.t": "D",
    "fv.generickatatree.tooltip.moreInformations": "More information",
    "fv.generickatatree.variables_korpussystem": "Variable cabinet 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": "Return to shop",
    "fv.genericwizard.configuration.save_dxf": "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": "Save XLS",
    "fv.genericwizard.configuration.save_xml": "Save XML",
    "fv.genericwizard.configuration.share_config": "Konfiguration teilen",
    "fv.genericwizard.configuration_as_pdf": "Save configuration as PDF",
    "fv.genericwizard.configuration_share": "Share configuration",
    "fv.genericwizard.goto_dealer_search": "find store",
    "fv.genericwizard.modal.proptrans.cancel": "Close",
    "fv.genericwizard.modal.proptrans.select": "Select",
    "fv.genericwizard.modify_elements": "change individual surfaces",
    "fv.genericwizard.new_configuration": "New configuration",
    "fv.genericwizard.overview": "Overview",
    "fv.genericwizard.redbox_caption": "Your furniture cannot be planned in this manner",
    "fv.genericwizard.search_dealer": "Search dealer",
    "fv.genericwizard.template_caption.W_ARTICLE": "Models",
    "fv.genericwizard.template_caption.W_CONFIGURATION": "Prices and details",
    "fv.genericwizard.template_caption.W_PROGPROPERTIES": "Colors and surfaces",
    "fv.genericwizard.template_caption.W_PROPTRANSFER": "Options & equipment",
    "fv.genericwizard.template_caption.W_SHOPPINGCART_ARTICLE": "Equipment",
    "fv.genericwizard.template_caption.W_SPECIAL": "Edit cover plate",
    "fv.genericwizard.template_caption.W_SPECIAL.cover_edit": "Editing cover plates",
    "fv.genericwizard.to_shopping_cart": "Add to 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": "Program",
    "fv.heightInCm": "Heigth in cm",
    "fv.home.form.error.expired": "This planning has expired.",
    "fv.home.form.error.number.missing": "Please input a number.",
    "fv.home.form.error.number.wait": "Please wait %s more seconds before you try again.",
    "fv.home.form.error.number.wrong": "This number doesn't exist.",
    "fv.home.form.header": "View planning",
    "fv.home.form.loading": "Planning is being loaded",
    "fv.home.form.notice": "Please enter your planning number in the input field below. The number can be found in the e-mail we sent to you.",
    "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 enhance your experience. By continuing to visit this site you agree to our use of cookies.",
    "fv.info.message.PLEASE_SELECT_ELEMENT": "Please select the piece of furniture that needs to be configured.",
    "fv.info.message.PROP_TRANSFER_FITTING": "** Equipment",
    "fv.info.message.PROP_TRANSFER_FITTING_NOTFOUND": "No furnishing elements were found.",
    "fv.info.message.PROPERTIES": "** Versions",
    "fv.info.message.PROPERTIES_NOTFOUND": "No configurations were found.",
    "fv.invalid.input": "invalid entry",
    "fv.iwofurn.branchID": "Store 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": "Properties",
    "fv.konfigurator.berechtigung.header": "Permissions 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\n",
    "fv.konfigurator.datengespeichert": "Data has been saved!",
    "fv.konfigurator.gespeichert": "Saved",
    "fv.konfigurator.kategorie.einstellungen.maxobjects": "Highest number of objects\n",
    "fv.konfigurator.keinname": "No name was specified.",
    "fv.konfigurator.konfiguration": "Configurations",
    "fv.konfigurator.konfiguration.download": "Downloads the configuration",
    "fv.konfigurator.konfiguration.erstellen": "Create new configuration",
    "fv.konfigurator.konfiguration.floorShadow": "Floor shadow",
    "fv.konfigurator.konfiguration.floorShadow.info": "Show floor, shadows and placers are deactivated",
    "fv.konfigurator.konfiguration.id": "ID",
    "fv.konfigurator.konfiguration.loeschen": "Delete configuration",
    "fv.konfigurator.konfiguration.loeschenAusfuehrungsListe": "Delete listed versions from configuration",
    "fv.konfigurator.konfiguration.loeschenLand": "Delete country from configuration",
    "fv.konfigurator.konfiguration.loeschenMailEinstellung": "Delete the email settings from the configuration",
    "fv.konfigurator.konfiguration.loeschenPrintEinstellung": "Delete the printer settings from the configuration",
    "fv.konfigurator.konfiguration.loeschenProgrammListe": "Delete listed programs from configuration",
    "fv.konfigurator.konfiguration.name": "Name",
    "fv.konfigurator.konfiguration.oeffnen": "Open the configuration",
    "fv.konfigurator.konfiguration.oeffnenListe": "Listing the existing configurations",
    "fv.konfigurator.konfiguration.savePlanning": "Saves the current planning as a base planning for this configuration",
    "fv.konfigurator.konfiguration.speichern": "Save configuration",
    "fv.konfigurator.konfiguration.speichernAls": "Save configuration as",
    "fv.konfigurator.konfiguration.speichernUndAktualisieren": "Save current config and show preview in upper window",
    "fv.konfigurator.konfiguration.templateErstellen": "Create new template",
    "fv.konfigurator.konfiguration.templateOeffnen": "Open template",
    "fv.konfigurator.konfiguration.templateSpeichern": "Save template",
    "fv.konfigurator.konfiguration.ueberschreiben": "Overwrite configuration",
    "fv.konfigurator.konfiguration.urlErstellen": "Create URL based on currently opened configuration",
    "fv.konfigurator.konfiguration.urlKopieren": "Copy URL to the clipboard",
    "fv.konfigurator.konfiguration.urlOeffnen": "Open the URL in a new window",
    "fv.konfigurator.konfigurationMail.erstellen": "Create a new email configuration",
    "fv.konfigurator.konfigurationMail.loeschen": "Delete email settings",
    "fv.konfigurator.konfigurationMail.oeffnen": "Open email settings",
    "fv.konfigurator.konfigurationMail.oeffnenListe": "Overview existing email settings",
    "fv.konfigurator.konfigurationMail.speichern": "Save email configuration",
    "fv.konfigurator.konfigurationPrint.erstellen": "Create a new printer configuration",
    "fv.konfigurator.konfigurationPrint.loeschen": "Delete print configuration",
    "fv.konfigurator.konfigurationPrint.oeffnen": "Open print configuration",
    "fv.konfigurator.konfigurationPrint.oeffnenListe": "Overview existing printer settings",
    "fv.konfigurator.konfigurationPrint.speichern": "Saving printer settings",
    "fv.konfigurator.landing.page": "** Landing page",
    "fv.konfigurator.landing.page.basis.beschreibung": "Description",
    "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": "Retail price",
    "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-shaped",
    "fv.konfigurator.landing.page.key": "** Key",
    "fv.konfigurator.landing.page.value": "** Value",
    "fv.konfigurator.logout": "Log off",
    "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": "Articel No",
    "fv.konfigurator.moebel.initial_planning": "Initial planning",
    "fv.konfigurator.nichtgespeichert": "Not saved",
    "fv.konfigurator.optionen.artikeltypen": "Articel types",
    "fv.konfigurator.optionen.artikeltypen.artikel": "Articel",
    "fv.konfigurator.optionen.artikeltypen.artikel.tooltip": "Determines whether or not articles can be planned with furnview",
    "fv.konfigurator.optionen.artikeltypen.combination": "Combination",
    "fv.konfigurator.optionen.artikeltypen.combination.tooltip": "Determines if it is possible to schedule combinations in furnview",
    "fv.konfigurator.optionen.artikeltypen.platzierungsvorschlaege": "Placement suggestions",
    "fv.konfigurator.optionen.artikeltypen.platzierungsvorschlaege.tooltip": "Determines whether or not certain placements can be created in furnview",
    "fv.konfigurator.optionen.autolux": "Automatic light placement",
    "fv.konfigurator.optionen.autolux.settings.rangein_offset_forward": "RangeIn Forward offset",
    "fv.konfigurator.optionen.autolux.settings.rangein_offset_forward_threshold": "RangeIn Forward offset 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 Color",
    "fv.konfigurator.optionen.automatic.wall": "Auto Generation",
    "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": "Display floor",
    "fv.konfigurator.optionen.boden.bodenanzeigen.tooltip": "Determines whether or not furnview should display a floor",
    "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 panning",
    "fv.konfigurator.optionen.camera.settings.deactivate_rotate": "deactivate rotation around the scene",
    "fv.konfigurator.optionen.camera.settings.deactivate_rotate2": "Deactivate rotation around its 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": "Centered",
    "fv.konfigurator.optionen.camera.settings.top": "** Angle top",
    "fv.konfigurator.optionen.camera.settings.vector.reset": "Fix view direction",
    "fv.konfigurator.optionen.camera.settings.vector.special": "Optional camera orientation",
    "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": "** Alternative selection",
    "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": "disable polygonal offset\n",
    "fv.konfigurator.optionen.druckeinstellung": "Print setting",
    "fv.konfigurator.optionen.enable_environment_lighting": "Ambient lighting",
    "fv.konfigurator.optionen.filter": "Filter",
    "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": "Hide dimensions in 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": "Load program with selected article",
    "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": "Program",
    "fv.konfigurator.optionen.filter.programm.tooltip": "Activates the program selection in the article filter",
    "fv.konfigurator.optionen.filter.programmgruppe": "Section",
    "fv.konfigurator.optionen.filter.programmgruppe.tooltip": "Show section",
    "fv.konfigurator.optionen.filter.programmimages": "Conceptual atmosphere images",
    "fv.konfigurator.optionen.filter.programmimages.tooltip": "Choose program with conceptual atmospheres",
    "fv.konfigurator.optionen.filter.programmimagesreset": "Reset planning",
    "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": "Specifies the selected articel when loading furnview.",
    "fv.konfigurator.optionen.filter.selectedKataPage": "Katapage",
    "fv.konfigurator.optionen.filter.selectedKataPage.tooltip": "Select the Katapage loaded with furnview.",
    "fv.konfigurator.optionen.filter.selectedManufacturer": "Munufacturer",
    "fv.konfigurator.optionen.filter.selectedManufacturer.tooltip": "Specifies the selected manufacturer when loading furnview.",
    "fv.konfigurator.optionen.filter.selectedProg": "Program",
    "fv.konfigurator.optionen.filter.selectedProg.tooltip": "Specifies the selected program when loading furnview.",
    "fv.konfigurator.optionen.filter.selectedProgGroup": "Program group",
    "fv.konfigurator.optionen.filter.selectedProgGroup.tooltip": "Specifies the selected program group when loading furnview.",
    "fv.konfigurator.optionen.furnray.settings": "Furnray settings",
    "fv.konfigurator.optionen.hr": "Register HR-Mode",
    "fv.konfigurator.optionen.kamera.dreid.default": "3D camera as default",
    "fv.konfigurator.optionen.kamera.traegheit": "Camera lag",
    "fv.konfigurator.optionen.kamera.zweid.default": "2D camera as default",
    "fv.konfigurator.optionen.laenderauswahl": "Select country",
    "fv.konfigurator.optionen.maileinstellung": "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 catalog 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 tab \"Accessories(generic)\".",
    "fv.konfigurator.optionen.panel.registerausfuehren": "Finish",
    "fv.konfigurator.optionen.panel.registerausfuehren.disabled.property.buttons": "Show all versions",
    "fv.konfigurator.optionen.panel.registerausfuehren.disabled.property.buttons.tooltip": "Display also non-changeable versions.",
    "fv.konfigurator.optionen.panel.registerausfuehren.tooltip": "Activates the \"Executions\" tab",
    "fv.konfigurator.optionen.panel.registerauswertung": "Evaluation\n",
    "fv.konfigurator.optionen.panel.registerboden": "Floor",
    "fv.konfigurator.optionen.panel.registerboden.tooltip": "Activates the \"Floor\" tab",
    "fv.konfigurator.optionen.panel.registerhr": "HR\n",
    "fv.konfigurator.optionen.panel.registerhr.tooltip": "Activates the \"HR\" tab",
    "fv.konfigurator.optionen.panel.registerinitaloeffnen": "Open initial catalog",
    "fv.konfigurator.optionen.panel.registerinitaloeffnen.tooltip": "Determines whether or not the catalogue should be opened in furnview when the website is  being loaded",
    "fv.konfigurator.optionen.panel.registerkatalog": "Old catalog",
    "fv.konfigurator.optionen.panel.registerkatalog.tooltip": "Activates the \"Catalog\" tab",
    "fv.konfigurator.optionen.panel.registerkatatree": "New catalog",
    "fv.konfigurator.optionen.panel.registerkatatree.tooltip": "Activates the \"Catalog(KataTree)\" tab",
    "fv.konfigurator.optionen.panel.registerkatatreegeneric": "Generic catalog",
    "fv.konfigurator.optionen.panel.registerkatatreegeneric.tooltip": "Activates the tab \"Catalog(generic)\".",
    "fv.konfigurator.optionen.panel.registeroldkatatree": "furnplan catalog",
    "fv.konfigurator.optionen.panel.registeroldkatatree.tooltip": "Activates the \"Old Catalog (Katatree)\" 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": "Subarea",
    "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": "Range",
    "fv.konfigurator.optionen.planning.3dtext.screenshot.hide": "Hide 3D text (screenshots)",
    "fv.konfigurator.optionen.planning.disable.moveobject": "Deactivate move object in the scene (drag)",
    "fv.konfigurator.optionen.planning.disable.moveobjectx": "Button - Deactivate sliding in the X-axis",
    "fv.konfigurator.optionen.planning.disable.moveobjectz": "Button - Deactivate sliding in the Z-axis",
    "fv.konfigurator.optionen.planning.disable.uiControls": "Deactivate UI Controls",
    "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",
    "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": "Activate extended 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 context menu",
    "fv.konfigurator.optionen.planning.enable.frontstopContextMenu": "Change hinge side",
    "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 color",
    "fv.konfigurator.optionen.planning.measureBox.ext_Text": "Ext. 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": "Not connected on the right side",
    "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 or not one can select furniture",
    "fv.konfigurator.optionen.planning.placerMagnet": "Disable docking",
    "fv.konfigurator.optionen.planning.placing": "Placer",
    "fv.konfigurator.optionen.planning.placing.tooltip": "Activates the placement of furniture in a planning",
    "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 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 Parameters",
    "fv.konfigurator.optionen.remove_markerbox_after_transfer": "Do not highlight if property is already on object",
    "fv.konfigurator.optionen.remove_properties_if_exists": "Toon nieuwe overdrachten van eigenschappen\n",
    "fv.konfigurator.optionen.session.settings": "** Session settings",
    "fv.konfigurator.optionen.session.settings.reset-message": "A reset of the planning will take place  in<@TIME@>seconds due to inactivity.",
    "fv.konfigurator.optionen.session.settings.reset-session-time": "Time of notification",
    "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": "Others",
    "fv.konfigurator.optionen.sonstiges.artikelinfoanzeigen": "Display articel infos",
    "fv.konfigurator.optionen.sonstiges.artikelinfoanzeigen.tooltip": "Determines whether information (height, width...) should be displayed",
    "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": "Inserting accessories automatically",
    "fv.konfigurator.optionen.sonstiges.enable_external_property_updates": "Activate updates from external versions",
    "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 point\n",
    "fv.konfigurator.optionen.sonstiges.hilfeanzeigen": "YouTube Link",
    "fv.konfigurator.optionen.sonstiges.icon_primary_color": "Primary pictogram colour",
    "fv.konfigurator.optionen.sonstiges.only-manu-cats": "** Manu-Cats only",
    "fv.konfigurator.optionen.sonstiges.preiseanzeigen": "Display prices",
    "fv.konfigurator.optionen.sonstiges.preiseanzeigen.tooltip": "Determines whether or not 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 termination",
    "fv.konfigurator.optionen.sonstiges.shoppingCart": "In 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 or not 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 information",
    "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 cart",
    "fv.konfigurator.optionen.sonstiges.wizard": "Wizard",
    "fv.konfigurator.optionen.sonstiges.wizard-katalog-rechts": "** Catalog 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": "Camera reset",
    "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": "Close planning",
    "fv.konfigurator.optionen.toolbar.planungabschliessen.tooltip": "Activates the button \"Save planning\".",
    "fv.konfigurator.optionen.toolbar.rendering": "Rendering",
    "fv.konfigurator.optionen.toolbar.settings": "Render Settings",
    "fv.konfigurator.optionen.toolbar.settings.defaults": "Default 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": "Capture 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": "Fullscreen",
    "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 units",
    "fv.konfigurator.optionen.webuimode": "** Own WebUI",
    "fv.konfigurator.optionen.wizard": "wizard",
    "fv.konfigurator.optionen.wizard.tooltip": "Determines whether the wizard should be displayed or not\n",
    "fv.konfigurator.settings.katalogHintergrundFarbe.label": "Catalogue background color",
    "fv.konfigurator.settings.katalogHintergrundFarbe.tooltip": "Define background color for catalogue",
    "fv.konfigurator.settings.katalogRahmen.label": "Catalogue with border",
    "fv.konfigurator.settings.katalogRahmen.tooltip": "Catalogue with dark border",
    "fv.konfigurator.tab.ausfuehrungsliste": "Property 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": "Invalid entry",
    "fv.konfigurator.tab.hrTheme.settings": "HRTheme settings",
    "fv.konfigurator.tab.initial-plannings": "Initial plannings",
    "fv.konfigurator.tab.kategorieeinstellungen": "** Category Settings",
    "fv.konfigurator.tab.kategorienliste": "catalog categories",
    "fv.konfigurator.tab.konfigurator": "Options",
    "fv.konfigurator.tab.landing.page": "** Landing page",
    "fv.konfigurator.tab.programmliste": "Program List",
    "fv.konfigurator.tab.property-order-list": "Sorting version",
    "fv.konfigurator.tab.requestSettings": "Send request 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": "Position accessories",
    "fv.linkgenerator.error": "Error",
    "fv.linkgenerator.modal.title.sub-store-urls": "URL for branch shop",
    "fv.linkgenerator.myconfig": "My configuration",
    "fv.linkgenerator.saveConfigAs": "Save configuration as",
    "fv.login.customernumber": "Customer number",
    "fv.login.login": "Login",
    "fv.login.number": "Number",
    "fv.login.password": "Password",
    "fv.login.user": "User name",
    "fv.make.an.appointment": "Making an appointment",
    "fv.menu.ar.export": "AR Export",
    "fv.menu.ar.start": "Stop AR-mode",
    "fv.menu.ar.stop": "Stop AR-mode",
    "fv.menu.fullscreen": "Full screen",
    "fv.menu.info": "Info",
    "fv.menu.logout": "Log off",
    "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": "Session could not be established.",
    "fv.message.continue": "Continue",
    "fv.message.message": "Your inquiry has been successfully sent to the selected dealer. They will contact you shortly via the contact information you provided.",
    "fv.message.session_already_exists": "furnview is already active in another window",
    "fv.message.session_disconnect": "Session was interrupted.",
    "fv.message.session_has_been_resumed": "Your furnview session has been resumed in another window",
    "fv.message.session_has_been_suspended": "Your session has been suspended",
    "fv.message.title": "Thank you",
    "fv.message.unable_to_getNode": "Connection to the server could not 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": "Should this element really be removed?",
    "fv.modal.delete_lo.header": "Remove element",
    "fv.modal.delete_lo.ok": "Yes",
    "fv.modal.download.text": "Download planning in PDF format",
    "fv.modal.finishplaning.backtoplaning": "Back to planning",
    "fv.modal.finishplaning.completeplaning": "Close planning",
    "fv.modal.finishplaning.customer_request.email": "Your email:",
    "fv.modal.finishplaning.customer_request.first_name": "First name",
    "fv.modal.finishplaning.customer_request.last_name": "Surname",
    "fv.modal.finishplaning.customer_request.message": "Message",
    "fv.modal.finishplaning.customer_request.phone": "Telephone",
    "fv.modal.finishplaning.customer_request.send_request": "Send request",
    "fv.modal.finishplaning.customer_request.send_request_to_self": "Send this planning to me",
    "fv.modal.finishplaning.planning_header": "Send planning",
    "fv.modal.finishplaning.sendmail": "Send",
    "fv.modal.finishplaning.text_cloudid": "Your Cloud-ID",
    "fv.modal.finishplaning.text_cloudid_intro": "With this ID, your dealer can create a purchase order.",
    "fv.modal.finishplaning.text_documents": "Download planning or send by email",
    "fv.modal.finishplaning.text_documents_save": "Download planning files",
    "fv.modal.finishplaning.text_documents_send": "Send plannng files by email",
    "fv.modal.finishplaning.text_intro": "Do you have questions regarding your planning or would you like to print or send your planning? Alternatively, you could also send the planning by email.",
    "fv.modal.google_re_captcha": "Validation",
    "fv.modal.homeviewer.finishplaning.customer_request.submit_info": "The planning number will be automatically added to your request.",
    "fv.modal.homeviewer.finishplaning.error_finish_message": "An error occurred while sending the planning. Please try again at a later time.",
    "fv.modal.homeviewer.finishplaning.header": "Planning number",
    "fv.modal.homeviewer.finishplaning.header.share_by_mail": "Share this planning via email",
    "fv.modal.homeviewer.finishplaning.mail_finish_message": "E-mail has been sent.",
    "fv.modal.homeviewer.finishplaning.request_finish_message": "Request has been sent.",
    "fv.modal.homeviewer.finishplaning.seller.email": "Recipient's e-mail",
    "fv.modal.homeviewer.finishplaning.seller.name": "Recipient's name",
    "fv.modal.homeviewer.finishplaning.seller.phone": "Recipient's telephone",
    "fv.modal.homeviewer.finishplaning.share_by_mail_button": "Send",
    "fv.modal.homeviewer.finishplaning.share_by_mail_info": "Send your planning to an email address of your choice.",
    "fv.modal.info.contact": "Contact",
    "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 information has been provided",
    "fv.modal.logoutconfirmation.cancel": "No",
    "fv.modal.logoutconfirmation.description": "Are you sure you want to log off?",
    "fv.modal.logoutconfirmation.header": "Confirm signing out",
    "fv.modal.logoutconfirmation.ok": "Yes",
    "fv.modal.notification.email_successfully_sent.header": "Sent",
    "fv.modal.open_existing_planning_number": "Open existing planning number",
    "fv.modal.planning_number.text": "This planning number can be used to reopen and edit this planning at a later time.",
    "fv.modal.planning_number.title": "Planning number for further processing",
    "fv.modal.progimages.cancel": "Cancel",
    "fv.modal.progimages.load": "Load program",
    "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 number of pieces",
    "fv.modal.reload.cancel": "No",
    "fv.modal.reload.content": "Reload this 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": "Should all furniture be removed from the AR scene?",
    "fv.modal.stop_ar.header": "Reset AR-scene?",
    "fv.modal.stop_ar.no": "No",
    "fv.modal.stop_ar.yes": "Yes",
    "fv.modal.translate.description": "Please select your language by clicking on the corresonding flag. Please note: Your planning will also be printed in this language.",
    "fv.modal.translate.selectlanguage": "Select language",
    "fv.modal.twodview.cancel": "Cancel",
    "fv.modal.twodview.ok": "Accept",
    "fv.modal.your_planning_number": "Your planning number",
    "fv.no_elements_in_planning": "No object has been planned yet.",
    "fv.opened": "opened",
    "fv.positionen.text": "Positions",
    "fv.prompt.enter_cloud_password": "Please enter the cloud password",
    "fv.prompt.wrong_cloud_password": "Wrong cloud password!",
    "fv.renderer.settings.transparent_canvas_background": "** Background transparent",
    "fv.request.dealer.text": "Dealer request",
    "fv.response.error.article.creating": "Error while creating article",
    "fv.response.error.artikel.nopermission": "You do not have permission to view this article.",
    "fv.response.error.authentication.accessblocked": "Access blocked",
    "fv.response.error.authentication.invalidcredentials": "Invalid credentials",
    "fv.response.error.authentication.noauthorization": "No authorization",
    "fv.response.error.authentication.sessionexpires": "User session expires!",
    "fv.response.error.authentication.toomanyattempts": "Too many attempts. Please try again later.",
    "fv.response.error.cloud.checksumdismatch": "Upload rejected, checksums don't match.",
    "fv.response.error.cloud.cloud_id_does_not_exist": "Planning not found",
    "fv.response.error.cloud.cloud_id_was_not_uploaded": "The planning cannot be opened because nothing has been uploaded.",
    "fv.response.error.cloud.createuploadfail": "Upload failed",
    "fv.response.error.cloud.invalidcloudid": "Invalid cloud ID",
    "fv.response.error.cloud.missingcloudidparameters": "Insufficient parameters for populating furncloud upload number",
    "fv.response.error.cloud.missingparameters": "Parameters are missing.",
    "fv.response.error.cloud.no_permission": "Access to planning has been denied",
    "fv.response.error.cloud.server_error": "The planning could not be loaded due to a server error.",
    "fv.response.error.cloud.unprocessable_request": "Not possible to download this planning.",
    "fv.response.error.cloud.uploadfail": "An error occured while creating furncloud upload",
    "fv.response.error.internalerror": "Internal server error",
    "fv.response.error.languagechangeavailible": "Unable to set language",
    "fv.response.error.manufactor.loadfailed": "Unable to retrieve manufacturers",
    "fv.response.error.nothingfound": "Nothing found",
    "fv.response.error.numbernotset": "CustomerNo, file, fileExt, _id, number is not set!",
    "fv.response.error.searchstack": "Error while searching stack!",
    "fv.response.error.serviceunavailable": "Service unavailable",
    "fv.response.error.settings.printproperties": "Unable to retrieve print properties",
    "fv.response.error.success": "Success",
    "fv.response.error.unablereq": "Unable to process request",
    "fv.response.error.writingname": "Error writing names",
    "fv.right.panel.catalogue.articlebox.article": "Article",
    "fv.right.panel.catalogue.articlebox.hits": "Hits",
    "fv.right.panel.catalogue.articlenumber": "Art.-No.",
    "fv.right.panel.catalogue.buildingerror": "Error creating 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": "to",
    "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": "Program",
    "fv.right.panel.floor.carpet": "Carpet",
    "fv.right.panel.floor.colors": "Colors",
    "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": "Refresh",
    "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. color, 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": "W",
    "fv.terms.catalog": "Catalogue",
    "fv.terms.categories": "Categories",
    "fv.terms.H": "H",
    "fv.terms.planning": "Planning",
    "fv.terms.request": "Inquiry",
    "fv.terms.T": "D",
    "fv.text.resume_planning": "Continue planning",
    "fv.tooltip.context.delete": "Delete",
    "fv.tooltip.context.dimChange": "Change dimensions",
    "fv.tooltip.context.frontstop": "Change hinge side",
    "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": "Chooses an image or photo as background for augmented reality",
    "fv.tooltip.toolbar.camera_reset": "Resets the camera to its initial position",
    "fv.tooltip.toolbar.camera_reset_front": "Switching between front view and standard projection",
    "fv.tooltip.toolbar.measurebox": "Display dimensions",
    "fv.tooltip.toolbar.move_rotation_toggle": "Switch between Move and Rotate",
    "fv.tooltip.toolbar.pan_switch": "Activate scene shift",
    "fv.tooltip.toolbar.pick_mode": "Toggles the selection mode between single selection and group selection",
    "fv.tooltip.toolbar.redo": "** Undo Undo",
    "fv.tooltip.toolbar.render_pdf": "Exports the current view with additional information as PDF file",
    "fv.tooltip.toolbar.rotationSwitch": "Activate / Deactivate rotation",
    "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": "Enable fog",
    "fv.tooltip.toolbar.settings.fogBackground": "Background fog",
    "fv.tooltip.toolbar.settings.fogColor": "Fog Color",
    "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": "Scale factor",
    "fv.tooltip.toolbar.settings_menu.fxaa": "Toggles antialiasing",
    "fv.tooltip.toolbar.settings_menu.lines": "Toggles edge lines",
    "fv.tooltip.toolbar.settings_menu.mirror": "Toggles ground reflection",
    "fv.tooltip.toolbar.settings_menu.outdoor-lighting": "Grid small",
    "fv.tooltip.toolbar.settings_menu.pick_mode": "Toggles button for selection mode",
    "fv.tooltip.toolbar.settings_menu.selection": "** Selection mode",
    "fv.tooltip.toolbar.settings_menu.shadow": "Toggles shadows",
    "fv.tooltip.toolbar.settings_menu.ssao": "Toggles SSAO",
    "fv.tooltip.toolbar.settings_menu.toggle_renderer": "Switch shadow quality level",
    "fv.tooltip.toolbar.snapping": "Docking elements",
    "fv.tooltip.toolbar.textures": "Select texture",
    "fv.tooltip.toolbar.toggle_front": "Toggles front of objects",
    "fv.tooltip.toolbar.undo": "Undo",
    "fv.tooltip.toolbar.wall_floor": "Select wall and floor covering",
    "fv.tooltip.toolbar.webui_category_filter": "Article categories\n",
    "fv.tooltip.toolbar.webui_category_filter_buttons": "Filter categories",
    "fv.tooltip.toolbar.zoom_in": "Scene - Zoom in",
    "fv.tooltip.toolbar.zoom_out": "Scene -Zoom out",
    "fv.tooltop.context.rotate.sink": "Change draining board left/right",
    "fv.transfer.failure": "Transfer 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 cart",
    "fv.wizard.steps.accessoires": "Accessories",
    "fv.wizard.steps.analysis": "Evaluation",
    "fv.wizard.steps.filter": "Catalogue",
    "fv.wizard.steps.finale": "Save",
    "fv.wizard.steps.finish": "Finish",
    "fv.wizard.steps.fitting": "Accessories",
    "fv.wizard.steps.floor": "Floor",
    "fv.wizard.steps.hr": "HR",
    "fv.wizard.steps.interiorProperty": "Equipment",
    "fv.wizard.steps.surfaces": "Equipment",
    "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 off prices",
    "genKatatreeConfigurator.articleView": "Here the value \"horizontal\" can be specified, there are two views, the normal and the horizontal view for e.g. cheeks, if not deposited then the standard view is taken",
    "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": "Analogous to \"ArtPropsToHide\", this switch works in reverse. If no entry is made here, all 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": "Determines 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 model stringboards, the stringboard 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 center 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 catalog 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 prevent the articles from being reloaded and all articles from being 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 cart 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 program 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 combined",
    "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 read the",
    "IDM.CAT.ART.000": "All",
    "IDM.CAT.ART.100": "Revolving door",
    "IDM.CAT.ART.110": "Folding door/Angled door",
    "IDM.CAT.ART.120": "Sliding door/Gliding door",
    "IDM.CAT.ART.130": "Drawer",
    "IDM.CAT.ART.140": "Hatch",
    "IDM.CAT.ART.150": "Telescopic part",
    "IDM.CAT.ART.160": "Combined front",
    "IDM.CAT.ART.170": "Horizontal blinds/Shutters/Vertical blinds",
    "IDM.CAT.ART.200": "Inner drawer",
    "IDM.CAT.ART.210": "Inner compartment",
    "IDM.CAT.ART.220": "Internal layout",
    "IDM.CAT.ART.230": "Wardrobe accessories(Clothes rail,Laundry basket,..)",
    "IDM.CAT.ART.240": "Speakers/Receiver",
    "IDM.CAT.ART.250": "TV mount",
    "IDM.CAT.ART.260": "Other",
    "IDM.CAT.ART.300": "Side panels/Vertical studs/Studs mounted on object/Studs before object",
    "IDM.CAT.ART.310": "Shelves for Vertical studs/Racks/Suspendable elements/Light panels",
    "IDM.CAT.ART.320": "Base shelf",
    "IDM.CAT.ART.330": "Shelf/Wall shelf",
    "IDM.CAT.ART.340": "Rear panel",
    "IDM.CAT.ART.400": "Tabletop",
    "IDM.CAT.ART.410": "Table frame",
    "IDM.CAT.ART.420": "Attachable/Insertable table top",
    "IDM.CAT.ART.430": "Four-legged table/frame",
    "IDM.CAT.ART.440": "Table/frame with center column",
    "IDM.CAT.ART.450": "C desk frame set",
    "IDM.CAT.ART.460": "A desk frame set",
    "IDM.CAT.ART.470": "T desk frame set",
    "IDM.CAT.ART.500": "Dining chair/Stackable chair",
    "IDM.CAT.ART.510": "Swivel-,Rolling- and  Rolling Swivel Chair",
    "IDM.CAT.ART.520": "Children's chair",
    "IDM.CAT.ART.600": "Bed frame/Head section/Foot section",
    "IDM.CAT.ART.610": "Loft bed/Mid Loft Bed/Bunk bed/Lounge bed",
    "IDM.CAT.ART.620": "Cot/Crib",
    "IDM.CAT.ART.630": "Divan bed",
    "IDM.CAT.ART.640": "Couch bed/Guest bed/Folding bed",
    "IDM.CAT.ART.650": "Wall-, Puff-, Cabinet bed",
    "IDM.CAT.ART.660": "Waterbed",
    "IDM.CAT.ART.670": "Upholstered bed",
    "IDM.CAT.ART.700": "Couch Upholstery",
    "IDM.CAT.ART.710": "Handles",
    "IDM.CAT.ART.720": "Small parts",
    "IDM.CAT.ART.800": "Special combination",
    "IDM.CAT.ART.810": "Proposed combination",
    "IDM.CAT.AUSF.00": "All",
    "IDM.CAT.AUSF.10": "Single element",
    "IDM.CAT.AUSF.20": "Base element",
    "IDM.CAT.AUSF.30": "Extension element",
    "IDM.CAT.AUSF.40": "Corner element",
    "IDM.CAT.AUSF.50": "Intermediary unit",
    "IDM.CAT.AUSF.60": "Top element",
    "IDM.CAT.AUSF.70": "Suspension element",
    "IDM.CAT.AUSF.80": "Part",
    "IDM.CAT.TYP.1010": "Body element",
    "IDM.CAT.TYP.1020": "Cabinet",
    "IDM.CAT.TYP.1030": "Glass cabinet",
    "IDM.CAT.TYP.1040": "Shelf",
    "IDM.CAT.TYP.1050": "Highboard/Sideboard/Cupboard/ Countertop/Lowboard",
    "IDM.CAT.TYP.1060": "TV-,Sound-,Media-furniture",
    "IDM.CAT.TYP.1070": "Front",
    "IDM.CAT.TYP.1080": "Shelf 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": "Writing desk/Computer desk",
    "IDM.CAT.TYP.1130": "Bureau",
    "IDM.CAT.TYP.1140": "Chair",
    "IDM.CAT.TYP.1150": "Bar stool/Taboret",
    "IDM.CAT.TYP.1160": "Corner sofa/Sofa",
    "IDM.CAT.TYP.1170": "Training Seat/Play furniture/Changing table top/",
    "IDM.CAT.TYP.1180": "Bed",
    "IDM.CAT.TYP.1190": "Mattress/Slatted bottom/Set",
    "IDM.CAT.TYP.1200": "Nightstand/-Cabinet/-Chest of drawers/-Dresser",
    "IDM.CAT.TYP.1210": "Roll/Stationary container",
    "IDM.CAT.TYP.1220": "Bar systems/House bar furniture",
    "IDM.CAT.TYP.1230": "Wardrobe/Lobby 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": "Pedestal/Base frame",
    "IDM.CAT.TYP.1290": "Cover panel",
    "IDM.CAT.TYP.1300": "Cornices/Cornice profiles/Passe-partout",
    "IDM.CAT.TYP.1310": "Lighting",
    "IDM.CAT.TYP.1320": "Combination/Set",
    "IDM.CAT.TYP.1330": "Cover/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": "Search for articles",
    "katatree.genlines": "Custom slotting",
    "katatree.transfer-to-global": "Transfer articles to the overall collection",
    "Keep_me_logged_in": "Do you want to stay logged in?",
    "link": "Link",
    "make.an.appointment.2": "Make an appointment",
    "MatEdit.InvalidFileName": "Filename is either 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 receive your individual configuration shortly as an item list and 8-digit configuration code by e-mail. Please take your configuration code with you to your local dealer. With this code, your dealer can download your individual configuration directly in his 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": "FAVORITES LIST",
    "modal.notice.remove_button": "REMOVE FROM FAVORITES LIST",
    "modal.notice.select_all": "select all",
    "modal.notice.submit": "SEND PLAN",
    "modal.notice.text.empty": "There are no plans in your favorites list",
    "modal.notice.text.left": "= download planning again",
    "name": "Name",
    "name_mandatory": "Surname*",
    "new_furnplan_ui": "New furnplan interface",
    "no_Manufacturer_released": "Furnplan is not yet available for download because no manufacturer has released its catalogue yet.",
    "notice.text": "FAVORITE",
    "OLD_cat.airboard": "Air board",
    "OLD_cat.aufsatzelement": "Attachment element",
    "OLD_cat.aufsatzelement_connectivity": "Connectivity top unit",
    "OLD_cat.aufsatzregal": "Top shelf",
    "OLD_cat.haengeschrank": "Wall unit",
    "OLD_cat.korpussonos": "Corpus Sonos",
    "OLD_cat.korpussoundbar": "Soundbar integration",
    "OLD_cat.korpussoundsystem": "Spectral sound system",
    "OLD_cat.korpusstauraum": "Storage space\n",
    "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 role",
    "opusx.systemroleDescription": "A system role that cannot be processed.",
    "opusx.systemroleFailed": "You cannot edit a system role.",
    "opusx.userManagement": "User administration",
    "ox.rights.duplicateKey": "The key has already been assigned.",
    "ox.rights.instruction": "All keys must be unique.\nThe key consists of at least two parts.\nThe first part describes the group membership, e.g. furnplan.\nThe second part describes the use/area of use, e.g. projects\nA third part may be needed to specify the use, e.g. open.\nThis results in furnplan.project.open\nA right, e.g. to open projects.\nA similar scheme applies to translation keys e.g. opusx.rights.delete",
    "ox.rights.newRight": "New law",
    "ox.rights.rightManagement": "Rights management",
    "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": "excl. shipping costs",
    "plus_shipping_costsx": "excl. shipping costs",
    "postal_code_mandatory": "ZIP Code",
    "postcode": "Zip code",
    "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 standardized 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": "Contains more items 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 model to configure:",
    "projectManagerX.isNotOwner": "There is no authorization for the following plannings",
    "projectmanagerX.onePlanning": "Please select min/max one planning.",
    "projectManagerX.projectName": "Please enter a project name.",
    "projectManagerX.uncopiedPlannings": "The following plannings were not copied",
    "projectManagerX.undeletedPlannings": "Deleting 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": "Medium dashed line",
    "redlining.line.dashed.thick": "Thick dashed line",
    "redlining.line.dashed.thin": "Thin dotted line",
    "redlining.line.solid.medium": "Medium solid line",
    "redlining.line.solid.thick": "Thick solid line",
    "redlining.line.solid.thin": "Thin solid line",
    "redlining.mode.boundaryformation": "Grez Mode  - New element creates additional space between the print area if necessary",
    "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 forward",
    "redlining.page.previous": "Page back",
    "redlining.tools.arrow": "Draw element arrow",
    "redlining.tools.circle": "Draw element circle",
    "redlining.tools.delete": "Deleting additional elements and basic elements (for basic elements an explode is required beforehand)",
    "redlining.tools.explode": "Explode - prerequisite for deleting individual basic elements",
    "redlining.tools.image": "Draw element picture",
    "redlining.tools.line": "Draw element Line",
    "redlining.tools.manipulation": "Element manipulation - move / resize etc.",
    "redlining.tools.rectangle": "Draw square element",
    "redlining.tools.scope": "Draw dimension element",
    "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": "Shift Up",
    "redlining.viewport.zoomfit": "Limit zoom",
    "redlining.viewport.zoomin": "Zoom +",
    "redlining.viewport.zoomout": "Zoom -",
    "remember": "Bookmark",
    "reset_camera_position": "Reset camera position",
    "rticleinfodesk.vsGenDuration": "Duration:",
    "send_inquiry": "Send request",
    "send_link": "Send link",
    "send_request": "Send request",
    "show_hide_dimensions": "Show/hide dimensions",
    "sizes": "Sizes",
    "step.text.accessoires": "Accessories",
    "step.text.configuration": "configuration",
    "step.text.modeloverview": "Model overview",
    "step.text.noticelist": "watch list",
    "storeAddress": "Address",
    "storeName": "Company",
    "surname": "Last name",
    "template": "Template\n",
    "TischMitBank": "Bench with table & chairs",
    "TischMitEckbank": "Corner bench with table & chairs",
    "TischMitStuhl": "Table & chairs",
    "tot_inc_vat": "Total price incl. VAT",
    "total_price_inclusive_vat": "Total price (incl. VAT)",
    "Translate-Test-LF": "Test entry",
    "TXT_EPLAN_KA": "Cable exit",
    "TXT_EPLAN_S": "Switch",
    "TXT_EPLAN_SD": "Socket",
    "type_art_nr": "Type/ArtNo.",
    "undo": "Undo",
    "unit.name.cm": "Centimeter",
    "unit.name.m": "meters",
    "unit.name.mm": "Millimeter",
    "webcab.ArrangeEqually": "Arrange equally",
    "webcab.BackSlope": "rear roof slopes",
    "webcab.CabCount": "Number of wardrobes\n",
    "webcab.Cabinet": "Wardrobe",
    "webcab.CabinetHeight": "Wardrobe - height",
    "webcab.CabinetParams": "Cabinet parameters",
    "webcab.CabinetWidth": "Wardrobe - width",
    "webcab.CopySlopeLeftRightValuesOnSwitch": "Copy slope change sideways",
    "webcab.cornerOffset_L": "Corner distance left",
    "webcab.cornerOffset_R": "Corner distance right",
    "webcab.Depth": "Wardrobe - depth",
    "webcab.DepthNoSlope": "Depth without slope",
    "webcab.DepthSlope": "Slope depth",
    "webcab.EnableCabinetWidthAdjustRoomActive": "Cabinet width in space",
    "webcab.EnableItemMarking": "Mark items",
    "webcab.EnableRoomUI": "Edit room",
    "webcab.FloatSteps": "FloatSteps",
    "webcab.IndividualSettings": "Individual Settings",
    "webcab.InnerFrame": "Cabinet wall dimensions",
    "webcab.IntSteps": "IntSteps",
    "webcab.ItemCountInput": "Number of wardrobes",
    "webcab.JamWallHeightBack": "Jamb height",
    "webcab.JamWallLeft": "Jamb height",
    "webcab.JamWallRight": "Jamb height",
    "webcab.LeftSlope": "Left slope",
    "webcab.LeftSlope_item": "Wardrobe",
    "webcab.MaxCabDepth": "MaxCabDepth",
    "webcab.MaxCabHeight": "webcab.MaxCabHeight",
    "webcab.MaxCabWidth": "MaxCabWidth",
    "webcab.MaxCabWidthUnderSlope": "MaxCabWidthUnderSlope",
    "webcab.MaxCornerOffset_L": "max. corner distance left",
    "webcab.MaxCornerOffset_R": "max. corner distance right",
    "webcab.MaxRoomHeight": "MaxRoomHeight",
    "webcab.MaxRoomWidth": "MaxRoomWidth",
    "webcab.MaxSlopeMiterOffset": "MaxSlopeMiterOffset",
    "webcab.Middle": "Middle",
    "webcab.Middle_item": "Wardrobe",
    "webcab.MiddleOnly": "MiddleOnly",
    "webcab.MiddleOnly_item": "Wardrobe",
    "webcab.MinCabDepth": "MinCabDepth",
    "webcab.MinCabHeight": "Min height wardrobe",
    "webcab.MinCabWidth": "MinCabWidth",
    "webcab.MinCornerOffset_L": "min. corner distance left",
    "webcab.MinCornerOffset_R": "min. corner distance right",
    "webcab.MinHeightSlopeLeft": "min. Height of left slope",
    "webcab.MinHeightSlopeRight": "min. Height right slope",
    "webcab.MinJamWallHeightBackRoom": "Minimum jamb height",
    "webcab.MinOffsetSide": "MinOffsetSide",
    "webcab.MinOffsetSlope": "MinOffsetSlope",
    "webcab.MinOffsetTop": "MinOffsetTop",
    "webcab.MinRoomHeight": "inRoomHeight",
    "webcab.MinRoomWidth": "MinRoomWidth",
    "webcab.MinSlopeCabHeight": "min Cabinet height with slope",
    "webcab.MinTopWidth": "MinTopWidth",
    "webcab.MinWidthSlopeLeft": "Minimum width slope left",
    "webcab.MinWidthSlopeRight": "Minimum width slope right",
    "webcab.NewElement": "Cabinet wall",
    "webcab.OffsetBottom": "Distance below",
    "webcab.OffsetLeft": "Offset Left",
    "webcab.OffsetRight": "Offset Right",
    "webcab.OffsetSlopeBack": "OffsetSlopeBack",
    "webcab.OffsetSlopeLeft": "OffsetSlopeLeft",
    "webcab.OffsetSlopePolysAgainstSlopeDirection": "Overhang slope VH",
    "webcab.OffsetSlopePolysInSlopeDirection": "Overhang slope LR",
    "webcab.OffsetSlopeRight": "OffsetSlopeRight",
    "webcab.OffsetTop": "OffsetTop",
    "webcab.OuterFrame": "Room size",
    "webcab.OuterFrameHeight": "Room height",
    "webcab.OuterFrameWidth": "Room width",
    "webcab.PlaceObject": "place",
    "webcab.PositioningOption": "Placement option",
    "webcab.PositioningOptions": "Plaatsingsvarianten",
    "webcab.PreferredCabWidth": "PreferredCabWidth",
    "webcab.Raumparameter": "Room parameters",
    "webcab.RegelnSeitlicheSchraege": "Rules lateral slope",
    "webcab.RemoveFromCorner": "Remove from corner situation",
    "webcab.RightSlope": "RightSlope",
    "webcab.RightSlope_item": "Wardrobe",
    "webcab.Room": "Room",
    "webcab.RoomHeight": "Room - height",
    "webcab.RoomParams": "Room parameters",
    "webcab.RoomWidth": "Room - width",
    "webcab.RULE_OPTIMIZEBY_DIMENSIONSOLVER_HALFSIZE_FULLSIZE_L": "Halfsize fillsize L",
    "webcab.RULE_OPTIMIZEBY_DIMENSIONSOLVER_HALFSIZE_FULLSIZE_R": "Halfsize fillsize R",
    "webcab.RULE_OPTIMIZEBY_DIMENSIONSOLVER_MAXSIZE_BETTER": "maxsize better",
    "webcab.RULE_OPTIMIZEBY_DIMENSIONSOLVER_PREFERED_WIDTH": "Preferred width",
    "webcab.RULE_WIDTHCHANGE_ALL_NOTCHANGED_SAME_SIZE": "All unchanged sizes",
    "webcab.RULE_WIDTHCHANGE_ALL_SAME_SIZE": "All identical sizes\n",
    "webcab.RULE_WIDTHCHANGE_LAST_CHANGED_LAST": "Last changes",
    "webcab.RuleOptimizeBySwitch": "RuleOptimizeBySwitch",
    "webcab.RulePosChangeAllowedForSlopes": "PosChangeAllowedForSlopes",
    "webcab.RulesGeneral": "General settings",
    "webcab.RuleSlopeMiter": "SlopeMiter",
    "webcab.RuleWidhtChange": "WidhtChange",
    "webcab.RuleWidthChangeAllowed": "WidthChangeAllowed",
    "webcab.Schrankparameter": "Wardrobe parameter",
    "webcab.SideSlope": "lateral roof slopes",
    "webcab.SlopeGeneral": "Roof slope parameters",
    "webcab.SlopeLeftDX": "Slope width left",
    "webcab.SlopeMiter": "Slope miter",
    "webcab.SlopeMiterMinHorizontalWidth": "MiterMinHorizontalWidth",
    "webcab.SlopeMiterMinSlopeWidth": "MiterMinSlopeWidth",
    "webcab.SlopeRightDX": "Slope width 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": "Cannot not be inserted here!"
}