summaryrefslogtreecommitdiff
path: root/indra/newview/skins/default/xui/zh/notifications.xml
blob: 2d309a2af0b6f62552afcee70492ca7af74905ce (plain)
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
<?xml version="1.0" encoding="utf-8"?>
<notifications>
	<global name="skipnexttime">
		不再顯示此提醒
	</global>
	<global name="alwayschoose">
		總是選取這個選項
	</global>
	<global name="implicitclosebutton">
		關閉
	</global>
	<template name="okbutton">
		<form>
			<button name="OK_okbutton" text="$yestext"/>
		</form>
	</template>
	<template name="okignore">
		<form>
			<button name="OK_okignore" text="$yestext"/>
		</form>
	</template>
	<template name="okcancelbuttons">
		<form>
			<button name="OK_okcancelbuttons" text="$yestext"/>
			<button name="Cancel_okcancelbuttons" text="$notext"/>
		</form>
	</template>
	<template name="okcancelignore">
		<form>
			<button name="OK_okcancelignore" text="$yestext"/>
			<button name="Cancel_okcancelignore" text="$notext"/>
		</form>
	</template>
	<template name="okhelpbuttons">
		<form>
			<button name="OK_okhelpbuttons" text="$yestext"/>
			<button name="Help" text="$helptext"/>
		</form>
	</template>
	<template name="yesnocancelbuttons">
		<form>
			<button name="Yes" text="$yestext"/>
			<button name="No" text="$notext"/>
			<button name="Cancel_yesnocancelbuttons" text="$canceltext"/>
		</form>
	</template>
	<notification label="未知的通知訊息" name="MissingAlert">
		Your version of [APP_NAME] does not know how to display the notification it just received.  Please verify that you have the latest Viewer installed.

Error details: The notification called &apos;[_NAME]&apos; was not found in notifications.xml.
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="FloaterNotFound">
		Floater error: Could not find the following controls:

