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
|
<?php
// Show help text in a popup window.
//
// webtrees: Web based Family History software
// Copyright (C) 2011 webtrees development team.
//
// This file also serves as a database of fact and label descriptions,
// allowing them to be discovered by xgettext, so we may use them dynamically
// in the rest of the code.
// Help links are generated using help_link('help_topic')
//
// Help text for modules belongs in WT_MODULES_DIR/XXX/help_text.php
// Module help links are generated using help_link('help_topic', 'module')
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// $Id$
define('WT_SCRIPT_NAME', 'help_text.php');
require './includes/session.php';
$help=safe_GET('help');
switch ($help) {
//////////////////////////////////////////////////////////////////////////////
// This is a list of all known gedcom tags. We list them all here so that
// xgettext() may find them.
//
// Tags such as BIRT:PLAC are only used as labels, and do not require help
// text. These are only used for translating labels.
//
// Tags such as _BIRT_CHIL are pseudo-tags, used to create family events.
//////////////////////////////////////////////////////////////////////////////
case 'ABBR':
$title=WT_Gedcom_Tag::getLabel('ABBR');
$text=WT_I18N::translate('Use this field for storing an abbreviated version of a title. This field is used in conjunction with the title field on sources. By default <b>webtrees</b> will first use the title and then the abbreviated title.<br /><br />According to the GEDCOM 5.5 specification, "this entry is to provide a short title used for sorting, filing, and retrieving source records (pg 62)."<br /><br />In <b>webtrees</b> the abbreviated title is optional, but in other genealogical programs it is required.');
break;
case 'ADDR':
$title=WT_Gedcom_Tag::getLabel('ADDR');
$text=WT_I18N::translate('Enter the address into the field just as you would write it on an envelope.<br /><br />Leave this field blank if you do not want to include an address.');
break;
case 'ADR1':
$title=WT_Gedcom_Tag::getLabel('ADR1');
$text='';
break;
case 'ADR2':
$title=WT_Gedcom_Tag::getLabel('ADR2');
$text='';
break;
case 'ADOP':
$title=WT_Gedcom_Tag::getLabel('ADOP');
$text=''; //('Pertaining to creation of a legally approved child-parent relationship that does not exist biologically.');
break;
case 'AFN':
$title=WT_Gedcom_Tag::getLabel('AFN');
$text=''; //('A unique permanent record file number of an individual record stored in Ancestral File.');
break;
case 'AGE':
$title=WT_Gedcom_Tag::getLabel('AGE');
$text=''; //('The age of the individual at the time an event occurred, or the age listed in the document.');
break;
case 'AGNC':
$title=WT_Gedcom_Tag::getLabel('AGNC');
$text=WT_I18N::translate('The organization, institution, corporation, person, or other entity that has authority.<br /><br />For example, an employer of a person, or a church that administered rites or events, or an organization responsible for creating and/or archiving records.');
break;
case 'ALIA':
$title=WT_Gedcom_Tag::getLabel('ALIA');
$text=''; //('An indicator to link different record descriptions of a person who may be the same person.');
break;
case 'ANCE':
$title=WT_Gedcom_Tag::getLabel('ANCE');
$text=''; //('Pertaining to forbearers of an individual.');
break;
case 'ANCI':
$title=WT_Gedcom_Tag::getLabel('ANCI');
$text=''; //('Indicates an interest in additional research for ancestors of this individual.');
break;
case 'ANUL':
$title=WT_Gedcom_Tag::getLabel('ANUL');
$text=''; //('Declaring a marriage void from the beginning (never existed).');
break;
case 'ASSO':
$title=WT_Gedcom_Tag::getLabel('ASSO');
$text=WT_I18N::translate('Enter associate GEDCOM ID.');
break;
case 'AUTH':
$title=WT_Gedcom_Tag::getLabel('AUTH');
$text=''; //('The name of the individual who created or compiled information.');
break;
case 'BAPL':
$title=WT_Gedcom_Tag::getLabel('BAPL');
$text=''; //('The event of baptism performed at age eight or later by priesthood authority of the LDS Church.');
break;
case 'BAPM':
$title=WT_Gedcom_Tag::getLabel('BAPM');
$text=''; //('The event of baptism, performed in infancy or later.');
// I omitted "(not LDS)" since many people choose to use this
// for all baptisms, rather than treat LDS as a special case.
// (Wes Groleau)
break;
case 'BARM':
$title=WT_Gedcom_Tag::getLabel('BARM');
$text=''; //('The ceremonial event held when a Jewish boy reaches age 13.');
break;
case 'BASM':
$title=WT_Gedcom_Tag::getLabel('BASM');
$text=''; //('The ceremonial event held when a Jewish girl reaches age 13, also known as "Bat Mitzvah."');
break;
case 'BIRT':
$title=WT_Gedcom_Tag::getLabel('BIRT');
$text=''; //('The event of entering into life.');
break;
case 'BLES':
$title=WT_Gedcom_Tag::getLabel('BLES');
$text=''; //('A religious event of bestowing divine care or intercession. 'Sometimes given in connection with a naming ceremony.');
break;
case 'BLOB':
$title=WT_Gedcom_Tag::getLabel('BLOB');
$text=''; //('"Binary Large OBject"--No longer used in GEDCOM 5.5.1');
break;
case 'BURI':
$title=WT_Gedcom_Tag::getLabel('BURI');
$text=''; //('The event of the proper disposing of the mortal remains of a deceased person.');
break;
case 'CALN':
$title=WT_Gedcom_Tag::getLabel('CALN');
$text=''; //('The number used by a repository to identify the specific items in its collections.');
break;
case 'CAST':
$title=WT_Gedcom_Tag::getLabel('CAST');
$text=''; //('The name of an individual\'s rank or status in society which is sometimes based on racial or religious differences, or differences in wealth, inherited rank, profession, occupation, etc.');
break;
case 'CAUS':
$title=WT_Gedcom_Tag::getLabel('CAUS');
$text=WT_I18N::translate('A description of the cause of the associated event or fact, such as the cause of death.');
break;
case 'CEME':
$title=WT_Gedcom_Tag::getLabel('Cemetery');
$text=WT_I18N::translate('Enter the name of the cemetery or other resting place where individual is buried.');
break;
case 'CENS':
$title=WT_Gedcom_Tag::getLabel('CENS');
$text=''; //('The event of the periodic count of the population for a designated locality, such as a national or state Census.');
break;
case 'CHAN':
$title=WT_Gedcom_Tag::getLabel('CHAN');
$text=''; //('Indicates a change, correction, or modification. Typically used in connection with a DATE to specify when a change in information occurred.');
break;
case 'CHAR':
$title=WT_Gedcom_Tag::getLabel('CHAR');
$text=''; //('An indicator of the character set used in writing this automated information.');
break;
case 'CHIL':
$title=WT_Gedcom_Tag::getLabel('CHIL');
$text=''; //('The natural, adopted, or sealed (LDS) child of a father and a mother.');
break;
case 'CHR':
$title=WT_Gedcom_Tag::getLabel('CHR');
$text=''; //('The religious event of baptizing and/or naming a child.');
break;
case 'CHRA':
$title=WT_Gedcom_Tag::getLabel('CHRA');
$text=''; //('The religious event of baptizing and/or naming an adult person.');
break;
case 'CITN':
// This tag is not in the 5.5.1 spec
$title=WT_Gedcom_Tag::getLabel('CITN');
$text='';
break;
case 'CITY':
$title=WT_Gedcom_Tag::getLabel('CITY');
$text=''; //('A lower level jurisdictional unit. Normally an incorporated municipal unit.');
break;
case 'COMM':
// This tag is not in the 5.5.1 spec
$title=WT_Gedcom_Tag::getLabel('COMM');
$text='';
break;
case 'CONC':
$title=WT_Gedcom_Tag::getLabel('CONC');
$text=''; //('An indicator that additional data belongs to the superior value. The information from the CONC value is to be connected to the value of the superior preceding line without a space and without a carriage return and/or new line character. Values that are split for a CONC tag must always be split at a non- space. If the value is split on a space the space will be lost when concatenation takes place. This is because of the treatment that spaces get as a GEDCOM delimiter, many GEDCOM values are trimmed of trailing spaces and some systems look for the first non-space starting after the tag to determine the beginning of the value.');
break;
case 'CONT':
$title=WT_Gedcom_Tag::getLabel('CONT');
$text=''; //('An indicator that additional data belongs to the superior value. The information from the CONT value is to be connected to the value of the superior preceding line with a carriage return and/or new line character. Leading spaces could be important to the formatting of the resultant text. When importing values from CONT lines the reader should assume only one delimiter character following the CONT tag. Assume that the rest of the leading spaces are to be a part of the value.');
break;
case 'CONF':
$title=WT_Gedcom_Tag::getLabel('CONF');
$text=''; //('The religious event of conferring the gift of the Holy Ghost and, among protestants, full church membership.');
break;
case 'CONL':
$title=WT_Gedcom_Tag::getLabel('CONL');
$text=''; //('The religious event by which a person receives membership in the LDS Church.');
break;
case 'COPR':
$title=WT_Gedcom_Tag::getLabel('COPR');
$text=''; //('A statement that accompanies data to protect it from unlawful duplication and distribution.');
break;
case 'CORP':
$title=WT_Gedcom_Tag::getLabel('CORP');
$text=''; //('A name of an institution, agency, corporation, or company.');
break;
case 'CREM':
$title=WT_Gedcom_Tag::getLabel('CREM');
$text=''; //('Disposal of the remains of a person\'s body by fire.');
break;
case 'CTRY':
$title=WT_Gedcom_Tag::getLabel('CTRY');
$text=''; //('The name or code of the country.');
break;
case 'DATA':
$title=WT_Gedcom_Tag::getLabel('DATA');
$text=''; //('Pertaining to stored automated information.');
break;
case 'DATE':
$title=WT_Gedcom_Tag::getLabel('DATE');
$CALENDAR_FORMAT=null; // Don't perform conversions here - it will confuse the examples!
$dates=array(
'1900' =>new WT_Date('1900'),
'JAN 1900' =>new WT_Date('JAN 1900'),
'FEB 1900' =>new WT_Date('FEB 1900'),
'MAR 1900' =>new WT_Date('MAR 1900'),
'APR 1900' =>new WT_Date('APR 1900'),
'MAY 1900' =>new WT_Date('MAY 1900'),
'JUN 1900' =>new WT_Date('JUN 1900'),
'JUL 1900' =>new WT_Date('JUL 1900'),
'AUG 1900' =>new WT_Date('AUG 1900'),
'SEP 1900' =>new WT_Date('SEP 1900'),
'OCT 1900' =>new WT_Date('OCT 1900'),
'NOV 1900' =>new WT_Date('NOV 1900'),
'DEC 1900' =>new WT_Date('DEC 1900'),
'11 DEC 1913' =>new WT_Date('11 DEC 1913'),
'01 FEB 2003' =>new WT_Date('01 FEB 2003'),
'ABT 1900' =>new WT_Date('ABT 1900'),
'EST 1900' =>new WT_Date('EST 1900'),
'CAL 1900' =>new WT_Date('CAL 1900'),
'INT 1900 (...)' =>new WT_Date('INT 1900 (...)'),
'@#DJULIAN@ 44 B.C.' =>new WT_Date('@#DJULIAN@ 44 B.C.'),
'@#DJULIAN@ 14 JAN 1700' =>new WT_Date('@#DJULIAN@ 14 JAN 1700'),
'BET @#DJULIAN@ 01 SEP 1752 AND @#DGREGORIAN@ 30 SEP 1752' =>new WT_Date('BET @#DJULIAN@ 01 SEP 1752 AND @#DGREGORIAN@ 30 SEP 1752'),
'@#DJULIAN@ 20 FEB 1742/43'=>new WT_Date('@#DJULIAN@ 20 FEB 1742/43'),
'FROM 1900 TO 1910' =>new WT_Date('FROM 1900 TO 1910'),
'FROM 1900' =>new WT_Date('FROM 1900'),
'TO 1910' =>new WT_Date('TO 1910'),
'BET 1900 AND 1910' =>new WT_Date('BET 1900 AND 1910'),
'BET JAN 1900 AND MAR 1900'=>new WT_Date('BET JAN 1900 AND MAR 1900'),
'BET APR 1900 AND JUN 1900'=>new WT_Date('BET APR 1900 AND JUN 1900'),
'BET JUL 1900 AND SEP 1900'=>new WT_Date('BET JUL 1900 AND SEP 1900'),
'BET OCT 1900 AND DEC 1900'=>new WT_Date('BET OCT 1900 AND DEC 1900'),
'AFT 1900' =>new WT_Date('AFT 1900'),
'BEF 1910' =>new WT_Date('BEF 1910'),
// Hijri dates
'@#DHIJRI@ 1497' =>new WT_Date('@#DHIJRI@ 1497'),
'@#DHIJRI@ MUHAR 1497' =>new WT_Date('@#DHIJRI@ MUHAR 1497'),
'ABT @#DHIJRI@ SAFAR 1497' =>new WT_Date('ABT @#DHIJRI@ SAFAR 1497'),
'BET @#DHIJRI@ RABIA 1497 AND @#DHIJRI@ RABIT 1497'=>new WT_Date('BET @#DHIJRI@ RABIA 1497 AND @#DHIJRI@ RABIT 1497'),
'FROM @#DHIJRI@ JUMAA 1497 TO @#DHIJRI@ JUMAT 1497'=>new WT_Date('FROM @#DHIJRI@ JUMAA 1497 TO @#DHIJRI@ JUMAT 1497'),
'AFT @#DHIJRI@ RAJAB 1497' =>new WT_Date('AFT @#DHIJRI@ RAJAB 1497'),
'BEF @#DHIJRI@ SHAAB 1497' =>new WT_Date('BEF @#DHIJRI@ SHAAB 1497'),
'ABT @#DHIJRI@ RAMAD 1497' =>new WT_Date('ABT @#DHIJRI@ RAMAD 1497'),
'FROM @#DHIJRI@ SHAWW 1497'=>new WT_Date('FROM @#DHIJRI@ SHAWW 1497'),
'TO @#DHIJRI@ DHUAQ 1497' =>new WT_Date('TO @#DHIJRI@ DHUAQ 1497'),
'@#DHIJRI@ 03 DHUAH 1497' =>new WT_Date('@#DHIJRI@ 03 DHUAH 1497'),
// French dates
'@#DFRENCH R@ 12' =>new WT_Date('@#DFRENCH R@ 12'),
'@#DFRENCH R@ VEND 12' =>new WT_Date('@#DFRENCH R@ VEND 12'),
'ABT @#DFRENCH R@ BRUM 12' =>new WT_Date('ABT @#DFRENCH R@ BRUM 12'),
'BET @#DFRENCH R@ FRIM 12 AND @#DFRENCH R@ NIVO 12'=>new WT_Date('BET @#DFRENCH R@ FRIM 12 AND @#DFRENCH R@ NIVO 12'),
'FROM @#DFRENCH R@ PLUV 12 TO @#DFRENCH R@ VENT 12'=>new WT_Date('FROM @#DFRENCH R@ PLUV 12 TO @#DFRENCH R@ VENT 12'),
'AFT @#DFRENCH R@ GERM 12' =>new WT_Date('AFT @#DFRENCH R@ GERM 12'),
'BEF @#DFRENCH R@ FLOR 12' =>new WT_Date('BEF @#DFRENCH R@ FLOR 12'),
'ABT @#DFRENCH R@ PRAI 12' =>new WT_Date('ABT @#DFRENCH R@ PRAI 12'),
'FROM @#DFRENCH R@ MESS 12'=>new WT_Date('FROM @#DFRENCH R@ MESS 12'),
'TO @#DFRENCH R@ THER 12' =>new WT_Date('TO @#DFRENCH R@ THER 12'),
'EST @#DFRENCH R@ FRUC 12' =>new WT_Date('EST @#DFRENCH R@ FRUC 12'),
'@#DFRENCH R@ 03 COMP 12' =>new WT_Date('@#DFRENCH R@ 03 COMP 12'),
// Jewish dates
'@#DHEBREW@ 5481' =>new WT_Date('@#DHEBREW@ 5481'),
'@#DHEBREW@ TSH 5481' =>new WT_Date('@#DHEBREW@ TSH 5481'),
'ABT @#DHEBREW@ CSH 5481' =>new WT_Date('ABT @#DHEBREW@ CSH 5481'),
'BET @#DHEBREW@ KSL 5481 AND @#DHEBREW@ TVT 5481'=>new WT_Date('BET @#DHEBREW@ KSL 5481 AND @#DHEBREW@ TVT 5481'),
'FROM @#DHEBREW@ SHV 5481 TO @#DHEBREW@ ADR 5481'=>new WT_Date('FROM @#DHEBREW@ SHV 5481 TO @#DHEBREW@ ADR 5481'),
'AFT @#DHEBREW@ ADR 5481' =>new WT_Date('AFT @#DHEBREW@ ADR 5481'),
'AFT @#DHEBREW@ ADS 5480' =>new WT_Date('AFT @#DHEBREW@ ADS 5480'),
'BEF @#DHEBREW@ NSN 5481' =>new WT_Date('BEF @#DHEBREW@ NSN 5481'),
'ABT @#DHEBREW@ IYR 5481' =>new WT_Date('ABT @#DHEBREW@ IYR 5481'),
'FROM @#DHEBREW@ SVN 5481' =>new WT_Date('FROM @#DHEBREW@ SVN 5481'),
'TO @#DHEBREW@ TMZ 5481' =>new WT_Date('TO @#DHEBREW@ TMZ 5481'),
'EST @#DHEBREW@ AAV 5481' =>new WT_Date('EST @#DHEBREW@ AAV 5481'),
'@#DHEBREW@ 03 ELL 5481' =>new WT_Date('@#DHEBREW@ 03 ELL 5481'),
);
foreach ($dates as &$date) {
$date=strip_tags($date->Display());
}
// These shortcuts work differently for different languages
switch (preg_replace('/[^DMY]/', '', str_replace(array('J', 'F'), array('D', 'M'), strtoupper($DATE_FORMAT)))) {
case 'YMD':
$example1='11/12/1913'; // Note: we ignore the DMY order if it doesn't make sense.
$example2='03/02/01';
break;
case 'MDY':
$example1='12/11/1913';
$example2='02/01/03';
break;
case 'DMY':
default:
$example1='11/12/1913';
$example2='01/02/03';
break;
}
$example1.='<br/>'.str_replace('/', '-', $example1).'<br/>'.str_replace('/', '.', $example1);
$example2.='<br/>'.str_replace('/', '-', $example2).'<br/>'.str_replace('/', '.', $example2);
$text=
'<p>'.WT_I18N::translate('Dates are stored using English abbreviations and keywords. Shortcuts are available as alternatives to these abbreviations and keywords.').'</p>'.
'<table border="1">'.
'<tr><th>'.WT_I18N::translate('Date').'</th><th>'.WT_I18N::translate('Format').'</th><th>'.WT_I18N::translate('Shortcut').'</th></tr>'.
'<tr><td>'.$dates['1900'].'</td><td><tt>1900</tt></td><td> </td></tr>'.
'<tr><td>'.$dates['JAN 1900'].'<br/>'.$dates['FEB 1900'].'<br/>'.$dates['MAR 1900'].'<br/>'.$dates['APR 1900'].'<br/>'.$dates['MAY 1900'].'<br/>'.$dates['JUN 1900'].'<br/>'.$dates['JUL 1900'].'<br/>'.$dates['AUG 1900'].'<br/>'.$dates['SEP 1900'].'<br/>'.$dates['OCT 1900'].'<br/>'.$dates['NOV 1900'].'<br/>'.$dates['DEC 1900'].'</td><td><tt>JAN 1900<br/>FEB 1900<br/>MAR 1900<br/>APR 1900<br/>MAY 1900<br/>JUN 1900<br/>JUL 1900<br/>AUG 1900<br/>SEP 1900<br/>OCT 1900<br/>NOV 1900<br/>DEC 1900</tt></td><td> </td></tr>'.
'<tr><td>'.$dates['11 DEC 1913'].'</td><td><tt>11 DEC 1913</tt></td><td><tt>'.$example1.'</tt></td></tr>'.
'<tr><td>'.$dates['01 FEB 2003'].'</td><td><tt>01 FEB 2003</tt></td><td><tt>'.$example2.'</tt></td></tr>'.
'<tr><td>'.$dates['ABT 1900'].'</td><td><tt>ABT 1900</tt></td><td><tt>~1900</tt></td></tr>'.
'<tr><td>'.$dates['EST 1900'].'</td><td><tt>EST 1900</tt></td><td><tt>*1900</tt></td></tr>'.
'<tr><td>'.$dates['CAL 1900'].'</td><td><tt>CAL 1900</tt></td><td><tt>#1900</tt></td></tr>'.
'<tr><td>'.$dates['INT 1900 (...)'].'</td><td><tt>INT 1900 (...)</tt></td><td> </td></tr>'.
'</table>'.
'<p>'.WT_I18N::translate('Date ranges are used to indicate that an event, such as a birth, happened on a unknown date within a possible range.').'</p>'.
'<table border="1">'.
'<tr><th>'.WT_I18N::translate('Date range').'</th><th>'.WT_I18N::translate('Format').'</th><th>'.WT_I18N::translate('Shortcut').'</th></tr>'.
'<tr><td>'.$dates['BET 1900 AND 1910'].'</td><td><tt>BET 1900 AND 1910</tt></td><td><tt>1900-1910</tt></td></tr>'.
'<tr><td>'.$dates['AFT 1900'].'</td><td><tt>AFT 1900</tt></td><td><tt>>1900</tt></td></tr>'.
'<tr><td>'.$dates['BEF 1910'].'</td><td><tt>BEF 1910</tt></td><td><tt><1910</tt></td></tr>'.
'<tr><td>'.$dates['BET JAN 1900 AND MAR 1900'].'</td><td><tt>BET JAN 1900 AND MAR 1900</tt></td><td><tt>Q1 1900</tt></td></tr>'.
'<tr><td>'.$dates['BET APR 1900 AND JUN 1900'].'</td><td><tt>BET APR 1900 AND JUN 1900</tt></td><td><tt>Q2 1900</tt></td></tr>'.
'<tr><td>'.$dates['BET JUL 1900 AND SEP 1900'].'</td><td><tt>BET JUL 1900 AND SEP 1900</tt></td><td><tt>Q3 1900</tt></td></tr>'.
'<tr><td>'.$dates['BET OCT 1900 AND DEC 1900'].'</td><td><tt>BET OCT 1900 AND DEC 1900</tt></td><td><tt>Q4 1900</tt></td></tr>'.
'</table>'.
'<p>'.WT_I18N::translate('Date periods are used to indicate that a fact, such as an occupation, continued for a period of time.').'</p>'.
'<table border="1">'.
'<tr><th>'.WT_I18N::translate('Date period').'</th><th>'.WT_I18N::translate('Format').'</th><th>'.WT_I18N::translate('Shortcut').'</th></tr>'.
'<tr><td>'.$dates['FROM 1900 TO 1910'].'</td><td><tt>FROM 1900 TO 1910</tt></td><td><tt>1900~1910</tt></td></tr>'.
'<tr><td>'.$dates['FROM 1900'].'</td><td><tt>FROM 1900</tt></td><td><tt>-1900</tt></td></tr>'.
'<tr><td>'.$dates['TO 1910'].'</td><td><tt>TO 1910</tt></td><td><tt>1900-</tt></td></tr>'.
'</table>'.
'<p>'.WT_I18N::translate('Simple dates are assumed to be in the gregorian calendar. To specify a date in another calendar, add a keyword before the date. This keyword is optional if the month or year format make the date unambiguous.').'</p>'.
'<table border="1">'.
'<tr><th>'.WT_I18N::translate('Date').'</th><th>'.WT_I18N::translate('Format').'</th></tr>'.
'<tr><td colspan="2" align="center">'.WT_I18N::translate('Julian').'</td></tr>'.
'<tr><td>'.$dates['@#DJULIAN@ 14 JAN 1700'].'</td><td><tt>@#DJULIAN@ 14 JAN 1700</tt></td></tr>'.
'<tr><td>'.$dates['@#DJULIAN@ 44 B.C.'].'</td><td><tt>@#DJULIAN@ 44 B.C.</tt></td></tr>'.
'<tr><td>'.$dates['@#DJULIAN@ 20 FEB 1742/43'].'</td><td><tt>@#DJULIAN@ 20 FEB 1742/43</tt></td></tr>'.
'<tr><td>'.$dates['BET @#DJULIAN@ 01 SEP 1752 AND @#DGREGORIAN@ 30 SEP 1752'].'</td><td><tt>BET @#DJULIAN@ 01 SEP 1752 AND @#DGREGORIAN@ 30 SEP 1752</tt></td></tr>'.
'<tr><td colspan="2" align="center">'.WT_I18N::translate('Jewish').'</td></tr>'.
'<tr><td>'.$dates['@#DHEBREW@ 5481'].'</td><td><tt>@#DHEBREW@ 5481</tt></td></tr>'.
'<tr><td>'.$dates['@#DHEBREW@ TSH 5481'].'</td><td><tt>@#DHEBREW@ TSH 5481</tt></td></tr>'.
'<tr><td>'.$dates['ABT @#DHEBREW@ CSH 5481'].'</td><td><tt>ABT @#DHEBREW@ CSH 5481</tt></td></tr>'.
'<tr><td>'.$dates['BET @#DHEBREW@ KSL 5481 AND @#DHEBREW@ TVT 5481'].'</td><td><tt>BET @#DHEBREW@ KSL 5481 AND @#DHEBREW@ TVT 5481</tt></td></tr>'.
'<tr><td>'.$dates['FROM @#DHEBREW@ SHV 5481 TO @#DHEBREW@ ADR 5481'].'</td><td><tt>FROM @#DHEBREW@ SHV 5481 TO @#DHEBREW@ ADR 5481</tt></td></tr>'.
'<tr><td>'.$dates['AFT @#DHEBREW@ ADR 5481'].'</td><td><tt>AFT @#DHEBREW@ ADR 5481</tt></td></tr>'.
'<tr><td>'.$dates['AFT @#DHEBREW@ ADS 5480'].'</td><td><tt>AFT @#DHEBREW@ ADS 5480</tt></td></tr>'.
'<tr><td>'.$dates['BEF @#DHEBREW@ NSN 5481'].'</td><td><tt>BEF @#DHEBREW@ NSN 5481</tt></td></tr>'.
'<tr><td>'.$dates['ABT @#DHEBREW@ IYR 5481'].'</td><td><tt>ABT @#DHEBREW@ IYR 5481</tt></td></tr>'.
'<tr><td>'.$dates['FROM @#DHEBREW@ SVN 5481'].'</td><td><tt>FROM @#DHEBREW@ SVN 5481</tt></td></tr>'.
'<tr><td>'.$dates['TO @#DHEBREW@ TMZ 5481'].'</td><td><tt>TO @#DHEBREW@ TMZ 5481</tt></td></tr>'.
'<tr><td>'.$dates['EST @#DHEBREW@ AAV 5481'].'</td><td><tt>EST @#DHEBREW@ AAV 5481</tt></td></tr>'.
'<tr><td>'.$dates['@#DHEBREW@ 03 ELL 5481'].'</td><td><tt>@#DHEBREW@ 03 ELL 5481</tt></td></tr>'.
'<tr><td colspan="2" align="center">'.WT_I18N::translate('Hijri').'</td></tr>'.
'<tr><td>'.$dates['@#DHIJRI@ 1497'].'</td><td><tt>@#DHIJRI@ 1497</tt></td></tr>'.
'<tr><td>'.$dates['@#DHIJRI@ MUHAR 1497'].'</td><td><tt>@#DHIJRI@ MUHAR 1497</tt></td></tr>'.
'<tr><td>'.$dates['ABT @#DHIJRI@ SAFAR 1497'].'</td><td><tt>ABT @#DHIJRI@ SAFAR 1497</tt></td></tr>'.
'<tr><td>'.$dates['BET @#DHIJRI@ RABIA 1497 AND @#DHIJRI@ RABIT 1497'].'</td><td><tt>BET @#DHIJRI@ RABIA 1497 AND @#DHIJRI@ RABIT 1497</tt></td></tr>'.
'<tr><td>'.$dates['FROM @#DHIJRI@ JUMAA 1497 TO @#DHIJRI@ JUMAT 1497'].'</td><td><tt>FROM @#DHIJRI@ JUMAA 1497 TO @#DHIJRI@ JUMAT 1497</tt></td></tr>'.
'<tr><td>'.$dates['AFT @#DHIJRI@ RAJAB 1497'].'</td><td><tt>AFT @#DHIJRI@ RAJAB 1497</tt></td></tr>'.
'<tr><td>'.$dates['BEF @#DHIJRI@ SHAAB 1497'].'</td><td><tt>BEF @#DHIJRI@ SHAAB 1497</tt></td></tr>'.
'<tr><td>'.$dates['ABT @#DHIJRI@ RAMAD 1497'].'</td><td><tt>ABT @#DHIJRI@ RAMAD 1497</tt></td></tr>'.
'<tr><td>'.$dates['FROM @#DHIJRI@ SHAWW 1497'].'</td><td><tt>FROM @#DHIJRI@ SHAWW 1497</tt></td></tr>'.
'<tr><td>'.$dates['TO @#DHIJRI@ DHUAQ 1497'].'</td><td><tt>TO @#DHIJRI@ DHUAQ 1497</tt></td></tr>'.
'<tr><td>'.$dates['@#DHIJRI@ 03 DHUAH 1497'].'</td><td><tt>@#DHIJRI@ 03 DHUAH 1497</tt></td></tr>'.
'<tr><td colspan="2" align="center">'.WT_I18N::translate('French').'</td></tr>'.
'<tr><td>'.$dates['@#DFRENCH R@ 12'].'</td><td><tt>@#DFRENCH R@ 12</tt></td></tr>'.
'<tr><td>'.$dates['@#DFRENCH R@ VEND 12'].'</td><td><tt>@#DFRENCH R@ VEND 12</tt></td></tr>'.
'<tr><td>'.$dates['ABT @#DFRENCH R@ BRUM 12'].'</td><td><tt>ABT @#DFRENCH R@ BRUM 12</tt></td></tr>'.
'<tr><td>'.$dates['BET @#DFRENCH R@ FRIM 12 AND @#DFRENCH R@ NIVO 12'].'</td><td><tt>BET @#DFRENCH R@ FRIM 12 AND @#DFRENCH R@ NIVO 12</tt></td></tr>'.
'<tr><td>'.$dates['FROM @#DFRENCH R@ PLUV 12 TO @#DFRENCH R@ VENT 12'].'</td><td><tt>FROM @#DFRENCH R@ PLUV 12 TO @#DFRENCH R@ VENT 12</tt></td></tr>'.
'<tr><td>'.$dates['AFT @#DFRENCH R@ GERM 12'].'</td><td><tt>AFT @#DFRENCH R@ GERM 12</tt></td></tr>'.
'<tr><td>'.$dates['BEF @#DFRENCH R@ FLOR 12'].'</td><td><tt>BEF @#DFRENCH R@ FLOR 12</tt></td></tr>'.
'<tr><td>'.$dates['ABT @#DFRENCH R@ PRAI 12'].'</td><td><tt>ABT @#DFRENCH R@ PRAI 12</tt></td></tr>'.
'<tr><td>'.$dates['FROM @#DFRENCH R@ MESS 12'].'</td><td><tt>FROM @#DFRENCH R@ MESS 12</tt></td></tr>'.
'<tr><td>'.$dates['TO @#DFRENCH R@ THER 12'].'</td><td><tt>TO @#DFRENCH R@ THER 12</tt></td></tr>'.
'<tr><td>'.$dates['EST @#DFRENCH R@ FRUC 12'].'</td><td><tt>EST @#DFRENCH R@ FRUC 12</tt></td></tr>'.
'<tr><td>'.$dates['@#DFRENCH R@ 03 COMP 12'].'</td><td><tt>@#DFRENCH R@ 03 COMP 12</tt></td></tr>'.
'</table>';
break;
case 'DEAT':
$title=WT_Gedcom_Tag::getLabel('DEAT');
$text=''; //('The event when mortal life terminates.');
break;
case 'DESC':
$title=WT_Gedcom_Tag::getLabel('DESC');
$text=''; //('Pertaining to offspring of an individual.');
break;
case 'DESI':
$title=WT_Gedcom_Tag::getLabel('DESI');
$text=''; //('Indicates an interest in research to identify additional descendants of this individual.');
break;
case 'DEST':
$title=WT_Gedcom_Tag::getLabel('DEST');
$text=''; //('A system receiving data.');
break;
case 'DIV':
$title=WT_Gedcom_Tag::getLabel('DIV');
$text=''; //('An event of dissolving a marriage through civil action.');
break;
case 'DIVF':
$title=WT_Gedcom_Tag::getLabel('DIVF');
$text=''; //('An event of filing for a divorce by a spouse.');
break;
case 'DSCR':
$title=WT_Gedcom_Tag::getLabel('DSCR');
$text=''; //('The physical characteristics of a person, place, or thing.');
break;
case 'EDUC':
$title=WT_Gedcom_Tag::getLabel('EDUC');
$text=''; //('Indicator of a level of education attained.');
break;
case 'EMAI':
case 'EMAIL':
case 'EMAL':
case '_EMAIL':
$title=WT_Gedcom_Tag::getLabel('EMAIL');
$text=WT_I18N::translate('Enter the email address.<br /><br />An example email address looks like this: <b>name@hotmail.com</b> Leave this field blank if you do not want to include an email address.');
break;
case 'EMIG':
$title=WT_Gedcom_Tag::getLabel('EMIG');
$text=''; //('An event of leaving one\'s homeland with the intent of residing elsewhere.');
break;
case 'ENDL':
$title=WT_Gedcom_Tag::getLabel('ENDL');
$text=''; //('A religious event where an endowment ordinance for an individual was performed by priesthood authority in an LDS temple.');
break;
case 'ENGA':
$title=WT_Gedcom_Tag::getLabel('ENGA');
$text=''; //('An event of recording or announcing an agreement between two people to become married.');
break;
case 'EVEN':
$title=WT_Gedcom_Tag::getLabel('EVEN');
$text=''; //('Pertaining to a noteworthy happening related to an individual, a group, or an organization. An EVENt structure is usually qualified or classified by a subordinate use of the TYPE tag.');
break;
case 'FACT':
$title=WT_Gedcom_Tag::getLabel('FACT');
$text=''; //('Pertaining to a noteworthy attribute or fact concerning an individual, a group, or an organization. A FACT structure is usually qualified or classified by a subordinate use of the TYPE tag.');
break;
case 'FAM':
$title=WT_Gedcom_Tag::getLabel('FAM');
$text=''; //('Identifies a legal, common law, or other customary relationship of man and woman and their children, if any, or a family created by virtue of the birth of a child to its biological father and mother.');
break;
case 'FAMC':
$title=WT_Gedcom_Tag::getLabel('FAMC');
$text=''; //('Identifies the family in which an individual appears as a child.');
break;
case 'FAMF':
$title=WT_Gedcom_Tag::getLabel('FAMF');
$text=''; //('Pertaining to, or the name of, a family file. Names stored in a file that are assigned to a family for doing temple ordinance work.');
break;
case 'FAMS':
$title=WT_Gedcom_Tag::getLabel('FAMS');
$text=''; //('Identifies the family in which an individual appears as a spouse.');
break;
case 'FAX':
$title=WT_Gedcom_Tag::getLabel('FAX');
$text=WT_I18N::translate('Enter the FAX number including the country and area code.<br /><br />Leave this field blank if you do not want to include a FAX number. For example, a number in Germany might be +49 25859 56 76 89 and a number in USA or Canada might be +1 888 555-1212.');
break;
case 'FCOM':
$title=WT_Gedcom_Tag::getLabel('FCOM');
$text=''; //('A religious rite, the first act of sharing in the Lord\'s supper as part of church worship.');
break;
case 'FILE':
$title=WT_Gedcom_Tag::getLabel('FILE');
$text=''; //('This is the most important field in the multimedia object record. It indicates which file to use. At the very minimum, you need to enter the file\'s name. Depending on your settings, more information about the file\'s location may be helpful.<br /><br />You can use the <b>Find Media</b> link to help you locate media items that have already been uploaded to the site.');
break;
case 'FONE':
$title=WT_Gedcom_Tag::getLabel('FONE');
$text=''; //('A phonetic variation of a superior text string');
break;
case 'FORM':
$title=WT_Gedcom_Tag::getLabel('FORM');
$text=WT_I18N::translate('This is an optional field that can be used to enter the file format of the multimedia object. Some genealogy programs may look at this field to determine how to handle the item. However, since media do not transfer across computer systems very well, this field is not very important.');
break;
case 'GEDC':
$title=WT_Gedcom_Tag::getLabel('GEDC');
$text=''; //('Information about the use of GEDCOM in a transmission.');
break;
case 'GIVN':
$title=WT_Gedcom_Tag::getLabel('GIVN');
$text=WT_I18N::translate('In this field you should enter the given names for the person. As an example, in the name "John Robert Finlay", the given names that should be entered here are "John Robert"');
break;
case 'GRAD':
$title=WT_Gedcom_Tag::getLabel('GRAD');
$text=''; //('An event of awarding educational diplomas or degrees to individuals.');
break;
case 'HEAD':
$title=WT_Gedcom_Tag::getLabel('HEAD');
$text=''; //('Identifies information pertaining to an entire GEDCOM transmission.');
break;
case 'HUSB':
$title=WT_Gedcom_Tag::getLabel('HUSB');
$text=''; //('An individual in the family role of a married man or father.');
break;
case 'IDNO':
$title=WT_Gedcom_Tag::getLabel('IDNO');
$text='';
break;
case 'IMMI':
$title=WT_Gedcom_Tag::getLabel('IMMI');
$text='';
break;
case 'INDI':
$title=WT_Gedcom_Tag::getLabel('INDI');
$text='';
break;
case 'INFL':
$title=WT_Gedcom_Tag::getLabel('INFL');
$text='';
break;
case 'LANG':
$title=WT_Gedcom_Tag::getLabel('LANG');
$text='';
break;
case 'LATI':
$title=WT_Gedcom_Tag::getLabel('LATI');
$text='';
break;
case 'LEGA':
$title=WT_Gedcom_Tag::getLabel('LEGA');
$text='';
break;
case 'LONG':
$title=WT_Gedcom_Tag::getLabel('LONG');
$text='';
break;
case 'MAP':
$title=WT_Gedcom_Tag::getLabel('MAP');
$text='';
break;
case 'MARB':
$title=WT_Gedcom_Tag::getLabel('MARB');
$text='';
break;
case 'MARC':
$title=WT_Gedcom_Tag::getLabel('MARC');
$text='';
break;
case 'MARL':
$title=WT_Gedcom_Tag::getLabel('MARL');
$text='';
break;
case 'MARR':
$title=WT_Gedcom_Tag::getLabel('MARR');
$text='';
break;
case 'MARR_CIVIL':
$title=WT_Gedcom_Tag::getLabel('MARR_CIVIL');
$text='';
break;
case 'MARR_PARTNERS':
$title=WT_Gedcom_Tag::getLabel('MARR_PARTNERS');
$text='';
break;
case 'MARR_RELIGIOUS':
$title=WT_Gedcom_Tag::getLabel('MARR_RELIGIOUS');
$text='';
break;
case 'MARR_UNKNOWN':
$title=WT_Gedcom_Tag::getLabel('MARR_UNKNOWN');
$text='';
break;
case 'MARS':
$title=WT_Gedcom_Tag::getLabel('MARS');
$text='';
break;
case 'MEDI':
$title=WT_Gedcom_Tag::getLabel('MEDI');
$text='';
break;
case 'NAME':
$title=WT_Gedcom_Tag::getLabel('NAME');
$text=WT_I18N::translate('This is the most important field in a person\'s Name record.<br /><br />This field should be filled automatically as the other fields are filled in, but it is provided so that you can edit the information according to your personal preference.<br /><br />The name in this field should be entered according to the GEDCOM 5.5.1 standards with the surname surrounded by forward slashes "/". As an example, the name "John Robert Finlay Jr." should be entered like this: "John Robert /Finlay/ Jr.".');
break;
case 'NATI':
$title=WT_Gedcom_Tag::getLabel('NATI');
$text='';
break;
case 'NATU':
$title=WT_Gedcom_Tag::getLabel('NATU');
$text='';
break;
case 'NCHI':
$title=WT_Gedcom_Tag::getLabel('NCHI');
$text=WT_I18N::translate('Enter the number of children for this individual or family. This is an optional field.');
break;
case 'NICK':
$title=WT_Gedcom_Tag::getLabel('NICK');
$text=WT_I18N::translate('In this field you should enter any nicknames for the person.<br />This is an optional field.<br /><br />Ways to add a nickname:<ul><li>Select <b>modify name</b> then enter nickname and save</li><li>Select <b>add new name</b> then enter nickname AND name and save</li><li>Select <b>edit GEDCOM record</b> to add multiple [2 NICK] records subordinate to the main [1 NAME] record.</li></ul>');
break;
case 'NMR':
$title=WT_Gedcom_Tag::getLabel('NMR');
$text='';
break;
case 'NOTE':
$title=WT_Gedcom_Tag::getLabel('NOTE');
$text=WT_I18N::translate('Notes are free-form text and will appear in the Fact Details section of the page.');
break;
case 'NPFX':
$title=WT_Gedcom_Tag::getLabel('NPFX');
$text=WT_I18N::translate('This optional field allows you to enter a name prefix such as "Dr." or "Adm."');
break;
case 'NSFX':
$title=WT_Gedcom_Tag::getLabel('NSFX');
$text=WT_I18N::translate('In this optional field you should enter the name suffix for the person. Examples of name suffixes are "Sr.", "Jr.", and "III".');
break;
case 'OBJE':
$title=WT_Gedcom_Tag::getLabel('OBJE');
$text='';
break;
case 'OCCU':
$title=WT_Gedcom_Tag::getLabel('OCCU');
$text='';
break;
case 'ORDI':
$title=WT_Gedcom_Tag::getLabel('ORDI');
$text='';
break;
case 'ORDN':
$title=WT_Gedcom_Tag::getLabel('ORDN');
$text='';
break;
case 'PAGE':
$title=WT_Gedcom_Tag::getLabel('PAGE');
$text=WT_I18N::translate('In the Citation Details field you would enter the page number or other information that might help someone find the information in the source.');
break;
case 'PEDI':
$title=WT_Gedcom_Tag::getLabel('PEDI');
$text=WT_I18N::translate('This field describes the relationship of the child to its family. The possibilities are:<ul><li><b>unknown</b> The child\'s relationship to its family cannot be determined. When this option is selected, the Pedigree field will not be copied into the database.<br /><br /></li><li><b>Birth</b> This option indicates that the child is related to its family by birth.<br /><br /></li><li><b>Adopted</b> This option indicates that the child was adopted by its family. This does <i>not</i> indicate that there is no blood relationship between the child and its family; it shows that the child was adopted by the family in question sometime after the child\'s birth.<br /><br /></li><li><b>Foster</b> This option indicates that the child is a foster child of the family. Usually, there is no blood relationship between the child and its family.<br /><br /></li><li><b>Sealing</b> The child was sealed to its family in an LDS <i>sealing</i> ceremony. A child sealing is performed when the parents were sealed to each other after the birth of the child. Children born after the parents\' sealing are automatically sealed to the family.<br /><br /></li></ul>');
break;
case 'PHON':
$title=WT_Gedcom_Tag::getLabel('PHON');
$text=WT_I18N::translate('Enter the phone number including the country and area code.<br /><br />Leave this field blank if you do not want to include a phone number. For example, a number in Germany might be +49 25859 56 76 89 and a number in USA or Canada might be +1 888 555-1212.');
break;
case 'PLAC':
$title=WT_Gedcom_Tag::getLabel('PLAC');
$text=WT_I18N::translate('Places should be entered according to the standards for genealogy. In genealogy, places are recorded with the most specific information about the place first and then working up to the least specific place last, using commas to separate the different place levels. The level at which you record the place information should represent the levels of government or church where vital records for that place are kept.<br /><br />For example, a place like Salt Lake City would be entered as "Salt Lake City, Salt Lake, Utah, USA".<br /><br />Let\'s examine each part of this place. The first part, "Salt Lake City," is the city or township where the event occurred. In some countries, there may be municipalities or districts inside a city which are important to note. In that case, they should come before the city. The next part, "Salt Lake," is the county. "Utah" is the state, and "USA" is the country. It is important to note each place because genealogical records are kept by the governments of each level.<br /><br />If a level of the place is unknown, you should leave a space between the commas. Suppose, in the example above, you didn\'t know the county for Salt Lake City. You should then record it like this: "Salt Lake City, , Utah, USA". Suppose you only know that a person was born in Utah. You would enter the information like this: ", , Utah, USA". <br /><br />You can use the <b>Find Place</b> link to help you find places that already exist in the database.');
break;
case 'POST':
$title=WT_Gedcom_Tag::getLabel('POST');
$text='';
break;
case 'PROB':
$title=WT_Gedcom_Tag::getLabel('PROB');
$text='';
break;
case 'PROP':
$title=WT_Gedcom_Tag::getLabel('PROP');
$text='';
break;
case 'PUBL':
$title=WT_Gedcom_Tag::getLabel('PUBL');
$text='';
break;
case 'QUAY':
$title=WT_Gedcom_Tag::getLabel('QUAY');
$text=WT_I18N::translate('You would use this field to record the quality or reliability of the data found in this source. Many genealogy applications use a number in the field. <b>3</b> might mean that the data is a primary source, <b>2</b> might mean that it was a secondary source, <b>1</b> might mean the information is questionable, and <b>0</b> might mean that the source is unreliable.');
break;
case 'REFN':
$title=WT_Gedcom_Tag::getLabel('REFN');
$text='';
break;
case 'RELA':
$title=WT_Gedcom_Tag::getLabel('RELA');
$text=WT_I18N::translate('Select a relationship name from the list. Selecting <b>Godfather</b> means: <i>This associate is the Godfather of the current individual</i>.');
break;
case 'RELI':
$title=WT_Gedcom_Tag::getLabel('RELI');
$text='';
break;
case 'REPO':
$title=WT_Gedcom_Tag::getLabel('REPO');
$text='';
break;
case 'RESI':
$title=WT_Gedcom_Tag::getLabel('RESI');
$text='';
break;
case 'RESN':
$title=WT_Gedcom_Tag::getLabel('RESN');
$text=
WT_I18N::translate('Restrictions can be added to records and/or facts. They restrict who can view the data and who can edit it.').
'<br /><br />'.
WT_I18N::translate('Note that if a user account is linked to a record, then that user will always be able to view that record.');
break;
case 'RETI':
$title=WT_Gedcom_Tag::getLabel('RETI');
$text='';
break;
case 'RFN':
$title=WT_Gedcom_Tag::getLabel('RFN');
$text='';
break;
case 'RIN':
$title=WT_Gedcom_Tag::getLabel('RIN');
$text='';
break;
case 'ROLE':
$title=WT_Gedcom_Tag::getLabel('ROLE');
$text='';
break;
case 'ROMN':
$title=WT_Gedcom_Tag::getLabel('ROMN');
$text=WT_I18N::translate('In many cultures it is customary to have a traditional name spelled in the traditional characters and also a romanized version of the name as it would be spelled or pronounced in languages based on the Latin alphabet, such as English.<br /><br />If you prefer to use a non-Latin alphabet such as Hebrew, Greek, Russian, Chinese, or Arabic to enter the name in the standard name fields, then you can use this field to enter the same name using the Latin alphabet. Both versions of the name will appear in lists and charts.<br /><br />Although this field is labeled "Romanized", it is not restricted to containing only characters based on the Latin alphabet. This might be of use with Japanese names, where three different alphabets may occur.');
break;
case 'SERV':
$title=WT_Gedcom_Tag::getLabel('SERV');
$text='';
break;
case 'SEX':
$title=WT_Gedcom_Tag::getLabel('SEX');
$text=WT_I18N::translate('Choose the appropriate gender from the drop-down list. The <b>unknown</b> option indicates that the gender is unknown.');
break;
case 'SHARED_NOTE':
$title=WT_Gedcom_Tag::getLabel('SHARED_NOTE');
$text=WT_I18N::translate('Shared Notes are free-form text and will appear in the Fact Details section of the page.<br /><br />Each shared note can be linked to more than one person, family, source, or event.');
break;
case 'SLGC':
$title=WT_Gedcom_Tag::getLabel('SLGC');
$text='';
break;
case 'SLGS':
$title=WT_Gedcom_Tag::getLabel('SLGS');
$text='';
break;
case 'SOUR':
$title=WT_Gedcom_Tag::getLabel('SOUR');
$text=WT_I18N::translate('This field allows you to change the source record that this fact\'s source citation links to. This field takes a Source ID. Beside the field will be listed the title of the current source ID. Use the <b>Find ID</b> link to look up the source\'s ID number. To remove the entire citation, make this field blank.');
break;
case 'SPFX':
$title=WT_Gedcom_Tag::getLabel('SPFX');
$text=WT_I18N::translate('Enter or select from the list words that precede the main part of the Surname. Examples of such words are <b>von</b> Braun, <b>van der</b> Kloot, <b>de</b> Graaf, etc.');
break;
case 'SSN':
$title=WT_Gedcom_Tag::getLabel('SSN');
$text='';
break;
case 'STAE':
$title=WT_Gedcom_Tag::getLabel('STAE');
$text='';
break;
case 'STAT':
$title=WT_Gedcom_Tag::getLabel('STAT');
$text=WT_I18N::translate('This is an optional status field and is used mostly for LDS ordinances as they are run through the TempleReady program.');
break;
case 'SUBM':
$title=WT_Gedcom_Tag::getLabel('SUBM');
$text='';
break;
case 'SUBN':
$title=WT_Gedcom_Tag::getLabel('SUBN');
$text='';
break;
case 'SURN':
$john_doe=WT_I18N::translate('John /DOE/'); // Same text used in admin_trees_manage.php
$fullname=str_replace('/', '', $john_doe);
list(,$surname)=explode('/', $john_doe);
$title=WT_Gedcom_Tag::getLabel('SURN');
$text=WT_I18N::translate('In this field you should enter the surname for the person. In the name %1$s, the surname is %2$s.', "<b>{$fullname}</b>", "<b>{$surname}</b>");
$text.='<br/><br/>';
$text.=WT_I18N::translate('Individuals with multiple surnames, common in Spain and Portugal, should separate the surnames with a comma. This indicates that the person is to be listed under each of the names. For example, <b>Cortes,Vega</b> will be listed under both <b>C</b> and <b>V</b>, whereas <b>Cortes Vega</b> will only be listed under <b>C</b>.');
break;
case 'TEMP':
$title=WT_Gedcom_Tag::getLabel('TEMP');
$text=WT_I18N::translate('For LDS ordinances, this field records the Temple where it was performed.');
break;
case 'TEXT':
$title=WT_Gedcom_Tag::getLabel('TEXT');
$text=WT_I18N::translate('In this field you would enter the citation text for this source. Examples of data may be a transcription of the text from the source, or a description of what was in the citation.');
break;
case 'TIME':
$title=WT_Gedcom_Tag::getLabel('TIME');
$text=WT_I18N::translate('Enter the time for this event in 24-hour format with leading zeroes. Midnight is 00:00. Examples: 04:50 13:00 20:30.');
break;
case 'TITL':
$title=WT_Gedcom_Tag::getLabel('TITL');
$text=WT_I18N::translate('Enter a title for the item you are editing. If this is a title for a multimedia item, enter a descriptive title that will identify that item to the user.');
break;
case 'TRLR':
$title=WT_Gedcom_Tag::getLabel('TRLR');
$text='';
break;
case 'TYPE':
$title=WT_Gedcom_Tag::getLabel('TYPE');
$text=WT_I18N::translate('The Type field is used to enter additional information about the item. In most cases, the field is completely free-form, and you can enter anything you want.');
break;
case 'URL':
$title=WT_Gedcom_Tag::getLabel('URL');
$text=WT_I18N::translate('Enter the URL address including the http://.<br /><br />An example URL looks like this: <b>http://www.webtrees.net/</b> Leave this field blank if you do not want to include a URL.');
break;
case 'VERS':
$title=WT_Gedcom_Tag::getLabel('VERS');
$text='';
break;
case 'WIFE':
$title=WT_Gedcom_Tag::getLabel('WIFE');
$text='';
break;
case 'WILL':
$title=WT_Gedcom_Tag::getLabel('WILL');
$text='';
break;
case 'WWW':
$title=WT_Gedcom_Tag::getLabel('WWW');
$text='';
break;
case '_ADPF':
$title=WT_Gedcom_Tag::getLabel('_ADPF');
$text='';
break;
case '_ADPM':
$title=WT_Gedcom_Tag::getLabel('_ADPM');
$text='';
break;
case '_AKA':
case '_AKAN':
$title=WT_Gedcom_Tag::getLabel('_AKA');
$text='';
break;
case '_BIBL':
$title=WT_Gedcom_Tag::getLabel('_BIBL');
$text='';
break;
case '_BRTM':
$title=WT_Gedcom_Tag::getLabel('_BRTM');
$text='';
break;
case '_COML':
$title=WT_Gedcom_Tag::getLabel('_COML');
$text='';
break;
case '_DBID':
$title=WT_Gedcom_Tag::getLabel('_DBID');
$text='';
break;
case '_DEG':
$title=WT_Gedcom_Tag::getLabel('_DEG');
$text='';
break;
case '_DETS':
$title=WT_Gedcom_Tag::getLabel('_DETS');
$text='';
break;
case '_EMAIL':
$title=WT_Gedcom_Tag::getLabel('_EMAIL');
$text='';
break;
case '_EYEC':
$title=WT_Gedcom_Tag::getLabel('_EYEC');
$text='';
break;
case '_FA1':
$title=WT_Gedcom_Tag::getLabel('_FA1');
$text='';
break;
case '_FA2':
$title=WT_Gedcom_Tag::getLabel('_FA2');
$text='';
break;
case '_FA3':
$title=WT_Gedcom_Tag::getLabel('_FA3');
$text='';
break;
case '_FA4':
$title=WT_Gedcom_Tag::getLabel('_FA4');
$text='';
break;
case '_FA5':
$title=WT_Gedcom_Tag::getLabel('_FA5');
$text='';
break;
case '_FA6':
$title=WT_Gedcom_Tag::getLabel('_FA6');
$text='';
break;
case '_FA7':
$title=WT_Gedcom_Tag::getLabel('_FA7');
$text='';
break;
case '_FA8':
$title=WT_Gedcom_Tag::getLabel('_FA8');
$text='';
break;
case '_FA9':
$title=WT_Gedcom_Tag::getLabel('_FA9');
$text='';
break;
case '_FA10':
$title=WT_Gedcom_Tag::getLabel('_FA10');
$text='';
break;
case '_FA11':
$title=WT_Gedcom_Tag::getLabel('_FA11');
$text='';
break;
case '_FA12':
$title=WT_Gedcom_Tag::getLabel('_FA12');
$text='';
break;
case '_FA13':
$title=WT_Gedcom_Tag::getLabel('_FA13');
$text='';
break;
case '_FNRL':
$title=WT_Gedcom_Tag::getLabel('_FNRL');
$text='';
break;
case '_FREL':
$title=WT_Gedcom_Tag::getLabel('_FREL');
$text='';
break;
case '_GEDF':
$title=WT_Gedcom_Tag::getLabel('_GEDF');
$text='';
break;
case '_HAIR':
$title=WT_Gedcom_Tag::getLabel('_HAIR');
$text='';
break;
case '_HEB':
$title=WT_Gedcom_Tag::getLabel('_HEB');
$text=WT_I18N::translate('In many cultures it is customary to have a traditional name spelled in the traditional characters and also a romanized version of the name as it would be spelled or pronounced in languages based on the Latin alphabet, such as English.<br /><br />If you prefer to use the Latin alphabet to enter the name in the standard name fields, then you can use this field to enter the same name in the non-Latin alphabet such as Greek, Hebrew, Russian, Arabic, or Chinese. Both versions of the name will appear in lists and charts.<br /><br />Although this field is labeled "Hebrew", it is not restricted to containing only Hebrew characters.');
break;
case '_HEIG':
$title=WT_Gedcom_Tag::getLabel('_HEIG');
$text='';
break;
case '_HNM':
$title=WT_Gedcom_Tag::getLabel('_HNM');
$text='';
break;
case '_HOL':
$title=WT_Gedcom_Tag::getLabel('_HOL');
$text='';
break;
case '_INTE':
$title=WT_Gedcom_Tag::getLabel('_INTE');
$text='';
break;
case '_MARI':
$title=WT_Gedcom_Tag::getLabel('_MARI');
$text='';
break;
case '_MARNM':
$title=WT_Gedcom_Tag::getLabel('_MARNM');
$text=WT_I18N::translate('Enter the married name for this person, using the same formatting rules that apply to the Name field. This field is optional.<br /><br />For example, if Mary Jane Brown married John White, you might enter (without the quotation marks, of course)<ul><li>American usage: "Mary Jane Brown /White/"</li><li>European usage: "Mary Jane /White/"</li><li>Alternate European usage: "Mary Jane /White-Brown/" or "Mary Jane /Brown-White/"</li></ul>You should do this only if Mary Brown began calling herself by the new name after marrying John White. In some places, Quebec (Canada) for example, it\'s illegal for names to be changed in this way.<br /><br />Men sometimes change their name after marriage, most often using the hyphenated form but occasionally taking the wife\'s surname.');
break;
case '_MBON':
$title=WT_Gedcom_Tag::getLabel('_MBON');
$text='';
break;
case '_MDCL':
$title=WT_Gedcom_Tag::getLabel('_MDCL');
$text='';
break;
case '_MEDC':
$title=WT_Gedcom_Tag::getLabel('_MEDC');
$text='';
break;
case '_MEND':
$title=WT_Gedcom_Tag::getLabel('_MEND');
$text='';
break;
case '_MILI':
$title=WT_Gedcom_Tag::getLabel('_MILI');
$text='';
break;
case '_MILT':
$title=WT_Gedcom_Tag::getLabel('_MILT');
$text='';
break;
case '_MREL':
$title=WT_Gedcom_Tag::getLabel('_MREL');
$text='';
break;
case '_MSTAT':
$title=WT_Gedcom_Tag::getLabel('_MSTAT');
$text='';
break;
case '_NAME':
$title=WT_Gedcom_Tag::getLabel('_NAME');
$text='';
break;
case '_NAMS':
$title=WT_Gedcom_Tag::getLabel('_NAMS');
$text='';
break;
case '_NLIV':
$title=WT_Gedcom_Tag::getLabel('_NLIV');
$text='';
break;
case '_NMAR':
$title=WT_Gedcom_Tag::getLabel('_NMAR');
$text='';
break;
case '_NMR':
$title=WT_Gedcom_Tag::getLabel('_NMR');
$text='';
break;
case '_PRIM':
$title=WT_Gedcom_Tag::getLabel('_PRIM');
$text=WT_I18N::translate('Use this field to signal that this media item is the highlighted or primary item for the person it is attached to. The highlighted image is the one that will be used on charts and on the Individual page.');
break;
case '_WT_USER':
$title=WT_Gedcom_Tag::getLabel('_WT_USER');
$text='';
break;
case '_PRMN':
$title=WT_Gedcom_Tag::getLabel('_PRMN');
$text='';
break;
case '_SCBK':
$title=WT_Gedcom_Tag::getLabel('_SCBK');
$text='';
break;
case '_SEPR':
$title=WT_Gedcom_Tag::getLabel('_SEPR');
$text='';
break;
case '_SSHOW':
$title=WT_Gedcom_Tag::getLabel('_SSHOW');
$text='';
break;
case '_STAT':
$title=WT_Gedcom_Tag::getLabel('_STAT');
$text='';
break;
case '_SUBQ':
$title=WT_Gedcom_Tag::getLabel('_SUBQ');
$text='';
break;
case '_THUM':
$title=WT_Gedcom_Tag::getLabel('_THUM');
$text=WT_I18N::translate('This option lets you override the usual selection for a thumbnail image.<br /><br />The GEDCOM has a configuration option that specifies whether <b>webtrees</b> should send the large or the small image to the browser whenever the current page requires a thumbnail. The «Always use main image?» option, when set to <b>Yes</b>, temporarily overrides the setting of the GEDCOM configuration option, so that <b>webtrees</b> will always send the large image. You cannot force <b>webtrees</b> to send the small image when the GEDCOM configuration specifies that large images should always be used.<br /><br /><b>webtrees</b> does not re-size the image being sent; the browser does this according to the page specifications it has also received. This can have undesirable consequences when the image being sent is not truly a thumbnail where <b>webtrees</b> is expecting to send a small image. This is not an error: There are occasions where it may be desirable to display a large image in places where one would normally expect to see a thumbnail-sized picture.<br /><br />You should avoid setting the «Always use main image?» option to <b>Yes</b>. This choice will cause excessive amounts of image-related data to be sent to the browser, only to have the browser discard the excess. Page loads, particularly of charts with many images, can be seriously slowed.');
break;
case '_TODO':
$title=WT_Gedcom_Tag::getLabel('_TODO');
$text='';
break;
case '_TYPE':
$title=WT_Gedcom_Tag::getLabel('_TYPE');
$text='';
break;
case '_UID':
$title=WT_Gedcom_Tag::getLabel('_UID');
$text='';
break;
case '_URL':
$title=WT_Gedcom_Tag::getLabel('_URL');
$text='';
break;
case '_WEIG':
$title=WT_Gedcom_Tag::getLabel('_WEIG');
$text='';
break;
case '_YART':
$title=WT_Gedcom_Tag::getLabel('_YART');
$text='';
break;
//////////////////////////////////////////////////////////////////////////////
// This section contains an entry for every configuration item
//////////////////////////////////////////////////////////////////////////////
case 'ABBREVIATE_CHART_LABELS':
$title=WT_I18N::translate('Abbreviate chart labels');
$text=WT_I18N::translate('This option controls whether or not to abbreviate labels like <b>Birth</b> on charts with just the first letter like <b>B</b>.');
break;
case 'ADVANCED_NAME_FACTS':
$title=WT_I18N::translate('Advanced name facts');
$text=WT_I18N::translate('This is a comma separated list of GEDCOM fact tags that will be shown on the add/edit name form. If you use non-Latin alphabets such as Hebrew, Greek, Cyrillic or Arabic, you may want to add tags such as _HEB, ROMN, FONE, etc. to allow you to store names in several different alphabets.');
break;
case 'ADVANCED_PLAC_FACTS':
$title=WT_I18N::translate('Advanced place name facts');
$text=WT_I18N::translate('This is a comma separated list of GEDCOM fact tags that will be shown when you add or edit place names. If you use non-Latin alphabets such as Hebrew, Greek, Cyrillic or Arabic, you may want to add tags such as _HEB, ROMN, FONE, etc. to allow you to store place names in several different alphabets.');
break;
case 'ALLOW_CHANGE_GEDCOM':
$title=WT_I18N::translate('Allow GEDCOM switching');
$text=WT_I18N::translate('If you have an environment with multiple GEDCOMs, setting this value to <b>Yes</b> allows your site visitors <u>and</u> users to have the option of changing GEDCOMs. Setting it to <b>No</b> disables GEDCOM switching for both visitors <u>and</u> logged in users.');
break;
case 'ALLOW_EDIT_GEDCOM':
$title=WT_I18N::translate('Online editing');
$text=WT_I18N::translate('This option enables online editing features for this database so that users with Edit privileges may update data online.');
break;
case 'ALLOW_THEME_DROPDOWN':
$title=WT_I18N::translate('Theme dropdown selector for theme changes');
$text=WT_I18N::translate('Gives users the option of selecting their own theme from a menu.<br /><br />Even with this option set, the theme currently in effect may not provide for such a menu. To be effective, this option requires the <b>Allow users to select their own theme</b> option to be set as well.');
break;
case 'ALLOW_USER_THEMES':
$title=WT_I18N::translate('Allow users to select their own theme');
$text=WT_I18N::translate('Gives users the option of selecting their own theme.');
break;
case 'AUTO_GENERATE_THUMBS':
$title=WT_I18N::translate('Automatically generate thumbnails');
$text=WT_I18N::translate('Should the system automatically generate thumbnails for images that do not have them. Your PHP installation might not support this functionality.');
break;
case 'CALENDAR_FORMAT':
$d1=new WT_Date('22 SEP 1792'); $d1=$d1->Display(false, null, array());
$d2=new WT_Date('31 DEC 1805'); $d2=$d2->Display(false, null, array());
$d3=new WT_Date('15 OCT 1582'); $d3=$d3->Display(false, null, array());
$title=WT_I18N::translate('Calendar conversion');
$text=
'<p>'.
WT_I18N::translate('Different calendar systems are used in different parts of the world, and many other calendar systems have been used in the past. Where possible, you should enter dates using the calendar in which the event was originally recorded. You can then specify a conversion, to show these dates in a more familiar calendar. If you regularly use two calendars, you can specify two conversions and dates will be converted to both the selected calendars.').
'<p>'.
WT_I18N::translate('The following calendars are supported:').
'</p><ul>'.
'<li>'.WT_Date_Gregorian::calendarName().'</li>'.
'<li>'.WT_Date_Julian::calendarName().'</li>'.
'<li>'.WT_Date_Jewish::calendarName().'</li>'.
'<li>'.WT_Date_French::calendarName().'</li>'.
'<li>'.WT_Date_Hijri::calendarName().'</li>'.
'<li>'.WT_Date_Jalali::calendarName().'</li>'.
'</ul><p>'.
/* I18N: The three place holders are all dates. */ WT_I18N::translate('Dates are only converted if they are valid for the calendar. For example, only dates between %1$s and %2$s will be converted to the French calendar and only dates after %3$s will be converted to the Gregorian calendar.', $d1, $d2, $d3).
'</p><p>'.
WT_I18N::translate('In some calendars, days start at midnight. In other calendars, days start at sunset. The conversion process does not take account of the time, so for any event that occurs between sunset and midnight, the conversion between these types of calendar will be one day out.').
'</p>';
break;
case 'CHART_BOX_TAGS':
$title=WT_I18N::translate('Other facts to show in charts');
$text=WT_I18N::translate('This should be a comma or space separated list of facts, in addition to Birth and Death, that you want to appear in chart boxes such as the Pedigree chart. This list requires you to use fact tags as defined in the GEDCOM 5.5.1 Standard. For example, if you wanted the occupation to show up in the box, you would add "OCCU" to this field.');
break;
case 'CHECK_MARRIAGE_RELATIONS':
$title=WT_I18N::translate('Check relationships by marriage');
$text=WT_I18N::translate('When calculating relationships, this option controls whether <b>webtrees</b> will include spouses/partners as well as blood relatives.');
break;
case 'COMMON_NAMES_ADD':
$title=WT_I18N::translate('Names to add to common surnames (comma separated)');
$text=WT_I18N::translate('If the number of times that a certain surname occurs is lower than the threshold, it will not appear in the list. It can be added here manually. If more than one surname is entered, they must be separated by a comma. <b>Surnames are case-sensitive.</b>');
break;
case 'COMMON_NAMES_REMOVE':
$title=WT_I18N::translate('Names to remove from common surnames (comma separated)');
$text=WT_I18N::translate('If you want to remove a surname from the Common Surname list without increasing the threshold value, you can do that by entering the surname here. If more than one surname is entered, they must be separated by a comma. <b>Surnames are case-sensitive.</b> Surnames entered here will also be removed from the Top-10 list on the Home Page.');
break;
case 'COMMON_NAMES_THRESHOLD':
$title=WT_I18N::translate('Min. no. of occurrences to be a "common surname"');
$text=WT_I18N::translate('This is the number of times that a surname must occur before it shows up in the Common Surname list on the Home Page.');
break;
case 'CONTACT_USER_ID':
$title=WT_I18N::translate('Genealogy contact');
$text=WT_I18N::translate('The person to contact about the genealogical data on this site.');
break;
case 'DEFAULT_PEDIGREE_GENERATIONS':
$title=WT_I18N::translate('Default pedigree generations');
$text=WT_I18N::translate('Set the default number of generations to display on Descendancy and Pedigree charts.');
break;
case 'ENABLE_AUTOCOMPLETE':
$title=WT_I18N::translate('Autocomplete');
$text=WT_I18N::translate('This option determines whether Autocomplete should be active while information is being entered into certain fields on input forms. When this option is set to <b>Yes</b>, text input fields for which Autocomplete is possible are indicated by a differently colored background.<br /><br />When Autocomplete is active, <b>webtrees</b> will search its database for possible matches according to what you have already entered. As you enter more information, the list of possible matches is refined. When you see the desired input in the list of matches, you can move the mouse cursor to that line of the list and then click the left mouse button to complete the input.<br /><br />The disadvantages of Autocomplete are that it slows the program, entails significant database activity, and also results in more data being sent to the browser.');
break;
case 'EXPAND_NOTES':
$title=WT_I18N::translate('Automatically expand notes');
$text=WT_I18N::translate('This option controls whether or not to automatically display content of a <i>Note</i> record on the Individual page.');
break;
case 'EXPAND_RELATIVES_EVENTS':
$title=WT_I18N::translate('Automatically expand list of events of close relatives');
$text=WT_I18N::translate('This option controls whether or not to automatically expand the <i>Events of close relatives</i> list.');
break;
case 'EXPAND_SOURCES':
$title=WT_I18N::translate('Automatically expand sources');
$text=WT_I18N::translate('This option controls whether or not to automatically display content of a <i>Source</i> record on the Individual page.');
break;
case 'FAM_FACTS_ADD':
$title=WT_I18N::translate('Family add facts');
$text=WT_I18N::translate('This is the list of GEDCOM facts that your users can add to families. You can modify this list by removing or adding fact names, even custom ones, as necessary. Fact names that appear in this list must not also appear in the <i>Unique Family Facts</i> list.');
break;
case 'FAM_FACTS_QUICK':
$title=WT_I18N::translate('Quick family facts');
$text=WT_I18N::translate('This is the short list of GEDCOM family facts that appears next to the full list and can be added with a single click.');
break;
case 'FAM_FACTS_UNIQUE':
$title=WT_I18N::translate('Unique family facts');
$text=WT_I18N::translate('This is the list of GEDCOM facts that your users can only add <u>once</u> to families. For example, if MARR is in this list, users will not be able to add more than one MARR record to a family. Fact names that appear in this list must not also appear in the <i>Family Add Facts</i> list.');
break;
case 'FAM_ID_PREFIX':
$title=WT_I18N::translate('Family ID prefix');
$text=WT_I18N::translate('When a new family record is added online in <b>webtrees</b>, a new ID for that family will be generated automatically. The family ID will have this prefix.');
break;
case 'FULL_SOURCES':
$title=WT_I18N::translate('Use full source citations');
$text=WT_I18N::translate('Source citations can include fields to record the quality of the data (primary, secondary, etc.) and the date the event was recorded in the source. If you don\'t use these fields, you can disable them when creating new source citations.');
break;
case 'GEDCOM_DEFAULT_TAB':
$title=WT_I18N::translate('Default tab to show on individual page');
$text=WT_I18N::translate('This option allows you to choose which tab opens automatically on the Individual page when that page is accessed.');
break;
case 'GEDCOM_ID_PREFIX':
$title=WT_I18N::translate('Individual ID prefix');
$text=WT_I18N::translate('When a new individual record is added online in <b>webtrees</b>, a new ID for that individual will be generated automatically. The individual ID will have this prefix.');
break;
case 'GENERATE_GUID':
$title=WT_I18N::translate('Automatically create globally unique IDs');
$text=WT_I18N::translate('<b>GUID</b> in this context is an acronym for «Globally Unique ID».<br /><br />GUIDs are intended to help identify each individual in a manner that is repeatable, so that central organizations such as the Family History Center of the LDS Church in Salt Lake City, or even compatible programs running on your own server, can determine whether they are dealing with the same person no matter where the GEDCOM originates. The goal of the Family History Center is to have a central repository of genealogical data and expose it through web services. This will enable any program to access the data and update their data within it.<br /><br />If you do not intend to share this GEDCOM with anyone else, you do not need to let <b>webtrees</b> create these GUIDs; however, doing so will do no harm other than increasing the size of your GEDCOM.');
break;
case 'HIDE_GEDCOM_ERRORS':
$title=WT_I18N::translate('GEDCOM errors');
$text=WT_I18N::translate('Many genealogy programs create GEDCOM files with custom tags, and <b>webtrees</b> understands most of them. When unrecognised tags are found, this option lets you choose whether to ignore them or display a warning message.');
break;
case 'HIDE_LIVE_PEOPLE':
$title=WT_I18N::translate('Privacy options');
$text=WT_I18N::translate('This option will enable all privacy settings and hide the details of living people, as defined or modified on the Privacy tab of each GEDCOM\'s configuration page.');
$text .= '<p>';
$text .= WT_I18N::plural('Note: "living" is defined (if no death or burial is known) as ending %d year after birth or estimated birth.','Note: "living" is defined (if no death or burial is known) as ending %d years after birth or estimated birth.', get_gedcom_setting(WT_GED_ID, 'MAX_ALIVE_AGE'), get_gedcom_setting(WT_GED_ID, 'MAX_ALIVE_AGE'));
$text .= ' ';
$text .= WT_I18N::translate('The length of time after birth can be set on the Privacy configuration tab option "Age at which to assume a person is dead".');
$text .= '</p>';
break;
case 'INDEX_DIRECTORY':
$title=WT_I18N::translate('Data file directory');
$text=
WT_I18N::translate('<b>webtrees</b> requires a directory with read/write permission, where it can create temporary files and export data. By default, it uses the data/ directory.').
'<br/><br/>'.
WT_I18N::translate('Some site administrators prefer not to have writable files or directories in the public HTML directory. By specifying an alternative location to write data, you can make the existing data/ directory read-only. Note that the file data/config.ini.php cannot be moved, and must remain in this location.').
'<br/><br/>'.
WT_I18N::translate('If your server does not support ".htaccess" files (e.g. Microsoft IIS), and you cannot set access controls for this directory, then you should move this directory to another location.').
'<br/><br/>'.
WT_I18N::translate('The directory can be specified in full (e.g. /home/user_name/genealogy_data/) or relative to the installation directory (e.g. ../../genealogy_data/).');
break;
case 'INDI_FACTS_ADD':
$title=WT_I18N::translate('Individual add facts');
$text=WT_I18N::translate('This is the list of GEDCOM facts that your users can add to individuals. You can modify this list by removing or adding fact names, even custom ones, as necessary. Fact names that appear in this list must not also appear in the <i>Unique Individual Facts</i> list.');
break;
case 'INDI_FACTS_QUICK':
$title=WT_I18N::translate('Quick individual facts');
$text=WT_I18N::translate('This is the short list of GEDCOM individual facts that appears next to the full list and can be added with a single click.');
break;
case 'INDI_FACTS_UNIQUE':
$title=WT_I18N::translate('Unique individual facts');
$text=WT_I18N::translate('This is the list of GEDCOM facts that your users can only add <u>once</u> to individuals. For example, if BIRT is in this list, users will not be able to add more than one BIRT record to an individual. Fact names that appear in this list must not also appear in the <i>Individual Add Facts</i> list.');
break;
case 'KEEP_ALIVE':
$title=WT_I18N::translate('Extend privacy to dead people');
$text=WT_I18N::translate('In some countries, privacy laws apply not only to living people, but also to those who have died recently. This option will allow you to extend the privacy rules for living people to those who were born or died within a specified number of years. Leave these values empty to disable this feature.');
break;
case 'LANGUAGE':
$title=WT_I18N::translate('Language');
$text=WT_I18N::translate('If a visitor to the site has not specified a preferred language in their browser configuration, or they have specified an unsupported language, then this language will be used. Typically, this setting applies to search engines.');
break;
case 'LINK_ICONS':
$title=WT_I18N::translate('PopUp links on charts');
$text=WT_I18N::translate('Allows the user to select links to other charts and close relatives of the person.<br /><br />Set to <b>Disabled</b> to disable this feature. Set to <b>On Mouse Over</b> to popup the links when the user mouses over the icon in the box. Set to <b>On Mouse Click</b> to popup the links when the user clicks on the icon in the box.');
break;
case 'LOGIN_URL':
$title=WT_I18N::translate('Login URL');
$text=WT_I18N::translate('You only need to enter a Login URL if you want to redirect to a different site or location when your users login. This is very useful if you need to switch from http to https when your users login. Include the full URL to <i>login.php</i>. For example, https://www.yourserver.com/webtrees/login.php .');
break;
case 'MAX_ALIVE_AGE':
$title=WT_I18N::translate('Age at which to assume a person is dead');
$text=WT_I18N::translate('If this person has any events other than Death, Burial, or Cremation more recent than this number of years, he is considered to be "alive". Children\'s birth dates are considered to be such events for this purpose.');
break;
case 'MAX_DESCENDANCY_GENERATIONS':
$title=WT_I18N::translate('Maximum descendancy generations');
$text=WT_I18N::translate('Set the maximum number of generations to display on Descendancy charts.');
break;
case 'MAX_EXECUTION_TIME':
// Find the default value for max_execution_time
ini_restore('max_execution_time');
$dflt_cpu=ini_get('max_execution_time');
$title=WT_I18N::translate('PHP time limit');
$text=
WT_I18N::plural(
'By default, your server allows scripts to run for %s second.',
'By default, your server allows scripts to run for %s seconds.',
$dflt_cpu, $dflt_cpu
).
' '.
WT_I18N::translate('You can request a higher or lower limit, although the server may ignore this request.').
' '.
WT_I18N::translate('If you leave this setting empty, the default value will be used.');
break;
case 'MAX_PEDIGREE_GENERATIONS':
$title=WT_I18N::translate('Maximum pedigree generations');
$text=WT_I18N::translate('Set the maximum number of generations to display on Pedigree charts.');
break;
case 'MEDIA_DIRECTORY_LEVELS':
$title=WT_I18N::translate('Multimedia directory levels to keep');
$text=WT_I18N::translate('A value of 0 will ignore all directories in the file path for the media object. A value of 1 will retain the first directory containing this image. Increasing the numbers increases number of parent directories to retain in the path.<br /><br />For example, if you link an image in your GEDCOM with a path like <b>C:\Documents and Settings\User\My Documents\My Pictures\Genealogy\Surname Line\grandpa.jpg</b>, a value of 0 will translate this path to <b>./media/grandpa.jpg</b>. A value of 1 will translate this to <b>./media/Surname Line/grandpa.jpg</b>, etc. Most people will only need to use a 0. However, it is possible that some media objects kept in different directories have identical names and would overwrite each other when this option is set to 0. Non-zero settings allow you to keep some organization in your media thereby preventing name collisions.');
break;
case 'MEDIA_DIRECTORY':
$MEDIA_DIRECTORY=get_gedcom_setting(WT_GED_ID, 'MEDIA_DIRECTORY');
$title=WT_I18N::translate('Media directory');
$text=
'<p>'.
/* I18N: %1$s is an example media directory, such as "media/", %2$s is an example URL, such as "http://localhost/webtrees/media/img123.jpg", and %3$s is an example file path, such as "/home/greg/public_html/webtrees/media/img123.jpg" */
WT_I18N::translate('The media directory is used to create URLs for your media items. It is also the sub-directory in which the media items are stored. For example, a media directory of %1$s will create URLs of the form %2$s and store these items as %3$s.', '<tt style="white-space:nowrap; color:#0000ff; font-weight:bold;">'.$MEDIA_DIRECTORY.'</tt>', '<tt style="white-space:nowrap; font-weight:bold;">'.WT_SERVER_NAME.WT_SCRIPT_PATH.'<span style="color:#0000ff;">'.$MEDIA_DIRECTORY.'</span>img123.jpg</tt>', '<tt style="white-space:nowrap; font-weight:bold;">'.WT_ROOT.'<span style="color:#0000ff;">'.$MEDIA_DIRECTORY.'</span>img123.jpg</tt>').
'</p><p>'.
/* I18N: %1$s and %2$s are both directory names */ WT_I18N::translate('If your server supports it, you can enable the media firewall. This changes the location of the media directory from the public directory %1$s to a private directory such as %2$s. This allows webtrees to apply privacy filtering to media items.', '<tt style="white-space:nowrap; font-weight:bold;">'.WT_ROOT.'<span style="color:#0000ff;">'.$MEDIA_DIRECTORY.'</span></tt>', '<tt style="white-space:nowrap; font-weight:bold;">'.WT_DATA_DIR.'<span style="color:#0000ff;">'.$MEDIA_DIRECTORY.'</span></tt>').
'</p><p>'.
/* I18N: %s is a directory name */ WT_I18N::translate('The media directory %s must exist, and the webserver must have read and write access to it.', '<tt style="white-space:nowrap; font-weight:bold;">'.WT_ROOT.'<span style="color:#0000ff;">'.$MEDIA_DIRECTORY.'</span></tt>').
'</p><p>'.
WT_I18N::translate('If two family trees share the same media directory, then they will be able to share media items. If they use different media directories, then they will be able to use the same filename to access different media items.').
'</p>';
break;
case 'MEDIA_EXTERNAL':
$title=WT_I18N::translate('Keep links');
$text=WT_I18N::translate('When a multimedia link is found starting with for example http://, ftp://, mms:// it will not be altered when set to <b>Yes</b>. For example, http://www.myfamily.com/photo/dad.jpg will stay http://www.myfamily.com/photo/dad.jpg. When set to <b>No</b>, the link will be handled as a standard reference and the media depth will be used. For example: http://www.myfamily.com/photo/dad.jpg will be changed to ./media/dad.jpg');
break;
case 'MEDIA_FIREWALL_ROOTDIR':
$title=WT_I18N::translate('Media firewall root directory');
$text=WT_I18N::translate('Directory in which the protected Media directory can be created. When this field is empty, the <b>%s</b> directory will be used.', get_site_setting('INDEX_DIRECTORY'));
break;
case 'MEDIA_FIREWALL_THUMBS':
$title=WT_I18N::translate('Protect thumbnails of protected images');
$text=WT_I18N::translate('When an image is in the protected Media directory, should its thumbnail be protected as well?');
break;
case 'MEDIA_ID_PREFIX':
$title=WT_I18N::translate('Media ID prefix');
$text=WT_I18N::translate('When a new media record is added online in <b>webtrees</b>, a new ID for that media will be generated automatically. The media ID will have this prefix.');
break;
case 'MEMORY_LIMIT':
// Find the default value for max_execution_time
ini_restore('memory_limit');
$dflt_mem=ini_get('memory_limit');
$title=WT_I18N::translate('Memory limit');
$text= /* I18N: %s is an amount of memory, such as 32MB */ WT_I18N::translate('By default, your server allows scripts to use %s of memory.', $dflt_mem).
' '.
WT_I18N::translate('You can request a higher or lower limit, although the server may ignore this request.').
' '.
WT_I18N::translate('If you leave this setting empty, the default value will be used.');
break;
case 'META_DESCRIPTION':
$title=WT_I18N::translate('Description META tag');
$text=WT_I18N::translate('The value to place in the Description meta tag in the HTML page header. Leave this field empty to use the title of the currently active database.');
break;
case 'META_TITLE':
$title=WT_I18N::translate('Add to TITLE header tag');
$text=WT_I18N::translate('This text will be appended to each page title. It will be shown in the browser\'s title bar, bookmarks, etc.');
break;
case 'MULTI_MEDIA':
$title=WT_I18N::translate('Enable multimedia features');
$text=WT_I18N::translate('<b>webtrees</b> allows you to link pictures, videos, and other multimedia objects to your GEDCOM. If you do not use multimedia, you can disable the multimedia features.');
break;
case 'NOTE_ID_PREFIX':
$title=WT_I18N::translate('Note ID prefix');
$text=WT_I18N::translate('When a new note record is added online in <b>webtrees</b>, a new ID for that note will be generated automatically. The note ID will have this prefix.');
break;
case 'PEDIGREE_FULL_DETAILS':
$title=WT_I18N::translate('Birth and death details on charts');
$text=WT_I18N::translate('This option controls whether or not to show the Birth and Death details of an individual on charts.');
break;
case 'PEDIGREE_GENERATIONS':
$title=WT_I18N::translate('Number of generations');
$text=WT_I18N::translate('Here you can set the number of generations to display on this page.<br /><br />The right number for you depends of the size of your screen and whether you show details or not. Processing time will increase as you increase the number of generations.');
break;
case 'PEDIGREE_LAYOUT':
$title=WT_I18N::translate('Default pedigree chart layout');
$text=WT_I18N::translate('This option indicates whether the Pedigree chart should be generated in landscape or portrait mode.');
break;
case 'PEDIGREE_ROOT_ID':
$title=WT_I18N::translate('Default person for pedigree and descendancy charts');
$text=WT_I18N::translate('Set the ID of the default person to display on Pedigree and Descendancy charts.');
break;
case 'PEDIGREE_SHOW_GENDER':
$title=WT_I18N::translate('Gender icon on charts');
$text=WT_I18N::translate('This option controls whether or not to show the individual\'s gender icon on charts.<br /><br />Since the gender is also indicated by the color of the box, this option doesn\'t conceal the gender. The option simply removes some duplicate information from the box.');
break;
case 'RELATIONSHIP_PATH_LENGTH':
$title=WT_I18N::translate('Restrict to immediate family');
$text=
WT_I18N::translate('Where a user is associated to an individual record in a family tree and has a role of member, editor, or moderator, you can prevent them from accessing the details of distant, living relations. You specify the number of relationship steps that the user is allowed to see.').
'<br/><br/>'.
WT_I18N::translate('For example, if you specify a path length of 2, the person will be able to see their grandson (child, child), their aunt (parent, sibling), their step-daughter (spouse, child), but not their first cousin (parent, sibling, child).').
'<br/><br/>'.
WT_I18N::translate('Note: longer path lengths require a lot of calculation, which can make your site run slowly for these users.');
break;
case 'SESSION_TIME':
$title=WT_I18N::translate('Session timeout');
$text=WT_I18N::translate('The time in seconds that a <b>webtrees</b> session remains active before requiring a login. The default is 7200, which is 2 hours.');
break;
case 'SMTP_ACTIVE':
$title=WT_I18N::translate('Use SMTP to send external mails');
$text=WT_I18N::translate('Use SMTP to send e-mails from <b>webtrees</b>.<br /><br />This option requires access to an SMTP mail server. When set to <b>No</b> <b>webtrees</b> will use the e-mail system built into PHP on this server.');
break;
case 'SMTP_AUTH_PASS':
$title=WT_I18N::translate('Password');
$text=WT_I18N::translate('The password required for authentication with the SMTP server.');
break;
case 'SMTP_AUTH_USER':
$title=WT_I18N::translate('Username');
$text=WT_I18N::translate('The user name required for authentication with the SMTP server.');
break;
case 'SMTP_AUTH':
$title=WT_I18N::translate('Use password');
$text=WT_I18N::translate('Use name and password authentication to connect to the SMTP server.<br /><br />Some SMTP servers require all connections to be authenticated before they will accept outbound e-mails.');
break;
case 'SMTP_FROM_NAME':
$title=WT_I18N::translate('Sender name');
$text=WT_I18N::translate('Enter the name to be used in the «From:» field of e-mails originating at this site.<br /><br />For example, if your name is <b>John Smith</b> and you are the site administrator for a site that is known as <b>Jones Genealogy</b>, you could enter something like <b>John Smith</b> or <b>Jones Genealogy</b> or even <b>John Smith, Administrator: Jones Genealogy</b>. You may enter whatever you wish, but HTML is not permitted.');
break;
case 'SMTP_HELO':
$title=WT_I18N::translate('Sending domain name');
$text=WT_I18N::translate('This is the domain part of a valid e-mail address on the SMTP server.<br /><br />For example, if you have an e-mail account such as <b>yourname@abc.xyz.com</b>, you would enter <b>abc.xyz.com</b> here.');
break;
case 'SMTP_HOST':
$title=WT_I18N::translate('Outgoing server (SMTP) name');
$text=WT_I18N::translate('This is the name of the SMTP mail server. Example: <b>smtp.foo.bar.com</b>.<br /><br />Configuration values for some e-mail providers:<br /><br /><b>Gmail<br /></b><br /><b>Outgoing server (SMTP) name:</b> smtp.gmail.com<br /><b>SMTP Port:</b> 465 or 587<br /><b>Secure connection:</b> SSL<br /><br /><b>Hotmail<br /></b><br /><b>Outgoing server (SMTP) name:</b> smtp.live.com<br /><b>SMTP Port:</b> 25 or 587<br /><b>Secure connection:</b> TLS<br /><br /><b>Yahoo Mail Plus (currently a paid service)<br /></b><br /><b>Outgoing server (SMTP) name:</b> smtp.mail.yahoo.com<br /><b>SMTP Port:</b> 25');
break;
case 'SMTP_PORT':
$title=WT_I18N::translate('SMTP port');
$text=WT_I18N::translate('The port number to be used for connections to the SMTP server. Generally, this is port <b>25</b>.');
break;
case 'SMTP_SIMPLE_MAIL':
$title=WT_I18N::translate('Use simple mail headers in external mails');
$text=WT_I18N::translate('In normal mail headers for external mails, the email address as well as the name are used. Some mail systems will not accept this. When set to <b>Yes</b>, only the email address will be used.');
break;
case 'SMTP_SSL':
$title=WT_I18N::translate('Secure connection');
$text=WT_I18N::translate('Transport Layer Security (TLS) and Secure Sockets Layer (SSL) are Internet data encryption protocols.<br /><br />TLS 1.0, 1.1 and 1.2 are standardized developments of SSL 3.0. TLS 1.0 and SSL 3.1 are equivalent. Further work on SSL is now done under the new name, TLS.<br /><br />If your SMTP Server requires the SSL protocol during login, you should select the <b>SSL</b> option. If your SMTP Server requires the TLS protocol during login, you should select the <b>TLS</b> option.');
break;
case 'STORE_MESSAGES':
$title=WT_I18N::translate('Allow messages to be stored online');
$text=WT_I18N::translate('Specifies whether messages sent through <b>webtrees</b> can be stored in the database. If set to <b>Yes</b> users will be able to retrieve their messages when they login to <b>webtrees</b>. If set to <b>No</b> messages will only be emailed.');
break;
case 'WEBTREES_EMAIL':
$title=WT_I18N::translate('<b>webtrees</b> reply address');
$text=WT_I18N::translate('E-mail address to be used in the «From:» field of e-mails that <b>webtrees</b> creates automatically.<br /><br /><b>webtrees</b> can automatically create e-mails to notify administrators of changes that need to be reviewed. <b>webtrees</b> also sends notification e-mails to users who have requested an account.<br /><br />Usually, the «From:» field of these automatically created e-mails is something like <i>From: webtrees-noreply@yoursite</i> to show that no response to the e-mail is required. To guard against spam or other e-mail abuse, some e-mail systems require each message\'s «From:» field to reflect a valid e-mail account and will not accept messages that are apparently from account <i>webtrees-noreply</i>.');
break;
case 'POSTAL_CODE':
$title=WT_I18N::translate('Postal code position');
$text=WT_I18N::translate('Different countries use different ways to write the address. This option will enable you to place the postal code either before or after the city name.');
break;
case 'PREFER_LEVEL2_SOURCES':
$title=WT_I18N::translate('Source type');
$text=WT_I18N::translate('When adding new close relatives, you can add source citations to the records (e.g. INDI, FAM) or the facts (BIRT, MARR, DEAT). This option controls which checkboxes are ticked by default.');
break;
case 'QUICK_REQUIRED_FACTS':
$title=WT_I18N::translate('Facts for new individuals');
$text=WT_I18N::translate('This is a comma separated list of GEDCOM fact tags that will be shown when adding a new person. For example, if BIRT is in the list, fields for birth date and birth place will be shown on the form.');
break;
case 'QUICK_REQUIRED_FAMFACTS':
$title=WT_I18N::translate('Facts for new families');
$text=WT_I18N::translate('This is a comma separated list of GEDCOM fact tags that will be shown when adding a new family. For example, if MARR is in the list, then fields for marriage date and marriage place will be shown on the form.');
break;
case 'REPO_FACTS_ADD':
$title=WT_I18N::translate('Repository add facts');
$text=WT_I18N::translate('This is the list of GEDCOM facts that your users can add to repositories. You can modify this list by removing or adding fact names, even custom ones, as necessary. Fact names that appear in this list must not also appear in the <i>Unique Repository Facts</i> list.');
break;
case 'REPO_FACTS_QUICK':
$title=WT_I18N::translate('Quick repository facts');
$text=WT_I18N::translate('This is the short list of GEDCOM repository facts that appears next to the full list and can be added with a single click.');
break;
case 'REPO_FACTS_UNIQUE':
$title=WT_I18N::translate('Unique repository facts');
$text=WT_I18N::translate('This is the list of GEDCOM facts that your users can only add <u>once</u> to repositories. For example, if NAME is in this list, users will not be able to add more than one NAME record to a repository. Fact names that appear in this list must not also appear in the <i>Repository Add Facts</i> list.');
break;
case 'REPO_ID_PREFIX':
$title=WT_I18N::translate('Repository ID prefix');
$text=WT_I18N::translate('When a new repository record is added online in <b>webtrees</b>, a new ID for that repository will be generated automatically. The repository ID will have this prefix.');
break;
case 'REQUIRE_ADMIN_AUTH_REGISTRATION':
$title=WT_I18N::translate('Require an administrator to approve new user registrations');
$text=WT_I18N::translate('If the option <b>Allow visitors to request account registration</b> is enabled this setting controls whether the admin must approve the registration.<br /><br />Setting this to <b>Yes</b> will require that all new users first verify themselves and then be approved by an admin before they can login. With this setting on <b>No</b>, the <b>User approved by Admin</b> checkbox will be checked automatically when users verify their account, thus allowing an immediate login afterwards without admin intervention.');
break;
case 'REQUIRE_AUTHENTICATION':
$title=WT_I18N::translate('Require visitor authentication');
$text=WT_I18N::translate('Enabling this option will force all visitors to login before they can view any data on the site.');
break;
case 'SAVE_WATERMARK_IMAGE':
$title=WT_I18N::translate('Store watermarked full size images on server?');
$text=WT_I18N::translate('If the Media Firewall is enabled, should copies of watermarked full size images be stored on the server in addition to the same images without watermarks?<br /><br />When set to <b>Yes</b>, full-sized watermarked images will be produced more quickly at the expense of higher server disk space requirements.');
break;
case 'SAVE_WATERMARK_THUMB':
$title=WT_I18N::translate('Store watermarked thumbnails on server?');
$text=WT_I18N::translate('If the Media Firewall is enabled, should copies of watermarked thumbnails be stored on the server in addition to the same thumbnails without watermarks?<br /><br />When set to <b>Yes</b>, media lists containing watermarked thumbnails will be produced more quickly at the expense of higher server disk space requirements.');
break;
case 'SERVER_URL':
$title=WT_I18N::translate('Website URL');
$text=WT_I18N::translate('If your site can be reached using more than one URL, such as <b>http://www.example.com/webtrees/</b> and <b>http://webtrees.example.com/</b>, you can specify the preferred URL. Requests for the other URLs will be redirected to the preferred one.');
break;
case 'SHOW_AGE_DIFF':
$title=WT_I18N::translate('Show date differences');
$text=WT_I18N::translate('This option controls whether or not the Close Relatives tab should show differences between birth dates of spouses, between marriage date and birth date of first child, and between birth dates of children.');
break;
case 'SHOW_CONTEXT_HELP':
$title=WT_I18N::translate('Contextual Help links');
$text=WT_I18N::translate('This option will enable links, identified by question marks, next to items on many pages. These links allow users to get information or help about those items.');
break;
case 'SHOW_COUNTER':
$title=WT_I18N::translate('Hit counters');
$text=WT_I18N::translate('Show hit counters on Portal and Individual pages.');
break;
case 'SHOW_DEAD_PEOPLE':
$title=WT_I18N::translate('Show dead people');
$text=WT_I18N::translate('Set the privacy access level for all dead people.');
break;
case 'SHOW_EMPTY_BOXES':
$title=WT_I18N::translate('Empty boxes on pedigree charts');
$text=WT_I18N::translate('This option controls whether or not to show empty boxes on Pedigree charts.');
break;
case 'SHOW_EST_LIST_DATES':
$title=WT_I18N::translate('Estimated dates for birth and death');
$text=WT_I18N::translate('This option controls whether or not to show estimated dates for birth and death instead of leaving blanks on individual lists and charts for individuals whose dates are not known.');
break;
case 'SHOW_FACT_ICONS':
$title=WT_I18N::translate('Show fact icons');
$text=WT_I18N::translate('Set this to <b>Yes</b> to display icons near Fact names on the Personal Facts and Details page. Fact icons will be displayed only if they exist in the <i>images/facts</i> directory of the current theme.');
break;
case 'SHOW_GEDCOM_RECORD':
$title=WT_I18N::translate('Allow users to see raw GEDCOM records');
$text=WT_I18N::translate('Setting this to <b>Yes</b> will place links on individuals, sources, and families to let users bring up another window containing the raw data taken right out of the GEDCOM file.');
break;
case 'SHOW_HIGHLIGHT_IMAGES':
$title=WT_I18N::translate('Show highlight images in people boxes');
$text=WT_I18N::translate('If you have enabled multi-media in your site, this option will display a person\'s thumbnail image next to their name in charts and boxes.');
break;
case 'SHOW_LAST_CHANGE':
$title=WT_I18N::translate('Show GEDCOM record last change date on lists');
$text=WT_I18N::translate('This option controls whether or not to show GEDCOM record last change date on lists.');
break;
case 'SHOW_LDS_AT_GLANCE':
$title=WT_I18N::translate('LDS ordinance codes in chart boxes');
$text=WT_I18N::translate('Setting this option to <b>Yes</b> will show status codes for LDS ordinances in chart boxes.<ul><li><b>B</b> - Baptism</li><li><b>E</b> - Endowed</li><li><b>S</b> - Sealed to spouse</li><li><b>P</b> - Sealed to parents</li></ul>A person who has all of the ordinances done will have <b>BESP</b> printed after their name. Missing ordinances are indicated by <b>_</b> in place of the corresponding letter code. For example, <b>BE__</b> indicates missing <b>S</b> and <b>P</b> ordinances.');
break;
case 'SHOW_LEVEL2_NOTES':
$title=WT_I18N::translate('Show all notes and source references on notes and sources tabs');
$text=WT_I18N::translate('This option controls whether Notes and Source references that are attached to Facts should be shown on the Notes and Sources tabs of the Individual page.<br /><br />Ordinarily, the Notes and Sources tabs show only Notes and Source references that are attached directly to the individual\'s database record. These are <i>level 1</i> Notes and Source references.<br /><br />The <b>Yes</b> option causes these tabs to also show Notes and Source references that are part of the various Facts in the individual\'s database record. These are <i>level 2</i> Notes and Source references because the various Facts are at level 1.');
break;
case 'SHOW_LIST_PLACES':
$title=WT_I18N::translate('Place levels to show on lists');
$text=WT_I18N::translate('This determines how much of the Place information is shown in the Place fields on lists.<br /><br />Setting the value to <b>9</b> will ensure that all Place information will be shown. Setting the value to <b>0</b> (zero) will hide places completely. Setting the value to <b>1</b> will show the topmost level, which is normally the country. Setting it to <b>2</b> will show the topmost two levels. The second topmost level, below the country, is often the state, province, or territory. Etc.');
break;
case 'SHOW_LIVING_NAMES':
$title=WT_I18N::translate('Show living names');
$text=WT_I18N::translate('Should the names of living people be shown to visitors?');
break;
case 'SHOW_MARRIED_NAMES':
$title=WT_I18N::translate('Show married names on individual list');
$text=WT_I18N::translate('This option will show the married names of females on the Individual list. This option requires that you calculate the married names when you import the GEDCOM file.');
break;
case 'SHOW_MEDIA_DOWNLOAD':
$title=WT_I18N::translate('Show download link in media viewer');
$text=WT_I18N::translate('The Media Viewer can show a link which, when clicked, will download the Media file to the local PC.<br /><br />You may want to hide the download link for security reasons.');
break;
case 'SHOW_NO_WATERMARK':
$title=WT_I18N::translate('Who can view non-watermarked images?');
$text=WT_I18N::translate('If the Media Firewall is enabled, users will see watermarks if they do not have the privilege level specified here.');
break;
case 'SHOW_PARENTS_AGE':
$title=WT_I18N::translate('Show age of parents next to child\'s birthdate');
$text=WT_I18N::translate('This option controls whether or not to show age of father and mother next to child\'s birthdate on charts.');
break;
case 'SHOW_PEDIGREE_PLACES':
$title=WT_I18N::translate('Place levels to show in person boxes');
$text=WT_I18N::translate('This sets how much of the place information is shown in the person boxes on charts.<br /><br />Setting the value to 9 will guarantee to show all place levels. Setting the value to 0 will hide places completely. Setting the value to 1 will show the first level, setting it to 2 will show the first two levels, etc.');
break;
case 'SHOW_PRIVATE_RELATIONSHIPS':
$title=WT_I18N::translate('Show private relationships');
$text=WT_I18N::translate('This option will retain family links in private records. This means that you will see empty "private" boxes on the pedigree chart and on other charts with private people.');
break;
case 'SHOW_REGISTER_CAUTION':
$title=WT_I18N::translate('Show acceptable use agreement on «Request new user account» page');
$text=WT_I18N::translate('When set to <b>Yes</b>, the following message will appear above the input fields on the «Request new user account» page:<div class="list_value_wrap"><div class="largeError">Notice:</div><div class="error">By completing and submitting this form, you agree:<ul><li>to protect the privacy of living people listed on our site;</li><li>and in the text box below, to explain to whom you are related, or to provide us with information on someone who should be listed on our site.</li></ul></div></div>');
break;
case 'SHOW_RELATIVES_EVENTS':
$title=WT_I18N::translate('Show events of close relatives on individual page');
$text=WT_I18N::translate('Births, marriages, and deaths of relatives are important events in one\'s life. This option controls whether or not to show these events on the <i>Personal facts and details</i> tab on the Individual page.<br /><br />The events affected by this option are:<ul><li>Death of spouse</li><li>Birth and death of children</li><li>Death of parents</li><li>Birth and death of siblings</li><li>Death of grand-parents</li><li>Birth and death of parents\' siblings</li></ul>');
break;
case 'SHOW_STATS':
$title=WT_I18N::translate('Execution statistics');
$text=WT_I18N::translate('Show runtime statistics and database queries at the bottom of every page.');
break;
case 'SOURCE_ID_PREFIX':
$title=WT_I18N::translate('Source ID prefix');
$text=WT_I18N::translate('When a new source record is added online in <b>webtrees</b>, a new ID for that source will be generated automatically. The source ID will have this prefix.');
break;
case 'SOUR_FACTS_ADD':
$title=WT_I18N::translate('Source add facts');
$text=WT_I18N::translate('This is the list of GEDCOM facts that your users can add to sources. You can modify this list by removing or adding fact names, even custom ones, as necessary. Fact names that appear in this list must not also appear in the <i>Unique Source Facts</i> list.');
break;
case 'SOUR_FACTS_QUICK':
$title=WT_I18N::translate('Quick source facts');
$text=WT_I18N::translate('This is the short list of GEDCOM source facts that appears next to the full list and can be added with a single click.');
break;
case 'SOUR_FACTS_UNIQUE':
$title=WT_I18N::translate('Unique source facts');
$text=WT_I18N::translate('This is the list of GEDCOM facts that your users can only add <u>once</u> to sources. For example, if TITL is in this list, users will not be able to add more than one TITL record to a source. Fact names that appear in this list must not also appear in the <i>Source Add Facts</i> list.');
break;
case 'SUBLIST_TRIGGER_F':
$title=WT_I18N::translate('Maximum number of surnames on family list');
$text=WT_I18N::translate('Long lists of families with the same name can be broken into smaller sub-lists according to the first letter of the given name.<br /><br />This option determines when sub-listing of family names will occur. To disable sub-listing completely, set this option to zero.');
break;
case 'SUBLIST_TRIGGER_I':
$title=WT_I18N::translate('Maximum number of surnames on individual list');
$text=WT_I18N::translate('Long lists of persons with the same surname can be broken into smaller sub-lists according to the first letter of the individual\'s given name.<br /><br />This option determines when sub-listing of surnames will occur. To disable sub-listing completely, set this option to zero.');
break;
case 'SURNAME_LIST_STYLE':
$title=WT_I18N::translate('Surname list style');
$text=WT_I18N::translate('<p>Lists of surnames, as they appear in the Top 10 Surnames block, the Individual lists, and the Family lists, can be shown in different styles.</p><dl><dt>Table</dt><dd>In this style, the surnames are shown in a table that can be sorted either by surname or by count.</dd><dt>Tag cloud</dt><dd>In this style, the surnames are shown in a list, and the font size used for each name depends on the number of occurrences of that name in the database. The list is not sortable.</dd><dt>List</dt><dd>This is a simple list of names, with a count of each name, in a tabulated format of up to four columns</dd></dl>');
break;
case 'SURNAME_TRADITION':
$title=WT_I18N::translate('Surname tradition');
$text=
WT_I18N::translate('When you add a new family member, a default surname can be provided. This surname will depend on the local tradition.').
'<br /><br /><dl><dt>'.
WT_I18N::translate_c('Surname tradition', 'paternal').
'</dt><dd>'.
/* I18N: In the paternal surname tradition, ... */ WT_I18N::translate('All family members take the father\'s surname.').
'</dd></dl><dl><dt>'.
WT_I18N::translate_c('Surname tradition', 'Spanish').
'</dt><dd>'.
/* I18N: In the Spanish surname tradition, ... */ WT_I18N::translate('Children take one surname from the father and one surname from the mother.').
'</dd></dl><dl><dt>'.
WT_I18N::translate_c('Surname tradition', 'Portuguese').
'</dt><dd>'.
/* I18N: In the Portuguese surname tradition, ... */ WT_I18N::translate('Children take one surname from the mother and one surname from the father.').
'</dd></dl><dl><dt>'.
WT_I18N::translate_c('Surname tradition', 'Icelandic').
'</dt><dd>'.
/* I18N: In the Icelandic surname tradition, ... */ WT_I18N::translate('Children take a surname based on their father\'s given name.').
'</dd></dl><dl><dt>'.
WT_I18N::translate_c('Surname tradition', 'Polish').
'</dt><dd>'.
/* I18N: In the Polish surname tradition, ... */ WT_I18N::translate('All family members take the father\'s surname, but the suffix may change to indicate the person\'s gender.').
'</dd></dl><dl><dt>'.
WT_I18N::translate_c('Surname tradition', 'Lithuanian').
'</dt><dd>'.
/* I18N: In the Lithuanian surname tradition, ... */ WT_I18N::translate('All family members take the father\'s surname, but the suffix may change to indicate the person\'s gender and marital status.').
'</dd></dl>';
break;
case 'THEME':
$title=WT_I18N::translate('Theme');
$text=
WT_I18N::translate('You can change the appearance of <b>webtrees</b> using "themes". Each theme has a different style, layout, color scheme, etc.').
'<br/><br/>'.
WT_I18N::translate('Themes can be selected at three levels: user, GEDCOM, and site. User settings take priority over GEDCOM settings, which in turn take priority over the site setting. Selecting "default theme" at user level will give the setting for the current GEDCOM. Selecting "default theme" at GEDCOM level will give the site setting.');
break;
case 'THUMBNAIL_WIDTH':
$title=WT_I18N::translate('Width of generated thumbnails');
$text=WT_I18N::translate('This is the width (in pixels) that the program will use when automatically generating thumbnails. The default setting is 100.');
break;
case 'UNDERLINE_NAME_QUOTES':
$title=WT_I18N::translate('Underline names in quotes');
$text=WT_I18N::translate('Many programs will place the preferred given name in "quotes" in the GEDCOM. The usual convention for this is to underline the preferred given name. Enabling this option will convert any names surrounded by quotes to <span> with a CSS class of "starredname".<br /><br />For example, if the name in the GEDCOM were 1 NAME Gustave "Jean Paul" Charles /Wilson/ enabling this option would change the part of the name enclosed in quotes to <span class="starredname">Jean Paul</span> for printing purposes. Depending on other settings, the browser would then display that name as <b>Gustave <u>Jean Paul</u> Charles Wilson</b> or <b>Wilson, Gustave <u>Jean Paul</u> Charles</b>');
break;
case 'USE_GEONAMES':
$title=WT_I18N::translate('Use GeoNames database for autocomplete on places');
$text=WT_I18N::translate('Should the GeoNames database be used to provide more suggestions for place names?<br /><br />When this option is set to <b>Yes</b>, the GeoNames database will be queried to supply suggestions for the place name being entered. When set to <b>No</b>, only the current genealogical database will be searched. As you enter more of the place name, the suggestion will become more precise. This option can slow down data entry, particularly if your Internet connection is slow.<br /><br />The GeoNames geographical database is accessible free of charge. It currently contains over 8,000,000 geographical names.');
break;
case 'USE_MEDIA_FIREWALL':
$title=WT_I18N::translate('Automatically protect new images');
$text=WT_I18N::translate('Should new images automatically go in the protected media directory when they are uploaded?');
break;
case 'USE_MEDIA_VIEWER':
$title=WT_I18N::translate('Use media viewer');
$text=WT_I18N::translate('When this option is <b>Yes</b>, clicking on images will produce the Media Viewer page. This page shows the details of the image. If you have sufficient rights, you can also edit these details.<br /><br />When this option is <b>No</b>, clicking on images will produce a full-size image in a new window.');
break;
case 'USE_REGISTRATION_MODULE':
$title=WT_I18N::translate('Allow visitors to request account registration');
$text=WT_I18N::translate('Gives visitors the option of registering themselves for an account on the site.<br /><br />The visitor will receive an email message with a code to verify his application for an account. After verification, the Administrator will have to approve the registration before it becomes active.');
break;
case 'USE_RELATIONSHIP_PRIVACY':
$title=WT_I18N::translate('Use relationship privacy');
$text=WT_I18N::translate('<b>No</b> means that authenticated users can see the details of all living people. <b>Yes</b> means that users can only see the private information of living people they are related to.<br /><br />This option sets the default for all users who have access to this genealogical database. The Administrator can override this option for individual users by editing the user\'s account details.');
break;
case 'USE_RIN':
$title=WT_I18N::translate('Use RIN number instead of GEDCOM ID');
$text=WT_I18N::translate('Set to <b>Yes</b> to use the RIN number instead of the GEDCOM ID when asked for Individual IDs in configuration files, user settings, and charts. This is useful for genealogy programs that do not consistently export GEDCOMs with the same ID assigned to each individual but always use the same RIN.');
break;
case 'USE_SILHOUETTE':
$title=WT_I18N::translate('Use silhouettes');
$text=WT_I18N::translate('Use silhouette images when no highlighted image for that person has been specified. The images used are specific to the gender of the person in question.<br /><br /><table><tr><td wrap valign="middle">This image might be used when the gender of the person is unknown:')
." </td><td><img src=\"".$WT_IMAGES["default_image_U"]."\" width=\"40\" alt=\"\" title=\"\" /></td></tr></table>";
break;
case 'USE_THUMBS_MAIN':
$title=WT_I18N::translate('Use thumbnail');
$text=WT_I18N::translate('This option determines whether <b>webtrees</b> should send the large or the small image to the browser whenever a chart or the Personal Details page requires a thumbnail.<br /><br />The <b>No</b> choice will cause <b>webtrees</b> to send the large image, while the <b>Yes</b> choice will cause the small image to be sent. Each individual image also has the «Always use main image?» option which, when set to <b>Yes</b>, will cause the large image to be sent regardless of the setting of the «Use thumbnail» option in the GEDCOM configuration. You cannot force <b>webtrees</b> to send small images when the GEDCOM configuration specifies that large images should always be used.<br /><br /><b>webtrees</b> does not re-size the image being sent; the browser does this according to the page specifications it has also received. This can have undesirable consequences when the image being sent is not truly a thumbnail where <b>webtrees</b> is expecting to send a small image. This is not an error: There are occasions where it may be desirable to display a large image in places where one would normally expect to see a thumbnail-sized picture.<br /><br />You should avoid setting the «Use thumbnail» option to <b>No</b>. This choice will cause excessive amounts of image-related data to be sent to the browser, only to have the browser discard the excess. Page loads, particularly of charts with many images, can be seriously slowed.');
break;
case 'WATERMARK_THUMB':
$title=WT_I18N::translate('Add watermarks to thumbnails?');
$text=WT_I18N::translate('If the Media Firewall is enabled, should thumbnails be watermarked? Your media lists will load faster if you don\'t watermark the thumbnails.');
break;
case 'WEBMASTER_USER_ID':
$title=WT_I18N::translate('Support contact');
$text=WT_I18N::translate('The person to be contacted about technical questions or errors encountered on your site.');
break;
case 'WELCOME_TEXT_AUTH_MODE_CUST_HEAD':
$title=WT_I18N::translate('Standard header for custom welcome text');
$text=WT_I18N::translate('Choose to display a standard header for your custom Welcome text. When your users change language, this header will appear in the new language.<br /><br />If set to <b>Yes</b>, the header will look like this:<div class="list_value_wrap"><center><b>Welcome to this Genealogy website</b></center><br />Access is permitted to users who have an account and a password for this website.<br /></div>');
break;
case 'WELCOME_TEXT_AUTH_MODE_CUST':
$title=WT_I18N::translate('Custom welcome text');
$text=WT_I18N::translate('If you have opted for custom welcome text, you can type that text here. To set this text for other languages, you must switch to that language, and visit this page again.');
break;
case 'WELCOME_TEXT_AUTH_MODE':
$title=WT_I18N::translate('Welcome text on login page');
$text=WT_I18N::translate('Here you can choose text to appear on the login screen. You must determine which predefined text is most appropriate.<br /><br />You can also choose to enter your own custom Welcome text. Please refer to the Help text associated with the <b>Custom Welcome text</b> field for more information.<br /><br />The predefined texts are:<ul><li><b>Predefined text that states all users can request a user account:</b><div class="list_value_wrap"><center><b>Welcome to this Genealogy website</b></center><br />Access to this site is permitted to every visitor who has a user account.<br /><br />If you have a user account, you can login on this page. If you don\'t have a user account, you can apply for one by clicking on the appropriate link below.<br /><br />After verifying your application, the site administrator will activate your account. You will receive an email when your application has been approved.</div><br/></li><li><b>Predefined text that states admin will decide on each request for a user account:</b><div class="list_value_wrap"><center><b>Welcome to this Genealogy website</b></center><br />Access to this site is permitted to <u>authorized</u> users only.<br /><br />If you have a user account you can login on this page. If you don\'t have a user account, you can apply for one by clicking on the appropriate link below.<br /><br />After verifying your information, the administrator will either approve or decline your account application. You will receive an email message when your application has been approved.</div><br/></li><li><b>Predefined text that states only family members can request a user account:</b><div class="list_value_wrap"><center><b>Welcome to this Genealogy website</b></center><br />Access to this site is permitted to <u>family members only</u>.<br /><br />If you have a user account you can login on this page. If you don\'t have a user account, you can apply for one by clicking on the appropriate link below.<br /><br />After verifying the information you provide, the administrator will either approve or decline your request for an account. You will receive an email when your request is approved.</div></li></ul>');
break;
case 'WORD_WRAPPED_NOTES':
$title=WT_I18N::translate('Add spaces where notes were wrapped');
$text=WT_I18N::translate('Some genealogy programs wrap notes at word boundaries while others wrap notes anywhere. This can cause <b>webtrees</b> to run words together. Setting this to <b>Yes</b> will add a space between words where they are wrapped in the original GEDCOM during the import process. If you have already imported the file you will need to re-import it.');
break;
case 'ZOOM_BOXES':
$title=WT_I18N::translate('Zoom boxes on charts');
$text=WT_I18N::translate('Allows a user to zoom boxes on charts to get more information.<br /><br />Set to <b>Disabled</b> to disable this feature. Set to <b>On Mouse Over</b> to zoom boxes when the user mouses over the icon in the box. Set to <b>On Mouse Click</b> to zoom boxes when the user clicks on the icon in the box.');
break;
//////////////////////////////////////////////////////////////////////////////
// This section contains all the other help items.
//////////////////////////////////////////////////////////////////////////////
case 'add_child':
$title=WT_I18N::translate('Add a child to this family');
$text=WT_I18N::translate('You can add a child to this family by clicking this link.<br /><br />Adding a child is simple: Just click the link, fill out the boxes in the pop up screen, and that\'s all.');
break;
case 'add_facts':
$title=WT_I18N::translate('Add a fact');
$text=WT_I18N::translate('Here you can add a fact to the record being edited.<br /><br />First choose a fact from the drop-down list, then click the <b>Add</b> button. All possible facts that you can add to the database are in that drop-down list.');
$text.='<br/><br/>';
$text.='<b>'.WT_I18N::translate('Add from clipboard').'</b>';
$text.='<br/><br/>';
$text.=WT_I18N::translate('<b>webtrees</b> allows you to copy up to 10 facts, with all their details, to a clipboard. This clipboard is different from the Clippings Cart that you can use to export portions of your database.<br /><br />You can select any of the facts from the clipboard and copy the selected fact to the Individual, Family, Media, Source, or Repository record currently being edited. However, you cannot copy facts of dissimilar record types. For example, you cannot copy a Marriage fact to a Source or an Individual record since the Marriage fact is associated only with Family records.<br /><br />This is very helpful when entering similar facts, such as census facts, for many individuals or families.');
break;
case 'add_husband':
$title=WT_I18N::translate('Add a new husband');
$text=WT_I18N::translate('By clicking this link, you can add a <u>new</u> male person and link this person to the principal individual as a new husband.<br /><br />Just click the link, and you will get a pop up window to add the new person. Fill out as many boxes as you can and click the <b>Save</b> button.<br /><br />That\'s all.');
break;
case 'add_media':
$title=WT_I18N::translate('Add a new media object');
$text=WT_I18N::translate('Adding multimedia files (MM) to the GEDCOM is a very nice feature. Although this program already has a great look without media, if you add pictures or other MM to your relatives, it will only get better.<br /><br /><b>What you should understand about MM.</b><br />There are many formats of MM. Although <b>webtrees</b> can handle most of them, there some things to consider.<br /><ul><li><b>Formats</b><br />Pictures can be edited and saved in many formats. For example, .jpg, .png, .bmp, .gif, etc. If the same original picture was used to create each of the formats, the viewed image will appear to be the same size no matter which format is used. However, the image files stored in the database will vary considerably in size. Generally, .jpg images are considered to the most efficient in terms of storage space.</li><li><b>Image size</b><br />The larger the original image, the larger will be the resultant file\'s size. The picture should fit on the screen without scrolling; the maximum width or height should not be more than the width or height of the screen. <b>webtrees</b> is designed for screens of 1024x768 pixels but not all of this space is available for viewing pictures; the picture\'s size should be set accordingly. To reduce file sizes, smaller pictures are more desirable.</li><li><b>Resolution</b><br />The resolution of a picture is usually measured in "dpi" (dots/inch), but this is valid only for printed pictures. When considering pictures shown on screen, the only correct way is to use total dots or pixels. When printed, the picture could have a resolution of 150 - 300 dpi or more depending on the printer. Screen resolutions are rarely better than 50 pixels per inch. If your picture will never be printed, you can safely lower its resolution (and consequently its file size) without affecting picture quality. If a low-resolution picture is printed with too great a magnification, its quality will suffer; it will have a grainy appearance.</li><li><b>Color depth</b><br />Another way to keep a file small is to decrease the number of colors that you use. The number of colors can differ from pure black and white (two colors) to true colors (millions of colors) and anything in between. You can see that the more colors are used, the bigger the size of the files.</li></ul><b>Why is it important to keep the file size small?</b><br /><ul><li>First of all: Our webspace is limited. The more large files there are, the more web space we need on the server. The more space we need, the higher our costs.</li><li>Bandwidth. The more data our server has to send to the remote location (your location), the more we have to pay. This is because the carrying capacity of the server\'s connection to the Internet is limited, and the link has to be shared (and paid for) by all of the applications running on the server. <b>webtrees</b> is one of many applications that share the server. The cost is normally apportioned according to the amount of data each application sends and receives.</li><li>Download time. If you have large files, the user (also you) will have to wait long for the page to download from the server. Not everybody is blessed with a cable connection, broadband or DSL.</li></ul><b>How to upload your MM</b><br />There are two ways to upload media to the site. If you have a lot of media items to upload you should contact the site administrator to discuss the best ways. If it has been enabled by your site administrator, you can use the Upload Media form under your My Page menu. You can also use the Upload option on the Multimedia form to upload media items.');
break;
case 'add_media_linkid':
$title=WT_I18N::translate('Link ID');
$text=WT_I18N::translate('Each media item should be associated with one or more person, family, or source records in your database.<br /><br />To establish such a link, you can enter or search for the ID of the person, family, or source at the same time as you create the media item. You can also establish the link later through editing options on the Manage MultiMedia page, or by adding media items through the Add Media link available on the Individual, Family, or Source Details pages.');
break;
case 'add_new_gedcom':
$title=WT_I18N::translate('Create a new family tree');
$text=
WT_I18N::translate('This option creates a new family tree. The name you give it will be used to generate URLs and filenames, so you should choose something short, simple, and avoid punctuation.').
'<br/><br/>'.
WT_I18N::translate('After creating the family tree, you will be able to upload or import data from a GEDCOM file.');
break;
case 'add_note':
// This is a general help text for multiple pages
$title=WT_I18N::translate('Add a new note');
$text=WT_I18N::translate('If you have a note to add to this record, this is the place to do so.<br /><br />Just click the link, a window will open, and you can type your note. When you are finished typing, just click the button below the box, close the window, and that\'s all.');
break;
case 'add_opf_child':
$title=WT_I18N::translate('Add a child to create a one-parent family');
$text=WT_I18N::translate('By clicking this link, you can add a <u>new</u> child to this person, creating a one-parent family.<br /><br />Just click the link, and you will get a pop up window to add the new person. Fill out as many boxes as you can and click the <b>Save</b> button.<br /><br />That\'s all.');
break;
case 'add_shared_note':
// This is a general help text for multiple pages
$title=WT_I18N::translate('Add a new shared note');
$text=WT_I18N::translate('When you click the <b>Add a new Shared Note</b> link, a new window will open. You can choose to link to an existing shared note, or you can create a new shared note and at the same time create a link to it.');
break;
case 'add_sibling':
$title=WT_I18N::translate('Add a new brother or sister');
$text=WT_I18N::translate('You can add a child to this family when you click this link. "This Family", in this case, is the father and mother of the principal person of this screen.<br /><br />Keep in mind that you are going to add a sibling of that person. Adding a brother or sister is simple: Just click the link, fill out the boxes in the pop up screen and that\'s all.<br /><br />If you have to add a son or daughter of the principal person, scroll down a little and click the link in "Family with Spouse".');
break;
case 'add_son_daughter':
$title=WT_I18N::translate('Add a new son or daughter');
$text=WT_I18N::translate('You can add a child to this family when you click this link. "This Family", in this case, is the principal person of this screen and his or her spouse.<br /><br />Keep in mind that you are going to add a son or daughter of that person. Adding a son or daughter is simple: Just click the link, fill out the boxes in the popup screen and that\'s all.<br /><br />If you have to add a brother or sister of the principal person, scroll up a little and click the link in "Family with Parents".');
break;
case 'add_source':
// This is a general help text for multiple pages
$title=WT_I18N::translate('Add a new source citation');
$text=WT_I18N::translate('Here you can add a source <b>Citation</b> to this record.<br /><br />Just click the link, a window will open, and you can choose the source from the list (Find ID) or create a new source and then add the Citation.<br /><br />Adding sources is an important part of genealogy because it allows other researchers to verify where you obtained your information.');
break;
case 'add_wife':
$title=WT_I18N::translate('Add a new wife');
$text=WT_I18N::translate('By clicking this link, you can add a <u>new</u> female person and link this person to the principal individual as a new wife.<br /><br />Just click the link, and you will get a pop up window to add the new person. Fill out as many boxes as you can and click the <b>Save</b> button.<br /><br />That\'s all.');
break;
case 'age_differences':
$title=WT_I18N::translate('Show date differences');
$text=WT_I18N::translate('When this option box is checked, the «Close Relatives» tab will show date differences as follows:<br /><ul><li>birth dates of partners.<br />A negative value indicates that the second partner is older than the first.<br /><br /></li><li>marriage date and birth date of the first child.<br />A negative value here indicates that the child was born before the marriage date or that either the birth date or the marriage date is wrong.<br /><br /></li><li>birth dates of siblings.<br />A negative value here indicates that either the order of the children is wrong or that one of the birth dates is wrong.</li></ul>');
break;
case 'alpha':
$title=
/* I18N: Replace A-Z with the first/last letters from your own alphabet. */
WT_I18N::translate('A-Z list of names');
$text=
/* I18N: Replace A-Z with the first/last letters from your own alphabet. Note "…" and "None" should be the same as your translation of these individual terms. */
WT_I18N::translate('The A-Z list allows you to select all names beginning with a certain letter. Unknown names are listed under “…” and people who do not have a surname are listed under “None”.').
'</p><p>'.
WT_I18N::translate('If a person’s name is not known, it should be left blank. If you enter “Unknown” as a name, it will be listed under “U”.').
'</p>';
break;
case 'ancestry_chart':
$title=WT_I18N::translate('Ancestors');
$text=WT_I18N::translate('The Ancestry page is very similar to the <a href="?help=pedigree.php">Pedigree Tree</a>, but with more details and alternate <a href="?help=chart_style">Chart style</a> displays.<br /><br />Each ancestry is shown with a unique number, calculated according to the <i>Sosa-Stradonitz</i> system:<div style="padding-left:30px;"><b>Even</b> numbers for men (child*2)<br /><b>Odd</b> numbers for women (husband+1) except for <b>1</b></div><br />Example:<br /><div style="padding-left:30px;">The root person is <b>1</b>, regardless of gender.<br /><b>1</b>\'s father is <b>2</b> (<b>1</b> * 2), mother is <b>3</b> (<b>2</b> + 1).<br /><b>2</b>\'s father is <b>4</b> (<b>2</b> * 2), mother is <b>5</b> (<b>4</b> + 1).<br /><b>3</b>\'s father is <b>6</b> (<b>3</b> * 2), mother is <b>7</b> (<b>6</b> + 1).<br /><b>7</b>\'s father is <b>14</b> (<b>7</b> * 2), mother is <b>15</b> (<b>14</b> +1).</div><br />etc.');
break;
case 'annivers_date_select':
$title=WT_I18N::translate('Day selector');
$text=WT_I18N::translate('The top row of the Selector table is the <b>Day</b> selector. Its meaning is obvious: You select a <u>day</u>.<br /><br />The result of clicking on a certain day depends of whether you are in <b>Day</b> or in <b>Month</b> mode.<br /><dl><dt><b>Day mode</b></dt><dd>In this mode, you click a day, the screen will refresh, and the list for that day will be displayed.</dd><dt><b>Month mode</b></dt><dd>You have the calendar of a certain month on the screen. You click a day and the screen will refresh, but you will still see the month that you had on the screen before. The reason for this is that you can still decide to select another month, year, or event before you either click the <b>View Day</b> or <b>View Month</b> button.<br /><br />At the end of the Day row you will see a <b>Quick Link</b> with today\'s date. Clicking that <b>Quick Link</b> will display the list for today in <b>Day</b> mode, no matter whether you are in <b>Month</b> or in <b>Day</b> mode.</dd></dl>');
break;
case 'annivers_event':
$title=WT_I18N::translate('Event selector');
$text=WT_I18N::translate('Here you choose whether you want all events for individuals and families displayed or just a selected event. You cannot select more than one event category.<br /><br />When you click on an option, the events of your choice will be displayed.<br /><br />The settings of day, month, and year, as well as <b>Day</b> or <b>Month</b> mode, remain as they were.');
break;
case 'annivers_month_select':
$title=WT_I18N::translate('Month selector');
$text=WT_I18N::translate('The middle row of the Selector table is the <b>Month</b> selector. Its meaning is obvious: You select a <u>month</u>.<br /><br />The result of clicking on a certain month depends of whether you are in <b>Day</b> or in <b>Month</b> mode.<br /><dl><dt><b>Day mode</b></dt><dd>In this mode, you click a month, the screen will refresh, and the list for that month will be displayed. All other selections like day, year, and events will be unchanged.</dd><dt><b>Month mode</b></dt><dd>When you have the calendar on the screen and click a month in the <b>Month</b> row, the calendar for that new month will be displayed.<br /><br />At the end of the Month row you will see a <b>Quick Link</b> with today\'s month and year. Clicking that <b>Quick Link</b> will display the list for that month in <b>Month</b> mode, no matter whether you are in <b>Month</b> or in <b>Day</b> mode.</dd></dl>');
break;
case 'annivers_sex':
$title=WT_I18N::translate('Gender selector');
$text=WT_I18N::translate('When you are logged in or when the admin has not enabled the Privacy option, you can select one of these options:<ol><li><b>All</b> icon<br />This is the default option. The events of all individuals and families are displayed.</li><li><b>Male</b> icon<br />Only events of male individuals are displayed. Only male members of families will be displayed with Family events.</li><li><b>Female</b> icon<br />Only events of female individuals are displayed. Only female members of families will be displayed with Family events.</li></ol>When you click on an option, the events of your choice will be displayed.<br /><br />The settings of day, month, and year, as well as <b>Day</b> or <b>Month</b> mode, remain as they were.');
break;
case 'annivers_show':
$title=WT_I18N::translate('Show events of:');
$text=WT_I18N::translate('The following options are available:<br /><ol><li><b>All People</b><br />With this option, all individuals and families are displayed.</li><li><b>Recent Years (<100 yrs)</b><br />With this option you will see all events for the chosen day or month, but no events older than 100 years will be shown.</li><li><b>Living People</b><br />Unless the administrator has configured <b>webtrees</b> so that living people are visible to anyone, this option will only be available to you after you have logged in.<br /><br />With this option, only the events of living persons will be displayed.</li></ol>When you click on an option, the events of your choice will be displayed.<br /><br />The settings of day, month, and year, as well as <b>Day</b> or <b>Month</b> mode, remain as they were.');
break;
case 'annivers_tip':
$title=WT_I18N::translate('Tip');
$text=WT_I18N::translate('Adjust the Date selector to any date in the past.<br /><br />When you click on one of the View buttons you will see a list or calendar for that date. All the ages, anniversaries, etc. have been recalculated and now count from the date you set in the Date selector. You are now seeing the calendar or list that your ancestor would have seen on that date, years ago.');
break;
case 'annivers_year_select':
$title=WT_I18N::translate('Year input box');
$text=WT_I18N::translate('This input box lets you change that year of the calendar. Type a year into the box and press <b>Enter</b> to change the calendar to that year.<br /><br /><b>Advanced features</b> for <b>View Year</b><dl><dt><b>More than one year</b></dt><dd>You can search for dates in a range of years.<br /><br />Year ranges are <u>inclusive</u>. This means that the date range extends from 1 January of the first year of the range to 31 December of the last year mentioned. Here are a few examples of year ranges:<br /><br /><b>1992-5</b> for all events from 1992 to 1995.<br /><b>1972-89</b> for all events from 1972 to 1989.<br /><b>1610-759</b> for all events from 1610 to 1759.<br /><b>1880-1905</b> for all events from 1880 to 1905.<br /><b>880-1105</b> for all events from 880 to 1105.<br /><br />To see all the events in a given decade or century, you can use <b>?</b> in place of the final digits. For example, <b>197?</b> for all events from 1970 to 1979 or <b>16??</b> for all events from 1600 to 1699.<br /><br/>Selecting a range of years will change the calendar to the year view.</dd></dl>');
break;
case 'apply_privacy':
$title=WT_I18N::translate('Apply privacy settings?');
$text=WT_I18N::translate('This option will remove private data from the downloaded GEDCOM file. The file will be filtered according to the privacy settings that apply to each access level. Privacy settings are specified on the GEDCOM configuration page.');
break;
case 'block_move_right':
$title=WT_I18N::translate('Move list entries');
$text=WT_I18N::translate('Use these buttons to move an entry from one list to another.<br /><br />Highlight the entry to be moved, and then click a button to move or copy that entry in the direction of the arrow. Use the <b>»</b> and <b>«</b> buttons to move the highlighted entry from the leftmost to the rightmost list or vice-versa. Use the <b>></b> and <b><</b> buttons to move the highlighted entry between the Available Blocks list and the list to its right or left.<br /><br />The entries in the Available Blocks list do not change, regardless of what you do with the Move Right and Move Left buttons. This is so because the same block can appear several times on the same page. The HTML block is a good example of why you might want to do this.');
break;
case 'block_move_up':
$title=WT_I18N::translate('Move list entries');
$text=WT_I18N::translate('Use these buttons to re-arrange the order of the entries within the list. The blocks will be printed in the order in which they are listed.<br /><br />Highlight the entry to be moved, and then click a button to move that entry up or down.');
break;
case 'box_width':
$title=WT_I18N::translate('Box width');
$text=WT_I18N::translate('Here you can change the box width from 50 percent to 300 percent. At 100 percent each box is about 270 pixels wide.');
break;
case 'chart_style':
$title=WT_I18N::translate('Chart style');
$text=WT_I18N::translate('Two chart styles are available:<ul><li><b>List</b><br />Vertical tree, with collapsible/expandable families.</li><li><b>Booklet</b><br />One family per page, with parents, grandparents, and all recorded children.<br /><br />This format is easy to print to give to your relatives.</li></ul>');
break;
case 'chart_type':
$title=WT_I18N::translate('Chart type');
$text=WT_I18N::translate('Select what you want to see on the map chart. You can choose:<p style="padding-left: 25px"><b>Individual distribution chart</b> shows the countries in which persons from this database occur.<br /><b>Surname distribution chart</b> shows the countries in which the specified surname occurs.</p>');
break;
case 'convertPath':
$title=WT_I18N::translate('Convert media path to');
$text=WT_I18N::translate('This option defines a constant path to be prefixed to all media paths in the output file.<br /><br />For example, if the media directory has been configured to be "/media" and if the media file being exported has a path "/media/pictures/xyz.jpg" and you have entered "c:\my pictures\my family" into this field, the resultant media path will be "c:\my pictures\my family/pictures/xyz.jpg".<br /><br />You will notice in this example:<ul><li>the current media directory name is stripped from the path</li><li>and the resultant path will not have correct folder name separators.</li></ul><br />If you wish to retain the media directory in media file paths of the output file, you will need to include that name in the <b>Convert media path to</b> field.<br /><br />You should also use the <b>Convert media folder separators to</b> option to ensure that the folder name separators are consistent and agree with the requirements of the receiving operating system.<br /><br />Media paths that are actually URLs will not be changed.');
break;
case 'convertSlashes':
$title=WT_I18N::translate('Convert media folder separators to');
$text=WT_I18N::translate('This option determines whether folder names in the FILE specification of media objects should be separated by forward slashes or by backslashes. Your choice depends on the requirements of the receiving operating system.<br /><br />The choice <b>Forward slashes : /</b> is appropriate for most operating systems other than Microsoft Windows. The choice <b>Backslashes : \</b> should be used when the destination program is running on a Microsoft Windows system.<br /><br />Media paths that are actually URLs will not be changed.');
break;
case 'day_month':
$title=WT_I18N::translate('View day / View month / View year');
$text=WT_I18N::translate('<ul><li>The <b>View Day</b> button will display the events of the chosen date in a list. All years are scanned, so only the day and month can be set here. Changing the year will have no effect. You can reduce the list by choosing the option <b>Recent years</b> or <b>Living people</b>.<br /><br />Ages in the list will be calculated from the current year.</li><li>The <b>View Month</b> button will display a calendar diagram of the chosen month and year. Here too you can reduce the lists by choosing the option <b>Recent years</b> or <b>Living people</b>.<br /><br />You will get a realistic impression of what a calendar on the wall of your ancestors looked like by choosing a year in the past in combination with <b>Recent years</b>. All ages on the calendar are shown relative to the year in the Year box.</li><li>The <b>View Year</b> button will show you a list of events of the chosen year. Here too you can reduce the list by choosing the option <b>Recent years</b> or <b>Living people</b>.<br /><br />You can show events for a range of years. Just type the beginning and ending years of the range, with a dash <b>-</b> between them. Examples:<br /><b>1992-4</b> for all events from 1992 to 1994<br /><b>1976-1984</b> for all events from 1976 to 1984<br /><br />To see all the events in a given decade or century, you can use <b>?</b> in place of the final digits. For example, <b>197?</b> for all events from 1970 to 1979 or <b>16??</b> for all events from 1600 to 1699.</li></ul>When you want to <b>change the year</b> you <b>have</b> to press one of these three buttons. All other settings remain as they were.');
break;
case 'default_gedcom':
$title=WT_I18N::translate('Default family tree');
$text=WT_I18N::translate('This option selects the family tree that is shown to visitors when they first arrive at the site.');
break;
case 'desc_generations':
$title=WT_I18N::translate('Number of generations');
$text=WT_I18N::translate('Here you can set the number of generations to display on this page.<br /><br />The right number for you depends of the size of your screen and whether you show details or not. Processing time will increase as you increase the number of generations.');
break;
case 'desc_rootid':
$title=WT_I18N::translate('Root individual');
$text=WT_I18N::translate('If you want to display a chart with a new starting (root) person, the ID of that new starting person is typed here.<br /><br />If you don\'t know the ID of that person, use the <b>Find ID</b> link.<br /><br /><b>ID NUMBER</b><br />The ID numbers used inside <b>webtrees</b> are <u>not</u> the identification numbers issued by various governments (driving permit or passport numbers, for instance). The ID number referred to here is simply a number used within the database to uniquely identify each individual; it was assigned by the ancestry program that created the GEDCOM file which was imported into <b>webtrees</b>.');
break;
case 'download_gedcom':
$title=WT_I18N::translate('Download family tree');
$text=WT_I18N::translate('This option will download the family tree to a GEDCOM file on your computer.');
break;
case 'download_zipped':
$title=WT_I18N::translate('Download ZIP file');
$text=WT_I18N::translate('When you check this option, a copy of the GEDCOM file will be compressed into ZIP format before the download begins. This will reduce its size considerably, but you will need to use a compatible Unzip program (WinZIP, for example) to decompress the transmitted GEDCOM file before you can use it.<br /><br />This is a useful option for downloading large GEDCOM files. There is a risk that the download time for the uncompressed file may exceed the maximum allowed execution time, resulting in incompletely downloaded files. The ZIP option should reduce the download time by 75 percent.');
break;
case 'edit_add_ASSO':
$title=WT_I18N::translate('Add a new associate');
$text=WT_I18N::translate('Add a new Associate allows you to link a fact with an associated person in the site. This is one way in which you might record that someone was the Godfather of another person.');
break;
case 'edit_add_GEDFact_ASSISTED':
$title=WT_I18N::translate('GEDFact shared note assistant');
$text=WT_I18N::translate('Clicking the "+" icon will open the GEDFact Shared Note Assistant window.<br />Specific help will be found there.<br /><br />When you click the "Save" button, the ID of the Shared Note will be pasted here.');
break;
case 'edit_add_NOTE':
$title=WT_I18N::translate('Add a new note');
$text=WT_I18N::translate('This section allows you to add a new Note to the fact that you are currently editing. Notes are free-form text and will appear in the Fact Details section of the page.');
break;
case 'edit_add_SHARED_NOTE':
$title=WT_I18N::translate('Add a new shared note');
$text=WT_I18N::translate('Shared notes, like regular notes, are free-form text. Unlike regular notes, each shared note can be linked to more than one person, family, source, or fact.<br /><br />By clicking the appropriate icon, you can establish a link to an existing shared note or create a new shared note and at the same time link to it. If a link to an existing shared note has already been established, you can also edit that note\'s contents.<br /><ul><li><b>Link to an existing shared note</b><div style="padding-left:20px;">If you already know the ID number of the desired shared note, you can enter that number directly into the field.<br /><br />When you click the <b>Find Shared Note</b> icon, you will be able to search the text of all existing shared notes and then choose one of them. The ID number of the chosen note will be entered into the field automatically.<br /><br />You must click the <b>Add</b> button to update the original record.</div><br /></li><li><b>Create a new shared note</b><div style="padding-left:20px;">When you click the <b>Create a new Shared Note</b> icon, a new window will open. You can enter the text of the new note as you wish. As with regular notes, you can enter URLs.<br /><br />When you click the <b>Save</b> button, you will see a message with the ID number of the newly created shared note. You should click on this message to close the editing window and also copy that new ID number directly into the ID number field. If you just close the window, the newly created ID number will not be copied automatically.<br /><br />You must click the <b>Add</b> button to update the original record.</div><br /></li><li><b>Edit an existing shared note</b><div style="padding-left:20px;">When you click the <b>Edit Shared Note</b> icon, a new window will open. You can change the text of the existing shared note as you wish. As with regular notes, you can enter URLs.<br /><br />When you click the <b>Save</b> button, the text of the shared note will be updated. You can close the window and then click the <b>Save</b> button again.<br /><br />When you change the text of a shared note, your change will be reflected in all places to which that shared note is currently linked. New links that you establish after having made your change will also use the updated text.</div></li></ul>');
if (array_key_exists('GEDFact_assistant', WT_Module::getActiveModules())) {
$text.='<p class="warning">'.WT_I18N::translate('You should avoid using the vertical line character “|” in your notes. It is used internally by webtrees and may cause your note to display incorrectly.').'</p>';
}
break;
case 'edit_add_SOUR':
$title=WT_I18N::translate('Add a new source citation');
$text=WT_I18N::translate('This section allows you to add a new source citation to the fact that you are currently editing.<br /><br />In the Source field you enter the ID for the source. Click the <b>Create a new source</b> link if you need to enter a new source. In the Citation Details field you would enter the page number or other information that might help someone find the information in the source. In the Text field you would enter the text transcription from the source.');
break;
case 'edit_add_child':
$title=WT_I18N::translate('Add a new child');
$text=WT_I18N::translate('With this page you can add a new child to the selected family. Fill out the name of the child and the birth and death information if it is known. If you don\'t know some information leave it blank.<br /><br />To add other facts besides birth and death, first add the new child to the database by saving the changes. Then click on the child\'s name in the updated Family page or Close Relatives tab to view the child\'s Individual Information page. From the Individual Information page you can add more detailed information.');
break;
case 'edit_add_parent':
$title=WT_I18N::translate('Add a new parent');
$text=WT_I18N::translate('With this page you can add a new mother or father to the selected person. Fill out the new person\'s name and the birth and death information if it is known. If you don\'t know some information, leave it blank.<br /><br />To add other facts besides birth and death, first add the new person to the database by saving the changes. Then click on the person\'s name in the updated Family page or Close Relatives tab to view the person\'s Individual Information page. From the Individual Information page you can add more detailed information.');
break;
case 'edit_add_spouse':
$title=WT_I18N::translate('Add a new spouse');
$text=WT_I18N::translate('With this page you can add a new husband or wife to the selected person. Fill out the new person\'s name and the birth and death information if it is known. If you don\'t know some information leave it blank.<br /><br />To add other facts besides birth and death, first add the new person to the database by saving the changes. Then click on the person\'s name in the updated Family page or Close Relatives tab to view the person\'s Individual Information page. From the Individual Information page you can add more detailed information.');
break;
case 'edit_add_unlinked_note':
$title=WT_I18N::translate('Add an unlinked shared note');
$text=WT_I18N::translate('Use this link to add a new shared note to your database without linking the note to any record.<br /><br />The new note will appear in the Shared Note list, but will not appear on any charts or anywhere else in the program until it is linked to an individual, family or event.');
break;
case 'edit_add_unlinked_person':
$title=WT_I18N::translate('Add an unlinked person');
$text=WT_I18N::translate('Use this form to add an unlinked person.<br /><br />When you add an unlinked person to your family tree, the person will not be linked to any other people until you link them. Later, you can link people together from the Close Relatives tab on the Individual Information page.');
break;
case 'edit_add_unlinked_source':
$title=WT_I18N::translate('Add an unlinked source');
$text=WT_I18N::translate('Use this link to add a new source to your database without linking the source to a source citation in another record. The new source will appear in the source list, but will not appear on any charts or anywhere else in the program until it is linked up to a source citation.');
break;
case 'edit_edit_raw':
$title=WT_I18N::translate('Edit raw GEDCOM record');
$text=
WT_I18N::translate('This page allows you to bypass the usual forms, and edit the underlying data directly. It is an advanced option, and you should not use it unless you understand the GEDCOM format. If you make a mistake here, it can be difficult to fix.').
'<br/><br/>'.
/* I18N: %s is a URL */ WT_I18N::translate('You can download a copy of the GEDCOM specification from %s.', '<a href="http://wiki.webtrees.net/images/Ged551-5.pdf">http://wiki.webtrees.net/images/Ged551-5.pdf</a>');
break;
case 'edit_merge':
$title=WT_I18N::translate('Merge records');
$text=WT_I18N::translate('This page will allow you to merge two GEDCOM records from the same GEDCOM file.<br /><br />This is useful for people who have merged GEDCOMs and now have many people, families, and sources that are the same.<br /><br />The page consists of three steps.<br /><ol><li>You enter two GEDCOM IDs. The IDs <u>must</u> be of the same type. You cannot merge an individual and a family or family and source, for example.<br />In the <b>Merge To ID:</b> field enter the ID of the record you want to be the new record after the merge is complete.<br />In the <b>Merge From ID:</b> field enter the ID of the record whose information will be merged into the Merge To ID: record. This record will be deleted after the Merge.</li><li>You select what facts you want to keep from the two records when they are merged. Just click the checkboxes next to the ones you want to keep.</li><li>You inspect the results of the merge, just like with all other changes made online.</li></ol>Someone with Accept rights will have to authorize your changes to make them permanent.');
break;
case 'edit_SOUR_EVEN':
$title=WT_I18N::translate('Associate events with this source');
$text=WT_I18N::translate('Each source records specific events, generally for a given date range and for a place jurisdiction. For example a Census records census events and church records record birth, marriage, and death events.<br /><br />Select the events that are recorded by this source from the list of events provided. The date should be specified in a range format such as <i>FROM 1900 TO 1910</i>. The place jurisdiction is the name of the lowest jurisdiction that encompasses all lower-level places named in this source. For example, "Oneida, Idaho, USA" would be used as a source jurisdiction place for events occurring in the various towns within Oneida County. "Idaho, USA" would be the source jurisdiction place if the events recorded took place not only in Oneida County but also in other counties in Idaho.');
break;
case 'edituser_change_lang':
$title=WT_I18N::translate('Language selector');
$text=WT_I18N::translate('Here you can change the language in which <b>webtrees</b> will display all its pages and messages after you have logged in.<br /><br />When you first access the site, <b>webtrees</b> assumes that you want to see everything in the language configured as the Preferred Language in your browser. If that assumption is incorrect, you would override it here. For example, your browser might be set to English because that is the most prevalent language on the Internet. However, for genealogical purposes, you would prefer to see everything in Finnish or Hebrew. Here\'s where you do that.<br /><br />The administrator controls what language choices are available to you. If your preference isn\'t listed, you need to contact the administrator.<br /><br />Please remember that <b>webtrees</b> is very much a project staffed by an international team of unpaid volunteers. Experts come and go. Consequently, support for languages other than English is sometimes not as good as it should be.<br /><br />If you see something that has not been translated, has been translated incorrectly, or could be phrased better, let your administrator know. The administrator will know how to get in touch with the <b>webtrees</b> developer team to have your concerns addressed. Better still, volunteer some of your time. We can use the help.');
break;
case 'edituser_conf_password':
$title=WT_I18N::translate('Confirm password');
$text=WT_I18N::translate('If you have changed your password, you need to confirm it as well. This is just to make sure that you did not make a typing error in the password field.<br /><br />If the password and its confirmation are not identical, you will get a suitable error message. You will have to re-type both the original password and its confirmation.');
break;
case 'edituser_contact_meth':
$title=WT_I18N::translate('Preferred contact method');
$text=WT_I18N::translate('<b>webtrees</b> has several different contact methods. The administrator determines which method will be used to contact him. You have control over the method to be used to contact <u>you</u>. Depending on site configuration, some of the listed methods may not be available to you.');
$text.='<br/><br/><dl><dt>';
$text.=WT_I18N::translate('Internal messaging');
$text.='</dt><dd>';
$text.=WT_I18N::translate('With this option, the <b>webtrees</b> internal messaging system will be used and no emails will be sent.<br /><br />You will receive only <u>internal</u> messages from the other users. When another site user sends you a message, that message will appear in the Message block on your personal My Page. If you have removed this block from your My Page, you will not see any messages. They will, however, show up as soon as you configure My Page to again have the Message block.');
$text.='</dd><dt>';
$text.=WT_I18N::translate('Internal messaging with emails');
$text.='</dt><dd>';
$text.=WT_I18N::translate('This option is like <b>webtrees</b> internal messaging, with one addition. As an extra, a copy of the message will also be sent to the email address you configured on your Account page.<br /><br />This is the default contact method.');
$text.='</dd><dt>';
$text.=WT_I18N::translate('Mailto link');
$text.='</dt><dd>';
$text.=WT_I18N::translate('With this option, you will only receive email messages at the address you configured on your Account page. The messaging system internal to <b>webtrees</b> will not be used at all, and there will never be any messages in the Message block on your personal My Page.');
$text.='</dd><dt>';
$text.=WT_I18N::translate('No contact method');
$text.='</dt><dd>';
$text.=WT_I18N::translate('With this option, you will not receive any messages. Even the administrator will not be able to reach you.');
$text.='</dd></dl>';
break;
case 'edituser_email':
$title=WT_I18N::translate('Email address');
$text=WT_I18N::translate('Your correct email address is important to us to keep in touch with you.<br /><br />If you get a new email address, as usually happens when you change your Internet provider, please do not forget to change the address here as well. You won\'t get a confirmation message from this site when you change this address, but any future messages directed to you will go this new address.');
break;
case 'edituser_gedcomid':
$title=WT_I18N::translate('Individual record');
$text=WT_I18N::translate('This is a link to your own record in the family tree. If this is the wrong person, contact an administrator.');
break;
case 'edituser_realname':
$title=WT_I18N::translate('Real name');
$text=WT_I18N::translate('In this box you can change your real name. This is the name that other users see when you are logged in.<br /><br />Although the choice of what to put into this field is yours, you should inform the administrator when you change it. When others see an unknown person on-line, they might wonder and ask questions. The admin can find out without having received your notice, but you should save him that unnecessary work.');
break;
case 'edituser_password':
$title=WT_I18N::translate('Password');
$text=WT_I18N::translate('Passwords must be at least 6 characters long and are case-sensitive, so that "s3CR#t" is different to "S3CR#t".');
break;
case 'edituser_rootid':
$title=WT_I18N::translate('Pedigree chart root ID');
$text=WT_I18N::translate('This is the starting (Root) person of all your charts.<br /><br />If, for example, you were to click the link to the Pedigree, you would see this root person in the leftmost box. This root person does not have to be you; you can start with any person (your grandfather or your mother\'s aunt, for instance), as long you have the rights to see that person.<br /><br />This changes the default Root person for most charts. You can change the Root person on many charts, but that is just for that page at that particular invocation.');
break;
case 'edituser_user_default_tab':
$title=WT_I18N::translate('Default tab setting');
$text=WT_I18N::translate('This setting allows you to specify which tab is opened automatically when you access the Individual Information page.');
break;
case 'edituser_username':
$title=WT_I18N::translate('Username');
$text=WT_I18N::translate('You can change your username by updating it here. Usernames are case insensitive and ignore accented letters, so that "chloe", "chloë" and "CHLOE" are considered to be the same. Usernames may not contain the following characters: <>"%%{};');
break;
case 'export_gedcom':
$title=WT_I18N::translate('Export family tree');
$text=
WT_I18N::translate('This option will save the family tree to a GEDCOM file on the server.').
'<br/><br/>'.
/* I18N: %s is a directory name */ WT_I18N::translate('Files are stored in the %s directory.', '<b>'.WT_DATA_DIR.'</b>');
break;
case 'fambook_descent':
$title=WT_I18N::translate('Descendant generations');
$text=WT_I18N::translate('This value determines the number of descendant generations of the root person that will be printed in Hourglass format.');
break;
case 'family_book_chart':
$title=WT_I18N::translate('Family book');
$text=WT_I18N::translate('This chart is very similar to the Hourglass chart. It will show the ancestors and descendants of the selected root person on the same chart. It will also show the descendants of the root person in the same Hourglass format.<br /><br />The root person is centered in the middle of the page with his descendants listed to the left and his ancestors listed to the right. In this view, each generation is lined up across the page starting with the earliest generation and ending with the latest.<br /><br />Each descendant of the root person will become the root person of an additional hourglass chart, printed on the same page. This process repeats until the specified number of descendant generations have been printed.');
break;
case 'fan_style':
$title=WT_I18N::translate('Fan chart');
$text=WT_I18N::translate('This option controls the appearance of the diagram.<ul><li><b>1/2</b><br />Half circle 180° diagram</li><li><b>3/4</b><br />Three-quarter 270° diagram, sometimes called <i>Angel wing</i></li><li><b>4/4</b><br />Full circle 360° diagram</li></ul>');
break;
case 'fan_width':
$title=WT_I18N::translate('Width');
$text=WT_I18N::translate('Here you can change the diagram width from 50 percent to 300 percent. At 100 percent the output image is about 640 pixels wide.');
break;
case 'gedcom_administration':
$title=WT_I18N::translate('GEDCOM administration');
$text=WT_I18N::translate('The GEDCOM Administration page is the control center for administering all of your genealogical databases.');
break;
case 'gedcom_info':
$title=WT_I18N::translate('GEDCOM information');
$text=''; // This need rewriting. The old text was: '<span class="helpstart">GEDCOM definition</span><br /><br />A quote from the Introduction to the GEDCOM 5.5.1 Standard:<div class="list_value_wrap">GEDCOM was developed by the Family History Department of The Church of Jesus Christ of Latter-day Saints (LDS Church) to provide a flexible, uniform format for exchanging computerized genealogical data. GEDCOM is an acronym for <i><b>GE</b></i>nealogical <i><b>D</b></i>ata <i><b>Com</b></i>munication. Its purpose is to foster the sharing of genealogical information and the development of a wide range of inter-operable software products to assist genealogists, historians, and other researchers.</div><br />A copy of the GEDCOM 5.5.1 <u>draft</u> Standard, to which <b>webtrees</b> adheres, can be downloaded in PDF format here: <a href="http://www.phpgedview.net/ged551-5.pdf" target="_blank">GEDCOM 5.5.1 Standard</a> This Standard is only available in English.<br /><br />The GEDCOM file contains all the information about the family. All facts, dates, events, etc. are stored here. GEDCOM files have to follow strict rules because they must be exchangeable between many programs, independent of platforms or operating systems.<br /><br /><span class="helpstart">Dates in a GEDCOM file</span><br /><br />Although the date field allows for free-form entry (meaning you can type in whatever you want), there are some rules about how dates should be entered according to the GEDCOM 5.5.1 standard.<ol><li>A full date is entered in the form DD MMM YYYY. For example, <b>01 MAR 1801</b> or <b>14 DEC 1950</b>.</li><li>If you are missing a part of the date, you can omit that part. E.g. <b>MAR 1801</b> or <b>14 DEC</b>.</li><li>If you are not sure or the date is not confirmed, you could enter <b>ABT MAR 1801</b> (abt = about), <b>BEF 20 DEC 1950</b> (bef = before), <b>AFT 1949</b> (aft = after)</li><li>Date ranges are entered as <b>FROM MAR 1801 TO 20 DEC 1810</b> or as <b>BET MAR 1801 AND 20 DEC 1810</b> (bet = between)<br /><br />The <b>FROM</b> form indicates that the event being described happened continuously between the stated dates and is used with events such as employment. The <b>BET</b> form indicates a single occurrence of the event, sometime between the stated dates and is used with events such as birth.<br /><br />Imprecise dates, where the day of the month or the month is missing, are always interpreted as the first or last possible date, depending on whether that imprecise date occurs before or after the separating keyword. For example, <b>FEB 1804</b> is interpreted as <b>01 FEB 1804</b> when it occurs before the TO or AND, and as <b>29 FEB 1804</b> when it occurs after the TO or AND.</li></ol><b>Be sure to enter dates and abbreviations in <u>English</u>,</b> because then the GEDCOM file is exchangeable and <b>webtrees</b> can translate all dates and abbreviations properly into the currently active language. Furthermore, <b>webtrees</b> does calculations using these dates. If improper dates are entered into date fields, <b>webtrees</b> will not be able to calculate properly.<br /><br />You can click on the Calendar icon for help selecting a date.<br /><br /><span class="helpstart">Location levels</span><br /><br />This shows the levels that are displayed now. The list box showing places is actually a sublist of the leftmost level.<br /><br />EXAMPLE:<br />The default order is City, County, State/Province, Country.<br />If the current level is "Top Level", the box will list all the countries in the database.<br />If the current level is "U.S.A., Top Level", the box will list all the states in the U.S.A.<br />etc.<br /><br />You can click a level to go back one or more steps.'
break;
case 'gedcom_news_archive':
$title=WT_I18N::translate('View archive');
$text=WT_I18N::translate('To reduce the height of the News block, the administrator has hidden some articles. You can reveal these hidden articles by clicking the <b>View archive</b> link.');
break;
case 'gedcom_news_flag':
$title=WT_I18N::translate('Limit:');
$text=WT_I18N::translate('Enter the limiting value here.<br /><br />If you have opted to limit the News article display according to age, any article older than the number of days entered here will be hidden from view. If you have opted to limit the News article display by number, only the specified number of recent articles, ordered by age, will be shown. The remaining articles will be hidden from view.<br /><br />Zeros entered here will disable the limit, causing all News articles to be shown.');
break;
case 'gedcom_news_limit':
$title=WT_I18N::translate('Limit display by:');
$text=WT_I18N::translate('You can limit the number of News articles displayed, thereby reducing the height of the GEDCOM News block.<br /><br />This option determines whether any limits should be applied or whether the limit should be according to the age of the article or according to the number of articles.');
break;
case 'gedcom_title':
$title=WT_I18N::translate('GEDCOM title');
$text=WT_I18N::translate('Enter a descriptive title to be displayed when users are choosing among GEDCOM datasets at your site.');
break;
case 'gen_missing_thumbs':
$title=WT_I18N::translate('Create missing thumbnails');
$text=WT_I18N::translate('This option will generate thumbnails for all files in the current directory which don\'t already have a thumbnail. This is much more convenient than clicking the <b>Create thumbnail</b> link for each such file.<br /><br />If you wish to retain control over which files should have corresponding thumbnails, you should not use this option. Instead, click the appropriate <b>Create thumbnail</b> links.');
break;
case 'generate_thumb':
$title=WT_I18N::translate('Automatic thumbnail');
$text=WT_I18N::translate('Your system can generate thumbnails for certain types of images automatically. There may be support for BMP, GIF, JPG, and PNG files. The types that your system supports are listed beside the checkbox.<br /><br />By clicking this checkbox, you signal the system that you are uploading images of this type and that you want it to try to generate thumbnails for them. Leave the box unchecked if you want to provide your own thumbnails.');
break;
case 'google_chart_surname':
$title=WT_I18N::translate('Surname');
$text=WT_I18N::translate('The number of occurrences of the specified name will be shown on the map. If you leave this field empty, the most common surname will be used.');
break;
case 'header_favorites':
$title=WT_I18N::translate('Favorites');
$text=WT_I18N::translate('The Favorites drop-down list shows the favorites that you have selected on your personalized My Page. It also shows the favorites that the site administrator has selected for the currently active GEDCOM. Clicking on one of the favorites entries will take you directly to the Individual Information page of that person.<br /><br />More help about adding Favorites is available in your personalized My Page.');
break;
case 'help_contents_help':
$title=WT_I18N::translate('Help contents');
$text=
'<table><tr><td><span class="helpstart">'.WT_I18N::translate('Help items').'</span>
<ul><li><a href="?help=ancestry.php">'.WT_I18N::translate('Ancestors').'</a></li><li><a href="?help=fanchart.php">'.WT_I18N::translate('Fan chart').'</a></li><li><a href="?help=familybook.php">'
.WT_I18N::translate('Family book').'</a></li><li><a href="?help=gedcom_info">'.WT_I18N::translate('GEDCOM information').'</a></li><li><a href="?help=index_portal">'.WT_I18N::translate('Home page').'</a></li><li><a href="?help=hourglass.php">'.WT_I18N::translate('Hourglass chart').'</a></li><li><a href="?help=individual.php">'
.WT_I18N::translate('Individual information').'</a></li><li><a href="?help=indilist.php">'.WT_I18N::translate('Individuals').'</a></li><li><a href="?help=treenav">'.WT_I18N::translate('Interactive tree').'</a></li><li><a href="?help=login.php">'
.WT_I18N::translate('Login').'</a></li><li><a href="?help=pls_note11">'.WT_I18N::translate('Lost password request').'</a></li><li><a href="?help=medialist.php">'.WT_I18N::translate('Multimedia').'</a></li><li><a href="?help=edituser.php">'
.WT_I18N::translate('My account').'</a></li><li><a href="?help=mypage_portal">'.WT_I18N::translate('My Page').'</a></li><li><a href="?help=edituser_password">'.WT_I18N::translate('Password').'</a></li><li><a href="?help=pedigree.php">'.WT_I18N::translate('Pedigree').'</a></li><li><a href="?help=timeline.php">'.WT_I18N::translate('Timeline').'</a></li><li><a href="?help=edituser_username">'.WT_I18N::translate('Username').'</a></li></ul></td>';
if (WT_USER_IS_ADMIN) {
$text.='<td valign="top"><span class="helpstart">'.WT_I18N::translate('Administrator help items').'</span><ul><li><a href="?help=admin.php">'.WT_I18N::translate('Administration').'</a></li><li><a href="?help=help_editconfig.php">'.WT_I18N::translate('Configure').'</a></li><li><a href="?help=help_faq.php">'
.WT_I18N::translate('FAQ List: Edit').'</a></li><li><a href="?help=edit_gedcoms">'.WT_I18N::translate('GEDCOM: Administration page').'</a></li><li><a href="?help=edit_config_gedcom">'.WT_I18N::translate('GEDCOM: Configure').'</a></li><li><a href="?help=default_gedcom">'.WT_I18N::translate('GEDCOM: Default').'</a></li><li><a href="readme.html">'.WT_I18N::translate('View readme.html file').'</a></li><li><a href="?help=help_admin_users.php">'.WT_I18N::translate('User administration').'</a></li></ul></td>';
}
$text.=('</tr></table>');
break;
case 'hourglass_chart':
$title=WT_I18N::translate('Hourglass chart');
$text=WT_I18N::translate('The Hourglass chart will show the ancestors and descendants of the selected root person on the same chart. This chart is a mix between the Descendancy chart and the Pedigree chart.<br /><br />The root person is centered in the middle of the page with his descendants listed to the left and his ancestors listed to the right. In this view, each generation is lined up across the page starting with the earliest generation and ending with the latest.<br /><br />If there is a downwards arrow on the screen under the root person, clicking on it will display a list of the root person\'s close family members that you can use the navigate down the chart. Selecting a name from this list will reload the chart with the selected person as the new root person.');
break;
case 'import_gedcom':
$title=WT_I18N::translate('Import family tree');
$text=
WT_I18N::translate('This option deletes all the genealogy data in your family tree and replaces it with data from a GEDCOM file on the server.').
'<br/><br/>'.
/* I18N: %s is a directory name */ WT_I18N::translate('Files are stored in the %s directory.', '<b>'.WT_DATA_DIR.'</b>');
break;
case 'include_media':
$title=WT_I18N::translate('Include media (automatically zips files)');
$text=WT_I18N::translate('Select this option to include the media files associated with the records in your clippings cart. Choosing this option will automatically zip the files during download.');
break;
case 'index_add_favorites':
$title=WT_I18N::translate('Add a new favorite');
$text=WT_I18N::translate('This form allows you to add a new favorite item to your list of favorites.<br /><br />You must enter either an ID for the person, family, or source you want to store as a favorite, or you must enter a URL and a title. The Note field is optional and can be used to describe the favorite. Anything entered in the Note field will be displayed in the Favorites block after the item.');
break;
case 'index_common_names':
$title=WT_I18N::translate('Most common surnames block');
$text=WT_I18N::translate('This block displays a list of frequently occurring surnames from this database. A surname must occur at least %s times before it will appear in this list. The administrator has control over this threshold.<br /><br />When you click on a surname in this list, you will be taken to the Individuals, where you will get more details about that name.', get_gedcom_setting(WT_GED_ID, 'COMMON_NAMES_THRESHOLD'));
break;
case 'index_favorites':
$title=WT_I18N::translate('GEDCOM favorites block');
$text=WT_I18N::translate('The GEDCOM Favorites block is much the same as the "My Favorites" block of My Page. Unlike the My Page configuration, only the administrator or a user with Admin rights can change the list of favorites in this block.<br /><br />The purpose of the GEDCOM Favorites block is to draw the visitor\'s attention to persons of special interest. This GEDCOM\'s favorites are available for selection from a drop-down list in the header on every page.<br /><br />When you click on one of the listed site favorites, you will be taken to the Individual Information page of that person.');
break;
case 'index_gedcom_news_adm':
$title=WT_I18N::translate('GEDCOM news block HTML');
$text=WT_I18N::translate('The GEDCOM News text allows the use of <b>HTML tags</b> and <b>HTML entities</b>. HTML should not be used in News titles.<br /><br />Be sure to always use both start and end tags. It may help to have an understanding of HTML appropriate for a web site administrator. This program uses <b>Cascading Style Sheets (CSS)</b> as well. A different CSS is implemented for each theme. You can use classes from these style sheets to control the appearance of your messages.');
break;
case 'index_gedcom_news':
$title=WT_I18N::translate('GEDCOM news block');
$text=WT_I18N::translate('The News block is like a bulletin board for this GEDCOM. The site administrator can place important announcements or interesting news messages here.<br /><br />If you have something interesting to display, please contact the site administrator; he can put your message on this bulletin board.');
break;
case 'index_login':
$title=WT_I18N::translate('Login block');
$text=WT_I18N::translate('You can login on almost every page of this program. You will usually do so on the first page, since you can only access privileged information when you are logged in.<br /><br />You can login by typing your <b>username</b> and <b>password</b> and then clicking the Login button.');
break;
case 'index_media':
$title=WT_I18N::translate('Random picture block');
$text=WT_I18N::translate('In this block <b>webtrees</b> randomly chooses a media file to show you on each visit to this page.<br /><br />When you click on the picture, you will see its full-size version. Below the picture you have a link to the person associated with the picture. When you click on the picture caption, you will see the picture on the MultiMedia page. When you click on the person\'s name, you will be taken to the Individual Information page of that person.');
break;
case 'index_onthisday':
$title=WT_I18N::translate('On this day in your history block');
$text=WT_I18N::translate('This block is similar to the "Upcoming Events" block, except that it displays today\'s events.');
break;
case 'index_portal':
$title=WT_I18N::translate('Home page');
$text=WT_I18N::translate('The Home page consists of several separate blocks, and can be customized. On sites that have more than one genealogical database, you may see a different Home page for each. Depending on how the administrator customized the site, you may see any of the following blocks on the Home Page:<ul><li><a href="?help=index_charts"><b>Charts</b></a></li><li><a href="?help=index_favorites"><b>GEDCOM favorites</b></a></li><li><a href="?help=index_gedcom_news"><b>GEDCOM news</b></a></li><li><a href="?help=index_stats"><b>GEDCOM statistics</b></a></li><li><a href="?help=index_login"><b>Login</b></a></li><li><a href="?help=index_loggedin"><b>Logged in users</b></a></li><li><a href="?help=index_common_names"><b>Most common surnames</b></a></li><li><a href="?help=index_onthisday"><b>On this day in your history</b></a></li><li><a href="?help=index_media"><b>Random media</b></a></li><li><a href="?help=recent_changes"><b>Recent changes</b></a></li><li><a href="?help=index_events"><b>Upcoming events</b></a></li><li><a href="?help=index_welcome"><b>Welcome</b></a></li></ul>');
break;
case 'index_top10_pageviews':
$title=WT_I18N::translate('Most viewed items block');
$text=WT_I18N::translate('This block will list the top 10 individuals, families, or sources that have been viewed by visitors to this site. In order for this block to appear the site administrator must have enabled the Item Hit counters.');
break;
case 'index_welcome':
$title=WT_I18N::translate('Welcome block');
$text=WT_I18N::translate('The Welcome block shows you the current database title, the date and time, and, if enabled by the admin, the Hit Counter.<br /><br />The Hit Counter is only available in the Welcome block and on the Individual Information page. The counter counts the "Hits" of these pages. That means it counts how many times these pages are visited. The counter does not check the Internet address of a visitor; every visit to a page from <u>any</u> remote location counts as another Hit.');
break;
case 'lifespan_chart':
$title=WT_I18N::translate('Lifespans');
$text=WT_I18N::translate('On this chart you can display one or more persons along a horizontal timeline. This chart allows you to see how the lives of different people overlapped.<br /><br />You can add people to the chart individually or by family groups by their IDs. The previous list will be remembered as you add more people to the chart. You can clear the chart at any time with the <b>Clear Chart</b> button.<br /><br />You can also add people to the chart by searching for them by date range or locality.');
break;
case 'link_child':
$title=WT_I18N::translate('Link to an existing family as a child');
$text=WT_I18N::translate('You can link this person as a child to an existing family when you click this link.<br /><br />Suppose that at one time the parents of the person were unknown, and you discovered later that the parents have a record in this database.<br /><br />Just click the link, enter the ID of the family, and you have competed the task. If you don\'t know the family\'s ID, you can search for it.');
break;
case 'link_husband':
$title=WT_I18N::translate('Link to an existing family as a husband');
$text=WT_I18N::translate('This item will allow you to link the current individual as a husband to a family that is already in the database. By clicking this link you can add this person to an existing family, of which the husband was unknown until now. This person will take the place of the previously unknown husband. All events, marriage information, and children will keep their existing links to the family.<br /><br />Just click the link, enter the ID of the family, and you have competed the task. This is an advanced editing option that should only be used if the family you want to link to already exists. If you want to add a <u>new</u> family to this individual, use the <b>Add a new wife</b> link.');
break;
case 'link_new_husb':
$title=WT_I18N::translate('Add a husband using an existing person');
$text=WT_I18N::translate('This will allow you to link another individual, who already exists, as a new husband to this person. This will create a new family with the husband you select. You will also have the option of specifying a marriage for this new family.');
break;
case 'link_new_wife':
$title=WT_I18N::translate('Add a wife using an existing person');
$text=WT_I18N::translate('This will allow you to link another individual, who already exists, as a new wife to this person. This will create a new family with the wife you select. You will also have the option of specifying a marriage for this new family.');
break;
case 'link_wife':
$title=WT_I18N::translate('Link to an existing family as a wife');
$text=WT_I18N::translate('This item will allow you to link the current individual as a wife to a family that is already in the database.<br /><br />This is an advanced editing option that should only be used if the family you want to link to already exists. If you want to add a <u>new</u> family to this individual, use the <b>Add a new husband</b> link.');
break;
case 'manage_media':
$title=WT_I18N::translate('Manage multimedia');
$text=WT_I18N::translate('On this page you can easily manage your Media files and directories.<br /><br />When you create new Media subdirectories, <b>webtrees</b> will ensure that the identical directory structure is maintained within the <b>%sthumbs</b> directory. When you upload new Media files, <b>webtrees</b> can automatically create the thumbnails for you.<br /><br />Beside each image in the Media list you\'ll find the following options. The options actually shown depend on the current status of the Media file.<ul><li><b>Edit</b> When you click on this option, you\'ll see a page where you can change the title of the Media object. If the Media object is not yet linked to a person, family, or source in the currently active database, you can establish this link here. You can rename the file or even change its location within the <b>%s</b> directory structure. When necessary, <b>webtrees</b> will automatically create the required subdirectories or any missing thumbnails.</li><li><b>Edit raw GEDCOM record</b> This option is only available when the administrator has enabled it. You can view or edit the raw GEDCOM data associated with this Media object. You should be very careful when you use this option.</li><li><b>Delete file</b> This option lets you erase all knowledge of the Media file from the current database. Other databases will not be affected. If this Media file is not mentioned in any other database, it, and its associated thumbnail, will be deleted.</li><li><b>Remove object</b> This option lets you erase all knowledge of the Media file from the current database. Other databases will not be affected. The Media file, and its associated thumbnail, will not be deleted.</li><li><b>Remove links</b> This option lets you remove all links to the media object from the current database. The file will not be deleted, and the Media object by which this file is known to the current database will be retained. Other databases will not be affected.</li><li><b>Set link</b> This option lets you establish links between the media file and persons, families, or sources of the current database. When necessary, <b>webtrees</b> will also create the Media object by which the Media file is known to the database.</li><li><b>Create thumbnail</b> When you select this option, <b>webtrees</b> will create the missing thumbnail.</li></ul>', $MEDIA_DIRECTORY, $MEDIA_DIRECTORY);
break;
case 'medialist_recursive':
$title=WT_I18N::translate('List files in subdirectories');
$text=WT_I18N::translate('When this option is selected, the MultiMedia Objects will search not only the directory selected from the Filter list but all its subdirectories as well. When this option is not selected, only the selected directory is searched.<br /><br />The titles of all media objects found are then examined to determine whether they contain the text entered in the Filter. The result of these two actions determines the multimedia objects to be listed.');
break;
case 'move_mediadirs':
$title=WT_I18N::translate('Move media directories');
$text=WT_I18N::translate('When the Media Firewall is enabled, Multi-Media files can be stored in a server directory that is not accessible from the Internet.<br /><br />These buttons allow you to easily move an entire Media directory structure between the protected (not web-addressable) <b>%s%s</b> and the normal <b>%s</b> directories.', $MEDIA_FIREWALL_ROOTDIR, $MEDIA_DIRECTORY, $MEDIA_DIRECTORY);
break;
case 'mypage_customize':
$title=WT_I18N::translate('Customize My Page');
$text=WT_I18N::translate('When you entered here for the first time, you already had some blocks on this page. If you like, you can customize this My Page.<br /><br />When you click this link you will be taken to a form where you can add, move, or delete blocks. More explanation is available on that form.');
break;
case 'mypage_favorites':
$title=WT_I18N::translate('Favorites block');
$text=WT_I18N::translate('Favorites are similar to bookmarks.<br /><br />Suppose you have somebody in the family tree whose record you want to check regularly. Just go to the person\'s Individual Information page and select the <b>Add to My Favorites</b> option from the Favorites drop-down list. This person is now book marked and added to your list of favorites.<br /><br />Wherever you are on this site, you can click on a name in the "My Favorites" drop-down list in the header. This will take you to the Individual Information page of that person.');
break;
case 'mypage_message':
$title=WT_I18N::translate('Messages block');
$text=WT_I18N::translate('In this block you will find the messages sent to you by other users or the admin. You too can send messages to other users or to the admin.<br /><br />The <b>webtrees</b> mail system is designed to help protect your privacy. You don\'t have to leave your email address here and others will not be able to see your email address.<br /><br />To expand a message, click on the message subject or the "<b>+</b>" symbol beside it. You can delete multiple messages by checking the boxes next to the messages you want to delete and clicking on the <b>Delete Selected Messages</b> button.');
break;
case 'mypage_myjournal':
$title=WT_I18N::translate('Journal block');
$text=WT_I18N::translate('You can use this journal to write notes or reminders for your own use. When you make such a note, it will still be there the next time you visit the site.<br /><br />These notes are private and will not be visible to others.');
break;
case 'mypage_portal':
$title=WT_I18N::translate('My Page');
$text=WT_I18N::translate('This is your personal page.<br /><br />Here you will find easy links to access your personal data such as <b>My Account</b>, <b>My Indi</b> (this is your Individual Information page), and <b>My Pedigree</b>. You can have blocks with <b>Messages</b>, a <b>Journal</b> (like a Notepad) and many more.<br /><br />The layout of this page is similar to the Home Page that you see when you first access this site. While the parts of the Home Page are selected by the site administrator, you can select what parts to include on this personalized page. You will find the link to customize this page in the Welcome block or separately when the Welcome block is not present.<br /><br />You can choose from the following blocks:<ul><li><a href="?help=mypage_charts"><b>Charts</b></a></li><li><a href="?help=mypage_customize"><b>Customize my page</b></a></li><li><a href="?help=mypage_stats"><b>GEDCOM statistics</b></a></li><li><a href="?help=index_loggedin"><b>Logged in users</b></a></li><li><a href="?help=mypage_message"><b>Messages</b></a></li><li><a href="?help=mypage_favorites"><b>My favorites</b></a></li><li><a href="?help=mypage_myjournal"><b>My journal</b></a></li><li><a href="?help=index_onthisday"><b>On this day in your history</b></a></li><li><a href="?help=index_media"><b>Random media</b></a></li><li><a href="?help=recent_changes"><b>Recent changes</b></a></li><li><a href="?help=index_events"><b>Upcoming events</b></a></li><li><a href="?help=mypage_welcome"><b>Welcome</b></a></li></ul>');
break;
case 'mypage_stats':
// duplicate text. see index_stats
$title=WT_I18N::translate('GEDCOM statistics block');
$text=WT_I18N::translate('In this block you will see some statistics about the current GEDCOM file. If you need more information than is listed, send a message to the contact at the bottom of the page.');
break;
case 'mypage_welcome':
$title=WT_I18N::translate('Welcome block');
$text=WT_I18N::translate('The Welcome block shows you:<ul><li>The current GEDCOM file</li><li>The date and time</li><li>Links to:<ul><li>My Account</li><li>My Pedigree</li><li>My Individual Record</li><li>Customize My Page</li></ul></li></ul><br /><b>Note:</b><br />You will see the links to <b>My Indi</b> and <b>My Pedigree</b> only if you are known to the current GEDCOM file. You might have a record in one GEDCOM file and therefore see the <b>My Indi</b> and <b>My Pedigree</b> links, while in another GEDCOM file you do not have a record and consequently these links are not displayed.');
break;
case 'new_password':
$title=WT_I18N::translate('Request new password');
$text=WT_I18N::translate('If you have forgotten your password, you can click this link to request a new password.<br /><br />You will be taken to the "Lost Password Request" page.');
break;
case 'new_user':
$title=WT_I18N::translate('Request user account');
$text=WT_I18N::translate('If you are a visitor to this site and wish to request a user account, you can click this link.<br /><br />You will be taken to the "Register" page.');
break;
case 'new_user_realname':
$title=WT_I18N::translate('Real name');
$text=WT_I18N::translate('In this box you have to type your real name.<br /><br />We need your first and last names to determine whether you qualify for an account at this site, and what your rights should be. This name will be visible to other logged-in family members and users.');
break;
case 'next_path':
$title=WT_I18N::translate('Find next relationship path');
$text=WT_I18N::translate('You can click this button to see whether there is another relationship path between the two people. Previously found paths can be displayed again by clicking the link with the path number.');
break;
case 'no_update_CHAN':
$title=WT_I18N::translate('Do not update the “last change” record');
$text=WT_I18N::translate('Administrators sometimes need to clean up and correct the data submitted by users. For example, they might need to correct the PLAC location to include the country. When Administrators make such corrections, information about the original change is normally replaced. This may not be desirable.<br /><br />When this option is selected, <b>webtrees</b> will retain the original Change information instead of replacing it with that of the current session. With this option selected, Administrators also have the ability to modify or delete the information associated with the original CHAN tag.');
break;
case 'oldest_top':
$title=WT_I18N::translate('Show oldest top');
$text=WT_I18N::translate('When this check box is checked, the chart will be printed with oldest people at the top. When it is unchecked, youngest people will appear at the top.');
break;
case 'password':
$title=WT_I18N::translate('Password');
$text=WT_I18N::translate('In this box you type your password.<br /><br /><b>The password is case sensitive.</b> This means that <b>MyPassword</b> is <u>not</u> the same as <b>mypassword</b> or <b>MYPASSWORD</b>.');
break;
case 'pedigree_tree':
$title=WT_I18N::translate('Pedigree');
$text=WT_I18N::translate('A pedigree is an enumeration of all ancestors of the starting person. Users who are not logged in see the pedigree of the starting (root) person chosen by the site administrator. Logged in users can select their own starting (root) person.<br /><br />In this context, "All ancestors" means the father and mother, their parents, and so on. The pedigree is displayed graphically; you don\'t have to struggle through pages of text to determine your ancestors.<br /><br />All individuals are displayed in Name boxes on the screen.<br /><ul><li><b>Name boxes on the pedigree</b><br />If the Pedigree page is set to show details, you will see the person\'s name and birth and death dates. You can click on a person\'s name to take you directly to the Individual Information page of that person.<br /><br />When <b>Show details</b> is on there are two icons inside the name box.</li><li><b>Pedigree icon inside the Name box</b><br />When the option <b>Show Details</b> is on, you see a Pedigree icon in the Name box. Depending on the site settings, you have to hover over the icon or click on it. When you click on or hover over this icon, a small sub-menu appears.<br /><br />The items <b>Pedigree Tree</b> and <b>Descendancy Chart</b> are similar to those items in the main menu, but the difference is that the starting person is now the individual of mentioned in the Name box. You also see <b>Family with Spouse</b>. Underneath that you see the name of the spouse followed by the names of the children. All names are clickable.</li><li><b>Magnifying glass inside the Name box</b><br />Depending on the site settings, you have to hover over the icon or click on it. This magnifies the Name box so that more details will be displayed. You will see more dates and events. Names are clickable.</li><li><b>Arrows</b><br />On the left or right of the leftmost or rightmost Name boxes you may see arrows. When you click on these arrows the screen display will shift in the direction of the arrow.</li></ul>');
break;
case 'PGV_WIZARD':
$title=WT_I18N::translate('PhpGedView to <b>webtrees</b> transfer wizard');
$text =WT_I18N::translate('The PGV to <b>webtrees</b> wizard is an automated process to assist administrators make the move from a PGV installation to a new <b>webtrees</b> one. It will transfer all PGV GEDCOM and other database information directly to your new <b>webtrees</b> database. The following requirements are necessary:');
$text .= '<ul><li>';
$text .= WT_I18N::translate('webtrees database must be on the same server as PGV\'s');
$text .= '</li><li>';
$text .= WT_I18N::translate('PGV must be version 4.2.3, or any SVN up to #6973');
$text .= '</li><li>';
$text .= WT_I18N::translate('All changes in PGV must be accepted');
$text .= '</li><li>';
$text .= WT_I18N::translate('You must export your latest GEDCOM data');
$text .= '</li><li>';
$text .= WT_I18N::translate('The current <b>webtrees</b> admin username must be the same as an existing PGV admin username');
$text .= '</li><li>';
$text .= WT_I18N::translate('All existing PGV users must have distinct email addresses');
$text .= '</li></ul><p>';
$text .= WT_I18N::translate('<b>Important Note:</b> The transfer wizard is not able to assist with moving media items. You will need to set up and move or copy your media configuration and objects separately after the transfer wizard is finished.');
$text .= '</p>';
break;
case 'phpinfo':
$title=WT_I18N::translate('PHP information');
$text=WT_I18N::translate('This page provides extensive information about the server on which <b>webtrees</b> is being hosted. Many configuration details about the server\'s software, as it relates to PHP and <b>webtrees</b>, can be viewed.');
break;
case 'pls_note11':
$title=WT_I18N::translate('Lost password request');
$text=WT_I18N::translate('To have your password reset, enter your user name.<br /><br />We will respond by sending you an email to the address registered with your account. The email will contain a URL and confirmation code for your account. When you visit this URL, you can change your password and login to this site. For security reasons, you should not give this confirmation code to anyone.<br /><br />If you require assistance from the site administrator, please use the contact link below.');
break;
case 'ppp_view_records':
$title=WT_I18N::translate('View all records');
$text=WT_I18N::translate('Clicking on this link will show you a list of all of the individuals and families that have events occurring in this place. When you get to the end of a place hierarchy, which is normally a town or city, the name list will be shown automatically.');
break;
case 'random_media_ajax_controls':
$title=WT_I18N::translate('Show slideshow controls?');
$text=WT_I18N::translate('You can use this setting to show or hide the slideshow controls of the Random Media block.<br /><br />These controls allow the user to jump to another random object or to play through randomly selected media like a slideshow. The slideshow changes the contents of the block without preloading information from the server and without reloading the entire page.');
break;
case 'random_media_filter':
$title=WT_I18N::translate('Media filter');
$text=WT_I18N::translate('You can restrict what the Random Media block is permitted to show according to the format and type of media item. When a given checkbox is checked, the Random Media block is allowed to display media items of that format or type.<br /><br />Format or Type codes that exist in your database but are not in these checkbox lists are assumed to have the corresponding checkbox checked. For example, if your database contains Media objects of format <b><i>pdf</i></b>, the Random Media block is always permitted to display them. Similarly, if your database contains Media objects of type <b><i>special</i></b>, the Random Media block is always permitted to display them.');
break;
case 'random_media_persons_or_all':
$title=WT_I18N::translate('Show only persons, events, or all?');
$text=WT_I18N::translate('This option lets you determine the type of media to show.<br /><br />When you select <b>Persons</b>, only media associated with persons will be shown. Usually, this would be a person\'s photograph. When you select <b>Events</b>, only media associated with facts or events will be shown. This might be an image of a certificate. When you select <b>ALL</b>, this block will show all types of media.');
break;
case 'random_media_start_slide':
$title=WT_I18N::translate('Start slideshow on page load?');
$text=WT_I18N::translate('Should the slideshow start automatically when the page is loaded.<br /><br />The slideshow changes the contents of the block without preloading information from the server and without reloading the entire page.');
break;
case 'register_comments':
$title=WT_I18N::translate('Comments');
$text=WT_I18N::translate('Use this field to tell the site administrator why you are requesting an account and how you are related to the genealogy displayed on this site. You can also use this to enter any other comments you may have for the site administrator.');
break;
case 'register_gedcomid':
$title=WT_I18N::translate('Individual record');
$text=WT_I18N::translate('Every person in the database has a unique ID number on this site. If you know the ID number for your own record, please enter it here. If you don\'t know your ID number or could not find it because of privacy settings, please provide enough information in the Comments field to help the site administrator identify who you are on this site so that he can set the ID for you.');
break;
case 'relationship_id':
$title=WT_I18N::translate('ID\'s of person 1 and person 2');
$text=WT_I18N::translate('If you have jumped from another page to this one by having clicked the <b>Relation to me</b> link, you will see here the relationship between yourself and that other individual.<br /><br />If you arrived at this page through the <b>Relationship Chart</b> menu entry on any page header, you have to type the identifier numbers of the two people whose relationship you wish to see. If you don\'t know the identifier of the desired person, you can click the <b>Find ID</b> link.');
break;
case 'remove_person':
$title=WT_I18N::translate('Remove person');
$text=WT_I18N::translate('Click this link to remove the person from the timeline.');
break;
case 'remove_tags':
$title=WT_I18N::translate('Remove custom tags');
$text=WT_I18N::translate('Checking this option will remove any custom tags that may have been added to the records by <b>webtrees</b>.<br /><br />Custom tags used by <b>webtrees</b> include the <b>_WT_USER</b> tag which identifies the user who changed a record online and the <b>_THUM</b> tag which tells <b>webtrees</b> that the image should be used as a thumbnail.<br /><br />Custom tags may cause errors when importing the downloaded GEDCOM to another genealogy application.');
break;
case 'reorder_children':
$title=WT_I18N::translate('Reorder children');
$text=WT_I18N::translate('Children are displayed in the order in which they appear in the family record. Children are not automatically sorted by birth date because often the birth dates of some of the children are uncertain but the order of their birth <u>is</u> known.<br /><br />This option will allow you to change the order of the children within the family\'s record. Since you might want to sort the children by their birth dates, there is a button you can press that will do this for you.<br /><br />You can also drag-and-drop any information box to change the order of the children. As you move the mouse cursor over an information box, its shape will change to a pair of double-headed crossed arrows. If you push and hold the left mouse button before moving the mouse cursor, the information box will follow the mouse cursor up or down in the list. As the information box is moved, the other boxes will make room. When you release the left mouse button, the information box will take its new place in the list.');
break;
case 'reorder_families':
$title=WT_I18N::translate('Reorder families');
$text=WT_I18N::translate('Families on the Close Relatives tab are displayed in the order in which they appear in the individual\'s GEDCOM record. Families are not sorted by the marriage date because often the marriage dates are unknown but the order of the marriages <u>is</u> known.<br /><br />This option will allow you to change the order of the families in which they are listed on the Close Relatives tab. If you want to sort the families by their marriage dates, there is a button you can press that will automatically do this for you.');
break;
case 'role':
$title=WT_I18N::translate('Role');
$text=
WT_I18N::translate('A role is a set of access rights, which give permission to view data, change configuration settings, etc. Access rights are assigned to roles, and roles are granted to users. Each family tree can assign different access to each role, and users can have a different role in each family tree.').
'<br/><br>'.
'<dl>'.
'<dt>'.WT_I18N::translate('Visitors').'</dt><dd>'.
WT_I18N::translate('Everybody has this role, including visitors to the site and search engines.').
'</dd>'.
'<dl>'.
'<dt>'.WT_I18N::translate('Member').'</dt><dd>'.
WT_I18N::translate('This role has all the permissions of the visitor role, plus any additional access granted by the family tree configuration.').
'</dd>'.
'<dl>'.
'<dt>'.WT_I18N::translate('Editor').'</dt><dd>'.
WT_I18N::translate('This role has all the permissions of the member role, plus permission to add/change/delete data. Any changes will need to be approved by a moderator, unless the user has the "automatically accept changes" option enabled.').
'</dd>'.
'<dl>'.
'<dt>'.WT_I18N::translate('Moderator').'</dt><dd>'.
WT_I18N::translate('This role has all the permissions of the editor role, plus permission to approve/reject changes made by other users.').
'</dd>'.
'<dl>'.
'<dt>'.WT_I18N::translate('Manager').'</dt><dd>'.
WT_I18N::translate('This role has all the permissions of the moderator role, plus any additional access granted by the family tree configuration, plus permission to change the settings/configuration of a family tree.').
'</dd>'.
'<dl>'.
'<dt>'.WT_I18N::translate('Administrator').'</dt><dd>'.
WT_I18N::translate('This role has all the permissions of the manager role in all family trees, plus permission to change the settings/configuration of the site, users and modules.').
'</dd>';
break;
case 'rootid':
$title=WT_I18N::translate('Pedigree chart root person');
$text=WT_I18N::translate('If you want to display a chart with a new starting (root) person, the ID of that new starting person is typed here.<br /><br />If you don\'t know the ID of that person, use the <b>Find ID</b> link.<br /><br /><b>ID NUMBER</b><br />The ID numbers used inside <b>webtrees</b> are <u>not</u> the identification numbers issued by various governments (driving permit or passport numbers, for instance). The ID number referred to here is simply a number used within the database to uniquely identify each individual; it was assigned by the ancestry program that created the GEDCOM file which was imported into <b>webtrees</b>.');
break;
case 'search_exclude_tags':
$title=WT_I18N::translate('Exclude filter');
$text=WT_I18N::translate('The <b>Exclude some non-genealogical data</b> choice will cause the Search function to ignore the following GEDCOM tags:<div style="padding-left:30px;"><b>_WT_USER</b> - Last change by<br /><b>CHAN</b> - Last change date<br /><b>FILE</b> - External File<br /><b>FORM</b> - Format<br /><b>TYPE</b> - Type<br /><b>SUBM</b> - Submitter<br /><b>REFN</b> - Reference Number</div><br />In addition to these optionally excluded tags, the Search function always excludes these tags:<div style="padding-left:30px;"><b>_UID</b> - Globally unique Identifier<br /><b>RESN</b> - Restriction</div>');
break;
case 'search_include_ASSO':
$title=WT_I18N::translate('Associates');
$text=WT_I18N::translate('This option causes <b>webtrees</b> to show all individuals who are recorded as having an association relationship to the person or family that was found as a direct result of the search. The inverse, where all persons or families are shown when a person found as a direct result of the search has an association relationship to these other persons or families, is not possible.<br /><br />Example: Suppose person <b>A</b> is godparent to person <b>B</b>. This relationship is recorded in the GEDCOM record of person <b>B</b> by means of an ASSO tag. No corresponding tag exists in the GEDCOM record of person <b>A</b>.<br /><br />When this option is set to <b>Yes</b> and the Search results list includes <b>B</b>, <b>A</b> will be included automatically because of the ASSO tag in the GEDCOM record of <b>B</b>. However, if the Search results list includes <b>A</b>, <b>B</b> will not be included automatically since there is no matching ASSO tag in the GEDCOM record of person <b>A</b>.');
break;
case 'setperms':
$title=WT_I18N::translate('Set media permissions');
$text=WT_I18N::translate('Recursively set the permissions on the protected (not web-addressable) <b>%s%s</b> and the normal <b>%s</b> directories to either world-writable or read-only.', $MEDIA_FIREWALL_ROOTDIR, $MEDIA_DIRECTORY, $MEDIA_DIRECTORY);
break;
case 'show_fact_sources':
$title=WT_I18N::translate('Show all sources');
$text=WT_I18N::translate('When this option is checked, you can see all Source or Note records for this person. When this option is unchecked, Source or Note records that are associated with other facts for this person will not be shown.');
break;
case 'show_full':
$title=WT_I18N::translate('Hide or show details');
$text=WT_I18N::translate('With this option you can either show or hide all details in the Name boxes. You can display more boxes on one screen when the details are hidden.<br /><br />When all details are hidden, the Zoom icon described below is not shown. However, if the administrator has enabled the Zoom function, the entire box will act like a Zoom icon to reveal full details about the person.<br /><br />When the details are not hidden and the Zoom function, identified by a magnifying glass icon, has been enabled by the administrator, you can reveal even more details about that person. If you normally have to click on the Zoom icon to zoom in, you can reveal additional hidden details by clicking that icon here. Similarly, if you can zoom in by hovering over the Zoom icon, hidden details will be revealed by hovering over that icon here.<br /><br />If you have clicked on the Zoom icon to reveal more details, you can restore the box to its normal level of detail by clicking on the Zoom icon again. If you have revealed more details by simply moving the mouse pointer over the Zoom icon, the box will be restored to its normal level of detail when you move the mouse pointer away from the Zoom icon.');
break;
case 'show_marnm':
$title=WT_I18N::translate('Include married names');
$text=WT_I18N::translate('The individual and family list pages can either include or exclude married names. This option can be helpful when searching for individuals or families where you only know the married name. Married names can only be included if they already exist in the database.<br /><br />On the family list, this value defaults to exclude. On the individual list, the default value is set in the GEDCOM Configuration page.<br /><br />When you change this option, your selection will be remembered until you log off or your session ends.');
break;
case 'show_spouse':
$title=WT_I18N::translate('Show spouses');
$text=WT_I18N::translate('By default this chart does not show spouses for the descendants because it makes the chart harder to read and understand. Turning this option on will show spouses on the chart.');
break;
case 'simple_filter':
$title=WT_I18N::translate('Simple search filter');
$text=WT_I18N::translate('Simple search filter based on the characters entered, no wildcards are accepted.');
break;
case 'skip_sublist':
$title=WT_I18N::translate('Skip surname lists');
$text=WT_I18N::translate('The standard setting is that, after you have clicked a letter of the Alphabetical index, you will get a sub-list with surnames. If you click this link, all individuals with surnames that have the currently selected initial letter will be displayed immediately. Thereafter, the list of individuals will be displayed directly whenever you click on a new initial letter in the Alphabetical list.<br /><br />To reverse this action, click on the Show Surname lists link.');
break;
case 'soundex_search':
$title=WT_I18N::translate('Search the way you think the name is written (Soundex)');
$text=WT_I18N::translate('Soundex is a method of coding words according to their pronunciation. This allows you to search the database for names and places when you don\'t know precisely how they are written. <b>webtrees</b> supports two different Soundex algorithms that produce vastly different results.<ul><li><b>Basic</b><br />This method, patented in 1918 by Russell, is very simple and can be done by hand.<br /><br />Because the Basic method retains the first letter of the name as part of the resultant code, it is not very helpful when you are unsure of that first letter. The Basic algorithm is not well suited to names that were originally in languages other than English, and even with English names the results are very surprising. For example, a Basic Soundex search for <b>Smith</b> will return not only <b>Smith, Smid, Smit, Schmidt, Smyth, Smithe, Smithee, Schmitt</b>, all of which are clearly variations of <b>Smith</b>, but also <b>Smead, Sneed, Smoote, Sammett, Shand,</b> and <b>Snoddy</b>. <br /><br /></li><li><b>Daitch-Mokotoff</b><br />This method, developed in 1985, is much more complex than the Basic method and is not easily done by hand.<br /><br />A Soundex search using this method produces much more accurate results.</li></ul>For details on both Soundex algorithms, visit this <a href="http://www.jewishgen.org/infofiles/soundex.html" target=_blank><b>Jewish Genealogical Society</b></a> web page.');
break;
case 'stat_gax':
$title=WT_I18N::translate('Select the desired age interval');
$text=WT_I18N::translate('For example, <b>interval 10 years</b> describes the following set of age ranges:<div style="padding-left:30px;">younger than one year<br />one year to 5 years<br />6 to 10<br />11 to 20<br />21 to 30<br />31 to 40<br />41 to 50<br />51 to 60<br />61 to 70<br />71 to 80<br />81 to 90<br />91 to 100<br />older than 100 years</div>');
break;
case 'stat_gbx':
$title=WT_I18N::translate('Select the desired age interval');
$text=WT_I18N::translate('For example, <b>interval 2 years</b> describes the following set of age ranges:<div style="padding-left:30px;">younger than 16 years<br />16 to 18<br />19 to 20<br />21 to 22<br />23 to 24<br />25 to 26<br />27 to 28<br />29 to 30<br />31 to 32<br />33 to 35<br />36 to 40<br />41 to 50<br />older than 50 years</div>');
break;
case 'stat_gcx':
$title=WT_I18N::translate('Select the desired count interval');
$text=WT_I18N::translate('For example, <b>interval one child</b> describes the following set of child count ranges:<div style="padding-left:30px;">without children<br />one child<br />two children<br />3, 4, 5, 6, 7, 8, 9, 10 children<br />more than 10 children</div>');
break;
case 'stat_gwx':
// Commented out due the bug #741367
// When the ststistics will be written it will be easy to restore
//$title=WT_I18N::translate('Select the desired age interval');
//$text=WT_I18N::translate('For example, <b>months after marriage</b> describes the following set of month ranges:<div style="padding-left:30px;">before the marriage<br />from the marriage to 8 months after<br />from 8 to 12<br />from 12 to 15<br />from 15 to 18<br />from 18 to 24<br />from 24 to 48<br />over 48 months after the marriage</div><br /><br />When you want to show quarters you have to choose: <b>quarters</b>');
break;
case 'stat_gwz':
$title=WT_I18N::translate('Boundaries for Z axis');
$text=WT_I18N::translate('Select the desired starting year and interval<br /><br />For example, <b>from 1700 interval 50 years</b> describes the following set of date ranges:<div style="padding-left:30px;">before 1700<br />1700 to 1749<br />1750 to 1799<br />1800 to 1849<br />1850 to 1899<br />1900 to 1949<br />1950 to 1999<br />2000 or later</div>');
break;
case 'talloffset':
$title=WT_I18N::translate('Page layout');
$text=WT_I18N::translate('With this option you determine the page layout orientation.<br /><br />Changing this setting might be useful if you want to make a screen print or if you have a different type of screen.<ul><li><b>Portrait</b> mode will make the tree taller, such that a 4 generation chart should fit on a single page printed vertically.</li><li><b>Landscape</b> mode will make a wider tree that should print on a single page printed horizontally.</li><li><b>Oldest at top</b> mode rotates the chart, but not its boxes, by 90 degrees counter-clockwise, so that the oldest generation is at the top of the chart.</li><li><b>Oldest at bottom</b> mode rotates the chart, but not its boxes, by 90 degrees clockwise, so that the oldest generation is at the bottom of the chart.</li></ul>');
break;
case 'timeline_chart':
$title=WT_I18N::translate('Timeline');
$text=WT_I18N::translate('On this chart you can display one or more persons along a timeline. You can, for example, visualize the status of two or more persons at a certain moment.<br /><br />If you click the <b>Time Line</b> link on an other page you will already see one person on the Time Line. If you clicked the <b>Time Line</b> menu item in a page header, you have to supply the starting person\'s ID.');
break;
case 'treenav':
$title=WT_I18N::translate('Interactive tree');
$text=
WT_I18N::translate('Use the Interactive Tree to view the entire family tree of a person in both directions. This view is similar to the Hourglass view in that it shows both ancestors and descendants of a given root person. This chart gives you a more compact view by showing boxes for couples or families instead of just individuals.').
'<br /><ul><li><b>'.WT_I18N::translate('Scrolling').'</b><br />'.
WT_I18N::translate('Whenever your mouse cursor changes to a Move icon, you can click and drag the tree to view other portions of the tree. As you drag the tree future generations will automatically expand until there are no more generations left to view in that direction.').
'<br /></li><li><b>'.WT_I18N::translate('Zoom').'</b><br />'.
WT_I18N::translate('You can use the icons on the left of the tree to zoom in and out. Zooming out will allow you to see more of the tree on the screen at a time. As you zoom out the text can become difficult to read; when your mouse hovers over a box you will get an enlarged view of what is inside it.').
'<br /></li><li><b>'.WT_I18N::translate('Expanding Details').'</b><br />'.
WT_I18N::translate('Clicking on any box will expand the box and display a more detailed view. While in expanded mode, clicking on a person\'s name will open their Individual Information page.').
'<br />'.
WT_I18N::translate('Clicking %s will redraw the tree with that person as the new root.', '<img src="'.$WT_IMAGES['tree'].'" width="15px" height="15px" alt="">').
'<br />'.
WT_I18N::translate('Clicking %s will take you to that family\'s detail page.', '<img src="'.$WT_IMAGES['button_family'].'" width="15px" height="15px" alt="">').
'<br /></li><li><b>'.WT_I18N::translate('Toggle Spouses').'</b><br />'.
WT_I18N::translate('The %s icon directly under the Zoom buttons will toggle the display of all spouses on or off on the descendancy side. When the display is set to show spouses, all of a person\'s spouses will appear in the box with them. All of the person\'s children will be shown as well. When the option to show spouses is off, only the person\'s last spouse and children with that spouse will be shown.', '<img src="'.$WT_IMAGES['sfamily'].'" width="15px" height="15px" alt="">').
'<br /></li><li><b>'.WT_I18N::translate('Large Tree').'</b>'.
'<br />'.
WT_I18N::translate('The Interactive Tree is available from many different pages including the Tree tab on the Individual Information page and the Charts block on the Home Page. When viewing the tree from one of these other pages, you will also have a Tree icon under the Zoom icons.').
'<br />'.
WT_I18N::translate('Clicking %s will take you to the Interactive Tree page.', '<img src="'.$WT_IMAGES['tree'].'" width="15px" height="15px" alt="">').
'</li></ul>';
break;
case 'upload_gedcom':
$title=WT_I18N::translate('Upload family tree');
$text=WT_I18N::translate('This option deletes all the genealogy data in your family tree and replaces it with data from a GEDCOM file on your computer.');
break;
case 'upload_media_file':
$title=WT_I18N::translate('Media file to upload');
$text=
WT_I18N::translate('Select the media file that you want to upload. If a file already exists with the same name, it will be overwritten.').
'<br/><br/>'.
WT_I18N::translate('It is easier to manage your media files if you choose a consistent format for the filenames. To organise media files into folders, you must first set the number of levels in the GEDCOM administration page.');
break;
case 'upload_media':
$title=WT_I18N::translate('Upload media files');
$text=WT_I18N::translate('Upload one or more media files from your local computer. Media files can be pictures, video, audio, or other formats.');
break;
case 'upload_server_file':
$title=WT_I18N::translate('File name on server');
$text=WT_I18N::translate('The media file you are uploading can be, and probably should be, named differently on the server than it is on your local computer. This is so because often the local file name has meaning to you but is much less meaningful to others visiting this site. Consider also the possibility that you and someone else both try to upload different files called "granny.jpg".<br /><br />In this field, you specify the new name of the file you are uploading. The name you enter here will also be used to name the thumbnail, which can be uploaded separately or generated automatically. You do not need to enter the file name extension (jpg, gif, pdf, doc, etc.)<br /><br />Leave this field blank to keep the original name of the file you have uploaded from your local computer.');
break;
case 'upload_server_folder':
$title=WT_I18N::translate('Folder name on server');
$text=WT_I18N::translate('The administrator has enabled up to %s folder levels below the default <b>%s</b>. This helps to organize the media files and reduces the possibility of name collisions.<br /><br />In this field, you specify the destination folder where the uploaded media file should be stored. The matching thumbnail file, either uploaded separately or generated automatically, will be stored in a similar folder structure starting at <b>%sthumbs/</b> instead of <b>%s</b>. You do not need to enter the <b>%s</b> part of the destination folder name.<br /><br />If you are not sure about what to enter here, you should contact your site administrator for advice.', $MEDIA_DIRECTORY_LEVELS, $MEDIA_DIRECTORY, $MEDIA_DIRECTORY, $MEDIA_DIRECTORY, $MEDIA_DIRECTORY);
break;
case 'upload_thumbnail_file':
$title=WT_I18N::translate('Thumbnail to upload');
$text=WT_I18N::translate('Choose the thumbnail image that you want to upload. Although thumbnails can be generated automatically for images, you may wish to generate your own thumbnail, especially for other media types. For example, you can provide a still image from a video, or a photograph of the person who made an audio recording.');
break;
case 'useradmin_auto_accept':
$title=WT_I18N::translate('Automatically approve changes made by this user');
$text=WT_I18N::translate('Normally, any changes made to a family tree need to be approved by a moderator. This option allows a user to make changes without needing a moderator\'s approval.');
break;
case 'useradmin_editaccount':
$title=WT_I18N::translate('Edit account information');
$text=WT_I18N::translate('If this box is checked, this user will be able to edit his account information. Although this is not generally recommended, you can create a single user name and password for multiple users. When this box is unchecked for all users with the shared account, they are prevented from editing the account information and only an administrator can alter that account.');
break;
case 'useradmin_gedcomid':
$title=WT_I18N::translate('Individual record');
$text=WT_I18N::translate('The individual record identifies the user in each family tree. Since a user can view the details of their individual record, this can only be set by an administrator. If the user does not have a record in a family tree, leave it empty.');
break;
case 'useradmin_rootid':
$title=WT_I18N::translate('Pedigree chart root person');
$text=WT_I18N::translate('For each genealogical database, you can designate a <b>Root Person</b> for the user.<br /><br />This Root Person does not need to be the user himself; it can be anybody. The user will probably want to start the Pedigree chart with himself. You control that, as well as the default Root person on other charts, here.<br /><br />If the user has Edit rights to his own account information, he can change this setting himself.');
break;
case 'useradmin_user_default_tab':
$title=WT_I18N::translate('User default tab setting');
$text=WT_I18N::translate('This setting allows you to specify which tab is opened automatically when this user accesses the Individual Information page. If allowed to edit their account, the user can change this setting later.');
break;
case 'useradmin_verification':
$title=WT_I18N::translate('Account approval and email verification');
$text=WT_I18N::translate('When a user registers for an account, an email is sent to their email address with a verification link. When they click this link, we know the email address is correct, and the "email verified" option is selected automatically.').
'<br/><br/>'.
WT_I18N::translate('If an administrator creates a user account, the verification email is not sent, and the email must be verified manually.').
'<br/><br/>'.
WT_I18N::translate('You should not approve an account unless you know that the email address is correct.').
'<br/><br/>'.
WT_I18N::translate('A user will not be able to login until both the "email verified" and "approved by administrator" options are selected.');
break;
case 'useradmin_visibleonline':
$title=WT_I18N::translate('Visible online');
$text=WT_I18N::translate('This checkbox controls your visibility to other users while you\'re online. It also controls your ability to see other online users who are configured to be visible.<br /><br />When this box is unchecked, you will be completely invisible to others, and you will also not be able to see other online users. When this box is checked, exactly the opposite is true. You will be visible to others, and you will also be able to see others who are configured to be visible.');
break;
case 'username':
$title=WT_I18N::translate('Username');
$text=WT_I18N::translate('<br />In this box you type your user name.<br /><br /><b>The user name is case sensitive.</b> This means that <b>MyName</b> is <u>not</u> the same as <b>myname</b> or <b>MYNAME</b>.');
break;
case 'utf8_ansi':
$title=WT_I18N::translate('Convert from UTF-8 to ANSI');
$text=WT_I18N::translate('For optimal display on the Internet, <b>webtrees</b> uses the UTF-8 character set. Some programs, Family Tree Maker for example, do not support importing GEDCOM files encoded in UTF-8. Checking this box will convert the file from <b>UTF-8</b> to <b>ANSI (ISO-8859-1)</b>.<br /><br />The format you need depends on the program you use to work with your downloaded GEDCOM file. If you aren\'t sure, consult the documentation of that program.<br /><br />Note that for special characters to remain unchanged, you will need to keep the file in UTF-8 and convert it to your program\'s method for handling these special characters by some other means. Consult your program\'s manufacturer or author.<br /><br />This <a href=\'http://en.wikipedia.org/wiki/UTF-8\' target=\'_blank\' title=\'Wikipedia article\'><b>Wikipedia article</b></a> contains comprehensive information and links about UTF-8.');
break;
case 'view_server_folder':
$title=WT_I18N::translate('View server folder');
$text=WT_I18N::translate('The administrator has enabled up to %s folder levels below the default <b>%s</b>. This helps to organize the media files and reduces the possibility of name collisions.<br /><br />In this field, you select the media folder whose contents you wish to view. When you select <b>ALL</b>, all media files will be shown without regard to the folder in which they are stored. This can produce a very long list of media items.',
get_gedcom_setting(WT_GED_ID, 'MEDIA_DIRECTORY_LEVELS'),
get_gedcom_setting(WT_GED_ID, 'MEDIA_DIRECTORY')
);
break;
case 'zip':
$title=WT_I18N::translate('Zip clippings');
$text=WT_I18N::translate('Select this option as to save your clippings in a ZIP file. For more information about ZIP files, please visit <a href="http://www.winzip.com" target="_blank">http://www.winzip.com</a>.');
break;
default:
$title=WT_I18N::translate('Help');
$text=WT_I18N::translate('The help text has not been written for this item.');
// If we've been called from a module, allow the module to provide the help text
$mod=safe_GET('mod', '[A-Za-z0-9_]+');
if (file_exists(WT_ROOT.WT_MODULES_DIR.$mod.'/help_text.php')) {
require WT_ROOT.WT_MODULES_DIR.$mod.'/help_text.php';
}
break;
}
print_simple_header($title);
echo '<div class="helpheader">', $title, '</div>';
echo '<div class="helpcontent">', $text,'</div>';
echo '<div class="helpfooter">';
if ($help!='help_contents_help') {
echo '<a href="help_text.php?help=help_contents_help">', WT_I18N::translate('Help contents'), '</a><br />';
}
echo '<a href="javascript:;" onclick="window.close();">', WT_I18N::translate('Close Window'), '</a>';
echo '</div>';
print_simple_footer();
|