[CONTROLS]
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="TutorialNotFound">
		No tutorial is currently available.
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="GenericAlert">
		[MESSAGE]
	</notification>
	<notification name="GenericAlertYesCancel">
		[MESSAGE]
		<usetemplate name="okcancelbuttons" notext="取消" yestext="是"/>
	</notification>
	<notification name="BadInstallation">
		An error occurred while updating [APP_NAME].  Please [http://get.secondlife.com download the latest version] of the Viewer.
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="LoginFailedNoNetwork">
		無法連接到[SECOND_LIFE_GRID].
    &apos;[DIAGNOSTIC]&apos;
請確定你的網際網路是正常運作的。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="MessageTemplateNotFound">
		Message Template [PATH] not found.
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="WearableSave">
		除存變更到目前的衣服/身體部位?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="不要儲存" yestext="儲存"/>
	</notification>
	<notification name="CompileQueueSaveText">
		There was a problem uploading the text for a script due to the following reason: [REASON]. Please try again later.
	</notification>
	<notification name="CompileQueueSaveBytecode">
		There was a problem uploading the compiled script due to the following reason: [REASON]. Please try again later.
	</notification>
	<notification name="WriteAnimationFail">
		There was a problem writing animation data.  Please try again later.
	</notification>
	<notification name="UploadAuctionSnapshotFail">
		There was a problem uploading the auction snapshot due to the following reason: [REASON]
	</notification>
	<notification name="UnableToViewContentsMoreThanOne">
		Unable to view the contents of more than one item at a time.
Please select only one object and try again.
	</notification>
	<notification name="SaveClothingBodyChanges">
		儲存全部服裝或身體部位的變更?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="不要儲存" yestext="全部儲存"/>
	</notification>
	<notification name="FriendsAndGroupsOnly">
		Non-friends won&apos;t know that you&apos;ve choosen to ignore their calls and instant messages.
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="FavoritesOnLogin">
		Note: When you turn on this option, anyone who uses this computer can see your list of favorite locations.
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="GrantModifyRights">
		Granting modify rights to another Resident allows them to change, delete or take ANY objects you may have in-world. Be VERY careful when handing out this permission.
Do you want to grant modify rights for [NAME]?
		<usetemplate name="okcancelbuttons" notext="No" yestext="是"/>
	</notification>
	<notification name="GrantModifyRightsMultiple">
		Granting modify rights to another Resident allows them to change ANY objects you may have in-world. Be VERY careful when handing out this permission.
Do you want to grant modify rights for the selected Residents?
		<usetemplate name="okcancelbuttons" notext="否" yestext="是"/>
	</notification>
	<notification name="RevokeModifyRights">
		Do you want to revoke modify rights for [NAME]?
		<usetemplate name="okcancelbuttons" notext="否" yestext="是"/>
	</notification>
	<notification name="RevokeModifyRightsMultiple">
		Do you want to revoke modify rights for the selected Residents?
		<usetemplate name="okcancelbuttons" notext="否" yestext="是"/>
	</notification>
	<notification name="UnableToCreateGroup">
		無法建立新群組。
[MESSAGE]
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="PanelGroupApply">
		[NEEDS_APPLY_MESSAGE]
[WANT_APPLY_MESSAGE]
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="忽視變更" yestext="套用變更"/>
	</notification>
	<notification name="MustSpecifyGroupNoticeSubject">
		你必須指定一個主旨以送出群組通知。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="AddGroupOwnerWarning">
		You are about to add group members to the role of [ROLE_NAME].
Members cannot be removed from that role.
The members must resign from the role themselves.
Are you sure you want to continue?
		<usetemplate ignoretext="在我添加一個新的群組擁有者前確認" name="okcancelignore" notext="否" yestext="是"/>
	</notification>
	<notification name="AssignDangerousActionWarning">
		You are about to add the Ability &apos;[ACTION_NAME]&apos; to the Role &apos;[ROLE_NAME]&apos;.

 *WARNING*
 Any Member in a Role with this Ability can assign themselves -- and any other member -- to Roles that have more powers than they  currently have, potentially elevating themselves to near-Owner power. Be sure you know what you&apos;re doing before assigning this Ability.

Add this Ability to &apos;[ROLE_NAME]&apos;?
		<usetemplate name="okcancelbuttons" notext="否" yestext="是"/>
	</notification>
	<notification name="AssignDangerousAbilityWarning">
		You are about to add the Ability &apos;[ACTION_NAME]&apos; to the Role &apos;[ROLE_NAME]&apos;.

 *WARNING*
 Any Member in a Role with this Ability can assign themselves -- and any other member -- all Abilities, elevating themselves to near-Owner power.

Add this Ability to &apos;[ROLE_NAME]&apos;?
		<usetemplate name="okcancelbuttons" notext="否" yestext="是"/>
	</notification>
	<notification name="AttachmentDrop">
		You are about to drop your attachment.
    Are you sure you want to continue?
		<usetemplate ignoretext="在丟下附件前確認" name="okcancelignore" notext="否" yestext="是"/>
	</notification>
	<notification name="JoinGroupCanAfford">
		加入此群組須花費 L$[COST]。
你確定要繼續嗎?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="加入"/>
	</notification>
	<notification name="JoinGroupNoCost">
		You are joining group [NAME].
Do you wish to proceed?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="加入"/>
	</notification>
	<notification name="JoinGroupCannotAfford">
		Joining this group costs L$[COST].
You do not have enough L$ to join this group.
	</notification>
	<notification name="CreateGroupCost">
		Creating this group will cost L$100.
Groups need more than one member, or they are deleted forever.
Please invite members within 48 hours.
		<usetemplate canceltext="取消" name="okcancelbuttons" notext="取消" yestext="花費 L$100 建立群組"/>
	</notification>
	<notification name="LandBuyPass">
		For L$[COST] you can enter this land (&apos;[PARCEL_NAME]&apos;) for [TIME] hours.  Buy a pass?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="SalePriceRestriction">
		Sale price must be set to more than L$0 if selling to anyone.
Please select an individual to sell to if selling for L$0.
	</notification>
	<notification name="ConfirmLandSaleChange">
		The selected [LAND_SIZE] m² land is being set for sale.
Your selling price will be L$[SALE_PRICE] and will be authorized for sale to [NAME].
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmLandSaleToAnyoneChange">
		ATTENTION: Clicking &apos;sell to anyone&apos; makes your land available to the entire [SECOND_LIFE] community, even those not in this region.

The selected [LAND_SIZE] m² land is being set for sale.
Your selling price will be L$[SALE_PRICE] and will be authorized for sale to [NAME].
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ReturnObjectsDeededToGroup">
		Are you sure you want to return all objects shared with the group &apos;[NAME]&apos; on this parcel of land back to their previous owner&apos;s inventory?

*WARNING* This will delete the non-transferable objects deeded to the group!

Objects: [N]
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ReturnObjectsOwnedByUser">
		Are you sure you want to return all objects owned by the Resident &apos;[NAME]&apos; on this parcel of land back to their inventory?

Objects: [N]
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ReturnObjectsOwnedBySelf">
		Are you sure you want to return all objects owned by you on this parcel of land back to your inventory?

Objects: [N]
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ReturnObjectsNotOwnedBySelf">
		Are you sure you want to return all objects NOT owned by you on this parcel of land back to their owner&apos;s inventory?
Transferable objects deeded to a group will be returned to their previous owners.

*WARNING* This will delete the non-transferable objects deeded to the group!

Objects: [N]
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ReturnObjectsNotOwnedByUser">
		Are you sure you want to return all objects NOT owned by [NAME] on this parcel of land back to their owner&apos;s inventory?
Transferable objects deeded to a group will be returned to their previous owners.

*WARNING* This will delete the non-transferable objects deeded to the group!

Objects: [N]
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ReturnAllTopObjects">
		Are you sure you want to return all listed objects back to their owner&apos;s inventory?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="DisableAllTopObjects">
		Are you sure you want to disable all objects in this region?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ReturnObjectsNotOwnedByGroup">
		Return the objects on this parcel of land that are NOT shared with the group [NAME] back to their owners?

Objects: [N]
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="UnableToDisableOutsideScripts">
		Can not disable scripts.
This entire region is damage enabled.
Scripts must be allowed to run for weapons to work.
	</notification>
	<notification name="MultipleFacesSelected">
		Multiple faces are currently selected.
If you continue this action, separate instances of media will be set on multiple faces of the object.
To place the media on only one face, choose Select Face and click on the desired face of that object then click Add.
		<usetemplate ignoretext="Media will be set on multiple selected faces" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="MustBeInParcel">
		You must be standing inside the land parcel to set its Landing Point.
	</notification>
	<notification name="PromptRecipientEmail">
		Please enter a valid email address for the recipient(s).
	</notification>
	<notification name="PromptSelfEmail">
		Please enter your email address.
	</notification>
	<notification name="PromptMissingSubjMsg">
		Email snapshot with the default subject or message?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ErrorProcessingSnapshot">
		Error processing snapshot data
	</notification>
	<notification name="ErrorEncodingSnapshot">
		Error encoding snapshot.
	</notification>
	<notification name="ErrorUploadingPostcard">
		There was a problem sending a snapshot due to the following reason: [REASON]
	</notification>
	<notification name="ErrorUploadingReportScreenshot">
		There was a problem uploading a report screenshot due to the following reason: [REASON]
	</notification>
	<notification name="MustAgreeToLogIn">
		You must agree to the Terms of Service to continue logging into [SECOND_LIFE].
	</notification>
	<notification name="CouldNotPutOnOutfit">
		Could not put on outfit.
The outfit folder contains no clothing, body parts, or attachments.
	</notification>
	<notification name="CannotWearTrash">
		You can not wear clothes or body parts that are in the trash
	</notification>
	<notification name="MaxAttachmentsOnOutfit">
		Could not attach object.
Exceeds the attachments limit of [MAX_ATTACHMENTS] objects. Please detach another object first.
	</notification>
	<notification name="CannotWearInfoNotComplete">
		You can not wear that item because it has not yet loaded. Please try again in a minute.
	</notification>
	<notification name="MustHaveAccountToLogIn">
		Oops! Something was left blank.
You need to enter the Username name of your avatar.

You need an account to enter [SECOND_LIFE]. Would you like to create one now?
		<url name="url">
			http://join.secondlife.com/
		</url>
		<usetemplate name="okcancelbuttons" notext="再試一次" yestext="創造新帳戶"/>
	</notification>
	<notification name="InvalidCredentialFormat">
		You need to enter either the Username or both the First and Last name of your avatar into the Username field, then login again.
	</notification>
	<notification name="DeleteClassified">
		Delete classified &apos;[NAME]&apos;?
There is no reimbursement for fees paid.
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="DeleteMedia">
		You have selected to delete the media associated with this face.
Are you sure you want to continue?
		<usetemplate ignoretext="在我由一個部件中刪除媒體前確認" name="okcancelignore" notext="否" yestext="是"/>
	</notification>
	<notification name="ClassifiedSave">
		Save changes to classified [NAME]?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="不要儲存" yestext="儲存"/>
	</notification>
	<notification name="ClassifiedInsufficientFunds">
		Insufficient funds to create classified.
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="DeleteAvatarPick">
		Delete pick &lt;nolink&gt;[PICK]&lt;/nolink&gt;?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="DeleteOutfits">
		刪除所選擇的裝扮?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="PromptGoToEventsPage">
		前往 [SECOND_LIFE] 事件網頁?
		<url name="url">
			http://secondlife.com/events/
		</url>
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="SelectProposalToView">
		Please select a proposal to view.
	</notification>
	<notification name="SelectHistoryItemToView">
		請選擇一個歷史紀錄物品去察看。
	</notification>
	<notification name="CacheWillClear">
		當你重新啟動 [APP_NAME] 後快取資料將會被清除。
	</notification>
	<notification name="CacheWillBeMoved">
		當你重新啟動 [APP_NAME] 後快取資料將被移動。
注意:這將會清除快取資料。
	</notification>
	<notification name="ChangeConnectionPort">
		Port settings take effect after you restart [APP_NAME].
	</notification>
	<notification name="ChangeSkin">
		The new skin will appear after you restart [APP_NAME].
	</notification>
	<notification name="ChangeLanguage">
		Changing language will take effect after you restart [APP_NAME].
	</notification>
	<notification name="GoToAuctionPage">
		前往 [SECOND_LIFE] 網頁去察看拍賣細節或下標?
		<url name="url">
			http://secondlife.com/auctions/auction-detail.php?id=[AUCTION_ID]
		</url>
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="SaveChanges">
		Save Changes?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="不要儲存" yestext="儲存"/>
	</notification>
	<notification name="GestureSaveFailedTooManySteps">
		Gesture save failed.
This gesture has too many steps.
Try removing some steps, then save again.
	</notification>
	<notification name="GestureSaveFailedTryAgain">
		Gesture save failed.  Please try again in a minute.
	</notification>
	<notification name="GestureSaveFailedObjectNotFound">
		Could not save gesture because the object or the associated object inventory could not be found.
The object may be out of range or may have been deleted.
	</notification>
	<notification name="GestureSaveFailedReason">
		There was a problem saving a gesture due to the following reason: [REASON].  Please try resaving the gesture later.
	</notification>
	<notification name="SaveNotecardFailObjectNotFound">
		Could not save notecard because the object or the associated object inventory could not be found.
The object may be out of range or may have been deleted.
	</notification>
	<notification name="SaveNotecardFailReason">
		There was a problem saving a notecard due to the following reason: [REASON].  Please try re-saving the notecard later.
	</notification>
	<notification name="ScriptCannotUndo">
		Could not undo all changes in your version of the script.
Would you like to load the server&apos;s last saved version?
(**Warning** This operation cannot be undone.)
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="SaveScriptFailReason">
		There was a problem saving a script due to the following reason: [REASON].  Please try re-saving the script later.
	</notification>
	<notification name="SaveScriptFailObjectNotFound">
		Could not save the script because the object it is in could not be found.
The object may be out of range or may have been deleted.
	</notification>
	<notification name="SaveBytecodeFailReason">
		There was a problem saving a compiled script due to the following reason: [REASON].  Please try re-saving the script later.
	</notification>
	<notification name="StartRegionEmpty">
		Oops, Your Start Region is not defined.
Please type the Region name in Start Location box or choose My Last Location or My Home as your Start Location.
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="CouldNotStartStopScript">
		Could not start or stop the script because the object it is on could not be found.
The object may be out of range or may have been deleted.
	</notification>
	<notification name="CannotDownloadFile">
		Unable to download file
	</notification>
	<notification name="CannotWriteFile">
		Unable to write file [[FILE]]
	</notification>
	<notification name="UnsupportedHardware">
		Just so you know, your computer does not meet [APP_NAME]&apos;s minimum system requirements. You may experience poor performance. Unfortunately, the [SUPPORT_SITE] can&apos;t provide technical support for unsupported system configurations.

Visit [_URL] for more information?
		<url name="url">
			http://www.secondlife.com/corporate/sysreqs.php
		</url>
		<usetemplate ignoretext="我的電腦硬體並不支援" name="okcancelignore" notext="否" yestext="是"/>
	</notification>
	<notification name="UnknownGPU">
		Your system contains a graphics card that [APP_NAME] doesn&apos;t recognize.
This is often the case with new hardware that hasn&apos;t been tested yet with [APP_NAME].  It will probably be ok, but you may need to adjust your graphics settings.
(Me &gt; Preferences &gt; Graphics).
		<form name="form">
			<ignore name="ignore" text="我的顯示卡無法辨識"/>
		</form>
	</notification>
	<notification name="DisplaySettingsNoShaders">
		[APP_NAME] crashed while initializing graphics drivers.
Graphics Quality will be set to Low to avoid some common driver errors. This will disable some graphics features.
We recommend updating your graphics card drivers.
Graphics Quality can be raised in Preferences &gt; Graphics.
	</notification>
	<notification name="RegionNoTerraforming">
		這個 [REGION] 地區並不允許變更地形。
	</notification>
	<notification name="CannotCopyWarning">
		You do not have permission to copy the following items:
[ITEMS]
and will lose it from your inventory if you give it away. Do you really want to offer these items?
		<usetemplate name="okcancelbuttons" notext="否" yestext="是"/>
	</notification>
	<notification name="CannotGiveItem">
		無法給予收納區物品。
	</notification>
	<notification name="TransactionCancelled">
		交易已取消。
	</notification>
	<notification name="TooManyItems">
		Cannot give more than 42 items in a single inventory transfer.
	</notification>
	<notification name="NoItems">
		You do not have permission to transfer the selected items.
	</notification>
	<notification name="CannotCopyCountItems">
		You do not have permission to copy [COUNT] of the selected items. You will lose these items from your inventory.
Do you really want to give these items?
		<usetemplate name="okcancelbuttons" notext="否" yestext="是"/>
	</notification>
	<notification name="CannotGiveCategory">
		You do not have permission to transfer the selected folder.
	</notification>
	<notification name="FreezeAvatar">
		凍結這位化身?
他將暫時無法移動、聊天或這個世界互動。
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="解凍" yestext="凍結"/>
	</notification>
	<notification name="FreezeAvatarFullname">
		凍結 [AVATAR_NAME]?
他將暫時無法移動、聊天或這個世界互動。
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="解凍" yestext="凍結"/>
	</notification>
	<notification name="EjectAvatarFullname">
		將 [AVATAR_NAME] 由你的土地踢出?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="踢出並封鎖" yestext="踢出"/>
	</notification>
	<notification name="EjectAvatarNoBan">
		將這一個化身由你的土地踢出?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="踢出"/>
	</notification>
	<notification name="EjectAvatarFullnameNoBan">
		將 [AVATAR_NAME] 由你的土地踢出?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="踢出"/>
	</notification>
	<notification name="EjectAvatarFromGroup">
		你已將 [AVATAR_NAME] 由群組 [GROUP_NAME] 中踢出
	</notification>
	<notification name="AcquireErrorTooManyObjects">
		取得錯誤:太多物件被選取。
	</notification>
	<notification name="AcquireErrorObjectSpan">
		ACQUIRE ERROR: Objects span more than one region.
Please move all objects to be acquired onto the same region.
	</notification>
	<notification name="PromptGoToCurrencyPage">
		[EXTRA]

Go to [_URL] for information on purchasing L$?
		<url name="url">
			http://secondlife.com/app/currency/
		</url>
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="UnableToLinkObjects">
		Unable to link these [COUNT] objects.
You can link a maximum of [MAX] objects.
	</notification>
	<notification name="CannotLinkIncompleteSet">
		You can only link complete sets of objects, and must select more than one object.
	</notification>
	<notification name="CannotLinkModify">
		Unable to link because you don&apos;t have modify permission on all the objects.

Please make sure none are locked, and that you own all of them.
	</notification>
	<notification name="CannotLinkDifferentOwners">
		Unable to link because not all of the objects have the same owner.

Please make sure you own all of the selected objects.
	</notification>
	<notification name="NoFileExtension">
		No file extension for the file: &apos;[FILE]&apos;

Please make sure the file has a correct file extension.
	</notification>
	<notification name="InvalidFileExtension">
		Invalid file extension [EXTENSION]
Expected [VALIDS]
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="CannotUploadSoundFile">
		Couldn&apos;t open uploaded sound file for reading:
[FILE]
	</notification>
	<notification name="SoundFileNotRIFF">
		File does not appear to be a RIFF WAVE file:
[FILE]
	</notification>
	<notification name="SoundFileNotPCM">
		File does not appear to be a PCM WAVE audio file:
[FILE]
	</notification>
	<notification name="SoundFileInvalidChannelCount">
		File has invalid number of channels (must be mono or stereo):
[FILE]
	</notification>
	<notification name="SoundFileInvalidSampleRate">
		File does not appear to be a supported sample rate (must be 44.1k):
[FILE]
	</notification>
	<notification name="SoundFileInvalidWordSize">
		File does not appear to be a supported word size (must be 8 or 16 bit):
[FILE]
	</notification>
	<notification name="SoundFileInvalidHeader">
		Could not find &apos;data&apos; chunk in WAV header:
[FILE]
	</notification>
	<notification name="SoundFileInvalidChunkSize">
		Wrong chunk size in WAV file:
[FILE]
	</notification>
	<notification name="SoundFileInvalidTooLong">
		音頻檔太長(最大值 10 秒):
[FILE]
	</notification>
	<notification name="ProblemWithFile">
		Problem with file [FILE]:

[ERROR]
	</notification>
	<notification name="CannotOpenTemporarySoundFile">
		Couldn&apos;t open temporary compressed sound file for writing: [FILE]
	</notification>
	<notification name="UnknownVorbisEncodeFailure">
		Unknown Vorbis encode failure on: [FILE]
	</notification>
	<notification name="CannotEncodeFile">
		Unable to encode file: [FILE]
	</notification>
	<notification name="CorruptedProtectedDataStore">
		We can&apos;t fill in your username and password.  This may happen when you change network setup
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="CorruptResourceFile">
		Corrupt resource file: [FILE]
	</notification>
	<notification name="UnknownResourceFileVersion">
		Unknown Linden resource file version in file: [FILE]
	</notification>
	<notification name="UnableToCreateOutputFile">
		Unable to create output file: [FILE]
	</notification>
	<notification name="DoNotSupportBulkAnimationUpload">
		[APP_NAME] does not currently support bulk upload of animation files.
	</notification>
	<notification name="CannotUploadReason">
		Unable to upload [FILE] due to the following reason: [REASON]
Please try again later.
	</notification>
	<notification name="LandmarkCreated">
		你已經添加 &quot;[LANDMARK_NAME]&quot; 到你的 [FOLDER_NAME] 資料夾。
	</notification>
	<notification name="LandmarkAlreadyExists">
		你已經有這個位置的地標。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="CannotCreateLandmarkNotOwner">
		你不能創造地標,因為地主並不允許你這樣做。
	</notification>
	<notification name="CannotRecompileSelectObjectsNoScripts">
		Not able to perform &apos;recompilation&apos;.
Select an object with a script.
	</notification>
	<notification name="CannotRecompileSelectObjectsNoPermission">
		Not able to perform &apos;recompilation&apos;.

Select objects with scripts that you have permission to modify.
	</notification>
	<notification name="CannotResetSelectObjectsNoScripts">
		Not able to perform &apos;reset&apos;.

Select objects with scripts.
	</notification>
	<notification name="CannotResetSelectObjectsNoPermission">
		Not able to perform &apos;reset&apos;.

Select objects with scripts that you have permission to modify.
	</notification>
	<notification name="CannotOpenScriptObjectNoMod">
		Unable to open script in object without modify permissions.
	</notification>
	<notification name="CannotSetRunningSelectObjectsNoScripts">
		Not able to set any scripts to &apos;running&apos;.

Select objects with scripts.
	</notification>
	<notification name="CannotSetRunningNotSelectObjectsNoScripts">
		Unable to set any scripts to &apos;not running&apos;.

Select objects with scripts.
	</notification>
	<notification name="NoFrontmostFloater">
		No frontmost floater to save.
	</notification>
	<notification name="SeachFilteredOnShortWords">
		Your search query was modified and the words that were too short were removed.

Searched for: [FINALQUERY]
	</notification>
	<notification name="SeachFilteredOnShortWordsEmpty">
		Your search terms were too short so no search was performed.
	</notification>
	<notification name="CouldNotTeleportReason">
		瞬間傳送失敗。
[REASON]
	</notification>
	<notification name="invalid_tport">
		Problem encountered processing your teleport request. You may need to log back in before you can teleport.
If you continue to get this message, please check the [SUPPORT_SITE].
	</notification>
	<notification name="invalid_region_handoff">
		Problem encountered processing your region crossing. You may need to log back in before you can cross regions.
If you continue to get this message, please check the [SUPPORT_SITE].
	</notification>
	<notification name="blocked_tport">
		Sorry, teleport is currently blocked. Try again in a moment.  If you still cannot teleport, please log out and log back in to resolve the problem.
	</notification>
	<notification name="nolandmark_tport">
		Sorry, but system was unable to locate landmark destination.
	</notification>
	<notification name="timeout_tport">
		Sorry, but system was unable to complete the teleport connection.  Try again in a moment.
	</notification>
	<notification name="noaccess_tport">
		Sorry, you do not have access to that teleport destination.
	</notification>
	<notification name="missing_attach_tport">
		Your attachments have not arrived yet. Try waiting for a few more seconds or log out and back in again before attempting to teleport.
	</notification>
	<notification name="too_many_uploads_tport">
		The asset queue in this region is currently clogged so your teleport request will not be able to succeed in a timely manner. Please try again in a few minutes or go to a less busy area.
	</notification>
	<notification name="expired_tport">
		Sorry, but the system was unable to complete your teleport request in a timely fashion. Please try again in a few minutes.
	</notification>
	<notification name="expired_region_handoff">
		Sorry, but the system was unable to complete your region crossing in a timely fashion. Please try again in a few minutes.
	</notification>
	<notification name="no_host">
		Unable to find teleport destination. The destination may be temporarily unavailable or no longer exists. Please try again in a few minutes.
	</notification>
	<notification name="no_inventory_host">
		收納區功能目前無法使用。
	</notification>
	<notification name="CannotSetLandOwnerNothingSelected">
		無法設定土地擁有者:
無地段被選取。
	</notification>
	<notification name="CannotSetLandOwnerMultipleRegions">
		Unable to force land ownership because selection spans multiple regions. Please select a smaller area and try again.
	</notification>
	<notification name="ForceOwnerAuctionWarning">
		This parcel is up for auction. Forcing ownership will cancel the auction and potentially make some Residents unhappy if bidding has begun.
Force ownership?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="CannotContentifyNothingSelected">
		Unable to contentify:
No parcel selected.
	</notification>
	<notification name="CannotContentifyNoRegion">
		Unable to contentify:
No region selected.
	</notification>
	<notification name="CannotReleaseLandNothingSelected">
		無法放棄土地:
無地段被選擇。
	</notification>
	<notification name="CannotReleaseLandNoRegion">
		無法放棄土地:
無法尋找地區。
	</notification>
	<notification name="CannotBuyLandNothingSelected">
		無法購買土地:
無地段被選擇。
	</notification>
	<notification name="CannotBuyLandNoRegion">
		Unable to buy land:
Cannot find the region this land is in.
	</notification>
	<notification name="CannotCloseFloaterBuyLand">
		You cannot close the Buy Land window until [APP_NAME] estimates the price of this transaction.
	</notification>
	<notification name="CannotDeedLandNothingSelected">
		無法讓渡土地:
無地段被選取。
	</notification>
	<notification name="CannotDeedLandNoGroup">
		無法讓渡土地:
無群組被選取。
	</notification>
	<notification name="CannotDeedLandNoRegion">
		無法讓渡土地:
無法發現這塊土地所在的地區。
	</notification>
	<notification name="CannotDeedLandMultipleSelected">
		無法讓渡土地:
複數地段被選取。

請試著選取單一地段。
	</notification>
	<notification name="CannotDeedLandWaitingForServer">
		無法讓渡土地:
等候伺服器報告擁有權。

請再試一次。
	</notification>
	<notification name="CannotDeedLandNoTransfer">
		無法讓渡土地:
此 [REGION] 地區並不允許土地轉移。
	</notification>
	<notification name="CannotReleaseLandWatingForServer">
		無法放棄土地:
等候伺服器更新地段資訊。

請稍後幾秒再試一次。
	</notification>
	<notification name="CannotReleaseLandSelected">
		無法放棄土地:
你並位擁有所選擇的全部土地。

請選擇一個單一地段。
	</notification>
	<notification name="CannotReleaseLandDontOwn">
		無法放棄土地:
你並沒有權限去釋出這個地段。
你所擁有的地段將呈現綠色。
	</notification>
	<notification name="CannotReleaseLandRegionNotFound">
		無法放棄土地:
無法發現這快土地所在的地區。
	</notification>
	<notification name="CannotReleaseLandNoTransfer">
		無法放棄土地:
此 [REGION] 地區並不許土地轉移。
	</notification>
	<notification name="CannotReleaseLandPartialSelection">
		無法放棄土地:
你必須選取一整個地段以釋出它。

選取一整個地段,或先進行分割。
	</notification>
	<notification name="ReleaseLandWarning">
		你釋出約 [AREA] m² 面積土地。
釋出個地段將會由你所持有的土地中移除,但不會給予任何 L$。

你確定要釋出這塊土地?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="CannotDivideLandNothingSelected">
		無法分割土地:

無地段被選取。
	</notification>
	<notification name="CannotDivideLandPartialSelection">
		無法分割土地:

你現在選取整個地段。
請試著選取其中部分地段。
	</notification>
	<notification name="LandDivideWarning">
		分割土地會將佌地段一分為二,每一個地段將都各自有其設定。 在這個操作之後,一些設定值將會回復到預設值。

進行分割土地?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="CannotDivideLandNoRegion">
		無法分割土地:
無法發現這塊土地所在的地區。
	</notification>
	<notification name="CannotJoinLandNoRegion">
		無法合併土地:
無法發現這塊土地所在的地區。
	</notification>
	<notification name="CannotJoinLandNothingSelected">
		無法合併土地:
無地段被選取。
	</notification>
	<notification name="CannotJoinLandEntireParcelSelected">
		無法合併土地:
你只有選取一個地段。

請跨越兩個地段選取土地。
	</notification>
	<notification name="CannotJoinLandSelection">
		無法合併土地:
你必須選取超過一個地段。

請跨越兩個地段選取土地。
	</notification>
	<notification name="JoinLandWarning">
		合併土地將會在選取的全部地段範圍裡產生一個巨大的地段。
你將會需要重設這個新地段的名稱與設定選項。

進行土地合併?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmNotecardSave">
		在物品能被覆製或察看前,這記事卡必須先進行儲存。儲存記事卡?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmItemCopy">
		覆製這個物品到你的收納區?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="覆製"/>
	</notification>
	<notification name="ResolutionSwitchFail">
		Failed to switch resolution to [RESX] by [RESY]
	</notification>
	<notification name="ErrorUndefinedGrasses">
		Error: Undefined grasses: [SPECIES]
	</notification>
	<notification name="ErrorUndefinedTrees">
		Error: Undefined trees: [SPECIES]
	</notification>
	<notification name="CannotSaveWearableOutOfSpace">
		Unable to save &apos;[NAME]&apos; to wearable file.  You will need to free up some space on your computer and save the wearable again.
	</notification>
	<notification name="CannotSaveToAssetStore">
		Unable to save [NAME] to central asset store.
This is usually a temporary failure. Please customize and save the wearable again in a few minutes.
	</notification>
	<notification name="YouHaveBeenLoggedOut">
		Darn. You have been logged out of [SECOND_LIFE]
            [MESSAGE]
		<usetemplate name="okcancelbuttons" notext="結束退出" yestext="View IM &amp; Chat"/>
	</notification>
	<notification name="OnlyOfficerCanBuyLand">
		Unable to buy land for the group:
You do not have permission to buy land for your active group.
	</notification>
	<notification label="加為朋友" name="AddFriendWithMessage">
		Friends can give permissions to track each other on the map and receive online status updates.

Offer friendship to [NAME]?
		<form name="form">
			<input name="message">
				你願意成為我的朋友嗎?
			</input>
			<button name="Offer" text="確定"/>
			<button name="Cancel" text="取消"/>
		</form>
	</notification>
	<notification label="儲存裝扮" name="SaveOutfitAs">
		儲存我正在穿的為新裝扮:
		<form name="form">
			<input name="message">
				[DESC] (新)
			</input>
			<button name="OK" text="確定"/>
			<button name="Cancel" text="取消"/>
		</form>
	</notification>
	<notification label="Save Wearable" name="SaveWearableAs">
		儲存物品到我的收納區為:
		<form name="form">
			<input name="message">
				[DESC] (新)
			</input>
			<button name="OK" text="確定"/>
			<button name="Cancel" text="取消"/>
		</form>
	</notification>
	<notification label="裝扮更名" name="RenameOutfit">
		新裝扮名稱:
		<form name="form">
			<input name="new_name">
				[NAME]
			</input>
			<button name="OK" text="確定"/>
			<button name="Cancel" text="取消"/>
		</form>
	</notification>
	<notification name="RemoveFromFriends">
		Do you want to remove [NAME] from your Friends List?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="RemoveMultipleFromFriends">
		你確定要由朋友清單中移除多個朋友嗎?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="GodDeleteAllScriptedPublicObjectsByUser">
		Are you sure you want to delete all scripted objects owned by
** [AVATAR_NAME] **
on all others land in this sim?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="GodDeleteAllScriptedObjectsByUser">
		Are you sure you want to DELETE ALL scripted objects owned by
** [AVATAR_NAME] **
on ALL LAND in this sim?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="GodDeleteAllObjectsByUser">
		Are you sure you want to DELETE ALL objects (scripted or not) owned by
** [AVATAR_NAME] **
on ALL LAND in this sim?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="BlankClassifiedName">
		You must specify a name for your classified.
	</notification>
	<notification name="MinClassifiedPrice">
		Price to pay for listing must be at least L$[MIN_PRICE].

Please enter a higher price.
	</notification>
	<notification name="ConfirmItemDeleteHasLinks">
		At least one of the items you has link items that point to it.  If you delete this item, its links will permanently stop working.  It is strongly advised to delete the links first.

Are you sure you want to delete these items?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmObjectDeleteLock">
		At least one of the items you have selected is locked.

Are you sure you want to delete these items?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmObjectDeleteNoCopy">
		At least one of the items you have selected is not copyable.

Are you sure you want to delete these items?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmObjectDeleteNoOwn">
		You do not own least one of the items you have selected.

Are you sure you want to delete these items?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmObjectDeleteLockNoCopy">
		At least one object is locked.
At least one object is not copyable.

Are you sure you want to delete these items?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmObjectDeleteLockNoOwn">
		At least one object is locked.
You do not own least one object.

Are you sure you want to delete these items?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmObjectDeleteNoCopyNoOwn">
		At least one object is not copyable.
You do not own least one object.

Are you sure you want to delete these items?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmObjectDeleteLockNoCopyNoOwn">
		At least one object is locked.
At least one object is not copyable.
You do not own least one object.

Are you sure you want to delete these items?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmObjectTakeLock">
		At least one object is locked.

Are you sure you want to take these items?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmObjectTakeNoOwn">
		You do not own all of the objects you are taking.
If you continue, next owner permissions will be applied and possibly restrict your ability to modify or copy them.

Are you sure you want to take these items?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmObjectTakeLockNoOwn">
		At least one object is locked.
You do not own all of the objects you are taking.
If you continue, next owner permissions will be applied and possibly restrict your ability to modify or copy them.
However, you can take the current selection.

Are you sure you want to take these items?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="CantBuyLandAcrossMultipleRegions">
		Unable to buy land because selection spans multiple regions.

Please select a smaller area and try again.
	</notification>
	<notification name="DeedLandToGroup">
		By deeding this parcel, the group will be required to have and maintain sufficient land use credits.
The purchase price of the land is not refunded to the owner. If a deeded parcel is sold, the sale price will be divided evenly among group members.

Deed this [AREA] m² of land to the group &apos;[GROUP_NAME]&apos;?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="DeedLandToGroupWithContribution">
		By deeding this parcel, the group will be required to have and maintain sufficient land use credits.
The deed will include a simultaneous land contribution to the group from &apos;[NAME]&apos;.
The purchase price of the land is not refunded to the owner. If a deeded parcel is sold, the sale price will be divided evenly among group members.

Deed this [AREA] m² of land to the group &apos;[GROUP_NAME]&apos;?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="DisplaySetToSafe">
		Display settings have been set to safe levels because you have specified the -safe option.
	</notification>
	<notification name="DisplaySetToRecommended">
		Display settings have been set to recommended levels based on your system configuration.
	</notification>
	<notification name="ErrorMessage">
		[ERROR_MESSAGE]
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="AvatarMovedDesired">
		Your desired location is not currently available.
You have been moved into a nearby region.
	</notification>
	<notification name="AvatarMovedLast">
		Your last location is not currently available.
You have been moved into a nearby region.
	</notification>
	<notification name="AvatarMovedHome">
		Your home location is not currently available.
You have been moved into a nearby region.
You may want to set a new home location.
	</notification>
	<notification name="ClothingLoading">
		你的服裝仍在下載中。
你可以正常使用 [SECOND_LIFE],而且其他人看到你也是正常的。
		<form name="form">
			<ignore name="ignore" text="服裝花太多時間下載"/>
		</form>
	</notification>
	<notification name="FirstRun">
		[APP_NAME] 安裝完成。

If this is your first time using [SECOND_LIFE], you will need to create an account before you can log in.
Return to [http://join.secondlife.com secondlife.com] to create a new account?
		<usetemplate name="okcancelbuttons" notext="繼續" yestext="新帳戶..."/>
	</notification>
	<notification name="LoginPacketNeverReceived">
		We&apos;re having trouble connecting. There may be a problem with your Internet connection or the [SECOND_LIFE_GRID].

You can either check your Internet connection and try again in a few minutes, click Help to view the [SUPPORT_SITE], or click Teleport to attempt to teleport home.
		<url name="url">
			http://secondlife.com/support/
		</url>
		<form name="form">
			<button name="OK" text="確定"/>
			<button name="Help" text="幫助"/>
			<button name="Teleport" text="瞬間傳送"/>
		</form>
	</notification>
	<notification name="WelcomeChooseSex">
		Your character will appear in a moment.

Use arrow keys to walk.
Press the F1 key at any time for help or to learn more about [SECOND_LIFE].
Please choose the male or female avatar. You can change your mind later.
		<usetemplate name="okcancelbuttons" notext="女性" yestext="男性"/>
	</notification>
	<notification name="CantTeleportToGrid">
		Could not teleport to [SLURL] as it&apos;s on a different grid ([GRID]) than the current grid ([CURRENT_GRID]).  Please close your viewer and try again.
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="GeneralCertificateError">
		無法連接到伺服器。
[REASON]

SubjectName: [SUBJECT_NAME_STRING]
IssuerName: [ISSUER_NAME_STRING]
Valid From: [VALID_FROM]
Valid To: [VALID_TO]
MD5 Fingerprint: [SHA1_DIGEST]
SHA1 Fingerprint: [MD5_DIGEST]
Key Usage: [KEYUSAGE]
Extended Key Usage: [EXTENDEDKEYUSAGE]
Subject Key Identifier: [SUBJECTKEYIDENTIFIER]
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="TrustCertificateError">
		The certification authority for this server is not known.

Certificate Information:
SubjectName: [SUBJECT_NAME_STRING]
IssuerName: [ISSUER_NAME_STRING]
Valid From: [VALID_FROM]
Valid To: [VALID_TO]
MD5 Fingerprint: [SHA1_DIGEST]
SHA1 Fingerprint: [MD5_DIGEST]
Key Usage: [KEYUSAGE]
Extended Key Usage: [EXTENDEDKEYUSAGE]
Subject Key Identifier: [SUBJECTKEYIDENTIFIER]

Would you like to trust this authority?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="Trust"/>
	</notification>
	<notification name="NotEnoughCurrency">
		[NAME] L$ [PRICE] You don&apos;t have enough L$ to do that.
	</notification>
	<notification name="GrantedModifyRights">
		[NAME] has given you permission to edit their objects.
	</notification>
	<notification name="RevokedModifyRights">
		Your privilege to modify [NAME]&apos;s objects has been revoked
	</notification>
	<notification name="FlushMapVisibilityCaches">
		This will flush the map caches on this region.
This is really only useful for debugging.
(In production, wait 5 minutes, then everyone&apos;s map will update after they relog.)
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="BuyOneObjectOnly">
		Unable to buy more than one object at a time.  Please select only one object and try again.
	</notification>
	<notification name="OnlyCopyContentsOfSingleItem">
		Unable to copy the contents of more than one item at a time.
Please select only one object and try again.
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="KickUsersFromRegion">
		確定要強制瞬間傳送這地區所有居民回家?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="EstateObjectReturn">
		Are you sure you want to return objects owned by [USER_NAME]?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="InvalidTerrainBitDepth">
		Couldn&apos;t set region textures:
Terrain texture [TEXTURE_NUM] has an invalid bit depth of [TEXTURE_BIT_DEPTH].

Replace texture [TEXTURE_NUM] with a 24-bit 512x512 or smaller image then click &quot;Apply&quot; again.
	</notification>
	<notification name="InvalidTerrainSize">
		Couldn&apos;t set region textures:
Terrain texture [TEXTURE_NUM] is too large at [TEXTURE_SIZE_X]x[TEXTURE_SIZE_Y].

Replace texture [TEXTURE_NUM] with a 24-bit 512x512 or smaller image then click &quot;Apply&quot; again.
	</notification>
	<notification name="RawUploadStarted">
		上傳開始。將會花費約兩分鐘,這取決於你的連線速度。
	</notification>
	<notification name="ConfirmBakeTerrain">
		Do you really want to bake the current terrain, make it the center for terrain raise/lower limits and the default for the &apos;Revert&apos; tool?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="MaxAllowedAgentOnRegion">
		You can only have [MAX_AGENTS] Allowed Residents.
	</notification>
	<notification name="MaxBannedAgentsOnRegion">
		你只可以有最多 [MAX_BANNED] 位被封鎖的居民。
	</notification>
	<notification name="MaxAgentOnRegionBatch">
		Failure while attempting to add [NUM_ADDED] agents:
Exceeds the [MAX_AGENTS] [LIST_TYPE] limit by [NUM_EXCESS].
	</notification>
	<notification name="MaxAllowedGroupsOnRegion">
		You can only have [MAX_GROUPS] Allowed Groups.
		<usetemplate name="okcancelbuttons" notext="取消" yestext="Bake"/>
	</notification>
	<notification name="MaxManagersOnRegion">
		你只可以有最多 [MAX_MANAGER] 位領地經理。
	</notification>
	<notification name="OwnerCanNotBeDenied">
		無法添加領地擁有者到領地的 &apos;被封鎖的居民&apos; 名單中。
	</notification>
	<notification name="CanNotChangeAppearanceUntilLoaded">
		無法變更外觀,直到服裝與體形下載完畢。
	</notification>
	<notification name="ClassifiedMustBeAlphanumeric">
		The name of your classified must start with a letter from A to Z or a number.  No punctuation is allowed.
	</notification>
	<notification name="CantSetBuyObject">
		Can&apos;t set Buy Object, because the object is not for sale.
Please set the object for sale and try again.
	</notification>
	<notification name="FinishedRawDownload">
		Finished download of raw terrain file to:
[DOWNLOAD_PATH].
	</notification>
	<notification name="DownloadWindowsMandatory">
		一個新版本的 [APP_NAME] 已經可用。
[MESSAGE]
你必須下載這個更新以使用 [APP_NAME]。
		<usetemplate name="okcancelbuttons" notext="結束退出" yestext="下載"/>
	</notification>
	<notification name="DownloadWindows">
		一個 [APP_NAME] 更新過的版本已經可用。
[MESSAGE]
這個更新並非強制更新,但我們建議你安裝以增強效能及穩定性。
		<usetemplate name="okcancelbuttons" notext="繼續" yestext="下載"/>
	</notification>
	<notification name="DownloadWindowsReleaseForDownload">
		An updated version of [APP_NAME] is available.
[MESSAGE]
This update is not required, but we suggest you install it to improve performance and stability.
		<usetemplate name="okcancelbuttons" notext="繼續" yestext="下載"/>
	</notification>
	<notification name="DownloadLinuxMandatory">
		A new version of [APP_NAME] is available.
[MESSAGE]
You must download this update to use [APP_NAME].
		<usetemplate name="okcancelbuttons" notext="結束退出" yestext="下載"/>
	</notification>
	<notification name="DownloadLinux">
		An updated version of [APP_NAME] is available.
[MESSAGE]
This update is not required, but we suggest you install it to improve performance and stability.
		<usetemplate name="okcancelbuttons" notext="繼續" yestext="下載"/>
	</notification>
	<notification name="DownloadLinuxReleaseForDownload">
		An updated version of [APP_NAME] is available.
[MESSAGE]
This update is not required, but we suggest you install it to improve performance and stability.
		<usetemplate name="okcancelbuttons" notext="繼續" yestext="下載"/>
	</notification>
	<notification name="DownloadMacMandatory">
		A new version of [APP_NAME] is available.
[MESSAGE]
You must download this update to use [APP_NAME].

Download to your Applications folder?
		<usetemplate name="okcancelbuttons" notext="結束退出" yestext="下載"/>
	</notification>
	<notification name="DownloadMac">
		An updated version of [APP_NAME] is available.
[MESSAGE]
This update is not required, but we suggest you install it to improve performance and stability.

Download to your Applications folder?
		<usetemplate name="okcancelbuttons" notext="繼續" yestext="下載"/>
	</notification>
	<notification name="DownloadMacReleaseForDownload">
		An updated version of [APP_NAME] is available.
[MESSAGE]
This update is not required, but we suggest you install it to improve performance and stability.

Download to your Applications folder?
		<usetemplate name="okcancelbuttons" notext="繼續" yestext="下載"/>
	</notification>
	<notification name="FailedUpdateInstall">
		An error occurred installing the viewer update.
Please download and install the latest viewer from
http://secondlife.com/download.
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="FailedRequiredUpdateInstall">
		We were unable to install a required update. 
You will be unable to log in until [APP_NAME] has been updated.

Please download and install the latest viewer from
http://secondlife.com/download.
		<usetemplate name="okbutton" yestext="結束退出"/>
	</notification>
	<notification name="UpdaterServiceNotRunning">
		There is a required update for your Second Life Installation.

You may download this update from http://www.secondlife.com/downloads
or you can install it now.
		<usetemplate name="okcancelbuttons" notext="結束退出第二人生" yestext="立即下載及安裝"/>
	</notification>
	<notification name="DownloadBackgroundTip">
		We have downloaded an update to your [APP_NAME] installation.
Version [VERSION] [[RELEASE_NOTES_FULL_URL] Information about this update]
		<usetemplate name="okcancelbuttons" notext="稍候..." yestext="立即安裝及重新啟動 [APP_NAME]"/>
	</notification>
	<notification name="DownloadBackgroundDialog">
		We have downloaded an update to your [APP_NAME] installation.
Version [VERSION] [[RELEASE_NOTES_FULL_URL] Information about this update]
		<usetemplate name="okcancelbuttons" notext="梢候..." yestext="立即安裝及重新啟動 [APP_NAME]"/>
	</notification>
	<notification name="RequiredUpdateDownloadedVerboseDialog">
		We have downloaded a required software update.
Version [VERSION]

We must restart [APP_NAME] to install the update.
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="RequiredUpdateDownloadedDialog">
		我門必須重新啟動 [APP_NAME] 以安裝更新。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="DeedObjectToGroup">
		Deeding this object will cause the group to:
* Receive L$ paid into the object
		<usetemplate ignoretext="在我讓渡一個物件給群組前確認" name="okcancelignore" notext="取消" yestext="讓渡"/>
	</notification>
	<notification name="WebLaunchExternalTarget">
		你確定要開啟網頁瀏覽器去察看這個內容?
		<usetemplate ignoretext="啟動我的網頁瀏覽器去察看網頁" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="WebLaunchJoinNow">
		前往你的[http://secondlife.com/account/ 塗鴉牆]以進行管理你的帳戶?
		<usetemplate ignoretext="啟動我的瀏覽器以管理我的帳戶" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="WebLaunchSecurityIssues">
		Visit the [SECOND_LIFE] Wiki for details of how to report a security issue.
		<usetemplate ignoretext="開啟我的網頁瀏覽器以學習如何回報一個安全性的議題" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="WebLaunchQAWiki">
		拜訪 [SECOND_LIFE] 問與答維基。
		<usetemplate ignoretext="開啟我的網頁瀏覽器去察看問與答維基" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="WebLaunchPublicIssue">
		拜訪 [SECOND_LIFE] 公共議題追蹤,那裡你將可以回報臭蟲與其他議題。
		<usetemplate ignoretext="開啟我的網頁瀏覽器以使用公共議題追蹤。" name="okcancelignore" notext="取消" yestext="前往頁面"/>
	</notification>
	<notification name="WebLaunchSupportWiki">
		前往林登官方部落格,以取得最新的新聞與資訊。
		<usetemplate ignoretext="開啟我的網頁瀏覽器以察看部落格" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="WebLaunchLSLGuide">
		你要開啟腳本撰寫指引以幫助你開發腳本嗎?
		<usetemplate ignoretext="開啟我的網頁瀏覽器以察看腳本撰寫指引" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="WebLaunchLSLWiki">
		你要拜訪 LSL 入口以取得腳本設計的幫助嗎?
		<usetemplate ignoretext="開啟我的網頁瀏覽器以察看 LSL 入口" name="okcancelignore" notext="取消" yestext="前往頁面"/>
	</notification>
	<notification name="ReturnToOwner">
		你確定要退回所選擇的物件給它們的擁有者嗎? 可轉移並讓渡的物件將會退回給它們的前一位擁有者。

*警告* 非可轉移並讓渡的物件將會被刪除!
		<usetemplate ignoretext="在我退回物件給它們的擁有者前確認" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="GroupLeaveConfirmMember">
		你目前是 [GROUP] 群組的成員。
是否要離開群組?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmKick">
		你確定要踢出這網格內的全部居民?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="踢出全部居民"/>
	</notification>
	<notification name="MuteLinden">
		Sorry, you cannot block a Linden.
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="CannotStartAuctionAlreadyForSale">
		You cannot start an auction on a parcel which is already set for sale.  Disable the land sale if you are sure you want to start an auction.
	</notification>
	<notification label="Block object by name failed" name="MuteByNameFailed">
		You already have blocked this name.
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="RemoveItemWarn">
		Though permitted, deleting contents may damage the object. Do you want to delete that item?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="CantOfferCallingCard">
		Cannot offer a calling card at this time. Please try again in a moment.
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="CantOfferFriendship">
		Cannot offer friendship at this time. Please try again in a moment.
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="BusyModeSet">
		Busy mode is set.
Chat and instant messages will be hidden. Instant messages will get your Busy mode response. All teleportation offers will be declined. All inventory offers will go to your Trash.
		<usetemplate ignoretext="我變更我的狀態為忙碌模式" name="okignore" yestext="確定"/>
	</notification>
	<notification name="JoinedTooManyGroupsMember">
		You have reached your maximum number of groups. Please leave another group before joining this one, or decline the offer.
[NAME] has invited you to join a group as a member.
		<usetemplate name="okcancelbuttons" notext="謝絕" yestext="加入"/>
	</notification>
	<notification name="JoinedTooManyGroups">
		You have reached your maximum number of groups. Please leave some group before joining or creating a new one.
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="KickUser">
		踢出這個居民並留給他什麼訊息?
		<form name="form">
			<input name="message">
				An administrator has logged you off.
			</input>
			<button name="OK" text="確定"/>
			<button name="Cancel" text="取消"/>
		</form>
	</notification>
	<notification name="KickAllUsers">
		Kick everyone currently on the grid with what message?
		<form name="form">
			<input name="message">
				An administrator has logged you off.
			</input>
			<button name="OK" text="確定"/>
			<button name="Cancel" text="取消"/>
		</form>
	</notification>
	<notification name="FreezeUser">
		凍結這位居民時同時留下什麼訊息?
		<form name="form">
			<input name="message">
				你已經被凍結了。你將不能移動或聊天。管理員將會以即時訊息聯繫你(IM)。
			</input>
			<button name="OK" text="確定"/>
			<button name="Cancel" text="取消"/>
		</form>
	</notification>
	<notification name="UnFreezeUser">
		將這位居民解凍並同時留下什麼訊息?
		<form name="form">
			<input name="message">
				You are no longer frozen.
			</input>
			<button name="OK" text="確定"/>
			<button name="Cancel" text="取消"/>
		</form>
	</notification>
	<notification name="SetDisplayNameSuccess">
		Hi [DISPLAY_NAME]!

Just like in real life, it takes a while for everyone to learn about a new name.  Please allow several days for [http://wiki.secondlife.com/wiki/Setting_your_display_name your name to update] in objects, scripts, search, etc.
	</notification>
	<notification name="SetDisplayNameBlocked">
		抱歉,你不可以變更你的顯示名稱。如果你覺得這是錯誤,請連繫支援廠商。
	</notification>
	<notification name="SetDisplayNameFailedLength">
		抱歉,這名稱太長。顯示名稱最大長度為 [LENGTH] 字元。

請嘗試短一些的名稱。
	</notification>
	<notification name="SetDisplayNameFailedGeneric">
		Sorry, we could not set your display name.  Please try again later.
	</notification>
	<notification name="SetDisplayNameMismatch">
		The display names you entered do not match. Please re-enter.
	</notification>
	<notification name="AgentDisplayNameUpdateThresholdExceeded">
		Sorry, you have to wait longer before you can change your display name.

See http://wiki.secondlife.com/wiki/Setting_your_display_name

Please try again later.
	</notification>
	<notification name="AgentDisplayNameSetBlocked">
		Sorry, we could not set your requested name because it contains a banned word.
 
 Please try a different name.
	</notification>
	<notification name="AgentDisplayNameSetInvalidUnicode">
		The display name you wish to set contains invalid characters.
	</notification>
	<notification name="AgentDisplayNameSetOnlyPunctuation">
		Your display name must contain letters other than punctuation.
	</notification>
	<notification name="DisplayNameUpdate">
		[OLD_NAME] ([SLID]) is now known as [NEW_NAME].
	</notification>
	<notification name="OfferTeleport">
		Offer a teleport to your location with the following message?
		<form name="form">
			<input name="message">
				加入我到 [REGION]
			</input>
			<button name="OK" text="確定"/>
			<button name="Cancel" text="取消"/>
		</form>
	</notification>
	<notification name="OfferTeleportFromGod">
		God summon Resident to your location?
		<form name="form">
			<input name="message">
				Join me in [REGION]
			</input>
			<button name="OK" text="確定"/>
			<button name="Cancel" text="取消"/>
		</form>
	</notification>
	<notification name="TeleportFromLandmark">
		Are you sure you want to teleport to &lt;nolink&gt;[LOCATION]&lt;/nolink&gt;?
		<usetemplate ignoretext="Confirm that I want to teleport to a landmark" name="okcancelignore" notext="取消" yestext="瞬間傳送"/>
	</notification>
	<notification name="TeleportToPick">
		瞬間傳送到 [PICK]?
		<usetemplate ignoretext="確認我要瞬間傳送到精選地點的所在位置" name="okcancelignore" notext="取消" yestext="瞬間傳送"/>
	</notification>
	<notification name="TeleportToClassified">
		瞬間傳送到 [CLASSIFIED]?
		<usetemplate ignoretext="確認我要瞬間傳送到個人廣告的所在位置" name="okcancelignore" notext="取消" yestext="瞬間傳送"/>
	</notification>
	<notification name="TeleportToHistoryEntry">
		瞬間傳送到 [HISTORY_ENTRY]?
		<usetemplate ignoretext="確認我要瞬間傳送到歷史紀錄中的位置" name="okcancelignore" notext="取消" yestext="瞬間傳送"/>
	</notification>
	<notification label="送出訊息給你領地內的每一個人" name="MessageEstate">
		Type a short announcement which will be sent to everyone currently in your estate.
		<form name="form">
			<button name="OK" text="確定"/>
			<button name="Cancel" text="取消"/>
		</form>
	</notification>
	<notification label="Change Linden Estate" name="ChangeLindenEstate">
		You are about to change a Linden owned estate (mainland, teen grid, orientation, etc.).

This is EXTREMELY DANGEROUS because it can fundamentally affect the Resident experience.  On the mainland, it will change thousands of regions and make the spaceserver hiccup.

Proceed?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification label="Change Linden Estate Access" name="ChangeLindenAccess">
		You are about to change the access list for a Linden owned estate (mainland, teen grid, orientation, etc.).

This is DANGEROUS and should only be done to invoke the hack allowing objects/L$ to be transfered in/out of a grid.
It will change thousands of regions and make the spaceserver hiccup.
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification label="選擇領地" name="EstateAllowedAgentAdd">
		Add to allowed list for this estate only or for [ALL_ESTATES]?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="全部領地" yestext="這個領地"/>
	</notification>
	<notification label="選擇領地" name="EstateAllowedAgentRemove">
		Remove from allowed list for this estate only or for [ALL_ESTATES]?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="全部領地" yestext="這個領地"/>
	</notification>
	<notification label="選擇領地" name="EstateAllowedGroupAdd">
		Add to group allowed list for this estate only or for [ALL_ESTATES]?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="全部領地" yestext="這個領地"/>
	</notification>
	<notification label="選擇領地" name="EstateAllowedGroupRemove">
		Remove from group allowed list for this estate only or [ALL_ESTATES]?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="全部領地" yestext="這個領地"/>
	</notification>
	<notification label="選擇領地" name="EstateBannedAgentAdd">
		Deny access for this estate only or for [ALL_ESTATES]?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="全部領地" yestext="這個領地"/>
	</notification>
	<notification label="選擇領地" name="EstateBannedAgentRemove">
		Remove this Resident from the ban list for  access for this estate only or for [ALL_ESTATES]?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="全部領地" yestext="這個領地"/>
	</notification>
	<notification label="選擇領地" name="EstateManagerAdd">
		Add estate manager for this estate only or for [ALL_ESTATES]?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="全部領地" yestext="這個領地"/>
	</notification>
	<notification label="選擇領地" name="EstateManagerRemove">
		Remove estate manager for this estate only or for [ALL_ESTATES]?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="全部領地" yestext="這個領地"/>
	</notification>
	<notification label="確認踢出" name="EstateKickUser">
		將 [EVIL_USER] 由這領地踢出?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="EstateChangeCovenant">
		Are you sure you want to change the Estate Covenant?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="RegionEntryAccessBlocked">
		You are not allowed in that Region due to your maturity Rating. This may be a result of a lack of information validating your age.

Please verify you have the latest Viewer installed, and go to the Knowledge Base for details on accessing areas with this maturity rating.
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="RegionEntryAccessBlocked_KB">
		You are not allowed in that region due to your maturity Rating.

Go to the Knowledge Base for more information about maturity Ratings?
		<url name="url">
			http://wiki.secondlife.com/wiki/Linden_Lab_Official:Maturity_ratings:_an_overview
		</url>
		<usetemplate ignoretext="I can&apos;t enter this Region, due to restrictions of the maturity Rating" name="okcancelignore" notext="關閉" yestext="Go to Knowledge Base"/>
	</notification>
	<notification name="RegionEntryAccessBlocked_Notify">
		You are not allowed in that region due to your maturity Rating.
	</notification>
	<notification name="RegionEntryAccessBlocked_Change">
		You are not allowed in that Region due to your maturity Rating preference.

To enter the desired region, please change your maturity Rating preference. This will allow you to search for and access [REGIONMATURITY] content. To undo any changes, go to Me &gt; Preferences &gt; General.
		<form name="form">
			<button name="OK" text="Change Preference"/>
			<button name="Cancel" text="Close"/>
			<ignore name="ignore" text="My chosen Rating preference prevents me from entering a Region"/>
		</form>
	</notification>
	<notification name="PreferredMaturityChanged">
		Your maturity Rating preference is now [RATING].
	</notification>
	<notification name="LandClaimAccessBlocked">
		You cannot claim this land due to your maturity Rating. This may be a result of a lack of information validating your age.

Please verify you have the latest Viewer installed, and go to the Knowledge Base for details on accessing areas with this maturity rating.
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="LandClaimAccessBlocked_KB">
		You cannot claim this land due to your maturity Rating.

Go to the Knowledge Base for more information about maturity Ratings?
		<url name="url">
			http://wiki.secondlife.com/wiki/Linden_Lab_Official:Maturity_ratings:_an_overview
		</url>
		<usetemplate ignoretext="I can&apos;t claim this Land, due to restrictions of the maturity Rating" name="okcancelignore" notext="關閉" yestext="Go to Knowledge Base"/>
	</notification>
	<notification name="LandClaimAccessBlocked_Notify">
		You cannot claim this land due to your maturity Rating.
	</notification>
	<notification name="LandClaimAccessBlocked_Change">
		You cannot claim this land due to your maturity Rating preference.

You can click &apos;Change Preference&apos; to raise your maturity Rating preference now and allow you to enter. You will be able to search and access [REGIONMATURITY] content from now on. If you later want to change this setting back, go to Me &gt; Preferences &gt; General.
		<usetemplate ignoretext="My chosen Rating preference prevents me from claiming Land" name="okcancelignore" notext="關閉" yestext="Change Preference"/>
	</notification>
	<notification name="LandBuyAccessBlocked">
		You cannot buy this land due to your maturity Rating. This may be a result of a lack of information validating your age.

Please verify you have the latest Viewer installed, and go to the Knowledge Base for details on accessing areas with this maturity rating.
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="LandBuyAccessBlocked_KB">
		You cannot buy this land due to your maturity Rating.

Go to the Knowledge Base for more information about maturity Ratings?
		<url name="url">
			http://wiki.secondlife.com/wiki/Linden_Lab_Official:Maturity_ratings:_an_overview
		</url>
		<usetemplate ignoretext="I can&apos;t buy this Land, due to restrictions of the maturity Rating" name="okcancelignore" notext="關閉" yestext="Go to Knowledge Base"/>
	</notification>
	<notification name="LandBuyAccessBlocked_Notify">
		You cannot buy this land due to your maturity Rating.
	</notification>
	<notification name="LandBuyAccessBlocked_Change">
		You cannot buy this land due to your maturity Rating preference.

You can click &apos;Change Preference&apos; to raise your maturity Rating preference now and allow you to enter. You will be able to search and access [REGIONMATURITY] content from now on. If you later want to change this setting back, go to Me &gt; Preferences &gt; General.
		<usetemplate ignoretext="My chosen Rating preference prevents me from buying Land" name="okcancelignore" notext="關閉" yestext="變更偏好設定"/>
	</notification>
	<notification name="TooManyPrimsSelected">
		There are too many prims selected.  Please select [MAX_PRIM_COUNT] or fewer prims and try again
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="ProblemImportingEstateCovenant">
		Problem importing estate covenant.
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="ProblemAddingEstateManager">
		Problems adding a new estate manager.  One or more estates may have a full manager list.
	</notification>
	<notification name="ProblemAddingEstateGeneric">
		Problems adding to this estate list.  One or more estates may have a full list.
	</notification>
	<notification name="UnableToLoadNotecardAsset">
		Unable to load notecard&apos;s asset at this time.
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="NotAllowedToViewNotecard">
		Insufficient permissions to view notecard associated with asset ID requested.
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="MissingNotecardAssetID">
		Asset ID for notecard is missing from database.
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="PublishClassified">
		Remember: Classified ad fees are non-refundable.

Publish this classified now for L$[AMOUNT]?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="SetClassifiedMature">
		Does this classified contain Moderate content?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="否" yestext="是"/>
	</notification>
	<notification name="SetGroupMature">
		這個群組將包含適度成人內容?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="否" yestext="是"/>
	</notification>
	<notification label="Confirm restart" name="ConfirmRestart">
		Do you really want to restart this region in 2 minutes?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification label="Message everyone in this region" name="MessageRegion">
		Type a short announcement which will be sent to everyone in this region.
		<form name="form">
			<button name="OK" text="確定"/>
			<button name="Cancel" text="取消"/>
		</form>
	</notification>
	<notification label="Changed Region Maturity" name="RegionMaturityChange">
		The maturity rating for this region has been updated.
It may take some time for the change to be reflected on the map.

To enter Adult regions, Residents must be Account Verified, either by age-verification or payment-verification.
	</notification>
	<notification label="Voice Version Mismatch" name="VoiceVersionMismatch">
		This version of [APP_NAME] is not compatible with the Voice Chat feature in this region. In order for Voice Chat to function correctly you will need to update [APP_NAME].
	</notification>
	<notification label="無法購買物件" name="BuyObjectOneOwner">
		Cannot buy objects from different owners at the same time.
Please select only one object and try again.
	</notification>
	<notification label="無法購買內容物" name="BuyContentsOneOnly">
		Unable to buy the contents of more than one object at a time.
Please select only one object and try again.
	</notification>
	<notification label="無法購買內容物" name="BuyContentsOneOwner">
		Cannot buy objects from different owners at the same time.
Please select only one object and try again.
	</notification>
	<notification name="BuyOriginal">
		Buy original object from [OWNER] for L$[PRICE]?
You will become the owner of this object.
You will be able to:
 Modify: [MODIFYPERM]
 Copy: [COPYPERM]
 Resell or Give Away: [RESELLPERM]
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="BuyOriginalNoOwner">
		Buy original object for L$[PRICE]?
You will become the owner of this object.
You will be able to:
 Modify: [MODIFYPERM]
 Copy: [COPYPERM]
 Resell or Give Away: [RESELLPERM]
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="BuyCopy">
		Buy a copy from [OWNER] for L$[PRICE]?
The object will be copied to your inventory.
You will be able to:
 Modify: [MODIFYPERM]
 Copy: [COPYPERM]
 Resell or Give Away: [RESELLPERM]
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="BuyCopyNoOwner">
		Buy a copy for L$[PRICE]?
The object will be copied to your inventory.
You will be able to:
 Modify: [MODIFYPERM]
 Copy: [COPYPERM]
 Resell or Give Away: [RESELLPERM]
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="BuyContents">
		Buy contents from [OWNER] for L$[PRICE]?
They will be copied to your inventory.
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="BuyContentsNoOwner">
		Buy contents for L$[PRICE]?
They will be copied to your inventory.
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmPurchase">
		This transaction will:
[ACTION]

Are you sure you want to proceed with this purchase?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmPurchasePassword">
		This transaction will:
[ACTION]

Are you sure you want to proceed with this purchase?
Please re-enter your password and click OK.
		<form name="form">
			<button name="ConfirmPurchase" text="確定"/>
			<button name="Cancel" text="取消"/>
		</form>
	</notification>
	<notification name="SetPickLocation">
		Note:
You have updated the location of this pick but the other details will retain their original values.
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="MoveInventoryFromObject">
		You have selected &apos;no copy&apos; inventory items.
These items will be moved to your inventory, not copied.

Move the inventory item(s)?
		<usetemplate ignoretext="Warn me before I move &apos;no-copy&apos; items from an object" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="MoveInventoryFromScriptedObject">
		You have selected &apos;no copy&apos; inventory items.  These items will be moved to your inventory, not copied.
Because this object is scripted, moving these items to your inventory may cause the script to malfunction.

Move the inventory item(s)?
		<usetemplate ignoretext="Warn me before I move &apos;no-copy&apos; items which might break a scripted object" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ClickActionNotPayable">
		Warning: The &apos;Pay object&apos; click action has been set, but it will only work if a script is added with a money() event.
		<form name="form">
			<ignore name="ignore" text="I set the action &apos;Pay object&apos; when building an object without a money() script"/>
		</form>
	</notification>
	<notification name="OpenObjectCannotCopy">
		There are no items in this object that you are allowed to copy.
	</notification>
	<notification name="WebLaunchAccountHistory">
		前往你的[http://secondlife.com/account/ 塗鴉牆]以察看你的帳戶歷史紀錄?
		<usetemplate ignoretext="啟動我的瀏覽器以察看我的帳戶歷史紀錄" name="okcancelignore" notext="取消" yestext="前往頁面"/>
	</notification>
	<notification name="ConfirmQuit">
		你確定你要結束退出?
		<usetemplate ignoretext="當我結束退出時進行確認" name="okcancelignore" notext="不要結束退出" yestext="結束退出"/>
	</notification>
	<notification name="DeleteItems">
		[QUESTION]
		<usetemplate ignoretext="刪除物品前確認" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="HelpReportAbuseEmailLL">
		Use this tool to report violations of the [http://secondlife.com/corporate/tos.php Terms of Service] and [http://secondlife.com/corporate/cs.php Community Standards].

All reported abuses are investigated and resolved.
	</notification>
	<notification name="HelpReportAbuseSelectCategory">
		Please select a category for this abuse report.
Selecting a category helps us file and process abuse reports.
	</notification>
	<notification name="HelpReportAbuseAbuserNameEmpty">
		Please enter the name of the abuser.
Entering an accurate value helps us file and process abuse reports.
	</notification>
	<notification name="HelpReportAbuseAbuserLocationEmpty">
		Please enter the location where the abuse took place.
Entering an accurate value helps us file and process abuse reports.
	</notification>
	<notification name="HelpReportAbuseSummaryEmpty">
		Please enter a summary of the abuse that took place.
Entering an accurate summary helps us file and process abuse reports.
	</notification>
	<notification name="HelpReportAbuseDetailsEmpty">
		Please enter a detailed description of the abuse that took place.
Be as specific as you can, including names and the details of the incident you are reporting.
Entering an accurate description helps us file and process abuse reports.
	</notification>
	<notification name="HelpReportAbuseContainsCopyright">
		Dear Resident,

You appear to be reporting intellectual property infringement. Please make sure you are reporting it correctly:

(1) The Abuse Process. You may submit an abuse report if you believe a Resident is exploiting the [SECOND_LIFE] permissions system, for example, by using CopyBot or similar copying tools, to infringe intellectual property rights. The Abuse Team investigates and issues appropriate disciplinary action for behavior that violates the [SECOND_LIFE] [http://secondlife.com/corporate/tos.php Terms of Service] or [http://secondlife.com/corporate/cs.php Community Standards]. However, the Abuse Team does not handle and will not respond to requests to remove content from the [SECOND_LIFE] world.

(2) The DMCA or Content Removal Process. To request removal of content from [SECOND_LIFE], you MUST submit a valid notification of infringement as provided in our [http://secondlife.com/corporate/dmca.php DMCA Policy].

If you still wish to continue with the abuse process, please close this window and finish submitting your report.  You may need to select the specific category &apos;CopyBot or Permissions Exploit&apos;.

Thank you,

Linden Lab
	</notification>
	<notification name="FailedRequirementsCheck">
		The following required components are missing from [FLOATER]:
[COMPONENTS]
	</notification>
	<notification label="取代現有的附件" name="ReplaceAttachment">
		There is already an object attached to this point on your body.
Do you want to replace it with the selected object?
		<form name="form">
			<ignore name="ignore" text="以所選擇的物品取代現有的附加物"/>
			<button ignore="自動取代" name="Yes" text="確定"/>
			<button ignore="絕不取代" name="No" text="取消"/>
		</form>
	</notification>
	<notification label="忙碌模式警告" name="BusyModePay">
		You are in Busy Mode, which means you will not receive any items offered in exchange for this payment.

Would you like to leave Busy Mode before completing this transaction?
		<form name="form">
			<ignore name="ignore" text="當我在忙碌模式時,將要支付金錢或給他人物件"/>
			<button ignore="總是離開忙碌模式" name="Yes" text="確定"/>
			<button ignore="絕不離開忙碌模式" name="No" text="取消"/>
		</form>
	</notification>
	<notification name="ConfirmDeleteProtectedCategory">
		資料夾 &apos;[FOLDERNAME]&apos; 是系統資料夾。刪除系統資料夾將導致不穩定。你確定你要刪除它?
		<usetemplate ignoretext="在我刪除系統資料夾前確認" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmEmptyTrash">
		你確定你要對你垃圾筒中的內容進行刪除?
		<usetemplate ignoretext="在我清空收納區垃圾筒資料夾前確認" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmClearBrowserCache">
		你確定要刪除你的旅行、網頁及搜尋歷史紀錄嗎?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmClearCookies">
		你確定要清除你的 cookies 嗎?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="是"/>
	</notification>
	<notification name="ConfirmClearMediaUrlList">
		你確定要清除你所儲存的 Url 清單嗎?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="是"/>
	</notification>
	<notification name="ConfirmEmptyLostAndFound">
		你確定你要進行刪除所有 Lost And Found 資料夾中的內容?
		<usetemplate ignoretext="在我清空收納區中的 Lost And Found 資料夾前進行確認" name="okcancelignore" notext="否" yestext="是"/>
	</notification>
	<notification name="CopySLURL">
		下列的 SLurl 位置已經覆製到你的剪貼簿上:
 [SLURL]

Link to this from a web page to give others easy access to this location, or try it out yourself by pasting it into the address bar of any web browser.
		<form name="form">
			<ignore name="ignore" text="SLurl 已經覆製到我的剪貼簿。"/>
		</form>
	</notification>
	<notification name="WLSavePresetAlert">
		你要覆寫已儲存的預設配置嗎?
		<usetemplate name="okcancelbuttons" notext="否" yestext="是"/>
	</notification>
	<notification name="WLDeletePresetAlert">
		你要刪除 [SKY]?
		<usetemplate name="okcancelbuttons" notext="否" yestext="是"/>
	</notification>
	<notification name="WLNoEditDefault">
		You cannot edit or delete a default preset.
	</notification>
	<notification name="WLMissingSky">
		This day cycle file references a missing sky file: [SKY].
	</notification>
	<notification name="PPSaveEffectAlert">
		PostProcess Effect exists. Do you still wish overwrite it?
		<usetemplate name="okcancelbuttons" notext="否" yestext="是"/>
	</notification>
	<notification name="NewSkyPreset">
		Give me a name for the new sky.
		<form name="form">
			<input name="message">
				新預設配配置
			</input>
			<button name="OK" text="確定"/>
			<button name="Cancel" text="取消"/>
		</form>
	</notification>
	<notification name="ExistsSkyPresetAlert">
		Preset already exists!
	</notification>
	<notification name="NewWaterPreset">
		Give me a name for the new water preset.
		<form name="form">
			<input name="message">
				New Preset
			</input>
			<button name="OK" text="確定"/>
			<button name="Cancel" text="取消"/>
		</form>
	</notification>
	<notification name="ExistsWaterPresetAlert">
		Preset already exists!
	</notification>
	<notification name="WaterNoEditDefault">
		You cannot edit or delete a default preset.
	</notification>
	<notification name="ChatterBoxSessionStartError">
		無法開始一個與 [RECIPIENT] 他的新聊天會話。
[REASON]
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="ChatterBoxSessionEventError">
		[EVENT]
[REASON]
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="ForceCloseChatterBoxSession">
		你與 [NAME] 的聊天會話必須關閉。
[REASON]
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="Cannot_Purchase_an_Attachment">
		You can&apos;t buy an object while it is attached.
	</notification>
	<notification label="About Requests for the Debit Permission" name="DebitPermissionDetails">
		Granting this request gives a script ongoing permission to take Linden dollars (L$) from your account. To revoke this permission, the object owner must delete the object or reset the scripts in the object.
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="AutoWearNewClothing">
		你要自動穿上你所創造的服裝嗎?
		<usetemplate ignoretext="編輯外觀時能穿上我所創造的服裝" name="okcancelignore" notext="否" yestext="是"/>
	</notification>
	<notification name="NotAgeVerified">
		You must be age-verified to visit this area.  Do you want to go to the [SECOND_LIFE] website and verify your age?

[_URL]
		<url name="url">
			https://secondlife.com/account/verification.php
		</url>
		<usetemplate ignoretext="I have not verified my age" name="okcancelignore" notext="否" yestext="是"/>
	</notification>
	<notification name="Cannot enter parcel: no payment info on file">
		You must have payment information on file to visit this area.  Do you want to go to the [SECOND_LIFE] website and set this up?

[_URL]
		<url name="url">
			https://secondlife.com/account/
		</url>
		<usetemplate ignoretext="I lack payment information on file" name="okcancelignore" notext="否" yestext="是"/>
	</notification>
	<notification name="MissingString">
		The string [STRING_NAME] is missing from strings.xml
	</notification>
	<notification name="SystemMessageTip">
		[MESSAGE]
	</notification>
	<notification name="IMSystemMessageTip">
		[MESSAGE]
	</notification>
	<notification name="Cancelled">
		已取消
	</notification>
	<notification name="CancelledSit">
		取消坐下
	</notification>
	<notification name="CancelledAttach">
		取消貼上
	</notification>
	<notification name="ReplacedMissingWearable">
		Replaced missing clothing/body part with default.
	</notification>
	<notification name="GroupNotice">
		Topic: [SUBJECT], Message: [MESSAGE]
	</notification>
	<notification name="FriendOnline">
		[NAME] 上線
	</notification>
	<notification name="FriendOffline">
		[NAME] 離線
	</notification>
	<notification name="AddSelfFriend">
		Although you&apos;re very nice, you can&apos;t add yourself as a friend.
	</notification>
	<notification name="UploadingAuctionSnapshot">
		Uploading in-world and web site snapshots...
(Takes about 5 minutes.)
	</notification>
	<notification name="UploadPayment">
		你支付 L$[AMOUNT] 上傳。
	</notification>
	<notification name="UploadWebSnapshotDone">
		Web site snapshot upload done.
	</notification>
	<notification name="UploadSnapshotDone">
		In-world snapshot upload done
	</notification>
	<notification name="TerrainDownloaded">
		地形 .raw 檔已下載
	</notification>
	<notification name="GestureMissing">
		嗯,姿勢 [NAME] 在資料庫中遺失。
	</notification>
	<notification name="UnableToLoadGesture">
		無法載入姿勢 [NAME]。
	</notification>
	<notification name="LandmarkMissing">
		資料庫中的地標遺失。
	</notification>
	<notification name="UnableToLoadLandmark">
		無法載入地標,請再試一次。
	</notification>
	<notification name="CapsKeyOn">
		你的大寫鍵已啟用。
這將可能會影響到你輸入的密碼。
	</notification>
	<notification name="NotecardMissing">
		記事卡在資料庫中遺失。
	</notification>
	<notification name="NotecardNoPermissions">
		你並沒有權限去察看這個記事卡。
	</notification>
	<notification name="RezItemNoPermissions">
		產生物件時發生權限衝突。
	</notification>
	<notification name="UnableToLoadNotecard">
		無法載入記事卡。
請再試一次。
	</notification>
	<notification name="ScriptMissing">
		腳本在資料庫中遺失。
	</notification>
	<notification name="ScriptNoPermissions">
		察看腳本時發生權限衝突。
	</notification>
	<notification name="UnableToLoadScript">
		無法載入腳本。請再試一次。
	</notification>
	<notification name="IncompleteInventory">
		The complete contents you are offering are not yet locally available. Please try offering those items again in a minute.
	</notification>
	<notification name="CannotModifyProtectedCategories">
		You cannot modify protected categories.
	</notification>
	<notification name="CannotRemoveProtectedCategories">
		You cannot remove protected categories.
	</notification>
	<notification name="UnableToBuyWhileDownloading">
		Unable to buy while downloading object data.
Please try again.
	</notification>
	<notification name="UnableToLinkWhileDownloading">
		Unable to link while downloading object data.
Please try again.
	</notification>
	<notification name="CannotBuyObjectsFromDifferentOwners">
		You can only buy objects from one owner at a time.
Please select a single object.
	</notification>
	<notification name="ObjectNotForSale">
		這物件不出售。
	</notification>
	<notification name="EnteringGodMode">
		進入神之模式中,等級 [LEVEL]
	</notification>
	<notification name="LeavingGodMode">
		現在離開神之模式,等級 [LEVEL]
	</notification>
	<notification name="CopyFailed">
		你並沒有權限去覆製這個。
	</notification>
	<notification name="InventoryAccepted">
		[NAME] 接收到你提供的收納區物品。
	</notification>
	<notification name="InventoryDeclined">
		[NAME] 謝絕你提供的收納區物品。
	</notification>
	<notification name="ObjectMessage">
		[NAME]: [MESSAGE]
	</notification>
	<notification name="CallingCardAccepted">
		你的名片已被接受。
	</notification>
	<notification name="CallingCardDeclined">
		你的名片已被拒絕。
	</notification>
	<notification name="TeleportToLandmark">
		You can teleport to locations like &apos;[NAME]&apos; by opening the Places panel on the right side of your screen, and then select the Landmarks tab.
Click on any landmark to select it, then click &apos;Teleport&apos; at the bottom of the panel.
(You can also double-click on the landmark, or right-click it and choose &apos;Teleport&apos;.)
	</notification>
	<notification name="TeleportToPerson">
		You can contact Residents like &apos;[NAME]&apos; by opening the People panel on the right side of your screen.
Select the Resident from the list, then click &apos;IM&apos; at the bottom of the panel.
(You can also double-click on their name in the list, or right-click and choose &apos;IM&apos;).
	</notification>
	<notification name="CantSelectLandFromMultipleRegions">
		Can&apos;t select land across server boundaries.
Try selecting a smaller piece of land.
	</notification>
	<notification name="SearchWordBanned">
		Some terms in your search query were excluded due to content restrictions as clarified in the Community Standards.
	</notification>
	<notification name="NoContentToSearch">
		Please select at least one type of content to search (General, Moderate, or Adult).
	</notification>
	<notification name="SystemMessage">
		[MESSAGE]
	</notification>
	<notification name="PaymentReceived">
		[MESSAGE]
	</notification>
	<notification name="PaymentSent">
		[MESSAGE]
	</notification>
	<notification name="EventNotification">
		活動通知:

[NAME]
[DATE]
		<form name="form">
			<button name="Details" text="細節"/>
			<button name="Cancel" text="取消"/>
		</form>
	</notification>
	<notification name="TransferObjectsHighlighted">
		All objects on this parcel that will transfer to the purchaser of this parcel are now highlighted.

* Trees and grasses that will transfer are not highlighted.
		<form name="form">
			<button name="Done" text="Done"/>
		</form>
	</notification>
	<notification name="DeactivatedGesturesTrigger">
		Deactivated gestures with same trigger:
[NAMES]
	</notification>
	<notification name="NoQuickTime">
		Apple&apos;s QuickTime software does not appear to be installed on your system.
If you want to view streaming media on parcels that support it you should go to the [http://www.apple.com/quicktime QuickTime site] and install the QuickTime Player.
	</notification>
	<notification name="NoPlugin">
		No Media Plugin was found to handle the &quot;[MIME_TYPE]&quot; mime type.  Media of this type will be unavailable.
	</notification>
	<notification name="MediaPluginFailed">
		The following Media Plugin has failed:
    [PLUGIN]

Please re-install the plugin or contact the vendor if you continue to experience problems.
		<form name="form">
			<ignore name="ignore" text="A Media Plugin fails to run"/>
		</form>
	</notification>
	<notification name="OwnedObjectsReturned">
		The objects you own on the selected parcel of land have been returned back to your inventory.
	</notification>
	<notification name="OtherObjectsReturned">
		The objects on the selected parcel of land that is owned by [NAME] have been returned to his or her inventory.
	</notification>
	<notification name="OtherObjectsReturned2">
		The objects on the selected parcel of land owned by the Resident &apos;[NAME]&apos; have been returned to their owner.
	</notification>
	<notification name="GroupObjectsReturned">
		The objects on the selected parcel of land shared with the group [GROUPNAME] have been returned back to their owner&apos;s inventory.
Transferable deeded objects have been returned to their previous owners.
Non-transferable objects that are deeded to the group have been deleted.
	</notification>
	<notification name="UnOwnedObjectsReturned">
		The objects on the selected parcel that are NOT owned by you have been returned to their owners.
	</notification>
	<notification name="ServerObjectMessage">
		Message from [NAME]:
&lt;nolink&gt;[MSG]&lt;/nolink&gt;
	</notification>
	<notification name="NotSafe">
		This land has damage enabled.
You can be hurt here. If you die, you will be teleported to your home location.
	</notification>
	<notification name="NoFly">
		這區域關閉並禁止飛行。
你不能在此處飛行。
	</notification>
	<notification name="PushRestricted">
		This area does not allow pushing. You can&apos;t push others here unless you own the land.
	</notification>
	<notification name="NoVoice">
		This area has voice chat disabled. You won&apos;t be able to hear anyone talking.
	</notification>
	<notification name="NoBuild">
		This area has building disabled. You can&apos;t build or rez objects here.
	</notification>
	<notification name="ScriptsStopped">
		An administrator has temporarily stopped scripts in this region.
	</notification>
	<notification name="ScriptsNotRunning">
		This region is not running any scripts.
	</notification>
	<notification name="NoOutsideScripts">
		This land has outside scripts disabled.

No scripts will work here except those belonging to the land owner.
	</notification>
	<notification name="ClaimPublicLand">
		You can only claim public land in the Region you&apos;re in.
	</notification>
	<notification name="RegionTPAccessBlocked">
		You aren&apos;t allowed in that Region due to your maturity Rating. You may need to validate your age and/or install the latest Viewer.

Please go to the Knowledge Base for details on accessing areas with this maturity Rating.
	</notification>
	<notification name="URBannedFromRegion">
		You are banned from the region.
	</notification>
	<notification name="NoTeenGridAccess">
		Your account cannot connect to this teen grid region.
	</notification>
	<notification name="ImproperPaymentStatus">
		You do not have proper payment status to enter this region.
	</notification>
	<notification name="MustGetAgeRgion">
		你必須通過年齡認證以進入這地區。
	</notification>
	<notification name="MustGetAgeParcel">
		你必須通過年齡驗證以進入這地段。
	</notification>
	<notification name="NoDestRegion">
		無目的地地區發現。
	</notification>
	<notification name="NotAllowedInDest">
		You are not allowed into the destination.
	</notification>
	<notification name="RegionParcelBan">
		Cannot region cross into banned parcel. Try another way.
	</notification>
	<notification name="TelehubRedirect">
		You have been redirected to a telehub.
	</notification>
	<notification name="CouldntTPCloser">
		Could not teleport closer to destination.
	</notification>
	<notification name="TPCancelled">
		瞬間傳送已取消。
	</notification>
	<notification name="FullRegionTryAgain">
		The region you are attempting to enter is currently full.
Please try again in a few moments.
	</notification>
	<notification name="GeneralFailure">
		一般故障。
	</notification>
	<notification name="RoutedWrongRegion">
		路由導向到錯誤地區。請再試一次。
	</notification>
	<notification name="NoValidAgentID">
		No valid agent id.
	</notification>
	<notification name="NoValidSession">
		No valid session id.
	</notification>
	<notification name="NoValidCircuit">
		No valid circuit code.
	</notification>
	<notification name="NoValidTimestamp">
		No valid timestamp.
	</notification>
	<notification name="NoPendingConnection">
		Unable to create pending connection.
	</notification>
	<notification name="InternalUsherError">
		Internal error attempting to connect agent usher.
	</notification>
	<notification name="NoGoodTPDestination">
		Unable to find a good teleport destination in this region.
	</notification>
	<notification name="InternalErrorRegionResolver">
		Internal error attempting to activate region resolver.
	</notification>
	<notification name="NoValidLanding">
		A valid landing point could not be found.
	</notification>
	<notification name="NoValidParcel">
		No valid parcel could be found.
	</notification>
	<notification name="ObjectGiveItem">
		An object named &lt;nolink&gt;[OBJECTFROMNAME]&lt;/nolink&gt; owned by [NAME_SLURL] has given you this [OBJECTTYPE]:
[ITEM_SLURL]
		<form name="form">
			<button name="Keep" text="Keep"/>
			<button name="Discard" text="Discard"/>
			<button name="Mute" text="Block"/>
		</form>
	</notification>
	<notification name="UserGiveItem">
		[NAME_SLURL] has given you this [OBJECTTYPE]:
[ITEM_SLURL]
		<form name="form">
			<button name="Show" text="Show"/>
			<button name="Discard" text="Discard"/>
			<button name="Mute" text="Block"/>
		</form>
	</notification>
	<notification name="GodMessage">
		[NAME]

[MESSAGE]
	</notification>
	<notification name="JoinGroup">
		[MESSAGE]
		<form name="form">
			<button name="Join" text="加入"/>
			<button name="Decline" text="謝絕"/>
			<button name="Info" text="資訊"/>
		</form>
	</notification>
	<notification name="TeleportOffered">
		[NAME_SLURL] has offered to teleport you to their location:

[MESSAGE] - [MATURITY_STR] &lt;icon&gt;[MATURITY_ICON]&lt;/icon&gt;
		<form name="form">
			<button name="Teleport" text="瞬間傳送"/>
			<button name="Cancel" text="取消"/>
		</form>
	</notification>
	<notification name="TeleportOfferSent">
		Teleport offer sent to [TO_NAME]
	</notification>
	<notification name="GotoURL">
		[MESSAGE]
[URL]
		<form name="form">
			<button name="Later" text="稍候"/>
			<button name="GoNow..." text="立即前往..."/>
		</form>
	</notification>
	<notification name="OfferFriendship">
		[NAME_SLURL] is offering friendship.

[MESSAGE]

(By default, you will be able to see each other&apos;s online status.)
		<form name="form">
			<button name="Accept" text="接受"/>
			<button name="Decline" text="謝絕"/>
		</form>
	</notification>
	<notification name="FriendshipOffered">
		You have offered friendship to [TO_NAME]
	</notification>
	<notification name="OfferFriendshipNoMessage">
		[NAME_SLURL] is offering friendship.

(By default, you will be able to see each other&apos;s online status.)
		<form name="form">
			<button name="Accept" text="接受"/>
			<button name="Decline" text="謝絕"/>
		</form>
	</notification>
	<notification name="FriendshipAccepted">
		[NAME] accepted your friendship offer.
	</notification>
	<notification name="FriendshipDeclined">
		[NAME] 謝絕你的交友邀請。
	</notification>
	<notification name="FriendshipAcceptedByMe">
		交友邀請被接受。
	</notification>
	<notification name="FriendshipDeclinedByMe">
		交友邀請被謝絕。
	</notification>
	<notification name="OfferCallingCard">
		[NAME] is offering their calling card.
This will add a bookmark in your inventory so you can quickly IM this Resident.
		<form name="form">
			<button name="Accept" text="接受"/>
			<button name="Decline" text="謝絕"/>
		</form>
	</notification>
	<notification name="RegionRestartMinutes">
		This region will restart in [MINUTES] minutes.
If you stay in this region you will be logged out.
	</notification>
	<notification name="RegionRestartSeconds">
		This region will restart in [SECONDS] seconds.
If you stay in this region you will be logged out.
	</notification>
	<notification name="LoadWebPage">
		載入網頁 [URL]?

[MESSAGE]

From object: &lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;, owner: [NAME]?
		<form name="form">
			<button name="Gotopage" text="前往頁面"/>
			<button name="Cancel" text="取消"/>
		</form>
	</notification>
	<notification name="FailedToFindWearableUnnamed">
		Failed to find [TYPE] in database.
	</notification>
	<notification name="FailedToFindWearable">
		Failed to find [TYPE] named [DESC] in database.
	</notification>
	<notification name="InvalidWearable">
		The item you are trying to wear uses a feature that your Viewer can&apos;t read. Please upgrade your version of [APP_NAME] to wear this item.
	</notification>
	<notification name="ScriptQuestion">
		&apos;&lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;&apos;, an object owned by &apos;[NAME]&apos;, would like to:

[QUESTIONS]
Is this OK?
		<form name="form">
			<button name="Yes" text="是"/>
			<button name="No" text="否"/>
			<button name="Mute" text="Block"/>
		</form>
	</notification>
	<notification name="ScriptQuestionCaution">
		An object named &apos;&lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;&apos;, owned by &apos;[NAME]&apos; would like to:

[QUESTIONS]
If you do not trust this object and its creator, you should deny the request.

Grant this request?
		<form name="form">
			<button name="Grant" text="Grant"/>
			<button name="Deny" text="Deny"/>
			<button name="Details" text="細節..."/>
		</form>
	</notification>
	<notification name="ScriptDialog">
		[NAME]&apos;s &apos;&lt;nolink&gt;[TITLE]&lt;/nolink&gt;&apos;
[MESSAGE]
		<form name="form">
			<button name="Ignore" text="忽視"/>
		</form>
	</notification>
	<notification name="ScriptDialogGroup">
		[GROUPNAME]&apos;s &apos;&lt;nolink&gt;[TITLE]&lt;/nolink&gt;&apos;
[MESSAGE]
		<form name="form">
			<button name="Ignore" text="忽視"/>
		</form>
	</notification>
	<notification name="BuyLindenDollarSuccess">
		Thank you for your payment!

Your L$ balance will be updated when processing completes. If processing takes more than 20 mins, your transaction may be cancelled. In that case, the purchase amount will be credited to your US$ balance.

The status of your payment can be checked on your Transaction History page on your [http://secondlife.com/account/ Dashboard]
	</notification>
	<notification name="FirstOverrideKeys">
		Your movement keys are now being handled by an object.
Try the arrow keys or AWSD to see what they do.
Some objects (like guns) require you to go into mouselook  to use them.
Press &apos;M&apos; to do this.
	</notification>
	<notification name="FirstSandbox">
		This is a sandbox area, and is meant to help Residents learn how to build.

Things you build here will be deleted after you leave, so don&apos;t forget to right-click and choose &apos;Take&apos; to move your creation to your Inventory.
	</notification>
	<notification name="MaxListSelectMessage">
		You may only select up to [MAX_SELECT] items from this list.
	</notification>
	<notification name="VoiceInviteP2P">
		[NAME] is inviting you to a Voice Chat call.
Click Accept to join the call or Decline to decline the invitation. Click Block to block this caller.
		<form name="form">
			<button name="Accept" text="接受"/>
			<button name="Decline" text="謝絕"/>
			<button name="Mute" text="Block"/>
		</form>
	</notification>
	<notification name="AutoUnmuteByIM">
		[NAME] was sent an instant message and has been automatically unblocked.
	</notification>
	<notification name="AutoUnmuteByMoney">
		[NAME] was given money and has been automatically unblocked.
	</notification>
	<notification name="AutoUnmuteByInventory">
		[NAME] was offered inventory and has been automatically unblocked.
	</notification>
	<notification name="VoiceInviteGroup">
		[NAME] has joined a Voice Chat call with the group [GROUP].
Click Accept to join the call or Decline to decline the invitation. Click Block to block this caller.
		<form name="form">
			<button name="Accept" text="接受"/>
			<button name="Decline" text="謝絕"/>
			<button name="Mute" text="Block"/>
		</form>
	</notification>
	<notification name="VoiceInviteAdHoc">
		[NAME] has joined a voice chat call with a conference chat.
Click Accept to join the call or Decline to decline the invitation. Click Block to block this caller.
		<form name="form">
			<button name="Accept" text="接受"/>
			<button name="Decline" text="謝絕"/>
			<button name="Mute" text="Block"/>
		</form>
	</notification>
	<notification name="InviteAdHoc">
		[NAME] is inviting you to a conference chat.
Click Accept to join the chat or Decline to decline the invitation. Click Block to block this caller.
		<form name="form">
			<button name="Accept" text="接受"/>
			<button name="Decline" text="謝絕"/>
			<button name="Mute" text="Block"/>
		</form>
	</notification>
	<notification name="VoiceChannelFull">
		The voice call you are trying to join, [VOICE_CHANNEL_NAME], has reached maximum capacity. Please try again later.
	</notification>
	<notification name="ProximalVoiceChannelFull">
		We&apos;re sorry.  This area has reached maximum capacity for voice conversations.  Please try to use voice in another area.
	</notification>
	<notification name="VoiceChannelDisconnected">
		You have been disconnected from [VOICE_CHANNEL_NAME].  You will now be reconnected to Nearby Voice Chat.
	</notification>
	<notification name="VoiceChannelDisconnectedP2P">
		[VOICE_CHANNEL_NAME] has ended the call.  You will now be reconnected to Nearby Voice Chat.
	</notification>
	<notification name="P2PCallDeclined">
		[VOICE_CHANNEL_NAME] has declined your call.  You will now be reconnected to Nearby Voice Chat.
	</notification>
	<notification name="P2PCallNoAnswer">
		[VOICE_CHANNEL_NAME] is not available to take your call.  You will now be reconnected to Nearby Voice Chat.
	</notification>
	<notification name="VoiceChannelJoinFailed">
		Failed to connect to [VOICE_CHANNEL_NAME], please try again later.  You will now be reconnected to Nearby Voice Chat.
	</notification>
	<notification name="VoiceLoginRetry">
		We are creating a voice channel for you. This may take up to one minute.
	</notification>
	<notification name="VoiceEffectsExpired">
		One or more of your subscribed Voice Morphs has expired.
[[URL] Click here] to renew your subscription.
	</notification>
	<notification name="VoiceEffectsExpiredInUse">
		The active Voice Morph has expired, your normal voice settings have been applied.
[[URL] Click here] to renew your subscription.
	</notification>
	<notification name="VoiceEffectsWillExpire">
		One or more of your Voice Morphs will expire in less than [INTERVAL] days.
[[URL] Click here] to renew your subscription.
	</notification>
	<notification name="VoiceEffectsNew">
		New Voice Morphs are available!
	</notification>
	<notification name="Cannot enter parcel: not a group member">
		Only members of a certain group can visit this area.
	</notification>
	<notification name="Cannot enter parcel: banned">
		Cannot enter parcel, you have been banned.
	</notification>
	<notification name="Cannot enter parcel: not on access list">
		Cannot enter parcel, you are not on the access list.
	</notification>
	<notification name="VoiceNotAllowed">
		You do not have permission to connect to voice chat for [VOICE_CHANNEL_NAME].
	</notification>
	<notification name="VoiceCallGenericError">
		An error has occurred while trying to connect to voice chat for [VOICE_CHANNEL_NAME].  Please try again later.
	</notification>
	<notification name="UnsupportedCommandSLURL">
		你所點擊的 SLurl 位置並不被支援。
	</notification>
	<notification name="BlockedSLURL">
		A SLurl was received from an untrusted browser and has been blocked for your security.
	</notification>
	<notification name="ThrottledSLURL">
		Multiple SLurls were received from an untrusted browser within a short period.
They will be blocked for a few seconds for your security.
	</notification>
	<notification name="IMToast">
		[MESSAGE]
		<form name="form">
			<button name="respondbutton" text="回應"/>
		</form>
	</notification>
	<notification name="ConfirmCloseAll">
		你確定要關閉全部 IMs 對話視窗?
		<usetemplate ignoretext="在我關閉全部的 IMs 對話視窗前確認。" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="AttachmentSaved">
		附件已儲存。
	</notification>
	<notification name="UnableToFindHelpTopic">
		Unable to find the help topic for this element.
	</notification>
	<notification name="ObjectMediaFailure">
		Server Error: Media update or get failed.
&apos;[ERROR]&apos;
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="TextChatIsMutedByModerator">
		Your text chat has been muted by moderator.
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="VoiceIsMutedByModerator">
		Your voice has been muted by moderator.
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="ConfirmClearTeleportHistory">
		Are you sure you want to delete your teleport history?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="BottomTrayButtonCanNotBeShown">
		Selected button can not be shown right now.
The button will be shown when there is enough space for it.
	</notification>
	<notification name="ShareNotification">
		Select residents to share with.
	</notification>
	<notification name="ShareItemsConfirmation">
		Are you sure you want to share the following items:

&lt;nolink&gt;[ITEMS]&lt;/nolink&gt;

With the following Residents:

[RESIDENTS]
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ItemsShared">
		物品已成功分享。
	</notification>
	<notification name="DeedToGroupFail">
		讓渡給群組失敗。
	</notification>
	<notification name="AvatarRezNotification">
		( [EXISTENCE] seconds alive )
Avatar &apos;[NAME]&apos; declouded after [TIME] seconds.
	</notification>
	<notification name="AvatarRezSelfBakedDoneNotification">
		( [EXISTENCE] seconds alive )
You finished baking your outfit after [TIME] seconds.
	</notification>
	<notification name="AvatarRezSelfBakedUpdateNotification">
		( [EXISTENCE] seconds alive )
You sent out an update of your appearance after [TIME] seconds.
[STATUS]
	</notification>
	<notification name="AvatarRezCloudNotification">
		( [EXISTENCE] seconds alive )
Avatar &apos;[NAME]&apos; became cloud.
	</notification>
	<notification name="AvatarRezArrivedNotification">
		( [EXISTENCE] seconds alive )
Avatar &apos;[NAME]&apos; appeared.
	</notification>
	<notification name="AvatarRezLeftCloudNotification">
		( [EXISTENCE] seconds alive )
Avatar &apos;[NAME]&apos; left after [TIME] seconds as cloud.
	</notification>
	<notification name="AvatarRezEnteredAppearanceNotification">
		( [EXISTENCE] seconds alive )
Avatar &apos;[NAME]&apos; entered appearance mode.
	</notification>
	<notification name="AvatarRezLeftAppearanceNotification">
		( [EXISTENCE] seconds alive )
Avatar &apos;[NAME]&apos; left appearance mode.
	</notification>
	<notification name="NoConnect">
		We&apos;re having trouble connecting using [PROTOCOL] [HOSTID].
Please check your network and firewall setup.
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="NoVoiceConnect">
		We&apos;re having trouble connecting to your voice server:

[HOSTID]

Voice communications will not be available.
Please check your network and firewall setup.
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="AvatarRezLeftNotification">
		( [EXISTENCE] seconds alive )
Avatar &apos;[NAME]&apos; left as fully loaded.
	</notification>
	<notification name="AvatarRezSelfBakedTextureUploadNotification">
		( [EXISTENCE] seconds alive )
You uploaded a [RESOLUTION] baked texture for &apos;[BODYREGION]&apos; after [TIME] seconds.
	</notification>
	<notification name="AvatarRezSelfBakedTextureUpdateNotification">
		( [EXISTENCE] seconds alive )
You locally updated a [RESOLUTION] baked texture for &apos;[BODYREGION]&apos; after [TIME] seconds.
	</notification>
	<notification name="ConfirmLeaveCall">
		你確定要離開這段通話?
		<usetemplate ignoretext="我結束通話前進行確認" name="okcancelignore" notext="否" yestext="是"/>
	</notification>
	<notification name="ConfirmMuteAll">
		You have selected to mute all participants in a group call.
This will also cause all residents that later join the call to be
muted, even after you have left the call.

Mute everyone?
		<usetemplate ignoretext="在我對所有群組通話的參與者予以靜音前確認" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification label="聊天" name="HintChat">
		To join the conversation, type into the chat field below.
	</notification>
	<notification label="Stand" name="HintSit">
		To stand up and exit the sitting position, click the Stand button.
	</notification>
	<notification label="Speak" name="HintSpeak">
		Click the Speak button to turn your microphone on and off.

Click on the up arrow to see the voice control panel.

Hiding the Speak button will disable the voice feature.
	</notification>
	<notification label="探索世界" name="HintDestinationGuide">
		The Destination Guide contains thousands of new places to discover. Select a location and choose Teleport to start exploring.
	</notification>
	<notification label="側邊欄" name="HintSidePanel">
		Get quick access to your inventory, outfits, profiles and more in the side panel.
	</notification>
	<notification label="移動" name="HintMove">
		To walk or run, open the Move Panel and use the directional arrows to navigate. You can also use the directional keys on your keyboard.
	</notification>
	<notification label="" name="HintMoveClick">
		1. Click to Walk
Click anywhere on the ground to walk to that spot.

2. Click and Drag to Rotate View
Click and drag anywhere on the world to rotate your view
	</notification>
	<notification label="顯示名稱" name="HintDisplayName">
		Set your customizable display name here. This is in addition to your unique username, which can&apos;t be changed. You can change how you see other people&apos;s names in your preferences.
	</notification>
	<notification label="View" name="HintView">
		To change your camera view, use the Orbit and Pan controls. Reset your view by pressing Escape or walking.
	</notification>
	<notification label="收納區" name="HintInventory">
		Check your inventory to find items. Newest items can be easily found in the Recent tab.
	</notification>
	<notification label="你得到林登幣!" name="HintLindenDollar">
		Here&apos;s your current balance of L$. Click Buy L$ to purchase more Linden Dollars.
	</notification>
	<notification name="PopupAttempt">
		一個突顯式視窗開啟時被阻擋。
		<form name="form">
			<ignore name="ignore" text="啟用全部的突顯式視窗"/>
			<button name="open" text="開啟突顯式視窗"/>
		</form>
	</notification>
	<notification name="AuthRequest">
		The site at &apos;&lt;nolink&gt;[HOST_NAME]&lt;/nolink&gt;&apos; in realm &apos;[REALM]&apos; requires a user name and password.
		<form name="form">
			<input name="username" text="User Name"/>
			<input name="password" text="Password"/>
			<button name="ok" text="Submit"/>
			<button name="cancel" text="取消"/>
		</form>
	</notification>
	<notification label="" name="ModeChange">
		改變劉覽器模式要求你必須結束退出並重新啟動。
		<usetemplate name="okcancelbuttons" notext="不要結束退出" yestext="結束退出"/>
	</notification>
	<notification label="" name="NoClassifieds">
		Creation and editing of Classifieds is only available in Advanced mode. Would you like to quit and change modes? The mode selector can be found on the login screen.
		<usetemplate name="okcancelbuttons" notext="不要結束退出" yestext="結束退出"/>
	</notification>
	<notification label="" name="NoGroupInfo">
		Creation and editing of Groups is only available in Advanced mode. Would you like to quit and change modes? The mode selector can be found on the login screen.
		<usetemplate name="okcancelbuttons" notext="不要結束退出" yestext="結束退出"/>
	</notification>
	<notification label="" name="NoPicks">
		Creation and editing of Picks is only available in Advanced mode. Would you like to quit and change modes? The mode selector can be found on the login screen.
		<usetemplate name="okcancelbuttons" notext="不要結束退出" yestext="結束退出"/>
	</notification>
	<notification label="" name="NoWorldMap">
		Viewing of the world map is only available in Advanced mode. Would you like to quit and change modes? The mode selector can be found on the login screen.
		<usetemplate name="okcancelbuttons" notext="不要結束退出" yestext="結束退出"/>
	</notification>
	<notification label="" name="NoVoiceCall">
		Voice calls are only available in Advanced mode. Would you like to logout and change modes?
		<usetemplate name="okcancelbuttons" notext="不要結束退出" yestext="結束退出"/>
	</notification>
	<notification label="" name="NoAvatarShare">
		Sharing is only available in Advanced mode. Would you like to logout and change modes?
		<usetemplate name="okcancelbuttons" notext="不要結束退出" yestext="結束退出"/>
	</notification>
	<notification label="" name="NoAvatarPay">
		Paying other residents is only available in Advanced mode. Would you like to logout and change modes?
		<usetemplate name="okcancelbuttons" notext="不要結束退出" yestext="結束退出"/>
	</notification>
	<global name="UnsupportedCPU">
		- 你的 CPU 運算速度未達到系統最低配備要求。
	</global>
	<global name="UnsupportedGLRequirements">
		You do not appear to have the proper hardware requirements for [APP_NAME]. [APP_NAME] requires an OpenGL graphics card that has multitexture support. If this is the case, you may want to make sure that you have the latest drivers for your graphics card, and service packs and patches for your operating system.

If you continue to have problems, please visit the [SUPPORT_SITE].
	</global>
	<global name="UnsupportedCPUAmount">
		796
	</global>
	<global name="UnsupportedRAMAmount">
		510
	</global>
	<global name="UnsupportedGPU">
		- 你的顯示卡未達系統最低配備要求。
	</global>
	<global name="UnsupportedRAM">
		- 你的系統記憶體卡未達系統最低配備要求。
	</global>
	<global name="You can only set your &apos;Home Location&apos; on your land or at a mainland Infohub.">
		若你擁有一塊土地,你可以標記它成為你的家的位置。
或者,你可以察看地圖尋找標記為 &quot;資訊中心&quot; 的地方。
	</global>
	<global name="You died and have been teleported to your home location">
		你已經死亡並且被瞬間傳送回你的家的位置。
	</global>
</notifications>