summaryrefslogtreecommitdiff
path: root/indra/newview/skins/default/xui/zh/notifications.xml
blob: e44b001fc70ac9d20e7257f0f467867887130de4 (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
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
<?xml version="1.0" encoding="utf-8"?>
<notifications>
	<global name="skipnexttime">
		不再顯示此提醒
	</global>
	<global name="skipnexttimesessiononly">
		不再對我顯示此內容
(僅限此次)
	</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="okhelpignore">
		<form>
			<button name="OK_okhelpignore" text="$yestext"/>
			<button name="Help_okhelpignore" 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">
		你的 [APP_NAME] 版本無法顯示它剛剛收到的通知。  請確定你安裝了最新版本的 Viewer。

錯誤詳情:在 notifications.xml 裡找不到名為「[_NAME]」的通知。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="FloaterNotFound">
		浮動視窗錯誤:找不到以下的控制:

[CONTROLS]
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="TutorialNotFound">
		目前尚無教學內容。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="GenericAlert">
		[MESSAGE]
	</notification>
	<notification name="GenericAlertYesCancel">
		[MESSAGE]
		<usetemplate name="okcancelbuttons" notext="取消" yestext="是"/>
	</notification>
	<notification name="GenericAlertOK">
		[MESSAGE]
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="BadInstallation">
		[APP_NAME] 更新時出錯。  請 [http://get.secondlife.com 下載] 最新版本的 Viewer。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="LoginFailedNoNetwork">
		無法連接到 [SECOND_LIFE_GRID]。
    ([DIAGNOSTIC])
請確定你的網路連線沒有問題。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="MessageTemplateNotFound">
		找不到訊息模板 [PATH]。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="WearableSave">
		除存變更到目前的衣服/身體部位?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="不要儲存" yestext="儲存"/>
	</notification>
	<notification name="ConfirmNoCopyToOutbox">
		你無權將至少一件物項複製到第二人生購物市集的發件匣。  你可以移動這些物項,或保留不動。
		<usetemplate name="okcancelbuttons" notext="保留不移動物項" yestext="移動物項"/>
	</notification>
	<notification name="OutboxFolderCreated">
		已經為你所轉移到商家發件匣頂層的每一個物項,各自建立了一個新資料夾。
		<usetemplate ignoretext="商家發件匣裡成功建立了一個新資料夾" name="okignore" yestext="確定"/>
	</notification>
	<notification name="OutboxImportComplete">
		成功

所有資料夾已成功送往第二人生購物市集。
		<usetemplate ignoretext="所有資料夾已送往第二人生購物市集" name="okignore" yestext="確定"/>
	</notification>
	<notification name="OutboxImportHadErrors">
		一部分的資料夾無法轉移

將一部分資料夾送往第二人生購物市集時出錯。  這些資料夾仍在你的商家發件匣。

詳情請參閱[[MARKETPLACE_IMPORTS_URL]錯誤記錄]。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="OutboxImportFailed">
		傳送失敗,錯誤碼  &apos;[ERROR_CODE]&apos;

未將任何資料夾送往第二人生購物市集,系統或網路出錯。  請稍候再試一次。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="OutboxInitFailed">
		購物市集初始化失敗,錯誤碼  &apos;[ERROR_CODE]&apos;

購物市集初始化失敗,系統或網路出錯。  請稍候再試一次。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="StockPasteFailed">
		複製或移到限量資料夾時發生問題:
        
        &apos;[ERROR_CODE]&apos;
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="MerchantPasteFailed">
		複製或移到 Marketplace 刊登時發生問題:
        
        &apos;[ERROR_CODE]&apos;
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="MerchantTransactionFailed">
		和Marketplace進行交易發生如下錯誤:
        
        [ERROR_REASON][ERROR_DESCRIPTION]
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="MerchantUnprocessableEntity">
		我們無法刊登這產品或啓用版本資料夾。 通常這是因為刊登內容表的資料不齊,但也可能因為資料夾結構有錯所致。 請編輯刊登內容或檢查刊登資料夾看是否有誤。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="MerchantListingFailed">
		刊登到 Marketplace 時,發生錯誤:
        
        &apos;[ERROR_CODE]&apos;
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="MerchantFolderActivationFailed">
		啓用此版本資料夾時發生錯誤:

        &apos;[ERROR_CODE]&apos;
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="MerchantForceValidateListing">
		為能建立你的刊登內容,我們修正了你刊登內容的層級架構。
		<usetemplate ignoretext="如果建立新的刊登時會修動內容物的層級架構,給我提醒" name="okignore" yestext="確定"/>
	</notification>
	<notification name="ConfirmMerchantActiveChange">
		這個動作會改變此刊登的內容。 你確定要繼續嗎?
		<usetemplate ignoretext="在我變更 Marketplace 的一項刊登內容之前,先跟我確認" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmMerchantMoveInventory">
		你拖曳到 Marketplace 刊登視窗的物項,會從原來的位置移出來,不會被複製。 你確定要繼續嗎?
		<usetemplate ignoretext="在我把物項從收納區移到 Marketplace 之前,先跟我確認" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmListingCutOrDelete">
		移動或刪除刊登資料夾將會刪除你的 Marketplace 刊登。 如你希望保留 Marketplace 刊登,請改而移動或刪除所想修改的版本資料夾的內容。 你確定要繼續嗎?
		<usetemplate ignoretext="在我把物項從 Marketplace 移出或刪除之前,先跟我確認" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmCopyToMarketplace">
		你無權將這些物項的一或多個複製到 Marketplace。 你可以移動這些物項,或保留不動。
		<usetemplate canceltext="取消" ignoretext="我試著選擇複製到 Marketplace 的內容如果含有「禁止複製」的物項,先向我確認" name="yesnocancelbuttons" notext="保留不移動物項" yestext="移動物項"/>
	</notification>
	<notification name="ConfirmMerchantUnlist">
		這動作會停登這個刊登。 你確定要繼續嗎?
		<usetemplate ignoretext="在我停登 Marketplace 的現有刊登內容前,先跟我確認" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmMerchantClearVersion">
		這個動作會停用此刊登的版本資料夾。 你確定要繼續嗎?
		<usetemplate ignoretext="在我停用 Marketplace 某項刊登的版本資料夾之前,先跟我確認。" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="AlertMerchantListingNotUpdated">
		這刊登無法更新。
[[URL] 點按這裡]即可在 Marketplace 進行編輯。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="AlertMerchantListingCannotWear">
		你不能穿戴位在 Marketplace 刊登資料夾裡的衣物或身體部位。
	</notification>
	<notification name="AlertMerchantListingInvalidID">
		無效的刊登 ID。
	</notification>
	<notification name="AlertMerchantListingActivateRequired">
		這個刊登有多個版本資料夾或缺少版本資料夾。 你事後必須選擇一個加以啓用。
		<usetemplate ignoretext="當我要新建帶有多個版本資料夾的刊登前,提醒我啓動一個版本資料夾" name="okignore" yestext="確定"/>
	</notification>
	<notification name="AlertMerchantStockFolderSplit">
		我們已經將不同類型的限量物項分開放置到不同的存量資料夾,這樣你的資料夾才能夠刊登。
		<usetemplate ignoretext="刊登前把限量資料夾一分為二時,告知我" name="okignore" yestext="確定"/>
	</notification>
	<notification name="AlertMerchantStockFolderEmpty">
		因為存量爲零,我們已經把你的刊登物下架。 你若希望重新刊登,必須先增加存量。
		<usetemplate ignoretext="限量資料夾如果成空、導致刊登物下架,告知我" name="okignore" yestext="確定"/>
	</notification>
	<notification name="AlertMerchantVersionFolderEmpty">
		因為版本資料夾是空的,我們已經把你的刊登物下架。 你若希望重新刊登,必須先新增物項到該版本資料夾。
		<usetemplate ignoretext="版本資料夾如果成空、導致刊登物下架,告知我" name="okignore" yestext="確定"/>
	</notification>
	<notification name="WriteAnimationFail">
		寫入動作資料時出錯。  請稍候再試一次。
	</notification>
	<notification name="UploadAuctionSnapshotFail">
		上傳拍賣快照時出問題,原因:[REASON]
	</notification>
	<notification name="UnableToViewContentsMoreThanOne">
		無法一次瀏覽多個項目的內容。
請只選擇一個物件,再試一次。
	</notification>
	<notification name="SaveClothingBodyChanges">
		儲存全部服裝或身體部位的變更?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="不要儲存" yestext="全部儲存"/>
	</notification>
	<notification name="FriendsAndGroupsOnly">
		不是朋友的人不會知道你選擇忽略他們的通話要求和即時訊息。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="FavoritesOnLogin">
		注意:你一旦同意這選項,任何使用這部電腦的人都可看到你有哪些「最愛」地點。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="GrantModifyRights">
		賦予另一居民「修改」權,將允許他更改、刪除或拿取你在虛擬世界裡擁有的任何物件。 賦予這項權限時,敬請慎重考慮。
你仍要賦予 [NAME] 修改權嗎?
		<usetemplate name="okcancelbuttons" notext="否" yestext="是"/>
	</notification>
	<notification name="GrantModifyRightsMultiple">
		賦予另一居民「修改」權,將允許他更改你在虛擬世界裡擁有的任何物件。 賦予這項權限時,敬請慎重考慮。
你仍要將修改權賦予所選居民嗎?
		<usetemplate name="okcancelbuttons" notext="否" yestext="是"/>
	</notification>
	<notification name="RevokeModifyRights">
		你要撤銷 [NAME] 的修改權嗎?
		<usetemplate name="okcancelbuttons" notext="否" yestext="是"/>
	</notification>
	<notification name="RevokeModifyRightsMultiple">
		你要撤銷所選居民的修改權嗎?
		<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">
		你即將賦予群組成員 [ROLE_NAME] 的角色。
成員一旦獲得此角色,你就不能自行撤銷。
成員必須自行離職才能撤銷這角色。
你確定你要繼續?
		<usetemplate ignoretext="在我添加一個新的群組所有人前再次確認" name="okcancelignore" notext="否" yestext="是"/>
	</notification>
	<notification name="AssignDangerousActionWarning">
		你即將把「[ACTION_NAME]」能力增加給「[ROLE_NAME]」角色。

 *警告*
 任何屬於帶有這能力的角色的成員,都可以賦予自己或任何人新的角色,因此得到比現在更多的權力,最終可能擁有近似「所有人」的權力。 賦予這項能力之前,敬請慎重考慮。

你仍要新增這項能力給「[ROLE_NAME]」?
		<usetemplate name="okcancelbuttons" notext="否" yestext="是"/>
	</notification>
	<notification name="AssignDangerousAbilityWarning">
		你即將把「[ACTION_NAME]」能力增加給「[ROLE_NAME]」角色。

 *警告*
 任何屬於帶有這能力的角色的成員,都可以將所有能力賦予自己或任何人,提升為近似「所有人」權力的層級。

你仍要新增這項能力給「[ROLE_NAME]」?
		<usetemplate name="okcancelbuttons" notext="否" yestext="是"/>
	</notification>
	<notification name="AssignBanAbilityWarning">
		你即將把「[ACTION_NAME]」能力增加給「[ROLE_NAME]」角色。

 *警告*
任何擔任帶有此能力的角色的成員,將連帶得到「[ACTION_NAME_2]」和「[ACTION_NAME_3]」能力。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="RemoveBanAbilityWarning">
		你即將剝除「[ROLE_NAME]」角色的「[ACTION_NAME]」能力。

 *警告*
剝除這個能力,將不連帶剝除「[ACTION_NAME_2]」和「[ACTION_NAME_3]」能力。
 
如果你不希望讓這個角色繼續擁有這些能力,請立即取消它們!
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="EjectGroupMemberWarning">
		你即將把 [AVATAR_NAME] 踢出群組。
		<usetemplate ignoretext="確定將某人踢出群組" name="okcancelignore" notext="取消" yestext="踢出"/>
	</notification>
	<notification name="EjectGroupMembersWarning">
		你即將把 [COUNT] 個人踢出群組。
		<usetemplate ignoretext="確定將多人踢出群組" name="okcancelignore" notext="取消" yestext="踢出"/>
	</notification>
	<notification name="BanGroupMemberWarning">
		你即將禁止[AVATAR_NAME]留在群組。
		<usetemplate ignoretext="確定禁止某人留在群組" name="okcancelignore" notext="取消" yestext="禁止"/>
	</notification>
	<notification name="BanGroupMembersWarning">
		你即將禁止[COUNT]個人留在群組。
		<usetemplate ignoretext="確定要禁止多名成員續留此群組" name="okcancelignore" notext="取消" yestext="禁止"/>
	</notification>
	<notification name="GroupBanUserOnBanlist">
		有些居民因為被封鎖所以沒有收到邀請。
	</notification>
	<notification name="AttachmentDrop">
		你即將卸除你的附件。
    你確定你要繼續?
		<usetemplate ignoretext="在丟下附件前確認" name="okcancelignore" notext="否" yestext="是"/>
	</notification>
	<notification name="JoinGroupCanAfford">
		加入此群組須花費 L$[COST]。
你確定要繼續嗎?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="加入"/>
	</notification>
	<notification name="JoinGroupNoCost">
		你即將加入&lt;nolink&gt;[NAME]&lt;/nolink&gt;群組。
你確定要繼續嗎?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="加入"/>
	</notification>
	<notification name="JoinGroupCannotAfford">
		加入此群組須花費 L$[COST]。
你的 L$ 不夠加入這群組。
	</notification>
	<notification name="CreateGroupCost">
		創立這個群組費用為 L$100。
群組需有至少兩位成員,否則將永久被刪除。
請在 48 小時內邀請成員加入。
		<usetemplate canceltext="取消" name="okcancelbuttons" notext="取消" yestext="花費 L$100 建立群組"/>
	</notification>
	<notification name="JoinGroupInaccessible">
		這群組不對你開放。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="JoinGroupError">
		處理你的群組成員請求時出錯。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="JoinGroupErrorReason">
		無法加入群組:[reason]
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="JoinGroupTrialUser">
		抱歉,試用的使用者無法加入群組。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="JoinGroupMaxGroups">
		你無法加入「&lt;nolink&gt;[group_name]&lt;/nolink&gt;」:
你目前已是[group_count]個群組的成員,最多允許[max_groups]個群組
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="JoinGroupClosedEnrollment">
		你無法加入「&lt;nolink&gt;[group_name]&lt;/nolink&gt;」:
該群組已不再開放加入。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="JoinGroupSuccess">
		你已獲加入群組。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="JoinGroupInsufficientFunds">
		無法轉移所需的L$ [membership_fee]會員費。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="LandBuyPass">
		花費 L$[COST],可進入「[PARCEL_NAME]」土地,停留 [TIME] 小時。  購買通行權?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="SalePriceRestriction">
		若是出售給任何人,售價必須超過 L$0。
如果售價定為 L$0,請選定一位出售對象。
	</notification>
	<notification name="ConfirmLandSaleChange">
		所選的 [LAND_SIZE] 平方公尺土地即將準備出售。
售價將為 L$[SALE_PRICE],並將經你授權出售給 [NAME]。
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmLandSaleToAnyoneChange">
		請注意:若點按「出售給任何人」,你的土地將允許整個 [SECOND_LIFE] 社群前來購買,包括此地區外的人。

所選的 [LAND_SIZE] 平方公尺土地即將準備出售。
售價將為 L$[SALE_PRICE],並將經你授權出售給 [NAME]。
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ReturnObjectsDeededToGroup">
		你確定要將和本土地地段的「&lt;nolink&gt;[NAME]&lt;/nolink&gt;」群組分享的所有物件送返到原所有人的收納區?

警告:這動作將會刪除原先讓渡給這群組的所有不可轉讓物件!

物件:[N]
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ReturnObjectsOwnedByUser">
		你確定要將本地段裡「[NAME]」居民所擁有的所有物件送返其收納區?

物件:[N]
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ReturnObjectsOwnedBySelf">
		你確定要將本地段裡你所擁有的所有物件送返你的收納區?

物件:[N]
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ReturnObjectsNotOwnedBySelf">
		你確定要將本地段裡不屬於你的所有物件送返其所有人的收納區?
先前讓渡給群組的可轉讓物件將送返給原物主。

警告:這動作將會刪除原先讓渡給這群組的所有不可轉讓物件!

物件:[N]
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ReturnObjectsNotOwnedByUser">
		你確定要將本地段裡不屬於 [NAME] 的所有物件送返其所有人的收納區?
先前讓渡給群組的可轉讓物件將送返給原物主。

警告:這動作將會刪除原先讓渡給這群組的所有不可轉讓物件!

物件:[N]
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ReturnAllTopObjects">
		你確定要將所列的所有物件送返其所有人的收納區? 這將送回這個地區全部的腳本物件!
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="DisableAllTopObjects">
		你確定要停用本地區裡所有物件?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ReturnObjectsNotOwnedByGroup">
		將本地段裡未和&lt;nolink&gt;[NAME]&lt;/nolink&gt;群組分享的物件送返給物主?

物件:[N]
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="UnableToDisableOutsideScripts">
		無法停用腳本。
這整個地區允許傷害。
腳本必須獲准執行,武器才有效。
	</notification>
	<notification name="MultipleFacesSelected">
		目前選擇了多個臉部。
如果你繼續,物件的多個臉部將有各自的媒體啟動。
若想只在一個臉部放置媒體,請「選擇臉部」,點按物件上你所要的臉部,再按「新增」。
		<usetemplate ignoretext="所選的多個臉部都將啟用各自的媒體。" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="MustBeInParcel">
		你必須站在地段上才能設定其登陸點。
	</notification>
	<notification name="PromptRecipientEmail">
		請輸入居民的有效的電郵地址。
	</notification>
	<notification name="PromptSelfEmail">
		請輸入你的電郵地址。
	</notification>
	<notification name="PromptMissingSubjMsg">
		用預設的電郵主旨或內文送出快照?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ErrorProcessingSnapshot">
		處理快照資料時出錯
	</notification>
	<notification name="ErrorEncodingSnapshot">
		為快照編碼時出錯。
	</notification>
	<notification name="ErrorPhotoCannotAfford">
		你需要L$[COST]才能把照片存入你的收納區。 你可以購買L$,或者不存入收納區,而把相片存到你的電腦。
	</notification>
	<notification name="ErrorTextureCannotAfford">
		你需要L$[COST]才能把材質存入你的收納區。 你可以購買L$,或者不存入收納區,而把相片存到你的電腦。
	</notification>
	<notification name="ErrorUploadingPostcard">
		發送快照時出問題,原因:[REASON]
	</notification>
	<notification name="ErrorUploadingReportScreenshot">
		上傳舉報用快照時出問題,原因:[REASON]
	</notification>
	<notification name="MustAgreeToLogIn">
		你必須同意Second Life使用條款、隱私政策、服務條款才可繼續登入[SECOND_LIFE]。
	</notification>
	<notification name="CouldNotPutOnOutfit">
		無法穿上裝扮。
裝扮資料夾裡沒有任何衣物、身體部位或附件。
	</notification>
	<notification name="CannotWearTrash">
		你不能穿戴垃圾桶裡的衣物或身體部位。
	</notification>
	<notification name="MaxAttachmentsOnOutfit">
		無法附加物件。
超過 [MAX_ATTACHMENTS] 項物件的附加上限。 請先卸除一個物件。
	</notification>
	<notification name="CannotWearInfoNotComplete">
		無法穿戴該物件,它尚未完成載入。 請稍候再試。
	</notification>
	<notification name="MustEnterPasswordToLogIn">
		請輸入密碼以便登入。
	</notification>
	<notification name="MustHaveAccountToLogIn">
		糟糕! 發現有內容留白。
你必須為化身輸入一個使用者名稱。

進入 [SECOND_LIFE] 需要一個帳號。 你現在要不要新建一個?
		<url name="url">
			[create_account_url]
		</url>
		<usetemplate name="okcancelbuttons" notext="再試一次" yestext="創造新帳戶"/>
	</notification>
	<notification name="InvalidCredentialFormat">
		你必須在「使用者名稱」欄位裡輸入使用者名稱,或輸入化身的名和姓,然後再登入。
	</notification>
	<notification name="InvalidGrid">
		&apos;[GRID]&apos; 不是有效的網格辨識元。
	</notification>
	<notification name="InvalidLocationSLURL">
		你的開始位置所指定的網格無效。
	</notification>
	<notification name="DeleteClassified">
		刪除個人廣告「[NAME]」?
已付費用恕不退回。
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="DeleteMedia">
		你選擇刪除置於這臉部的媒體。
你確定你要繼續?
		<usetemplate ignoretext="在我由一個部件中刪除媒體前確認" name="okcancelignore" notext="否" yestext="是"/>
	</notification>
	<notification name="ClassifiedSave">
		儲存個人廣告「[NAME]」的變更?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="不要儲存" yestext="儲存"/>
	</notification>
	<notification name="ClassifiedInsufficientFunds">
		金額不足,無法刊登個人廣告。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="DeleteAvatarPick">
		刪除精選位置&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">
		請選擇一個要察看的提議。
	</notification>
	<notification name="SelectHistoryItemToView">
		請選擇一個歷史紀錄物品去察看。
	</notification>
	<notification name="CacheWillClear">
		當你重新啟動 [APP_NAME] 後快取資料將會被清除。
	</notification>
	<notification name="CacheWillBeMoved">
		當你重新啟動 [APP_NAME] 後快取資料將被移動。
注意:這將會清除快取資料。
	</notification>
	<notification name="ChangeConnectionPort">
		重新啟動 [APP_NAME] 後將啟用新的埠設定。
	</notification>
	<notification name="ChangeDeferredDebugSetting">
		這個除錯設定將在重新啟動 [APP_NAME] 後啟用。
	</notification>
	<notification name="ChangeSkin">
		重新啟動 [APP_NAME] 後將顯現新的皮膚。
	</notification>
	<notification name="ChangeLanguage">
		重新啟動 [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">
		儲存變更?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="不要儲存" yestext="儲存"/>
	</notification>
	<notification name="DeleteNotecard">
		刪除記事卡?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="LoadPreviousReportScreenshot">
		你要使用之前的螢幕截圖來舉報嗎?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="GestureSaveFailedTooManySteps">
		姿勢儲存失敗。
這個姿勢步驟太多。
請去除一些步驟再儲存。
	</notification>
	<notification name="GestureSaveFailedTryAgain">
		姿勢儲存失敗。  請稍候再試。
	</notification>
	<notification name="GestureSaveFailedObjectNotFound">
		無法儲存姿勢,找不到該物件或所屬物件收納區。
該物件可能超出範圍或已被刪除。
	</notification>
	<notification name="GestureSaveFailedReason">
		儲存姿勢時出問題,原因:[REASON]。  請稍後再嘗試儲存姿勢。
	</notification>
	<notification name="SaveNotecardFailObjectNotFound">
		無法儲存記事卡,找不到該物件或所屬物件收納區。
該物件可能超出範圍或已被刪除。
	</notification>
	<notification name="SaveNotecardFailReason">
		儲存記事卡時出問題,原因:[REASON]。  請稍後再嘗試儲存記事卡。
	</notification>
	<notification name="ScriptCannotUndo">
		無法取消你這個版本腳本的變更。
是否從伺服器載入上次成功儲存的版本?
(*警告* 這動作無法還原。)
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="SaveScriptFailObjectNotFound">
		無法儲存腳本,找不到它所屬的物件。
該物件可能超出範圍或已被刪除。
	</notification>
	<notification name="StartRegionEmpty">
		你的起始地區尚未定義。
請在「開始位置」框裡輸入區域名,或選擇「我上一次位置」或「我的家」作為開始位置。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="CouldNotStartStopScript">
		無法啟動或停止腳本,找不到它所屬的物件。
該物件可能超出範圍或已被刪除。
	</notification>
	<notification name="CannotDownloadFile">
		無法下載檔案
	</notification>
	<notification label="" name="MediaFileDownloadUnsupported">
		你要求下載檔案,在 [SECOND_LIFE] 裡未支援這動作。
		<usetemplate ignoretext="如果下載的檔案不受支援,給我提醒" name="okignore" yestext="確定"/>
	</notification>
	<notification name="CannotWriteFile">
		無法寫入檔案 [[FILE]]
	</notification>
	<notification name="UnsupportedHardware">
		要告知你,你的電腦未達 [APP_NAME] 的最低系統需求。 你可能會發現電腦性能不佳。 很遺憾,[SUPPORT_SITE] 無法針對不支援的系統設置提供技術支援。

要造訪 [_URL] 獲取進一步資訊?
		<url name="url">
			http://www.secondlife.com/corporate/sysreqs.php
		</url>
		<usetemplate ignoretext="我的電腦硬體並不支援" name="okcancelignore" notext="否" yestext="是"/>
	</notification>
	<notification name="RunLauncher">
		請勿直接執行該瀏覽器可執行程式。 如果有SL_Launcher(SL啓動器)的捷徑,請更新,以便正常使用。
	</notification>
	<notification name="OldGPUDriver">
		你的顯示卡很可能有新版的驅動程式。  更新顯示驅動程式會大幅改善性能。

    前往[URL]察看是否有新版驅動程式?
		<url name="url">
			[URL]
		</url>
		<usetemplate ignoretext="我的顯示驅動程式太老舊" name="okcancelignore" notext="取消" yestext="是"/>
	</notification>
	<notification name="UnknownGPU">
		你的系統含有一個 [APP_NAME] 無法辨認的顯像卡。
原因很可能是 [APP_NAME] 尚未針對新硬體完成測試。  這大概不會出問題,但你可能需要調整顯像設定。
(我自己 &gt; 偏好設定 &gt; 顯像)
		<form name="form">
			<ignore name="ignore" text="我的顯示卡無法辨識"/>
		</form>
	</notification>
	<notification name="DisplaySettingsNoShaders">
		[APP_NAME] 初始化顯像驅動程式時當掉了。
顯像度將設為低階,以防發生常見的驅動程式或錯誤。 這將停用一些顯像功能。
我們建議你更新顯像驅動程式。
請到「偏好設定 &gt; 顯像」提高顯像度。
	</notification>
	<notification name="RegionNoTerraforming">
		這個 [REGION] 地區並不允許變更地形。
	</notification>
	<notification name="ParcelNoTerraforming">
		你無權針對地段 [PARCEL] 進行土地變形。
	</notification>
	<notification name="CannotCopyWarning">
		你沒有權限複製以下項目:
[ITEMS]
如果你將它送人,它將無法續留在收納區。 你確定要送出這些東西嗎?
		<usetemplate name="okcancelbuttons" notext="否" yestext="是"/>
	</notification>
	<notification name="CannotGiveItem">
		無法給予收納區物品。
	</notification>
	<notification name="TransactionCancelled">
		交易已取消。
	</notification>
	<notification name="TooManyItems">
		每一次的收納區轉移動作不能超過 42 項物件。
	</notification>
	<notification name="NoItems">
		你沒有權限轉移所選項目。
	</notification>
	<notification name="CannotCopyCountItems">
		你沒有權限複製所選物件當中的 [COUNT] 項。 你的收納區將無法續留這些物件。
你確定要送出這些東西嗎?
		<usetemplate name="okcancelbuttons" notext="否" yestext="是"/>
	</notification>
	<notification name="CannotGiveCategory">
		你沒有權限轉移所選資料夾。
	</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]由群組&lt;nolink&gt;[GROUP_NAME]&lt;/nolink&gt;中踢出
	</notification>
	<notification name="AcquireErrorTooManyObjects">
		取得錯誤:太多物件被選取。
	</notification>
	<notification name="AcquireErrorObjectSpan">
		取得錯誤:物件跨越多個地區。
請將所欲取得的物件移到同一區域。
	</notification>
	<notification name="PromptGoToCurrencyPage">
		[EXTRA]

前往 [_URL] 得知如何購買 L$?
		<url name="url">
			http://secondlife.com/app/currency/
		</url>
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="MuteLimitReached">
		封鎖清單名額無法增加,因為你已達[MUTE_LIMIT]名的上限。
	</notification>
	<notification name="UnableToLinkObjects">
		無法聯結這 [COUNT] 個物件。
你最多可以聯結 [MAX] 個物件。
	</notification>
	<notification name="CannotLinkIncompleteSet">
		可以聯結的必需是一套物件,請選擇至少兩個物件。
	</notification>
	<notification name="CannotLinkModify">
		無法聯結;你對某些物件沒有修改權。

請確定沒有物件被鎖住,並確定你擁有所有物件。
	</notification>
	<notification name="CannotLinkPermanent">
		物件無法跨越地區界限進行聯結。
	</notification>
	<notification name="CannotLinkAcrossRegions">
		物件無法跨越地區界限進行聯結。
	</notification>
	<notification name="CannotLinkDifferentOwners">
		無法聯結;有些物件的所有人不同。

請確定你是所選所有物件的所有人。
	</notification>
	<notification name="NoFileExtension">
		檔案沒有副檔名:&apos;[FILE]&apos;

請確定檔案具備正確的副檔名。
	</notification>
	<notification name="InvalidFileExtension">
		無效的副檔名:[EXTENSION]
應該是 [VALIDS]
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="CannotUploadSoundFile">
		無法開啟並讀取上傳的聲音檔:
[FILE]
	</notification>
	<notification name="SoundFileNotRIFF">
		檔案似乎不是 RIFF WAVE 檔:
[FILE]
	</notification>
	<notification name="SoundFileNotPCM">
		檔案似乎不是 PCM WAVE 音頻檔:
[FILE]
	</notification>
	<notification name="SoundFileInvalidChannelCount">
		檔案的頻道數無效(必需為單聲道或立體聲)
[FILE]
	</notification>
	<notification name="SoundFileInvalidSampleRate">
		檔案似乎帶有不支援的採樣率(需為 44.1 k):
[FILE]
	</notification>
	<notification name="SoundFileInvalidWordSize">
		檔案似乎帶有不支援的字組(需為 8 或 16 位元):
[FILE]
	</notification>
	<notification name="SoundFileInvalidHeader">
		找不到 WAV 檔頭的「data」區塊:
[FILE]
	</notification>
	<notification name="SoundFileInvalidChunkSize">
		WAV 檔區塊大小錯誤:
[FILE]
	</notification>
	<notification name="SoundFileInvalidTooLong">
		音頻檔太長(最大值 10 秒):
[FILE]
	</notification>
	<notification name="ProblemWithFile">
		檔案 [FILE] 有問題:

[ERROR]
	</notification>
	<notification name="CannotOpenTemporarySoundFile">
		無法開啟並寫入暫時壓縮音頻檔:[FILE]
	</notification>
	<notification name="UnknownVorbisEncodeFailure">
		發生不明的 Vorbis 編碼錯誤:[FILE]
	</notification>
	<notification name="CannotEncodeFile">
		無法將檔案編碼:[FILE]
	</notification>
	<notification name="CorruptedProtectedDataStore">
		我們無法填入你的使用者名稱和密碼。  這可能因為你變更了網路設定。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="CorruptResourceFile">
		毀損的資源檔:[FILE]
	</notification>
	<notification name="UnknownResourceFileVersion">
		檔案中發現不明的 Linden 資源檔版本:[FILE]
	</notification>
	<notification name="UnableToCreateOutputFile">
		無法建立輸出檔:[FILE]
	</notification>
	<notification name="DoNotSupportBulkAnimationUpload">
		[APP_NAME] 目前尚不支援 BVH 格式的動作檔批量上傳。
	</notification>
	<notification name="CannotUploadReason">
		無法上傳 [FILE],原因:[REASON]
請稍候再試一次。
	</notification>
	<notification name="LandmarkCreated">
		你已新增「[LANDMARK_NAME]」到你的 [FOLDER_NAME] 資料夾。
	</notification>
	<notification name="LandmarkAlreadyExists">
		你已經有這個位置的地標。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="CannotCreateLandmarkNotOwner">
		你不能創造地標,因為地主並不允許你這樣做。
	</notification>
	<notification name="CannotRecompileSelectObjectsNoScripts">
		無法進行重新編譯。
請選擇帶有腳本的物件。
	</notification>
	<notification name="CannotRecompileSelectObjectsNoPermission">
		無法進行重新編譯。

選擇帶有你可修改的腳本的物件。
	</notification>
	<notification name="CannotResetSelectObjectsNoScripts">
		無法重新啟動。

選擇帶有腳本的物件。
	</notification>
	<notification name="CannotResetSelectObjectsNoPermission">
		無法重新啟動。

選擇帶有你可修改的腳本的物件。
	</notification>
	<notification name="CannotOpenScriptObjectNoMod">
		無法開啟物件裡的腳本,因為你沒有修改權。
	</notification>
	<notification name="CannotSetRunningSelectObjectsNoScripts">
		無法將任何腳本設定為「執行中」。

選擇帶有腳本的物件。
	</notification>
	<notification name="CannotSetRunningNotSelectObjectsNoScripts">
		無法將任何腳本設定為「不執行」。

選擇帶有腳本的物件。
	</notification>
	<notification name="NoFrontmostFloater">
		沒有最前置的浮動視窗可儲存。
	</notification>
	<notification name="SeachFilteredOnShortWords">
		你的搜尋字串已被修改,太短的字已被移除。

搜尋:[FINALQUERY]
	</notification>
	<notification name="SeachFilteredOnShortWordsEmpty">
		你的搜尋字串太短,所以沒有啟動搜索。
	</notification>
	<notification name="CouldNotTeleportReason">
		瞬間傳送失敗。
[REASON]
	</notification>
	<notification name="invalid_tport">
		處理你瞬間傳送要求時發生問題。 如果想要瞬間傳送,你可能需要重新登入。
如果你持續得到此訊息,請查閱 [SUPPORT_SITE]。
	</notification>
	<notification name="invalid_region_handoff">
		處理你跨越地區動作時發生問題。 如果想要跨越地區,你可能需要重新登入。
如果你持續得到此訊息,請查閱 [SUPPORT_SITE]。
	</notification>
	<notification name="blocked_tport">
		抱歉,目前禁止瞬間傳送。 請稍後再試。  如果你仍無法進行瞬間傳送,請登出後重新入來解決此一問題。
	</notification>
	<notification name="nolandmark_tport">
		抱歉,不過系統無法找到地標所在目的地。
	</notification>
	<notification name="timeout_tport">
		抱歉,不過系統無法完成瞬間傳送的聯接。  請稍後再試。
	</notification>
	<notification name="noaccess_tport">
		抱歉,你並沒有權限進入要瞬間傳送的目的地。
	</notification>
	<notification name="missing_attach_tport">
		你的附件尚未抵達。 請稍候一會兒,或請登出後重新登入,再嘗試瞬間傳送。
	</notification>
	<notification name="too_many_uploads_tport">
		該地區的資產查詢目前太過擁塞,因此你的瞬間傳送動作可能無法即時發生。 請稍候再試,或請前往較不擁塞的地區。
	</notification>
	<notification name="expired_tport">
		抱歉,系統無法即時完成為你瞬間傳送。 請稍待幾分鐘再試。
	</notification>
	<notification name="expired_region_handoff">
		抱歉,系統無法即時讓你跨越地區。 請稍待幾分鐘再試。
	</notification>
	<notification name="no_host">
		找不到瞬間傳送的目的地。 目的地可能暫時不可用,或已不存在。 請稍待幾分鐘再試。
	</notification>
	<notification name="no_inventory_host">
		收納區功能目前無法使用。
	</notification>
	<notification name="CannotSetLandOwnerNothingSelected">
		無法設定土地所有人:
未選擇地段。
	</notification>
	<notification name="CannotSetLandOwnerMultipleRegions">
		無法強設土地所有權;所選部分跨越多個區域。 請縮小選擇範圍,再試一次。
	</notification>
	<notification name="ForceOwnerAuctionWarning">
		這地段正在拍賣中。 強設所有權將取消拍賣,這恐將造成某些已出價的居民不高興。
要強設所有權嗎?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="CannotContentifyNothingSelected">
		無法進行「內容化」:
未選擇地段。
	</notification>
	<notification name="CannotContentifyNoRegion">
		無法進行「內容化」:
未選擇區域。
	</notification>
	<notification name="CannotReleaseLandNothingSelected">
		無法放棄土地:
未選擇地段。
	</notification>
	<notification name="CannotReleaseLandNoRegion">
		無法放棄土地:
找不到地區。
	</notification>
	<notification name="CannotBuyLandNothingSelected">
		無法購買土地:
未選擇地段。
	</notification>
	<notification name="CannotBuyLandNoRegion">
		無法購買土地:
找不到這土地所在的地區。
	</notification>
	<notification name="CannotCloseFloaterBuyLand">
		必須等待 [APP_NAME] 估計此交易的價格後,你才能關閉「購買土地」視窗。
	</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">
		無法將解析度調為 [RESX] X [RESY]
	</notification>
	<notification name="ErrorUndefinedGrasses">
		錯誤:未定義的草種:[SPECIES]
	</notification>
	<notification name="ErrorUndefinedTrees">
		錯誤:未定義的樹種:[SPECIES]
	</notification>
	<notification name="CannotSaveWearableOutOfSpace">
		無法將「[NAME]」儲存為可穿裝扮檔案。  你需要空出一些電腦空間,再試著儲存可穿裝扮。
	</notification>
	<notification name="CannotSaveToAssetStore">
		無法將「[NAME]」儲存到中央資產儲庫。
這異常狀況通常只是暫時的。 請稍待幾分鐘後,再自訂並儲存可穿裝扮。
	</notification>
	<notification name="YouHaveBeenLoggedOut">
		糟糕! 你已被登出 [SECOND_LIFE]。

[MESSAGE]
		<usetemplate name="okcancelbuttons" notext="結束退出" yestext="察看 IM 和聊天內容"/>
	</notification>
	<notification name="OnlyOfficerCanBuyLand">
		無法為這群組購買土地:
你沒有權限為你當前的群組購買土地。
	</notification>
	<notification label="加為朋友" name="AddFriendWithMessage">
		朋友可以允許彼此在地圖上追蹤對方,並接收彼此的線上狀態更新訊息。

向 [NAME] 發出交友邀請?
		<form name="form">
			<input name="message">
				你願意成為我的朋友嗎?
			</input>
			<button name="Offer" text="確定"/>
			<button name="Cancel" text="取消"/>
		</form>
	</notification>
	<notification label="新增自動取代清單" name="AddAutoReplaceList">
		新清單名稱:
		<form name="form">
			<button name="SetName" text="確定"/>
		</form>
	</notification>
	<notification label="更改自動取代清單的名稱" name="RenameAutoReplaceList">
		「[DUPNAME]」名稱已有人使用。
    輸入另一個獨特的名稱:
		<form name="form">
			<button name="ReplaceList" text="取代目前的清單"/>
			<button name="SetName" text="使用新名稱"/>
		</form>
	</notification>
	<notification name="InvalidAutoReplaceEntry">
		關鍵字必須是一個字,取代字不得空白。
	</notification>
	<notification name="InvalidAutoReplaceList">
		該取代清單無效。
	</notification>
	<notification name="SpellingDictImportRequired">
		你必須指定一個檔案、一個名稱和一種語言。
	</notification>
	<notification name="SpellingDictIsSecondary">
		[DIC_NAME] 字典似乎沒有 &quot;aff&quot; 檔案,這表示該字典是「次級」字典。
它可用做附加字典,但不得作為主要字典。

參見 https://wiki.secondlife.com/wiki/Adding_Spelling_Dictionaries
	</notification>
	<notification name="SpellingDictImportFailed">
		無法複製 [FROM_NAME]

    到 [TO_NAME]
	</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="儲存可穿裝扮" 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">
		確定要從朋友名單中移除 &lt;nolink&gt;[NAME]&lt;/nolink&gt;?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="RemoveMultipleFromFriends">
		你確定要由朋友清單中移除多個朋友嗎?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="GodDeleteAllScriptedPublicObjectsByUser">
		你確定要刪除本模擬世界所有其他土地裡,** [AVATAR_NAME] ** 所擁有的全部帶腳本的物件?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="GodDeleteAllScriptedObjectsByUser">
		你確定要刪除本模擬世界所有土地裡,** [AVATAR_NAME] ** 所擁有的全部帶腳本的物件?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="GodDeleteAllObjectsByUser">
		你確定要刪除本模擬世界所有土地裡,** [AVATAR_NAME] ** 所擁有的全部物件(無論是否帶腳本)?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="BlankClassifiedName">
		你的個人廣告必須指定一個名稱。
	</notification>
	<notification name="MinClassifiedPrice">
		購買此刊登物的價格必須至少為 L$[MIN_PRICE]。

請輸入一個較高的價格。
	</notification>
	<notification name="ConfirmItemDeleteHasLinks">
		所選項目中至少有一個帶有來自其他項目的聯結。  如果你刪除這一項目,聯結將永久失效。  我們強烈建議你先刪除聯結。

你確定你要刪除這些物項?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmObjectDeleteLock">
		你所選項目中至少有一個被鎖住。

你確定你要刪除這些物項?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmObjectDeleteNoCopy">
		你所選項目中至少有一個不能複製。

你確定你要刪除這些物項?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmObjectDeleteNoOwn">
		你所選項目中至少有一個不是你所擁有。

你確定你要刪除這些物項?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmObjectDeleteLockNoCopy">
		至少有一個物件被鎖住。
至少有一個物件不能複製。

你確定你要刪除這些物項?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmObjectDeleteLockNoOwn">
		至少有一個物件被鎖住。
至少有一個物件不是你所擁有。

你確定你要刪除這些物項?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmObjectDeleteNoCopyNoOwn">
		至少有一個物件不能複製。
至少有一個物件不是你所擁有。

你確定你要刪除這些物項?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmObjectDeleteLockNoCopyNoOwn">
		至少有一個物件被鎖住。
至少有一個物件不能複製。
至少有一個物件不是你所擁有。

你確定你要刪除這些物項?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmObjectTakeLock">
		至少有一個物件被鎖住。

你確定你要拿取這些物項?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmObjectTakeNoOwn">
		你要拿取的物件中,有些不是你所擁有。
如果繼續,將套用「下一個所有人」權限,這可能會限制你修改或複製權。

你確定你要拿取這些物項?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmObjectTakeLockNoOwn">
		至少有一個物件被鎖住。
你要拿取的物件中,有些不是你所擁有。
如果繼續,將套用「下一個所有人」權限,這可能會限制你修改或複製權。
不過,你可以拿取目前所選的。

你確定你要拿取這些物項?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="CantBuyLandAcrossMultipleRegions">
		無法購買土地,所選部分跨越多個地區。

請縮小選擇範圍,再試一次。
	</notification>
	<notification name="DeedLandToGroup">
		若讓渡此地段,這個群組將必須具備並保持足夠的土地使用信用額度。
土地收購價將不會退還給所有人。 如果讓渡的地段被售出,售出價將均分給每位群組成員。

是否讓渡這塊[AREA]平方公尺的土地給群組「&lt;nolink&gt;[GROUP_NAME]&lt;/nolink&gt;」?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="DeedLandToGroupWithContribution">
		若讓渡此地段,這個群組將必須具備並保持足夠的土地使用信用額度。
此一讓渡將同時包括來自 [NAME] 的,給予群組的土地捐獻。
土地收購價將不會退還給所有人。 如果讓渡的地段被售出,售出價將均分給每位群組成員。

是否讓渡這塊[AREA]平方公尺的土地給群組「&lt;nolink&gt;[GROUP_NAME]&lt;/nolink&gt;」?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="DisplaySetToSafe">
		因為你指定了 -safe 選項,已將顯示設為安全等級。
	</notification>
	<notification name="DisplaySetToRecommendedGPUChange">
		由於你的顯像卡有所變更,已將顯示狀態設為推薦採用的等級。
原顯像卡:[LAST_GPU]
新顯像卡:[THIS_GPU]
	</notification>
	<notification name="DisplaySetToRecommendedFeatureChange">
		由於呈像子系統有所變更,已將顯示狀態設為推薦的設定。
	</notification>
	<notification name="ErrorMessage">
		[ERROR_MESSAGE]
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="AvatarMovedDesired">
		你所要的地點目前無法前往。
你已被移往一個鄰近地區。
	</notification>
	<notification name="AvatarMovedLast">
		你所請求的地點目前無法前往。
你已被移往一個鄰近地區。
	</notification>
	<notification name="AvatarMovedHome">
		你設為家的地點目前無法前往。
你已被移往一個鄰近地區。
建議你另選新地點設為家。
	</notification>
	<notification name="ClothingLoading">
		你的服裝仍在下載中。
你可以正常使用 [SECOND_LIFE],而且其他人看到你也是正常的。
		<form name="form">
			<ignore name="ignore" text="服裝花太多時間下載"/>
		</form>
	</notification>
	<notification name="AgentComplexityWithVisibility">
		你的[https://community.secondlife.com/t5/English-Knowledge-Base/Avatar-Rendering-Complexity/ta-p/2967838 化身複雜度]是[AGENT_COMPLEXITY]。
[OVERLIMIT_MSG]
		<usetemplate ignoretext="警告我化身的複雜度是否可能過高" name="notifyignore"/>
	</notification>
	<notification name="AgentComplexity">
		你的[https://community.secondlife.com/t5/English-Knowledge-Base/Avatar-Rendering-Complexity/ta-p/2967838 化身複雜度]是[AGENT_COMPLEXITY]。
		<usetemplate ignoretext="發出警告,告知我化身複雜度有了改變" name="notifyignore"/>
	</notification>
	<notification name="HUDComplexityWarning">
		[HUD_REASON],可能負面影響你的性能。
		<usetemplate ignoretext="警告我HUD的複雜度是否可能過高" name="notifyignore"/>
	</notification>
	<notification name="FirstRun">
		[APP_NAME] 安裝完成。

如果你是第一次使用 [SECOND_LIFE],你將需要建立新帳號才可登入。
		<usetemplate name="okcancelbuttons" notext="繼續" yestext="建立帳號…"/>
	</notification>
	<notification name="LoginPacketNeverReceived">
		連線出現問題。 問題可能出在你的網路連線或 [SECOND_LIFE_GRID]。

請檢查你的網路連線,幾分鐘後再試一次,或者點按幫助瀏覽 [SUPPORT_SITE],或點按瞬間傳送試著回到你的家。
		<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">
		你的人物很快將會出現。

用方向鍵行走。
任何時候你都可按 F1 鍵察看幫助,進一步瞭解 [SECOND_LIFE]。
請選擇男性或女性化身。 以後你仍可改變這個選擇。
		<usetemplate name="okcancelbuttons" notext="女性" yestext="男性"/>
	</notification>
	<notification name="CantTeleportToGrid">
		無法瞬間傳送到 [SLURL],它位於不同的網格([GRID]),目前網格是 [CURRENT_GRID]。  請關閉 Viewer 再試一次。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="GeneralCertificateError">
		無法連接到伺服器。
[REASON]

SubjectName:[SUBJECT_NAME_STRING]
IssuerName:[ISSUER_NAME_STRING]
有效來源:[VALID_FROM]
有效目標:[VALID_TO]
MD5 指紋:[SHA1_DIGEST]
SHA1 指紋:[MD5_DIGEST]
鍵的使用:[KEYUSAGE]
延伸鍵的使用:[EXTENDEDKEYUSAGE]
主題鍵辨識元:[SUBJECTKEYIDENTIFIER]
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="TrustCertificateError">
		不明的伺服器認證權限。

認證資訊:
SubjectName:[SUBJECT_NAME_STRING]
IssuerName:[ISSUER_NAME_STRING]
有效來源:[VALID_FROM]
有效目標:[VALID_TO]
MD5 指紋:[SHA1_DIGEST]
SHA1 指紋:[MD5_DIGEST]
鍵的使用:[KEYUSAGE]
延伸鍵的使用:[EXTENDEDKEYUSAGE]
主題鍵辨識元:[SUBJECTKEYIDENTIFIER]

是否信任這個權限?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="信任"/>
	</notification>
	<notification name="NotEnoughCurrency">
		[NAME] L$ [PRICE] 你沒有足夠 L$ 進行這動作。
	</notification>
	<notification name="GrantedModifyRights">
		[NAME] 已授權你編輯他們的物件。
	</notification>
	<notification name="RevokedModifyRights">
		你修改 [NAME] 的物件的權限已被撤銷。
	</notification>
	<notification name="FlushMapVisibilityCaches">
		這將清除本地區的地圖快取資料。
這麼做只在除錯時有用。
(實地環境中,等待 5 分鐘,每個人的地圖將在他們重新登入後更新。)
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="BuyOneObjectOnly">
		無法一次購買多個物件。  請只選擇一個物件,再試一次。
	</notification>
	<notification name="OnlyCopyContentsOfSingleItem">
		無法一次複製多個物項的內容。
請只選擇一個物件,再試一次。
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="KickUsersFromRegion">
		確定要強制瞬間傳送這地區所有居民回家?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ChangeObjectBonusFactor">
		在地區內完成建製後再降低物件負荷倍數,可能導致物件被送返或刪除。 繼續要變更物件負荷倍數?
		<usetemplate ignoretext="確定變更物件負荷倍數" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="EstateObjectReturn">
		你確定要送返 [USER_NAME] 所擁有的物件?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="InvalidTerrainBitDepth">
		無法設定地區材質:
地形材質 [TEXTURE_NUM] 的位元深度 [TEXTURE_BIT_DEPTH] 無效。

請將材質 [TEXTURE_NUM] 替換成 24 位元 512x512 或更小圖像,然後點按「套用」。
	</notification>
	<notification name="InvalidTerrainSize">
		無法設定地區材質:
地形材質 [TEXTURE_NUM] 的尺寸 [TEXTURE_SIZE_X]x[TEXTURE_SIZE_Y] 太大。

請將材質 [TEXTURE_NUM] 替換成 24 位元 512x512 或更小圖像,然後點按「套用」。
	</notification>
	<notification name="RawUploadStarted">
		上傳開始。 視你的連線速度而定,這最多需時兩分鐘。
	</notification>
	<notification name="ConfirmBakeTerrain">
		你真的要確定產出目前地形,使其成為地形升/降極限的中間值,並設為「復原」工具的預設值?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmTextureHeights">
		你設的海拔範圍值,低值大於高值。  繼續?
		<usetemplate canceltext="不要問" name="yesnocancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="MaxAllowedAgentOnRegion">
		你最多只能有 [MAX_AGENTS] 位允許居民。
	</notification>
	<notification name="MaxBannedAgentsOnRegion">
		你只可以有最多 [MAX_BANNED] 位被封鎖的居民。
	</notification>
	<notification name="MaxAgentOnRegionBatch">
		試圖增加 [NUM_ADDED] 人時失敗:
超過人數上限 [MAX_AGENTS] [LIST_TYPE](超過 [NUM_EXCESS] 人)。
	</notification>
	<notification name="MaxAllowedGroupsOnRegion">
		你只能有 [MAX_GROUPS] 個允許的群組。
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定產出"/>
	</notification>
	<notification name="MaxManagersOnRegion">
		你只可以有最多 [MAX_MANAGER] 位領地經理。
	</notification>
	<notification name="OwnerCanNotBeDenied">
		無法添加領地所有人到領地的 &apos;被封鎖的居民&apos; 名單中。
	</notification>
	<notification name="ProblemAddingEstateManagerBanned">
		無法把被封鎖的居民加入領地的管理人名單。
	</notification>
	<notification name="CanNotChangeAppearanceUntilLoaded">
		無法變更外觀,直到服裝與體形下載完畢。
	</notification>
	<notification name="ClassifiedMustBeAlphanumeric">
		你的個人廣告名稱必須以 A-Z 字母或數字開頭。  不允許標點符號。
	</notification>
	<notification name="CantSetBuyObject">
		無法設定購買物件,該物件無法出售。
請選定出售物件,再試一次。
	</notification>
	<notification name="FinishedRawDownload">
		原始地形檔案下載完成:
[DOWNLOAD_PATH]。
	</notification>
	<notification name="RequiredUpdate">
		必須用[VERSION]版本登入。
本來應該已經完成更新,但看來你的尚未更新。
請到 http://secondlife.com/support/ 下載更新版
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="LoginFailedUnknown">
		抱歉,登入失敗,原因不明。
如果你一直看到此訊息,請查閱 [SUPPORT_SITE]。
		<usetemplate name="okbutton" yestext="退出"/>
	</notification>
	<notification name="DeedObjectToGroup">
		讓渡此物件將可讓這個群組:
* 收取付給此物件的 L$
		<usetemplate ignoretext="在我讓渡一個物件給群組前確認" name="okcancelignore" notext="取消" yestext="讓渡"/>
	</notification>
	<notification name="WebLaunchExternalTarget">
		你確定要開啟網頁瀏覽器去察看這個內容?
		<usetemplate ignoretext="啟動我的網頁瀏覽器去察看網頁" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="SystemUIScaleFactorChanged">
		系統使用者介面的尺寸倍數自從上次執行後已經改變。 你想要開啟使用者介面尺寸調整的設定頁嗎?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="WebLaunchJoinNow">
		前往你的[http://secondlife.com/account/ 塗鴉牆]以進行管理你的帳戶?
		<usetemplate ignoretext="啟動我的瀏覽器以管理我的帳戶" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="WebLaunchSecurityIssues">
		造訪 [SECOND_LIFE] 維基察看如何提報安全問題。
		<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">
		你目前是 &lt;nolink&gt;[GROUP]&lt;/nolink&gt; 群組的成員。
是否要離開群組?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="GroupDepart">
		你已經離開「&lt;nolink&gt;[group_name]&lt;/nolink&gt;」群組。
	</notification>
	<notification name="OwnerCannotLeaveGroup">
		無法離開群組。 你是此群組僅存的所有人,不得離開群組。 請先把所有人職銜指派給另一人。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="GroupDepartError">
		無法離開群組。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="ConfirmKick">
		你確定要踢出這網格內的全部居民?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="踢出全部居民"/>
	</notification>
	<notification name="MuteLinden">
		抱歉,你無法封鎖任何一位 Linden。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="CannotStartAuctionAlreadyForSale">
		你無法在已在出售中的地段裡進行拍賣。  你如果確定要拍賣,請先停止土地出售。
	</notification>
	<notification label="依名稱封鎖物件失敗" name="MuteByNameFailed">
		你已經封鎖了這個名稱。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="RemoveItemWarn">
		雖然允許這麼做,刪除內容可能會破壞物件。 你要刪除該物項嗎?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="CantOfferCallingCard">
		此時無法提供名片。 請稍候再試。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="CantOfferFriendship">
		此時無法發出交友邀請。 請稍候再試。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="DoNotDisturbModeSet">
		「請勿打擾」模式目前是開啟狀態。  你將不會收到任何發給你的訊息通知。

- 其他居民將收到你的「請勿打擾」回應(回應內容設於「偏好設定 &gt; 一般設定」)。
- 所有語音來電都將拒絕接聽。
		<usetemplate ignoretext="我變更我的狀態為「請勿打擾」模式" name="okignore" yestext="確定"/>
	</notification>
	<notification name="JoinedTooManyGroupsMember">
		你已達可同時加入的群組數上限。 請先離開另一個群組再加入這一個,或婉拒加入邀請。
[NAME] 已邀請你加入一個群組成為一員。
		<usetemplate name="okcancelbuttons" notext="謝絕" yestext="加入"/>
	</notification>
	<notification name="JoinedTooManyGroups">
		你已達可同時加入的群組數上限。 請先離開某些群組再加入或新建新群組。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="GroupLimitInfo">
		基本帳戶的群組限制是[MAX_BASIC],[https://secondlife.com/premium/ 付費]帳戶則是[MAX_PREMIUM]。
如果你把帳戶降級,你必須先低於[MAX_BASIC]的群組限制,才可再加入更多群組。

[https://secondlife.com/my/account/membership.php 現在就升級!]
		<usetemplate name="okbutton" yestext="關閉"/>
	</notification>
	<notification name="KickUser">
		踢出這個居民並留給他什麼訊息?
		<form name="form">
			<input name="message">
				一位管理員已迫使你登出。
			</input>
			<button name="OK" text="確定"/>
			<button name="Cancel" text="取消"/>
		</form>
	</notification>
	<notification name="KickAllUsers">
		踢出網格上的每個人,留給他們什麼訊息?
		<form name="form">
			<input name="message">
				一位管理員已迫使你登出。
			</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">
				你已被解除凍結。
			</input>
			<button name="OK" text="確定"/>
			<button name="Cancel" text="取消"/>
		</form>
	</notification>
	<notification name="SetDisplayNameSuccess">
		[DISPLAY_NAME],你好!

瞭解適應一個新名字是需要時間的,正如現實生活那樣。  請給我們幾天時間針對所有物件、腳本、搜尋等方面 [http://wiki.secondlife.com/wiki/Setting_your_display_name 更新你的名字]。
	</notification>
	<notification name="SetDisplayNameBlocked">
		抱歉,你無法更改你的顯示名。 如你認為有出錯,請聯絡支援人員。
	</notification>
	<notification name="SetDisplayNameFailedLength">
		抱歉,該名稱太長。  顯示名稱最大長度為 [LENGTH] 字元。

請嘗試短一些的名稱。
	</notification>
	<notification name="SetDisplayNameFailedGeneric">
		抱歉,我們無法設定你的顯示名。  請稍候再試一次。
	</notification>
	<notification name="SetDisplayNameMismatch">
		你所輸入的顯示名不相符。 請再輸入一次。
	</notification>
	<notification name="AgentDisplayNameUpdateThresholdExceeded">
		抱歉,你必須再等一段時間才能更改你的顯示名。

參見 http://wiki.secondlife.com/wiki/Setting_your_display_name

請稍候再試一次。
	</notification>
	<notification name="AgentDisplayNameSetBlocked">
		抱歉,我們無法設定你想要的名稱,它含有禁用字眼。
 
 請用不同的名稱試試。
	</notification>
	<notification name="AgentDisplayNameSetInvalidUnicode">
		你希望設定的顯示名含有無效字元。
	</notification>
	<notification name="AgentDisplayNameSetOnlyPunctuation">
		你的顯示名必須包含非標點符號的字元。
	</notification>
	<notification name="DisplayNameUpdate">
		[OLD_NAME] ([SLID]) 現在有了新名字 [NEW_NAME]。
	</notification>
	<notification name="OfferTeleport">
		用下列訊息發出瞬間傳送邀請來到你的位置?
		<form name="form">
			<input name="message">
				在 [REGION] 和我會面
			</input>
			<button name="OK" text="確定"/>
			<button name="Cancel" text="取消"/>
		</form>
	</notification>
	<notification name="TooManyTeleportOffers">
		你試圖送出 [OFFERS] 個瞬間傳送邀請。
超過了 [LIMIT] 個的上限。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="OfferTeleportFromGod">
		用神的權力把居民召到你的位置?
		<form name="form">
			<input name="message">
				在 [REGION] 和我會面
			</input>
			<button name="OK" text="確定"/>
			<button name="Cancel" text="取消"/>
		</form>
	</notification>
	<notification name="TeleportFromLandmark">
		你確定要瞬間傳送到&lt;nolink&gt;[LOCATION]&lt;/nolink&gt;?
		<usetemplate ignoretext="確認我要瞬間傳送到某個地標" name="okcancelignore" notext="取消" yestext="瞬間傳送"/>
	</notification>
	<notification name="TeleportViaSLAPP">
		你確定要瞬間傳送到&lt;nolink&gt;[LOCATION]&lt;/nolink&gt;?
		<usetemplate ignoretext="確認我要透過SLAPP瞬間傳送" 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">
		輸入簡短公告,公告將發送給領地裡所有人。
		<form name="form">
			<button name="OK" text="確定"/>
			<button name="Cancel" text="取消"/>
		</form>
	</notification>
	<notification label="更改 Linden 領地" name="ChangeLindenEstate">
		你即將更改一個 Linden 所擁有的領地(大陸、青少年網格、導引區等)。

這動作非常危險,它會根本影響所有居民的體驗。  在大陸上,它將更動數千個地區,導致空間伺服器發生不順。

繼續?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification label="更改 Linden 領地出入權" name="ChangeLindenAccess">
		你即將更改一個 Linden 所擁有領地(大陸、青少年網格、導引區等)的出入權。

這動作很危險,只在需要把物件或 L$ 送出或送入網格,又無更好方法時不得已使用。
它將更動數千個地區,導致空間伺服器發生不順。
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification label="選擇領地" name="EstateAllowedAgentAdd">
		僅針對這個領地或針對 [ALL_ESTATES] 將它新增到允許清單?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="全部領地" yestext="這個領地"/>
	</notification>
	<notification label="選擇領地" name="EstateAllowedAgentRemove">
		僅針對這個領地或針對 [ALL_ESTATES] 將它從允許清單中移除?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="全部領地" yestext="這個領地"/>
	</notification>
	<notification label="選擇領地" name="EstateAllowedGroupAdd">
		僅針對這個領地或針對 [ALL_ESTATES] 將它新增到群組允許清單?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="全部領地" yestext="這個領地"/>
	</notification>
	<notification label="選擇領地" name="EstateAllowedGroupRemove">
		僅針對這個領地或針對 [ALL_ESTATES] 將它從群組允許清單中移除?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="全部領地" yestext="這個領地"/>
	</notification>
	<notification label="選擇領地" name="EstateBannedAgentAdd">
		僅針對這個領地或針對 [ALL_ESTATES] 禁止出入?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="全部領地" yestext="這個領地"/>
	</notification>
	<notification label="選擇領地" name="EstateBannedAgentRemove">
		僅針對這個領地或針對 [ALL_ESTATES] 將這個居民從禁止出入清單中除名?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="全部領地" yestext="這個領地"/>
	</notification>
	<notification label="選擇領地" name="EstateManagerAdd">
		僅針對這個領地或針對 [ALL_ESTATES] 新增領地管理人?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="全部領地" yestext="這個領地"/>
	</notification>
	<notification label="選擇領地" name="EstateManagerRemove">
		僅針對這個領地或針對 [ALL_ESTATES] 移除領地管理人?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="全部領地" yestext="這個領地"/>
	</notification>
	<notification label="選擇領地" name="EstateAllowedExperienceAdd">
		僅針對這個領地或針對 [ALL_ESTATES] 將它新增到允許清單?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="全部領地" yestext="這個領地"/>
	</notification>
	<notification label="選擇領地" name="EstateAllowedExperienceRemove">
		僅針對這個領地或針對 [ALL_ESTATES] 將它從允許清單中移除?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="全部領地" yestext="這個領地"/>
	</notification>
	<notification label="選擇領地" name="EstateBlockedExperienceAdd">
		僅針對這個領地或針對 [ALL_ESTATES] 將它新增到封鎖清單?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="全部領地" yestext="這個領地"/>
	</notification>
	<notification label="選擇領地" name="EstateBlockedExperienceRemove">
		僅針對這個領地或針對 [ALL_ESTATES] 將它從封鎖清單中移除?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="全部領地" yestext="這個領地"/>
	</notification>
	<notification label="選擇領地" name="EstateTrustedExperienceAdd">
		僅針對這個領地或針對 [ALL_ESTATES] 將它新增到金鑰清單?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="全部領地" yestext="這個領地"/>
	</notification>
	<notification label="選擇領地" name="EstateTrustedExperienceRemove">
		僅針對這個領地,還是針對 [ALL_ESTATES] 將它從金鑰清單中移除?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="全部領地" yestext="這個領地"/>
	</notification>
	<notification label="確認踢出" name="EstateKickUser">
		將 [EVIL_USER] 由這領地踢出?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="EstateChangeCovenant">
		你確定要更改領地契約?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="EstateParcelAccessOverride">
		若不勾選這選項,可能會移除地段所有人為防止惡意騷擾及為維護隱私、保護幼未成年居民不接觸成年限制級內容的限制措施。 若有必要請與地段所有人溝通。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="RegionEntryAccessBlocked">
		你所欲前往的地區含有超過你目前偏好的分級的內容。  你可以到「我自己 &gt; 偏好設定 &gt; 一般設定」變更你的偏好設定。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="SLM_UPDATE_FOLDER">
		[MESSAGE]
	</notification>
	<notification name="RegionEntryAccessBlocked_AdultsOnlyContent">
		你所欲前往的地區含有 [REGIONMATURITY] 的分級內容,僅限成人。
		<url name="url">
			http://wiki.secondlife.com/wiki/Linden_Lab_Official:Maturity_ratings:_an_overview
		</url>
		<usetemplate ignoretext="跨越地區:你所欲前往的地區含有限制給成人的內容。" name="okcancelignore" notext="關閉" yestext="前往知識庫"/>
	</notification>
	<notification name="RegionEntryAccessBlocked_Notify">
		你所欲前往的地區包含 [REGIONMATURITY] 分級的內容,可是你目前的偏好設定排除了 [REGIONMATURITY] 分級的內容。
	</notification>
	<notification name="RegionEntryAccessBlocked_NotifyAdultsOnly">
		你所欲前往的地區含有 [REGIONMATURITY] 的分級內容,僅限成人。
	</notification>
	<notification name="RegionEntryAccessBlocked_Change">
		你所欲前往的地區包含 [REGIONMATURITY] 分級的內容,可是你目前的偏好設定排除了 [REGIONMATURITY] 分級的內容。 你可以變更你的偏好設定,或取消前往。 你的偏好設定變更後,你可以試圖再進入該地區。
		<form name="form">
			<button name="OK" text="變更偏好設定"/>
			<button name="Cancel" text="取消"/>
			<ignore name="ignore" text="跨越地區:你所欲前往的地區含有被你目前的偏好設定排除的分級內容。"/>
		</form>
	</notification>
	<notification name="RegionEntryAccessBlocked_PreferencesOutOfSync">
		發生技術問題,你的偏好設定和伺服器上的不一致。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="TeleportEntryAccessBlocked">
		你所欲前往的地區含有超過你目前偏好的分級的內容。  你可以到「我自己 &gt; 偏好設定 &gt; 一般設定」變更你的偏好設定。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="TeleportEntryAccessBlocked_AdultsOnlyContent">
		你所欲前往的地區含有 [REGIONMATURITY] 的分級內容,僅限成人。
		<url name="url">
			http://wiki.secondlife.com/wiki/Linden_Lab_Official:Maturity_ratings:_an_overview
		</url>
		<usetemplate ignoretext="瞬間傳送:你所欲前往的地區含有限制給成人的內容。" name="okcancelignore" notext="關閉" yestext="前往知識庫"/>
	</notification>
	<notification name="TeleportEntryAccessBlocked_Notify">
		你所欲前往的地區包含 [REGIONMATURITY] 分級的內容,可是你目前的偏好設定排除了 [REGIONMATURITY] 分級的內容。
	</notification>
	<notification name="TeleportEntryAccessBlocked_NotifyAdultsOnly">
		你所欲前往的地區含有 [REGIONMATURITY] 的分級內容,僅限成人。
	</notification>
	<notification name="TeleportEntryAccessBlocked_ChangeAndReTeleport">
		你所欲前往的地區包含 [REGIONMATURITY] 分級的內容,可是你目前的偏好設定排除了 [REGIONMATURITY] 分級的內容。 我們可以變更你的偏好設定好讓你繼續瞬間傳送,你也可取消這動作。
		<form name="form">
			<button name="OK" text="變更後繼續"/>
			<button name="Cancel" text="取消"/>
			<ignore name="ignore" text="瞬間傳送(可重啟):你所欲前往的地區含有被你目前的偏好設定排除的分級內容。"/>
		</form>
	</notification>
	<notification name="TeleportEntryAccessBlocked_Change">
		你所欲前往的地區包含 [REGIONMATURITY] 分級的內容,可是你目前的偏好設定排除了 [REGIONMATURITY] 分級的內容。 我們可以變更你的偏好設定,你也可取消瞬間傳送。 你的偏好設定變更後,你可以再嘗試瞬間傳送。
		<form name="form">
			<button name="OK" text="變更偏好設定"/>
			<button name="Cancel" text="取消"/>
			<ignore name="ignore" text="瞬間傳送(不可重啟):你所欲前往的地區含有被你目前的偏好設定排除的分級內容。"/>
		</form>
	</notification>
	<notification name="TeleportEntryAccessBlocked_PreferencesOutOfSync">
		發生技術問題,你的偏好設定和伺服器上的不一致。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="RegionTPSpecialUsageBlocked">
		無法進入地區。 &apos;[REGION_NAME]&apos; 是個「技巧性博奕」(Skill Gaming)地區,你必須符合一定條件才可進入。 欲知詳情,請參閱 [http://wiki.secondlife.com/wiki/Linden_Lab_Official:Skill_Gaming_in_Second_Life 技巧性博奕常見問題集]。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="PreferredMaturityChanged">
		你將不再收到通知,告知你即將進入一個 [RATING] 內容分級的地區。  你可以到選單列底下的「我自己 &gt; 偏好設定 &gt; 一般設定」變更你的內容偏好。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="MaturityChangeError">
		我們此時無法變更你的偏好設定,讓你觀看 [PREFERRED_MATURITY] 分級的內容。  你的偏好設定已經重設,可觀看 [ACTUAL_MATURITY] 的分級內容。  你可以到選單列的「我自己 &gt; 偏好設定 &gt; 一般設定」再次變更你的偏好。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="LandClaimAccessBlocked">
		你所欲收取的土地含有超過你目前偏好的分級內容。  你可以到「我自己 &gt; 偏好設定 &gt; 一般設定」變更你的偏好設定。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="LandClaimAccessBlocked_AdultsOnlyContent">
		只有成人才能收取這土地。
		<url name="url">
			http://wiki.secondlife.com/wiki/Linden_Lab_Official:Maturity_ratings:_an_overview
		</url>
		<usetemplate ignoretext="只有成人才能收取這土地。" name="okcancelignore" notext="關閉" yestext="前往知識庫"/>
	</notification>
	<notification name="LandClaimAccessBlocked_Notify">
		你所欲收取的土地包含 [REGIONMATURITY] 分級的內容,可是你目前的偏好設定排除了 [REGIONMATURITY] 分級的內容。
	</notification>
	<notification name="LandClaimAccessBlocked_NotifyAdultsOnly">
		你所欲收取的土地包含 [REGIONMATURITY] 的分級內容,僅限成人。
	</notification>
	<notification name="LandClaimAccessBlocked_Change">
		你所欲收取的土地包含 [REGIONMATURITY] 分級的內容,可是你目前的偏好設定排除了 [REGIONMATURITY] 分級的內容。 我們可以變更你的偏好,讓你再試圖收取土地。
		<form name="form">
			<button name="OK" text="變更偏好設定"/>
			<button name="Cancel" text="取消"/>
			<ignore name="ignore" text="你所欲收取的土地含有被你目前的偏好所排除的分級內容。"/>
		</form>
	</notification>
	<notification name="LandBuyAccessBlocked">
		你所欲購買的土地的內容分級超過你目前所設偏好。  你可以到「我自己 &gt; 偏好設定 &gt; 一般設定」變更你的偏好設定。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="LandBuyAccessBlocked_AdultsOnlyContent">
		只有成人才能購買這土地。
		<url name="url">
			http://wiki.secondlife.com/wiki/Linden_Lab_Official:Maturity_ratings:_an_overview
		</url>
		<usetemplate ignoretext="只有成人才能購買這土地。" name="okcancelignore" notext="關閉" yestext="前往知識庫"/>
	</notification>
	<notification name="LandBuyAccessBlocked_Notify">
		你所欲購買的土地包含 [REGIONMATURITY] 分級的內容,可是你目前的偏好設定排除了 [REGIONMATURITY] 分級的內容。
	</notification>
	<notification name="LandBuyAccessBlocked_NotifyAdultsOnly">
		你所欲購買的土地含有 [REGIONMATURITY] 分級的內容,僅限成人。
	</notification>
	<notification name="LandBuyAccessBlocked_Change">
		你所欲購買的土地包含 [REGIONMATURITY] 分級的內容,可是你目前的偏好設定排除了 [REGIONMATURITY] 分級的內容。 我們可以變更你的偏好,讓你再試圖購買土地。
		<form name="form">
			<button name="OK" text="變更偏好設定"/>
			<button name="Cancel" text="取消"/>
			<ignore name="ignore" text="你所欲購買的土地含有被你目前的偏好所排除的分級內容。"/>
		</form>
	</notification>
	<notification name="TooManyPrimsSelected">
		選擇了太多項的幾何元件。  請至多選擇 [MAX_PRIM_COUNT] 項幾何元件,再試一次。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="TooManyScriptsSelected">
		選取的物件腳本太多。  請減少選取的物件數,再試一次。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="ProblemImportingEstateCovenant">
		匯入領地契約時出問題。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="ProblemAddingEstateManager">
		新增領地管理人時出問題。  其中一個領地的管理人清單可能已經額滿。
	</notification>
	<notification name="ProblemAddingEstateBanManager">
		無法把領地所有人或管理員加入領地的封鎖名單中。
	</notification>
	<notification name="ProblemAddingEstateGeneric">
		新增到這個領地清單時出問題。  其中一個領地的清單可能已滿。
	</notification>
	<notification name="UnableToLoadNotecardAsset">
		此刻無法載入記事卡資產。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="NotAllowedToViewNotecard">
		權限不足無法察看此資產編號的記事卡。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="MissingNotecardAssetID">
		記事卡的資產編號在資料庫中找不到。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="PublishClassified">
		請注意:個人廣告刊登費恕不退還。

支付 L$ [AMOUNT] 刊載這則個人廣告?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="SetClassifiedMature">
		這則個人廣告是否含適度成人分級的內容?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="否" yestext="是"/>
	</notification>
	<notification name="SetGroupMature">
		這個群組將包含適度成人內容?
		<usetemplate canceltext="取消" name="yesnocancelbuttons" notext="否" yestext="是"/>
	</notification>
	<notification label="確定重新啟動" name="ConfirmRestart">
		你確定要在 2 分鐘後重新啟動這個地區?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification label="對地區裡每個人發出訊息" name="MessageRegion">
		輸入簡短公告,公告將發送給地區裡所有人。
		<form name="form">
			<button name="OK" text="確定"/>
			<button name="Cancel" text="取消"/>
		</form>
	</notification>
	<notification label="已變更地區的內容分級" name="RegionMaturityChange">
		此地區的內容分級已經變更。
可能需要稍候一段時間,地圖才會反映這個變更。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification label="聲音版本不相符" name="VoiceVersionMismatch">
		這版本的 [APP_NAME] 和本地區的語音聊天功能不相容。 想要語音聊天正常運作,你必須更新 [APP_NAME]。
	</notification>
	<notification label="無法購買物件" name="BuyObjectOneOwner">
		無法同時向不同物主購買物件。
請只選擇一個物件,再試一次。
	</notification>
	<notification label="無法購買內容物" name="BuyContentsOneOnly">
		無法一次購買多個物件的內容。
請只選擇一個物件,再試一次。
	</notification>
	<notification label="無法購買內容物" name="BuyContentsOneOwner">
		無法同時向不同物主購買物件。
請只選擇一個物件,再試一次。
	</notification>
	<notification name="BuyOriginal">
		向 [OWNER] 支付 L$[PRICE],購買原版物件?
你將成為這物件的所有人。
你將可以:
 修改:[MODIFYPERM]
 複製:[COPYPERM]
 轉售或送人:[RESELLPERM]
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="BuyOriginalNoOwner">
		支付 L$[PRICE] 購買原版物件?
你將成為這物件的所有人。
你將可以:
 修改:[MODIFYPERM]
 複製:[COPYPERM]
 轉售或送人:[RESELLPERM]
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="BuyCopy">
		向 [OWNER] 支付 L$[PRICE],購買複製物件?
這物件將複製到你的收納區。
你將可以:
 修改:[MODIFYPERM]
 複製:[COPYPERM]
 轉售或送人:[RESELLPERM]
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="BuyCopyNoOwner">
		支付 L$[PRICE] 購買複製物件?
這物件將複製到你的收納區。
你將可以:
 修改:[MODIFYPERM]
 複製:[COPYPERM]
 轉售或送人:[RESELLPERM]
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="BuyContents">
		向 [OWNER] 支付 L$[PRICE] 購買內容?
內容將複製到你的收納區。
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="BuyContentsNoOwner">
		支付 L$[PRICE] 購買內容?
內容將複製到你的收納區。
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmPurchase">
		這項交易將會:
[ACTION]

你確定要購買?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmPurchasePassword">
		這項交易將會:
[ACTION]

你確定要購買?
請重新輸入密碼再點按確定。
		<form name="form">
			<button name="ConfirmPurchase" text="確定"/>
			<button name="Cancel" text="取消"/>
		</form>
	</notification>
	<notification name="SetPickLocation">
		附註:
你已經更新這個精選地點的地點細節,其他細節將保留原內容。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="MoveInventoryFromObject">
		你選擇了「禁止複製」的收納區物項。
這些物項將被移到你的收納區,不會被複製。

要移動收納區物項嗎?
		<usetemplate ignoretext="在我從物件中移動「禁止複製」物項之前警告我" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="MoveInventoryFromScriptedObject">
		你選擇了「禁止複製」的收納區物項。  這些物項將被移到你的收納區,不會被複製。
由於這物件帶有腳本,移動這些物項到收納區可能會導致腳本運作不正常。

要移動收納區物項嗎?
		<usetemplate ignoretext="在我移動可能破壞帶腳本物件的「禁止複製」物項之前警告我" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ClickActionNotPayable">
		警告:「支付物件」點按動作已設定,但新增的腳本必須含有 money() 事件,該動作才有作用。
		<form name="form">
			<ignore name="ignore" text="我在創建不含 money() 腳本的物件時設定了「支付物件」動作"/>
		</form>
	</notification>
	<notification name="PayConfirmation">
		確認你真要支付 L$[AMOUNT] 給 [TARGET]。
		<usetemplate ignoretext="付款前跟我確認(超過 L$200 的總額)" name="okcancelignore" notext="取消" yestext="支付"/>
	</notification>
	<notification name="PayObjectFailed">
		付款失敗:找不到物件。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="PaymentBlockedButtonMismatch">
		付款中止:所付價格與此物件設定的任何付款按鈕皆不相符。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="OpenObjectCannotCopy">
		這物件中沒有任何准許你複製的物項。
	</notification>
	<notification name="WebLaunchAccountHistory">
		前往你的[http://secondlife.com/account/ 塗鴉牆]以察看你的帳戶歷史紀錄?
		<usetemplate ignoretext="啟動我的瀏覽器以察看我的帳戶歷史紀錄" name="okcancelignore" notext="取消" yestext="前往頁面"/>
	</notification>
	<notification name="ConfirmAddingChatParticipants">
		新增一個人到現有的交談,等於建立新的交談。  所有交談者將會收到新交談通知。
		<usetemplate ignoretext="確認新增聊天者" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmQuit">
		你確定你要結束退出?
		<usetemplate ignoretext="當我結束退出時進行確認" name="okcancelignore" notext="不要結束退出" yestext="結束退出"/>
	</notification>
	<notification name="ConfirmRestoreToybox">
		這動作將會恢復你預設的按鈕和工具列。

你不能取消這動作。
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmClearAllToybox">
		這動作將把所有按鈕收入工具箱,你的工具列將會清空。
    
你不能取消這動作。
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="DeleteItems">
		[QUESTION]
		<form name="form">
			<ignore name="ignore" text="刪除物品前確認"/>
			<button name="Yes" text="確定"/>
			<button name="No" text="取消"/>
		</form>
	</notification>
	<notification name="DeleteFilteredItems">
		你的收納區目前設有過濾條件,所以你即將刪除的物項並未全部顯示。

你確定要加以刪除?
		<usetemplate ignoretext="刪除過濾條件物項前,讓我確認" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmUnlink">
		這是一組包含聯結集的巨大選取項。 一旦你取消它的聯結,很可能不能再重新聯結。 為防萬一,建議你把聯結集複製到收納區。
		<usetemplate ignoretext="取消聯結集聯結時,跟我確認" name="okcancelignore" notext="取消" yestext="取消聯結"/>
	</notification>
	<notification name="HelpReportAbuseConfirm">
		謝謝你撥冗提報問題。 
我們會查核你的舉報內容決定有無違規情事,並
採取適當行動。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="HelpReportAbuseSelectCategory">
		請選擇適合這次違規舉報的類別。
選對類別可以幫助我們歸類並處理違規舉報。
	</notification>
	<notification name="HelpReportAbuseAbuserNameEmpty">
		請輸入違規人的名字。
輸入準確的內容可以幫助我們歸類並處理違規舉報。
	</notification>
	<notification name="HelpReportAbuseAbuserLocationEmpty">
		請輸入違規情事發生地點。
輸入準確的內容可以幫助我們歸類並處理違規舉報。
	</notification>
	<notification name="HelpReportAbuseSummaryEmpty">
		請概述違規情事。
準確的概述可以幫助我們歸類並處理違規舉報。
	</notification>
	<notification name="HelpReportAbuseDetailsEmpty">
		請詳述違規情事。
請儘可能提供具體詳情,包括你要舉報的案情細節和涉案的名稱。
準確的詳述可以幫助我們歸類並處理違規舉報。
	</notification>
	<notification name="HelpReportAbuseContainsCopyright">
		這位居民,你好:

你似乎正在舉報有人侵犯智慧財產權。 請確定你舉報內容確鑿無誤:

(1) 違規舉報處理程序。 你若相信有居民利用 [SECOND_LIFE] 權限遂行侵犯智慧財產權,如使用複製機器程式碼(CopyBot)或其他類似複製工具,得以舉報此情事。 違規處理小組會就任何違反[SECOND_LIFE][http://secondlife.com/corporate/tos.php 服務條款]或[http://secondlife.com/corporate/cs.php 社群準則]的行為展開調查,並採取適當處置。 然而,違規處理小組並不受理要求將某內容自[SECOND_LIFE]虛擬世界刪除,這類要求將不予回應。

(2) DMCA(刪除內容作業程序)。 若欲要求刪除[SECOND_LIFE]內容,你必須按照[http://secondlife.com/corporate/dmca.php DMCA 政策]提出有效的侵權通知。

如果你仍希望繼續,請關閉此視窗,完成舉報。  你可能需要選擇「CopyBot 或濫用權限」這一具體類別。

謝謝你,

林登實驗室謹上
	</notification>
	<notification name="FailedRequirementsCheck">
		[FLOATER] 裡找不到下列必要元件:
[COMPONENTS]
	</notification>
	<notification label="取代現有的附件" name="ReplaceAttachment">
		你身上的這個部位已經附著了物件。
你要用所選物件將它取代嗎?
		<form name="form">
			<ignore name="ignore" text="以所選擇的物品取代現有的附加物"/>
			<button ignore="自動取代" name="Yes" text="確定"/>
			<button ignore="絕不取代" name="No" text="取消"/>
		</form>
	</notification>
	<notification name="TooManyWearables">
		你不能對含超過 [AMOUNT] 個物項的資料夾作穿戴動作。  欲變更此上限,可到「進階」&gt;「顯示除錯設定」&gt;「WearFolderLimit」。
	</notification>
	<notification label="「請勿打擾」模式警告" name="DoNotDisturbModePay">
		你已開啟「請勿打擾」。 你將不會收到任何付款購買的物項。

是否要在完成交易之前,先關閉「請勿打擾」模式?
		<form name="form">
			<ignore name="ignore" text="我即將在「請勿打擾」模式下,試圖付錢給他人或給一個物件"/>
			<button ignore="固定選擇離開「請勿打擾」模式" name="Yes" text="確定"/>
			<button ignore="永不離開「請勿打擾」模式" name="No" text="取消"/>
		</form>
	</notification>
	<notification name="ConfirmDeleteProtectedCategory">
		「[FOLDERNAME]」屬於系統資料夾。 刪除系統資料夾可能導致系統不穩定。  你確定要加以刪除?
		<usetemplate ignoretext="在我刪除系統資料夾前確認" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="PurgeSelectedItems">
		[COUNT]個物項將會永久刪除。 你確定你要永久刪除所選的垃圾筒內容?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmEmptyTrash">
		[COUNT]個物項將會永久刪除。 你確定你要永久刪除垃圾筒中的內容?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="TrashIsFull">
		你的垃圾桶快滿了。 這可能會造成登入的問題。
		<usetemplate name="okcancelbuttons" notext="我稍後再清空垃圾桶" yestext="檢查垃圾筒資料夾"/>
	</notification>
	<notification name="ConfirmClearBrowserCache">
		你確定要刪除你的旅行、網頁及搜尋歷史紀錄嗎?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ConfirmClearCache">
		確定要清除你 Viewer 的快取?
		<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]

從某個網頁連結到這裡,讓其他人更容易知道這個地點,或請自行嘗試將它貼到任何網頁瀏覽器的地址欄裡。
		<form name="form">
			<ignore name="ignore" text="SLurl 已經覆製到我的剪貼簿。"/>
		</form>
	</notification>
	<notification name="WLSavePresetAlert">
		你要覆寫已儲存的預設配置嗎?
		<usetemplate name="okcancelbuttons" notext="否" yestext="是"/>
	</notification>
	<notification name="WLNoEditDefault">
		你不能編輯或刪除預設的設定。
	</notification>
	<notification name="WLMissingSky">
		這個「一日循環」檔案參考了一個不存在的天空檔案:[SKY]。
	</notification>
	<notification name="WLRegionApplyFail">
		抱歉,設定無法套用到地區。  離開地區再返回也許可以解決這個問題。  所得的原因為:[FAIL_REASON]
	</notification>
	<notification name="EnvCannotDeleteLastDayCycleKey">
		無法刪除此日循環的最後一組設定,日循環不得為空白。  你應該修改最後一組資料,不要試圖刪除,然後再建立新的。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="DayCycleTooManyKeyframes">
		你無法新增更多的 keyframe 到這個日循環。  [SCOPE] 範圍的日循環最多允許 [MAX] 個 keyframe。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="EnvUpdateRate">
		你至多只能每 [WAIT] 秒更新一次地區的環境設定。  請等到這段時間過去了再試一次。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="PPSaveEffectAlert">
		PostProcess 效果已經存在。 你是否仍要把它覆寫掉?
		<usetemplate name="okcancelbuttons" notext="否" yestext="是"/>
	</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">
		你不能購買已附著的物件。
	</notification>
	<notification label="關於借記權限要求" name="DebitPermissionDetails">
		若你同意這要求,將允許腳本從你的帳戶中重覆取走林登幣(L$)。 物件所有人必須刪除該物件,或重設物件裡的腳本,才能撤銷這一權限。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="AutoWearNewClothing">
		你要自動穿上你所創造的服裝嗎?
		<usetemplate ignoretext="編輯外觀時能穿上我所創造的服裝" name="okcancelignore" notext="否" yestext="是"/>
	</notification>
	<notification name="NotAgeVerified">
		你所欲前往的地點設限給年滿 18 歲的居民進入。
		<usetemplate ignoretext="我年齡不滿規定,無法進入有年齡限制的區域。" name="okignore" yestext="確定"/>
	</notification>
	<notification name="NotAgeVerified_Notify">
		此地點限制為年滿 18 歲。
	</notification>
	<notification name="Cannot enter parcel: no payment info on file">
		你必須提供付款資料才能進入這區域。  你是否要前往 [SECOND_LIFE] 網站設定付款資料?

[_URL]
		<url name="url">
			https://secondlife.com/account/
		</url>
		<usetemplate ignoretext="我沒有預留付款資料。" name="okcancelignore" notext="否" yestext="是"/>
	</notification>
	<notification name="MissingString">
		strings.xml 中找不到字串 [STRING_NAME]
	</notification>
	<notification name="SystemMessageTip">
		[MESSAGE]
	</notification>
	<notification name="IMSystemMessageTip">
		[MESSAGE]
	</notification>
	<notification name="Cancelled">
		已取消
	</notification>
	<notification name="CancelledAttach">
		取消貼上
	</notification>
	<notification name="ReplacedMissingWearable">
		已用預設值補足空缺的衣服/身體部位。
	</notification>
	<notification name="GroupNotice">
		主旨:[SUBJECT],訊息:[MESSAGE]
	</notification>
	<notification name="FriendOnlineOffline">
		&lt;nolink&gt;[NAME]&lt;/nolink&gt; 目前狀態為 [STATUS]
	</notification>
	<notification name="AddSelfFriend">
		雖然你人很好,你還是不能把自己加為朋友。
	</notification>
	<notification name="AddSelfRenderExceptions">
		你不能把自己加到呈像例外清單裡。
	</notification>
	<notification name="UploadingAuctionSnapshot">
		正在上傳虛擬世界和網站快照…
(需時約 5 分鐘。)
	</notification>
	<notification name="UploadPayment">
		你支付 L$[AMOUNT] 上傳。
	</notification>
	<notification name="UploadWebSnapshotDone">
		網站快照上傳完成。
	</notification>
	<notification name="UploadSnapshotDone">
		虛擬世界快照上傳完成。
	</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="IMAcrossParentEstates">
		無法對不同的母領地發出即時訊息。
	</notification>
	<notification name="TransferInventoryAcrossParentEstates">
		收納區無法轉移到不同的母領地。
	</notification>
	<notification name="UnableToLoadNotecard">
		無法載入記事卡。
請再試一次。
	</notification>
	<notification name="ScriptMissing">
		腳本在資料庫中遺失。
	</notification>
	<notification name="ScriptNoPermissions">
		察看腳本時發生權限衝突。
	</notification>
	<notification name="UnableToLoadScript">
		無法載入腳本。  請再試一次。
	</notification>
	<notification name="IncompleteInventory">
		你所提供的完整內容在本地還無法取得。 請幾分鐘後再試著提供這些物項。
	</notification>
	<notification name="CannotModifyProtectedCategories">
		你不能修改受保護的類別。
	</notification>
	<notification name="CannotRemoveProtectedCategories">
		你不能移除受保護的類別。
	</notification>
	<notification name="UnableToBuyWhileDownloading">
		正在下載物件資料,無法購買。
請再試一次。
	</notification>
	<notification name="UnableToLinkWhileDownloading">
		正在下載物件資料,無法聯結。
請再試一次。
	</notification>
	<notification name="CannotBuyObjectsFromDifferentOwners">
		你一次只能向一位物主購買物件。
請選擇一個單一物件。
	</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">
		要瞬間傳送到「[NAME]」等地點,請點按「地點」按鈕,
    然後在開啟的視窗裡,選擇「地標」頁籤。 點按任何
    地標加以選擇,再點按視窗底下的「瞬間傳送」按鈕。
    (你還可以直接按兩下那個地標,或按滑鼠右鍵,選擇「瞬間傳送」。)
	</notification>
	<notification name="TeleportToPerson">
		要和某人私下交談,請右鍵點按化身,再點按選單的「IM」。
	</notification>
	<notification name="CantSelectLandFromMultipleRegions">
		無法選擇超出伺服器邊界的土地。
請試著縮小所選的土地。
	</notification>
	<notification name="SearchWordBanned">
		根據「社群準則」所明訂的內容限制,已排除你所搜尋的某些字眼。
	</notification>
	<notification name="NoContentToSearch">
		請至少選擇一種要搜索的內容分級(一般普級、適度成人、完全成人)。
	</notification>
	<notification name="SystemMessage">
		[MESSAGE]
	</notification>
	<notification name="FlickrConnect">
		[MESSAGE]
	</notification>
	<notification name="TwitterConnect">
		[MESSAGE]
	</notification>
	<notification name="PaymentReceived">
		[MESSAGE]
	</notification>
	<notification name="PaymentSent">
		[MESSAGE]
	</notification>
	<notification name="PaymentFailure">
		[MESSAGE]
	</notification>
	<notification name="EventNotification">
		活動通知:

[NAME]
[DATE]
		<form name="form">
			<button name="Details" text="細節"/>
			<button name="Cancel" text="取消"/>
		</form>
	</notification>
	<notification name="TransferObjectsHighlighted">
		這地段上,所有將轉移給地段購買人的物件,現已呈高亮顯示。

* 即將轉移的樹和草不會以高亮顯示。
		<form name="form">
			<button name="Done" text="完成"/>
		</form>
	</notification>
	<notification name="DeactivatedGesturesTrigger">
		以同一觸發停用的姿勢:
[NAMES]
	</notification>
	<notification name="NoQuickTime">
		你的系統似乎未安裝 Apple 的 QuickTime 軟體。
如果你要在支援串流媒體的地段上觀看這類媒體,請到[http://www.apple.com/quicktime QuickTime 網站]安裝 QuickTime 播放器。
	</notification>
	<notification name="NoPlugin">
		找不到媒體插件來處理「[MIME_TYPE]」mine 類型。  這類媒體將無法使用。
	</notification>
	<notification name="MediaPluginFailed">
		以下的媒體插件失靈:
    [PLUGIN]

如果你繼續出現這狀況,請重新安裝插件,或聯絡其提供廠家。
		<form name="form">
			<ignore name="ignore" text="有一個媒體插件無法執行"/>
		</form>
	</notification>
	<notification name="OwnedObjectsReturned">
		你在所選地段上所擁有的物件已被送返你的收納區。
	</notification>
	<notification name="OtherObjectsReturned">
		在所選地段上由 [NAME] 所擁有的物件已被送返其收納區。
	</notification>
	<notification name="OtherObjectsReturned2">
		在所選地段上由居民 &apos;[NAME]&apos; 所擁有的物件已被送返其收納區。
	</notification>
	<notification name="GroupObjectsReturned">
		在所選地段上和群組「&lt;nolink&gt;[GROUPNAME]&lt;/nolink&gt;」分享的物件已被送返其所有人的收納區。
可轉讓的已讓渡物件已送返給前物主。
讓渡給這個群組的不可轉讓物件已被刪除。
	</notification>
	<notification name="UnOwnedObjectsReturned">
		在所選地段上不是你擁有的物件已送返給其所有人。
	</notification>
	<notification name="ServerObjectMessage">
		來自 [NAME] 的訊息:
&lt;nolink&gt;[MSG]&lt;/nolink&gt;
	</notification>
	<notification name="NotSafe">
		這塊土地允許傷害。
在這裡你可能會受傷害。 你如果死亡,會被瞬間傳送回你的家。
	</notification>
	<notification name="NoFly">
		這區域禁止飛行。
你不能在此處飛行。
	</notification>
	<notification name="PushRestricted">
		這區域不允許推撞。 除非你擁有這塊土地,否則你不能推撞別人。
	</notification>
	<notification name="NoVoice">
		這區域禁止語音聊天。 你將不會聽到任何人說話。
	</notification>
	<notification name="NoBuild">
		這區域禁止建造物件。 你不能在此建造或產生物件。
	</notification>
	<notification name="PathfindingDirty">
		這地區的尋徑功能有所變更,待儲存。  如果你有建製權,你可以點按「重新產出地區」按鈕重新產出地區。
	</notification>
	<notification name="PathfindingDirtyRebake">
		這地區的尋徑功能有所變更,待儲存。  如果你有建製權,你可以點按「重新產出地區」按鈕重新產出地區。
		<usetemplate name="okbutton" yestext="重新產出地區"/>
	</notification>
	<notification name="DynamicPathfindingDisabled">
		這地區並未啟用動態尋徑。  使用尋徑 LSL 呼叫的帶腳本物件,在此地區可能無法正常運作。
	</notification>
	<notification name="PathfindingCannotRebakeNavmesh">
		發生錯誤。  問題可能出在網路或伺服器,也可能因為你無權建製物件。  有時,只要登出再登入即能解決這類問題。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="SeeAvatars">
		本地段隱藏其內的化身和聊天文字,其他地段看不到。   你看不見地段外的居民,他們也看不見你。  頻道 0 的聊天文字也被封鎖。
	</notification>
	<notification name="ScriptsStopped">
		某管理員已暫時停止區域裡的腳本。
	</notification>
	<notification name="ScriptsNotRunning">
		這區域沒有執行任何腳本。
	</notification>
	<notification name="NoOutsideScripts">
		這塊土地禁用外來腳本。

只有屬於土地所有人的腳本在此可以正常執行。
	</notification>
	<notification name="ClaimPublicLand">
		你只能在你所處的區域收取公共土地。
	</notification>
	<notification name="RegionTPAccessBlocked">
		你所欲前往的地區含有超過你目前偏好的分級的內容。  你可以到「我自己 &gt; 偏好設定 &gt; 一般設定」變更你的偏好設定。
	</notification>
	<notification name="URBannedFromRegion">
		這個區域禁止你進入。
	</notification>
	<notification name="NoTeenGridAccess">
		你的帳戶不可連接到這個青少年網格區域。
	</notification>
	<notification name="ImproperPaymentStatus">
		你沒有適當的付款狀態,不能進入這區域。
	</notification>
	<notification name="MustGetAgeRegion">
		你必須年滿 18 歲才可進入這地區。
	</notification>
	<notification name="MustGetAgeParcel">
		你必須年滿 18 歲才可進入這地段。
	</notification>
	<notification name="NoDestRegion">
		找不到目的地地區。
	</notification>
	<notification name="NotAllowedInDest">
		你不准前往目的地。
	</notification>
	<notification name="RegionParcelBan">
		無法跨出地區進入禁止你的地段。 請換一個方式。
	</notification>
	<notification name="TelehubRedirect">
		你已被重新導往一個瞬間傳送中心。
	</notification>
	<notification name="CouldntTPCloser">
		無法瞬間傳送到更接近目的地的地點。
	</notification>
	<notification name="TPCancelled">
		瞬間傳送已取消。
	</notification>
	<notification name="FullRegionTryAgain">
		你試圖進入的地區目前人滿。
請稍待一會兒再試。
	</notification>
	<notification name="GeneralFailure">
		一般故障。
	</notification>
	<notification name="RoutedWrongRegion">
		被繞往錯誤的地區。 請再試一次。
	</notification>
	<notification name="NoValidAgentID">
		沒有有效的化身編號。
	</notification>
	<notification name="NoValidSession">
		沒有有效的時域編號。
	</notification>
	<notification name="NoValidCircuit">
		沒有有效的線路碼。
	</notification>
	<notification name="NoPendingConnection">
		無法建立待通的連線。
	</notification>
	<notification name="InternalUsherError">
		試圖連接用戶引導時發生內部錯誤。
	</notification>
	<notification name="NoGoodTPDestination">
		在這地區找不到合適的瞬間傳送目的地。
	</notification>
	<notification name="InternalErrorRegionResolver">
		試圖啟動區域解析器時發生內部錯誤。
	</notification>
	<notification name="NoValidLanding">
		找不到有效的登陸地點。
	</notification>
	<notification name="NoValidParcel">
		找不到有效的地段。
	</notification>
	<notification name="ObjectGiveItem">
		名為 &lt;nolink&gt;[OBJECTFROMNAME]&lt;/nolink&gt;、由 [NAME_SLURL] 擁有的物件給了你這個 [OBJECTTYPE]:
&lt;nolink&gt;[ITEM_SLURL]&lt;/nolink&gt;
		<form name="form">
			<button name="Keep" text="保留"/>
			<button name="Discard" text="丟棄"/>
			<button name="Mute" text="封鎖所有人"/>
		</form>
	</notification>
	<notification name="OwnObjectGiveItem">
		你名為 &lt;nolink&gt;[OBJECTFROMNAME]&lt;/nolink&gt; 的物件給了你這個 [OBJECTTYPE]:
&lt;nolink&gt;[ITEM_SLURL]&lt;/nolink&gt;
		<form name="form">
			<button name="Keep" text="保留"/>
			<button name="Discard" text="丟棄"/>
		</form>
	</notification>
	<notification name="UserGiveItem">
		[NAME_SLURL] 給了你這個 [OBJECTTYPE]:
[ITEM_SLURL]
		<form name="form">
			<button name="Show" text="顯示"/>
			<button name="Discard" text="丟棄"/>
			<button name="Mute" text="封鎖"/>
		</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] 想要瞬間傳送你到他的地點:

“[MESSAGE]”
&lt;icon&gt;[MATURITY_ICON]&lt;/icon&gt; - [MATURITY_STR]
		<form name="form">
			<button name="Teleport" text="瞬間傳送"/>
			<button name="Cancel" text="取消"/>
		</form>
	</notification>
	<notification name="TeleportOffered_MaturityExceeded">
		[NAME_SLURL] 想要瞬間傳送你到他的地點:

“[MESSAGE]”
&lt;icon&gt;[MATURITY_ICON]&lt;/icon&gt; - [MATURITY_STR]

此地區包含 [REGION_CONTENT_MATURITY] 的分級內容,可是你目前的偏好設定排除了 [REGION_CONTENT_MATURITY] 的分級內容。  我們可以變更你的偏好設定好讓你繼續瞬間傳送,你也可取消這動作。
		<form name="form">
			<button name="Teleport" text="變更後繼續"/>
			<button name="Cancel" text="取消"/>
		</form>
	</notification>
	<notification name="TeleportOffered_MaturityBlocked">
		[NAME_SLURL] 想要瞬間傳送你到他的地點:

“[MESSAGE]”
&lt;icon&gt;[MATURITY_ICON]&lt;/icon&gt; - [MATURITY_STR]

可是,此地區含有僅限成人的內容。
	</notification>
	<notification name="TeleportOfferSent">
		已向 [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] 想成為你的朋友。

[MESSAGE]

(根據預設設定,你們將可看到彼此的線上狀態。)
		<form name="form">
			<button name="Accept" text="接受"/>
			<button name="Decline" text="謝絕"/>
		</form>
	</notification>
	<notification name="FriendshipOffered">
		已經邀請 [TO_NAME] 成為朋友
	</notification>
	<notification name="OfferFriendshipNoMessage">
		[NAME_SLURL] 想成為你的朋友。

(根據預設設定,你們將可看到彼此的線上狀態。)
		<form name="form">
			<button name="Accept" text="接受"/>
			<button name="Decline" text="謝絕"/>
		</form>
	</notification>
	<notification name="FriendshipAccepted">
		&lt;nolink&gt;[NAME]&lt;/nolink&gt; 接受了你的交友邀請。
	</notification>
	<notification name="FriendshipDeclined">
		&lt;nolink&gt;[NAME]&lt;/nolink&gt; 婉拒了你的交友邀請。
	</notification>
	<notification name="FriendshipAcceptedByMe">
		交友邀請被接受。
	</notification>
	<notification name="FriendshipDeclinedByMe">
		交友邀請被謝絕。
	</notification>
	<notification name="OfferCallingCard">
		[NAME] 送給你他的名片。
這將在你的收納區新增一個書籤,方便你和這位居民互傳即時訊息。
		<form name="form">
			<button name="Accept" text="接受"/>
			<button name="Decline" text="謝絕"/>
		</form>
	</notification>
	<notification name="RegionRestartMinutes">
		本地區將在 [MINUTES] 分鐘後重新啟動。
如果你繼續留在這地區,你將會被登出。
	</notification>
	<notification name="RegionRestartSeconds">
		本地區將在 [SECONDS] 秒後重新啟動。
如果你繼續留在這地區,你將會被登出。
	</notification>
	<notification name="LoadWebPage">
		載入網頁 [URL]?

[MESSAGE]

來源物件:&lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;(所有人是[NAME_SLURL])
		<form name="form">
			<button name="Gotopage" text="前往頁面"/>
			<button name="Cancel" text="取消"/>
		</form>
	</notification>
	<notification name="FailedToFindWearableUnnamed">
		資料庫找不到 [TYPE]。
	</notification>
	<notification name="FailedToFindWearable">
		資料庫找不到名為 [DESC] 的 [TYPE]。
	</notification>
	<notification name="InvalidWearable">
		你想要穿著的物項帶有一個不是你目前 Viewer 版本能夠讀取的特性。 請更新你的 [APP_NAME] 版本再穿著該物項。
	</notification>
	<notification name="ScriptQuestion">
		&apos;&lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;&apos;,一個由 &apos;[NAME]&apos; 擁有的物件,想要:

[QUESTIONS]
是否同意?
		<form name="form">
			<button name="Yes" text="是"/>
			<button name="No" text="否"/>
			<button name="Mute" text="封鎖"/>
		</form>
	</notification>
	<notification name="ExperienceAcquireFailed">
		無法取得新的體驗:
    [ERROR_MESSAGE]
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="NotInGroupExperienceProfileMessage">
		已取消對體驗群組的變更,因為擁有人不是所選群組的成員。
	</notification>
	<notification name="UneditableExperienceProfileMessage">
		已在更新體驗簡覽時忽略不可編輯的欄位 &apos;[field]&apos;。
	</notification>
	<notification name="RestrictedToOwnerExperienceProfileMessage">
		已忽略對欄位 &apos;[field]&apos; 的變更,只有體驗擁有人可作此變更。
	</notification>
	<notification name="MaturityRatingExceedsOwnerExperienceProfileMessage">
		你不能將體驗的內容分級設定為比擁有人所設更高的等級。
	</notification>
	<notification name="RestrictedTermExperienceProfileMessage">
		以下項目導致無法更新體驗的名稱或描述:[extra_info]
	</notification>
	<notification name="TeleportedHomeExperienceRemoved">
		你已移除金鑰體驗 secondlife:///app/experience/[public_id]/profile,因此被瞬間傳送離開 [region_name] 地區,因為你已無權續留。
		<form name="form">
			<ignore name="ignore" text="移除體驗後,已被踢出地區"/>
		</form>
	</notification>
	<notification name="TrustedExperienceEntry">
		你已參與金鑰體驗 secondlife:///app/experience/[public_id]/profile,因此獲准進入 [region_name] 地區,若移除此體驗,你可能會被踢出地區。
		<form name="form">
			<ignore name="ignore" text="已透過體驗獲准進入地區"/>
		</form>
	</notification>
	<notification name="TrustedExperiencesAvailable">
		你並沒有權限進入此目的地。 若接受以下一項體驗,可獲准進入該地區:

[EXPERIENCE_LIST]

可能有其他金鑰體驗供選擇。
	</notification>
	<notification name="ExperienceEvent">
		一個物件已得到 secondlife:///app/experience/[public_id]/profile 體驗允許,可以[EventType]。
    所有人:secondlife:///app/agent/[OwnerID]/inspect
    物件名稱:[ObjectName]
    地段名稱:[ParcelName]
	</notification>
	<notification name="ExperienceEventAttachment">
		一個附件已得到 secondlife:///app/experience/[public_id]/profile 體驗允許,可以[EventType]。
    所有人:secondlife:///app/agent/[OwnerID]/inspect
	</notification>
	<notification name="ScriptQuestionExperience">
		&apos;&lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;&apos;,一個由 &apos;[NAME]&apos; 擁有的物件,邀請你參與以下的 [GRID_WIDE] 體驗:

[EXPERIENCE]

允准之後,除非在「體驗簡覽」撤銷該權限,否則你將不再看到此訊息。

本體驗的相關腳本,將可在啟用本體驗的地區進行以下動作: 

[QUESTIONS] 你是否同意?
		<form name="form">
			<button name="BlockExperience" text="封鎖體驗"/>
			<button name="Mute" text="封鎖物件"/>
			<button name="Yes" text="是"/>
			<button name="No" text="否"/>
		</form>
	</notification>
	<notification name="ScriptQuestionCaution">
		警告:物件 &apos;&lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;&apos; 要求全權存取你的林登幣帳戶。 你如果允許存取帳戶,它將可在任何時候從你帳戶取走資金,或完全加以清空,或定期取走部分資金,且不會發出警告。
  
如果你不完全瞭解它為何要求存取你的帳戶,請勿允准。
		<form name="form">
			<button name="Grant" text="允許全權存取"/>
			<button name="Deny" text="拒絕"/>
		</form>
	</notification>
	<notification name="UnknownScriptQuestion">
		由 &apos;[NAME]&apos; 所擁有的物件 &apos;&lt;nolink&gt;[OBJECTNAME]&lt;/nolink&gt;&apos; 正請求某項執行時期腳本權限,但本瀏覽器無法辨識該權限,故不允准。

欲准許此權限,請從 [DOWNLOADURL] 下載並更新為最新版瀏覽器。
		<form name="form">
			<button name="Deny" text="確定"/>
			<button name="Mute" text="封鎖"/>
		</form>
	</notification>
	<notification name="ScriptDialog">
		[NAME] 的 &apos;&lt;nolink&gt;[TITLE]&lt;/nolink&gt;&apos;
[MESSAGE]
		<form name="form">
			<button name="Client_Side_Mute" text="封鎖"/>
			<button name="Client_Side_Ignore" text="忽視"/>
		</form>
	</notification>
	<notification name="ScriptDialogGroup">
		&lt;nolink&gt;[GROUPNAME]&lt;/nolink&gt;的「&lt;nolink&gt;[TITLE]&lt;/nolink&gt;」
[MESSAGE]
		<form name="form">
			<button name="Client_Side_Mute" text="封鎖"/>
			<button name="Client_Side_Ignore" text="忽視"/>
		</form>
	</notification>
	<notification name="BuyLindenDollarSuccess">
		感謝你付款!

處理完成後,你的 L$ 餘額將會更新。 如果處理過程超過 20 分鐘,你的交易可能被取消。 在這狀況下,購買金額將退回給你的 US$ 餘額。

你可以到你的[http://secondlife.com/account/ 塗鴉牆]上的交易歷史記錄頁面,察看付款狀態。
	</notification>
	<notification name="FirstOverrideKeys">
		你的方向鍵現在由一個物件主控。
請試試方向鍵或 AWSD 鍵看有什麼反應。
有些物件(例如槍枝)需要你切換成第一人稱視角才有作用。
請按 M 鍵做切換。
	</notification>
	<notification name="FirstSandbox">
		這個一個沙盤區,旨在幫助居民學習如何建製物件。

你在這裡建製的物件,在你離開後將被刪除。別忘了按滑鼠右鍵,選擇「拿取」,將你的建製物送到你的收納區。
	</notification>
	<notification name="MaxListSelectMessage">
		你最多只能從這清單中選取 [MAX_SELECT] 個物項。
	</notification>
	<notification name="VoiceInviteP2P">
		[NAME] 正邀請你加入語音聊天。
點按「接受」加入通話,或「謝絕」邀請。 點按「封鎖」便可封鎖這個發話人。
		<form name="form">
			<button name="Accept" text="接受"/>
			<button name="Decline" text="謝絕"/>
			<button name="Mute" text="封鎖"/>
		</form>
	</notification>
	<notification name="AutoUnmuteByIM">
		[NAME] 已收到一則即時訊息,並已被自動解除封鎖。
	</notification>
	<notification name="AutoUnmuteByMoney">
		[NAME] 已收到錢,並已被自動解除封鎖。
	</notification>
	<notification name="AutoUnmuteByInventory">
		[NAME] 已得知你要贈送收納物件,並已被自動解除封鎖。
	</notification>
	<notification name="VoiceInviteGroup">
		[NAME]已加入和群組&lt;nolink&gt;[GROUP]&lt;/nolink&gt;的語音聊天通話。
點按「接受」加入通話,或「謝絕」邀請。 點按「封鎖」便可封鎖這個發話人。
		<form name="form">
			<button name="Accept" text="接受"/>
			<button name="Decline" text="謝絕"/>
			<button name="Mute" text="封鎖"/>
		</form>
	</notification>
	<notification name="VoiceInviteAdHoc">
		[NAME] 已加入多方語音通話。
點按「接受」加入通話,或「謝絕」邀請。 點按「封鎖」便可封鎖這個發話人。
		<form name="form">
			<button name="Accept" text="接受"/>
			<button name="Decline" text="謝絕"/>
			<button name="Mute" text="封鎖"/>
		</form>
	</notification>
	<notification name="InviteAdHoc">
		[NAME] 正邀請你加入多方通話。
點按「接受」加入通話,或「謝絕」邀請。 點按「封鎖」便可封鎖這個發話人。
		<form name="form">
			<button name="Accept" text="接受"/>
			<button name="Decline" text="謝絕"/>
			<button name="Mute" text="封鎖"/>
		</form>
	</notification>
	<notification name="VoiceChannelFull">
		你試圖加入 [VOICE_CHANNEL_NAME] 語音通話,不過它已達負載上限。 請稍候再試一次。
	</notification>
	<notification name="ProximalVoiceChannelFull">
		很抱歉。  這區域已達語音通話的負載上限。  請到另一個區域使用語音。
	</notification>
	<notification name="VoiceChannelDisconnected">
		你的 [VOICE_CHANNEL_NAME] 通話已經中斷。  現在你將重新連通到附近的語音聊天。
	</notification>
	<notification name="VoiceChannelDisconnectedP2P">
		[VOICE_CHANNEL_NAME] 語音通話已結束。  現在你將重新連通到附近的語音聊天。
	</notification>
	<notification name="P2PCallDeclined">
		[VOICE_CHANNEL_NAME] 拒絕你加入語音通話。  現在你將重新連通到附近的語音聊天。
	</notification>
	<notification name="P2PCallNoAnswer">
		[VOICE_CHANNEL_NAME] 無法接通你的通話。  現在你將重新連通到附近的語音聊天。
	</notification>
	<notification name="VoiceChannelJoinFailed">
		無法連通 [VOICE_CHANNEL_NAME],,請稍候再試。  現在你將重新連通到附近的語音聊天。
	</notification>
	<notification name="VoiceLoginRetry">
		我們正為你建立語音頻道。 這至多可能需時一分鐘。
	</notification>
	<notification name="VoiceEffectsExpired">
		至少一個你訂用的變聲效果已經過期。
[[URL] 點按這裡] 繼續訂用。
	</notification>
	<notification name="VoiceEffectsExpiredInUse">
		使用中的變聲效果已經過期,已用你平時的聲音設定取代。
[[URL] 點按這裡] 繼續訂用。
	</notification>
	<notification name="VoiceEffectsWillExpire">
		至少一個你訂用的變聲效果將在 [INTERVAL] 天後到期。
[[URL] 點按這裡] 繼續訂用。
	</notification>
	<notification name="VoiceEffectsNew">
		新的變聲效果上市了!
	</notification>
	<notification name="Cannot enter parcel: not a group member">
		只有某特定群組的成員才能進入這區域。
	</notification>
	<notification name="Cannot enter parcel: banned">
		你已被禁入,因此無法進入這地段。
	</notification>
	<notification name="Cannot enter parcel: not on access list">
		無法進入這地段,你不在出入許可名單中。
	</notification>
	<notification name="VoiceNotAllowed">
		你無權連通 [VOICE_CHANNEL_NAME] 語音聊天。
	</notification>
	<notification name="VoiceCallGenericError">
		試圖連通 [VOICE_CHANNEL_NAME] 語音聊天時發生錯誤。  請稍候再試一次。
	</notification>
	<notification name="UnsupportedCommandSLURL">
		你所點按的 SLurl 位置並不被支援。
	</notification>
	<notification name="BlockedSLURL">
		從未被信任的瀏覽器接收到一個 SLurl,為了你的安全起見,已將它封鎖。
	</notification>
	<notification name="ThrottledSLURL">
		短時間內從一個不被信任的瀏覽器接收到多個 SLurl。
為了你的安全起見,它們將被封鎖幾秒鐘。
	</notification>
	<notification name="IMToast">
		[MESSAGE]
		<form name="form">
			<button name="respondbutton" text="回應"/>
		</form>
	</notification>
	<notification name="ConfirmCloseAll">
		你確定要關閉所有的 IM?
		<usetemplate ignoretext="在我關閉全部的 IMs 對話視窗前確認。" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="AttachmentSaved">
		附件已儲存。
	</notification>
	<notification name="AppearanceToXMLSaved">
		外觀已經存成位於[PATH]的XML
	</notification>
	<notification name="AppearanceToXMLFailed">
		將外觀存為XML失敗。
	</notification>
	<notification name="SnapshotToComputerFailed">
		將快照儲存於[PATH]時失敗:磁碟已滿。 需要[NEED_MEMORY]KB的空間,但只剩[FREE_MEMORY]KB空間。
	</notification>
	<notification name="PresetNotSaved">
		儲存預設名稱[NAME]時出錯。
	</notification>
	<notification name="PresetNotDeleted">
		刪除預設名稱[NAME]時出錯。
	</notification>
	<notification name="UnableToFindHelpTopic">
		找不到這個元件的幫助主題。
	</notification>
	<notification name="ObjectMediaFailure">
		伺服器錯誤:媒體更新或取得失敗。
&apos;[ERROR]&apos;
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="TextChatIsMutedByModerator">
		主持人已設定忽略你的文字聊天內容。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="VoiceIsMutedByModerator">
		主持人已將你的語音消音。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="UploadCostConfirmation">
		上傳將花費 L$[PRICE],是否繼續?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="上傳"/>
	</notification>
	<notification name="ConfirmClearTeleportHistory">
		確定清除你的瞬間傳送歷史記錄?
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="BottomTrayButtonCanNotBeShown">
		所選按鈕目前無法顯示。
等到空間足夠,按鈕將會顯示出來。
	</notification>
	<notification name="ShareNotification">
		選取要分享的居民。
	</notification>
	<notification name="MeshUploadErrorDetails">
		[LABEL]上傳失敗:[MESSAGE]
[DETAILS]詳情見 SecondLife.log
	</notification>
	<notification name="MeshUploadError">
		[LABEL]上傳失敗:[MESSAGE]

詳情見SecondLife.log
	</notification>
	<notification name="MeshUploadPermError">
		請求網面上傳權限時出錯。
	</notification>
	<notification name="RegionCapabilityRequestError">
		無法取得地區能力 &apos;[CAPABILITY]&apos;。
	</notification>
	<notification name="ShareItemsConfirmation">
		請確定你要和居民分享這些物項:

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

居民:

&lt;nolink&gt;[RESIDENTS]&lt;/nolink&gt;
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ShareFolderConfirmation">
		一次只能分享一個資料夾。

請確定你要和居民分享這些物項:

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

居民:

&lt;nolink&gt;[RESIDENTS]&lt;/nolink&gt;
		<usetemplate name="okcancelbuttons" notext="取消" yestext="確定"/>
	</notification>
	<notification name="ItemsShared">
		物品已成功分享。
	</notification>
	<notification name="DeedToGroupFail">
		讓渡給群組失敗。
	</notification>
	<notification name="ReleaseLandThrottled">
		目前無法遺棄 [PARCEL_NAME] 地段。
	</notification>
	<notification name="ReleasedLandWithReclaim">
		[AREA] 平方公尺的地段「[PARCEL_NAME]」已釋出。

你須在 [RECLAIM_PERIOD] 小時內領回(花費 L$0),否則將開放出售給任何人。
	</notification>
	<notification name="ReleasedLandNoReclaim">
		[AREA] 平方公尺的地段「[PARCEL_NAME]」已釋出。

現已開放出售給任何人。
	</notification>
	<notification name="AvatarRezNotification">
		(存續 [EXISTENCE] 秒鐘)
化身 &apos;[NAME]&apos; 在 [TIME] 秒內完全呈現。
	</notification>
	<notification name="AvatarRezSelfBakedDoneNotification">
		(存續 [EXISTENCE] 秒鐘)
你的裝扮在 [TIME] 秒內定貌。
	</notification>
	<notification name="AvatarRezSelfBakedUpdateNotification">
		(存續 [EXISTENCE] 秒鐘)
你在 [TIME] 秒後送出更新外觀請求。
[STATUS]
	</notification>
	<notification name="AvatarRezCloudNotification">
		(存續 [EXISTENCE] 秒鐘)
化身 &apos;[NAME]&apos; 已雲化。
	</notification>
	<notification name="AvatarRezArrivedNotification">
		(存續 [EXISTENCE] 秒鐘)
化身 &apos;[NAME]&apos; 已出現。
	</notification>
	<notification name="AvatarRezLeftCloudNotification">
		(存續 [EXISTENCE] 秒鐘)
化身 &apos;[NAME]&apos; 在雲化 [TIME] 秒後離開。
	</notification>
	<notification name="AvatarRezEnteredAppearanceNotification">
		(存續 [EXISTENCE] 秒鐘)
化身 &apos;[NAME]&apos; 進入外觀模式。
	</notification>
	<notification name="AvatarRezLeftAppearanceNotification">
		(存續 [EXISTENCE] 秒鐘)
化身 &apos;[NAME]&apos; 離開外觀模式。
	</notification>
	<notification name="NoConnect">
		使用 [PROTOCOL] [HOSTID] 連線時出了問題。
請檢查你的網路和防火牆設定。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="NoVoiceConnect">
		試圖連接語音伺服器時出了問題:

[HOSTID]

將無法用語音溝通。
請檢查你的網路和防火牆設定。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="NoVoiceConnect-GIAB">
		試圖連接語音伺服器時出了問題。

將無法用語音溝通。
請檢查你的網路和防火牆設定。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="AvatarRezLeftNotification">
		(存續 [EXISTENCE] 秒鐘)
化身 &apos;[NAME]&apos; 在完全載入狀況下離開。
	</notification>
	<notification name="AvatarRezSelfBakedTextureUploadNotification">
		(存續 [EXISTENCE] 秒鐘)
你在 [TIME] 秒鐘後為 &apos;[BODYREGION]&apos; 上傳了一個 [RESOLUTION] 的定貌材質。
	</notification>
	<notification name="AvatarRezSelfBakedTextureUpdateNotification">
		(存續 [EXISTENCE] 秒鐘)
你在 [TIME] 秒鐘後在本地為 &apos;[BODYREGION]&apos; 更新了一個 [RESOLUTION] 的定貌材質。
	</notification>
	<notification name="CannotUploadTexture">
		無法上傳質料。
[REASON]
	</notification>
	<notification name="LivePreviewUnavailable">
		我們無法顯示這個材質的預覽,因為它設為「禁止複製」且 / 或「禁止轉移」。
		<usetemplate ignoretext="「禁止複製」和「禁止轉移」的材質若不能使用實時預覽模式,請給我警示。" name="okignore" yestext="確定"/>
	</notification>
	<notification name="ConfirmLeaveCall">
		你確定要離開這段通話?
		<usetemplate ignoretext="我結束通話前進行確認" name="okcancelignore" notext="否" yestext="是"/>
	</notification>
	<notification name="ConfirmMuteAll">
		你已選擇要將所有參與群組通話的人消音。
這將導致後來加入通話的所有居民同樣被
消音,即使在你離開通話後也一樣。

把所有人消音?
		<usetemplate ignoretext="在我對所有群組通話的參與者予以靜音前確認" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification label="聊天" name="HintChat">
		若要加入對話,請在下方的聊天欄裡打字。
	</notification>
	<notification label="站立" name="HintSit">
		若要中止坐姿站起身來,請按「站立」按鈕。
	</notification>
	<notification label="說話" name="HintSpeak">
		點按「說話」按鈕來打開或關閉麥克風。

點按向上箭頭鍵,可顯示聲音控制面板。

隱藏「說話」按鈕將停用語音功能。
	</notification>
	<notification label="探索世界" name="HintDestinationGuide">
		目的地指南包含上千個值得探索的新地點。 選擇一個地點,然後「瞬間傳送」前往,開始你的探索!
	</notification>
	<notification label="側邊欄" name="HintSidePanel">
		你可以從側邊欄進入收納區、裝扮、個人檔案等,方便又迅速。
	</notification>
	<notification label="移動" name="HintMove">
		若想行走或跑步,請打開「移動」面板,使用方向箭頭來移動。 也可以使用鍵盤上的方向鍵。
	</notification>
	<notification label="" name="HintMoveClick">
		1. 點按一下就可行走
點按地面上任何一點,就可以走到那裡。

2. 按住並拖曳,可以旋轉視野
在虛擬世界裡按住並拖曳任何一點,就可旋轉你的視野
	</notification>
	<notification label="顯示名稱" name="HintDisplayName">
		在這裡自訂你的顯示名稱。 顯示名稱和使用者名稱有別,後者獨一無二而且不能變更。 你可以在偏好設定裡,變更要如何察看別人的名稱。
	</notification>
	<notification label="視角" name="HintView">
		要改變攝影機視角,請用「環繞」和「平移」控制。 按 Escape 鍵,或走動一下,便可重設你的視野。
	</notification>
	<notification label="收納區" name="HintInventory">
		到收納區找尋物項。 在「新近」頁籤裡可立刻看到新近的物項。
	</notification>
	<notification label="你得到林登幣!" name="HintLindenDollar">
		這裡顯示你目前的 L$ 餘額。 點按「購買 L$」可添購林登幣。
	</notification>
	<notification name="LowMemory">
		你的可用記憶體很小。 第二人生部分功能將停用,以免當機。 請關閉其他應用程式。 這狀況若持續,請重啟第二人生。
	</notification>
	<notification name="ForceQuitDueToLowMemory">
		記憶體不足,第二人生將於 30 秒後關閉離開。
	</notification>
	<notification name="SOCKS_NOT_PERMITTED">
		SOCKS 5 代理伺服器 &quot;[HOST]:[PORT]&quot; 拒絕連通,規則集不允許。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="SOCKS_CONNECT_ERROR">
		SOCKS 5 代理伺服器 &quot;[HOST]:[PORT]&quot; 拒絕連通,無法打開 TCP 頻道。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="SOCKS_NOT_ACCEPTABLE">
		SOCKS 5 代理伺服器 &quot;[HOST]:[PORT]&quot; 拒絕所選的鑒認方法。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="SOCKS_AUTH_FAIL">
		SOCKS 5 代理伺服器 &quot;[HOST]:[PORT]&quot; 回報:你的鑒認資料無效。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="SOCKS_UDP_FWD_NOT_GRANTED">
		SOCKS 5 代理伺服器 &quot;[HOST]:[PORT]&quot; 拒絕 UDP 聯結請求。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="SOCKS_HOST_CONNECT_FAILED">
		無法連通 SOCKS 5 代理伺服器 &quot;[HOST]:[PORT]&quot;。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="SOCKS_UNKNOWN_STATUS">
		伺服器 &quot;[HOST]:[PORT]&quot; 發生不明的代理伺服器錯誤。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="SOCKS_INVALID_HOST">
		無效的 SOCKS 代理伺服器位址或埠號 &quot;[HOST]:[PORT]&quot;。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="SOCKS_BAD_CREDS">
		無效的 SOCKS 5 使用者名稱或密碼。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="PROXY_INVALID_HTTP_HOST">
		無效的 HTTP 代理伺服器位址或埠號 &quot;[HOST]:[PORT]&quot;。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="PROXY_INVALID_SOCKS_HOST">
		無效的 SOCKS 代理伺服器位址或埠號 &quot;[HOST]:[PORT]&quot;。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="ChangeProxySettings">
		重新啟動 [APP_NAME] 後將採用新的代理伺服器設定。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="AuthRequest">
		&apos;[REALM]&apos; 領域的 &apos;&lt;nolink&gt;[HOST_NAME]&lt;/nolink&gt;&apos; 站點需要使用者名稱和密碼。
		<form name="form">
			<input name="username" text="使用者名稱"/>
			<input name="password" text="密碼"/>
			<button name="ok" text="提交"/>
			<button name="cancel" text="取消"/>
		</form>
	</notification>
	<notification label="" name="NoClassifieds">
		只有進階模式才能新建或編輯個人廣告。 你是否想要結束離開,以便變更模式? 你可在登入畫面選擇想要的模式。
		<usetemplate name="okcancelbuttons" notext="不要結束退出" yestext="結束退出"/>
	</notification>
	<notification label="" name="NoGroupInfo">
		只有進階模式才能新建或編輯群組。 你是否想要結束離開,以便變更模式? 你可在登入畫面選擇想要的模式。
		<usetemplate name="okcancelbuttons" notext="不要結束退出" yestext="結束退出"/>
	</notification>
	<notification label="" name="NoPlaceInfo">
		只有進階模式才能察看地點檔案。 你是否想要結束離開,以便變更模式? 你可在登入畫面選擇想要的模式。
		<usetemplate name="okcancelbuttons" notext="不要結束退出" yestext="結束退出"/>
	</notification>
	<notification label="" name="NoPicks">
		只有進階模式才能新建或編輯精選地點。 你是否想要結束離開,以便變更模式? 你可在登入畫面選擇想要的模式。
		<usetemplate name="okcancelbuttons" notext="不要結束退出" yestext="結束退出"/>
	</notification>
	<notification label="" name="NoWorldMap">
		只有進階模式才能察看世界地圖。 你是否想要結束離開,以便變更模式? 你可在登入畫面選擇想要的模式。
		<usetemplate name="okcancelbuttons" notext="不要結束退出" yestext="結束退出"/>
	</notification>
	<notification label="" name="NoVoiceCall">
		只有進階模式才能使用語音通話。 你是否要登出並且變更模式?
		<usetemplate name="okcancelbuttons" notext="不要結束退出" yestext="結束退出"/>
	</notification>
	<notification label="" name="NoAvatarShare">
		只有進階模式才能使用分享功能。 你是否要登出並且變更模式?
		<usetemplate name="okcancelbuttons" notext="不要結束退出" yestext="結束退出"/>
	</notification>
	<notification label="" name="NoAvatarPay">
		只有進階模式才能付費給其他居民。 你是否要登出並且變更模式?
		<usetemplate name="okcancelbuttons" notext="不要結束退出" yestext="結束退出"/>
	</notification>
	<notification label="" name="NoInventory">
		只有進階模式才能察看收納區。 你是否要登出並且變更模式?
		<usetemplate name="okcancelbuttons" notext="不要結束退出" yestext="結束退出"/>
	</notification>
	<notification label="" name="NoAppearance">
		只有進階模式才能使用外觀編輯器。 你是否要登出並且變更模式?
		<usetemplate name="okcancelbuttons" notext="不要結束退出" yestext="結束退出"/>
	</notification>
	<notification label="" name="NoSearch">
		只有進階模式才能搜尋。 你是否要登出並且變更模式?
		<usetemplate name="okcancelbuttons" notext="不要結束退出" yestext="結束退出"/>
	</notification>
	<notification label="" name="ConfirmHideUI">
		這將會隱藏所有選單內容和按鈕。 要恢復原狀,再點按 [SHORTCUT] 一次。
		<usetemplate ignoretext="隱藏使用者介面前先確認" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="PathfindingLinksets_WarnOnPhantom">
		所選的一些聯結集的幻影旗標將被切換。

你確定要繼續嗎?
		<usetemplate ignoretext="所選的一些聯結集的幻影旗標將被切換。" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="PathfindingLinksets_MismatchOnRestricted">
		所選某些聯結集因權限問題,無法設定為 &apos;[REQUESTED_TYPE]&apos;。  這些聯結集將被設為 &apos;[RESTRICTED_TYPE]&apos;。

你確定要繼續嗎?
		<usetemplate ignoretext="所選某些聯結集因權限問題,無法設定。" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="PathfindingLinksets_MismatchOnVolume">
		所選某些聯結集無法設為 &apos;[REQUESTED_TYPE]&apos;,因為形狀屬於非凸面。

你確定要繼續嗎?
		<usetemplate ignoretext="所選某些聯結集因為形狀屬於非凸面,無法設定" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="PathfindingLinksets_WarnOnPhantom_MismatchOnRestricted">
		所選的一些聯結集的幻影旗標將被切換。

所選某些聯結集因權限問題,無法設定為 &apos;[REQUESTED_TYPE]&apos;。  這些聯結集將被設為 &apos;[RESTRICTED_TYPE]&apos;。

你確定要繼續嗎?
		<usetemplate ignoretext="所選的一些聯結集的幻影旗標可成功切換,其他的則因權限問題而無法設定。" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="PathfindingLinksets_WarnOnPhantom_MismatchOnVolume">
		所選的一些聯結集的幻影旗標將被切換。

所選某些聯結集無法設為 &apos;[REQUESTED_TYPE]&apos;,因為形狀屬於非凸面。

你確定要繼續嗎?
		<usetemplate ignoretext="所選的一些聯結集的幻影旗標可成功切換,其他的則因形狀屬於非凸面而無法設定" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="PathfindingLinksets_MismatchOnRestricted_MismatchOnVolume">
		所選某些聯結集因權限問題,無法設定為 &apos;[REQUESTED_TYPE]&apos;。  這些聯結集將被設為 &apos;[RESTRICTED_TYPE]&apos;。

所選某些聯結集無法設為 &apos;[REQUESTED_TYPE]&apos;,因為形狀屬於非凸面。 這些聯結集的使用類型將維持不變。

你確定要繼續嗎?
		<usetemplate ignoretext="所選某些聯結集因權限不足,且形狀屬於非凸面,因此無法設定。" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="PathfindingLinksets_WarnOnPhantom_MismatchOnRestricted_MismatchOnVolume">
		所選的一些聯結集的幻影旗標將被切換。

所選某些聯結集因權限問題,無法設定為 &apos;[REQUESTED_TYPE]&apos;。  這些聯結集將被設為 &apos;[RESTRICTED_TYPE]&apos;。

所選某些聯結集無法設為 &apos;[REQUESTED_TYPE]&apos;,因為形狀屬於非凸面。 這些聯結集的使用類型將維持不變。

你確定要繼續嗎?
		<usetemplate ignoretext="所選的一些聯結集的幻影旗標將被切換,其他則因權限不足且形狀屬於非凸面,因此無法設定。" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="PathfindingLinksets_ChangeToFlexiblePath">
		所選的物件會影響導航網面。  將它改為彈性路徑,將使它從導航網面中被移除。
		<usetemplate ignoretext="所選的物件會影響導航網面。  將它改為彈性路徑,將使它從導航網面中被移除。" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<global name="UnsupportedGLRequirements">
		你的硬體設備似乎不符 [APP_NAME] 的要求。 [APP_NAME] 需要可以支援多材質的 OpenGL 顯像卡。 在這狀況下,請確定你的顯像卡安裝了最新的驅動程式,作業系統也安裝了最新的服務包和嵌補程式。

如果你繼續遇到問題,請前往 [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.">
		若你擁有一塊土地,你可以標記它成為你的家的位置。
或者,你可以察看地圖,尋找標記為「資訊中心」的地方。
	</global>
	<global name="You died and have been teleported to your home location">
		你已經死亡並且被瞬間傳送回你的家的位置。
	</global>
	<notification name="LocalBitmapsUpdateFileNotFound">
		[FNAME] 無法更新,找不到該檔案。
未來將不再更新該檔案。
	</notification>
	<notification name="LocalBitmapsUpdateFailedFinal">
		[FNAME] 無法開啟或解碼,已嘗試 [NRETRIES] 次,該檔案已被認定為毀壞。
未來將不再更新該檔案。
	</notification>
	<notification name="LocalBitmapsVerifyFail">
		試圖新增一個無效或無法讀取的圖像檔 [FNAME],該檔無法開啟或解碼。
已取消這一嘗試。
	</notification>
	<notification name="PathfindingReturnMultipleItems">
		你正退回 [NUM_ITEMS] 個物項。  你確定你要繼續?
		<usetemplate ignoretext="確定退回多個物項?" name="okcancelignore" notext="否" yestext="是"/>
	</notification>
	<notification name="PathfindingDeleteMultipleItems">
		你正在刪除 [NUM_ITEMS] 個物項。  你確定你要繼續?
		<usetemplate ignoretext="確定要刪除多個物項?" name="okcancelignore" notext="否" yestext="是"/>
	</notification>
	<notification name="AvatarFrozen">
		[AV_FREEZER] 凍結了你。 你此時無法移動或與周遭互動。
	</notification>
	<notification name="AvatarFrozenDuration">
		[AV_FREEZER] 凍結了你 [AV_FREEZE_TIME] 秒鐘。 你此時無法移動或與周遭互動。
	</notification>
	<notification name="YouFrozeAvatar">
		化身已凍結。
	</notification>
	<notification name="AvatarHasUnFrozenYou">
		[AV_FREEZER] 解除了對你的凍結。
	</notification>
	<notification name="AvatarUnFrozen">
		化身已解除凍結。
	</notification>
	<notification name="AvatarFreezeFailure">
		凍結失敗,因為你在該地段沒有管理員權限。
	</notification>
	<notification name="AvatarFreezeThaw">
		你遭凍結的時間已過,請恢復正常活動。
	</notification>
	<notification name="AvatarCantFreeze">
		抱歉,無法凍結該用戶。
	</notification>
	<notification name="NowOwnObject">
		你現在是物件 [OBJECT_NAME] 的所有人
	</notification>
	<notification name="CantRezOnLand">
		無法在 [OBJECT_POS] 產生物件,因為這土地的所有人不允許。  請用土地工具察看所有人。
	</notification>
	<notification name="RezFailTooManyRequests">
		無法產生物件,此刻要求數目過多。
	</notification>
	<notification name="SitFailCantMove">
		你無法坐下,因為此刻你不能移動。
	</notification>
	<notification name="SitFailNotAllowedOnLand">
		你不能坐下,因為該土地不允許。
	</notification>
	<notification name="SitFailNotSameRegion">
		請挨近一點。  無法坐在物件上,因為
它和你不在同一個地區。
	</notification>
	<notification name="NoNewObjectRegionFull">
		無法建立新物件。 地區已滿載。
	</notification>
	<notification name="FailedToPlaceObject">
		無法將物件置於指定地點。  請再試一次。
	</notification>
	<notification name="NoOwnNoGardening">
		你無法在別人的土地上建立樹和草。
	</notification>
	<notification name="NoCopyPermsNoObject">
		複製失敗,你無權複製物件 &apos;[OBJ_NAME]&apos;。
	</notification>
	<notification name="NoTransPermsNoObject">
		複製失敗,因為物件 &apos;[OBJ_NAME]&apos; 無法轉移給你。
	</notification>
	<notification name="AddToNavMeshNoCopy">
		複製失敗,因為物件 &apos;[OBJ_NAME]&apos; 對導航網面有貢獻。
	</notification>
	<notification name="DupeWithNoRootsSelected">
		選取了沒有根的重覆物件。
	</notification>
	<notification name="CantDupeCuzRegionIsFull">
		無法複製物件,因為地區滿載。
	</notification>
	<notification name="CantDupeCuzParcelNotFound">
		無法複製物件,找不到它們所在的地段。
	</notification>
	<notification name="CantCreateCuzParcelFull">
		無法建立物件,因為 
地段滿載。
	</notification>
	<notification name="RezAttemptFailed">
		試圖產生物件失敗。
	</notification>
	<notification name="ToxicInvRezAttemptFailed">
		無法建立已在此地區造成問題的物件。
	</notification>
	<notification name="InvItemIsBlacklisted">
		該收納區物項已被列入黑名單。
	</notification>
	<notification name="NoCanRezObjects">
		你此時無權建立物件。
	</notification>
	<notification name="LandSearchBlocked">
		土地搜尋遭禁。
你在短時間內進行了太多次土地搜尋。
請稍候再試。
	</notification>
	<notification name="NotEnoughResourcesToAttach">
		腳本資源不足,無法附著物件!
	</notification>
	<notification name="YouDiedAndGotTPHome">
		你已經死亡並且被瞬間傳送回你的家的位置
	</notification>
	<notification name="EjectComingSoon">
		你不再允許待在這裡,必須在 [EJECT_TIME] 秒內離開。
	</notification>
	<notification name="SaveBackToInvDisabled">
		「儲存回收納區」功能已被停用。
	</notification>
	<notification name="NoExistNoSaveToContents">
		無法將 &apos;[OBJ_NAME]&apos; 儲存到物件內容,因為產生它的來源物件已不存在。
	</notification>
	<notification name="NoModNoSaveToContents">
		無法儲存 [OBJ_NAME] 到物件內容,你無權修改 &apos;[DEST_NAME]&apos; 物件。
	</notification>
	<notification name="NoSaveBackToInvDisabled">
		無法將 &apos;[OBJ_NAME]&apos; 儲存回收納區,此動作已被停用。
	</notification>
	<notification name="NoCopyNoSelCopy">
		無法複製你所選的,因為你無權複製物件 &apos;[OBJ_NAME]&apos;。
	</notification>
	<notification name="NoTransNoSelCopy">
		無法選取複製,因為物件 &apos;[OBJ_NAME]&apos; 不可轉移。
	</notification>
	<notification name="NoTransNoCopy">
		無法選取複製,因為物件 &apos;[OBJ_NAME]&apos; 不可轉移。
	</notification>
	<notification name="NoPermsNoRemoval">
		權限系統不允許從模擬器移除物件 &apos;[OBJ_NAME]&apos;。
	</notification>
	<notification name="NoModNoSaveSelection">
		無法儲存你所選的,因為你無權修改 &apos;[OBJ_NAME]&apos; 物件。
	</notification>
	<notification name="NoCopyNoSaveSelection">
		無法儲存你所選的,因為物件 &apos;[OBJ_NAME]&apos; 不可複製。
	</notification>
	<notification name="NoModNoTaking">
		無法拿取你所選的,因為你無權修改 &apos;[OBJ_NAME]&apos; 物件。
	</notification>
	<notification name="RezDestInternalError">
		內部錯誤:未知的目的地類型。
	</notification>
	<notification name="DeleteFailObjNotFound">
		刪除失敗,因為找不到物件
	</notification>
	<notification name="SorryCantEjectUser">
		抱歉,無法踢出該用戶。
	</notification>
	<notification name="RegionSezNotAHome">
		此地區不許你在此設定「我的家」。
	</notification>
	<notification name="HomeLocationLimits">
		你只能在自己的土地或大陸資訊中心上設定「我的家」。
	</notification>
	<notification name="HomePositionSet">
		我的家位置已定。
	</notification>
	<notification name="AvatarEjected">
		化身已被踢出。
	</notification>
	<notification name="AvatarEjectFailed">
		踢出失敗,因為你在該地段沒有管理員權限。
	</notification>
	<notification name="CMOParcelFull">
		無法在[R]區域將&apos;[O]&apos;物件移到[P],因為此地段容量已滿。
	</notification>
	<notification name="CMOParcelPerms">
		無法在[R]區域將&apos;[O]&apos;物件移到[P],因為此地段裡不允許有你的物件。
	</notification>
	<notification name="CMOParcelResources">
		無法在[R]區域將&apos;[O]&apos;物件移到[P],因為此地段裡這一物件的資源不足。
	</notification>
	<notification name="NoParcelPermsNoObject">
		複製失敗,因爲你無權出入該地段。
	</notification>
	<notification name="CMORegionVersion">
		無法在[R]區域將&apos;[O]&apos;物件移到[P],因為該地區所執行的軟體版本過舊,不支援跨地區接受這個物件。
	</notification>
	<notification name="CMONavMesh">
		無法在[R]區域將&apos;[O]&apos;物件移到[P],因為你不得修改位在不同區域範圍的導航網面。
	</notification>
	<notification name="CMOWTF">
		無法在[R]區域將&apos;[O]&apos;物件移到[P],問題原因不明。 ([F])
	</notification>
	<notification name="NoPermModifyObject">
		你無權變更該物件
	</notification>
	<notification name="TooMuchObjectInventorySelected">
		選取的物件包含太多大的收納區。 請減少選取的物件數,再試一次。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="CantEnablePhysObjContributesToNav">
		對導航網面有貢獻的物件,無法啟用物理。
	</notification>
	<notification name="CantEnablePhysKeyframedObj">
		鍵格動畫物件無法啟用物理。
	</notification>
	<notification name="CantEnablePhysNotEnoughLandResources">
		無法啟用物件的物理——土地資源不足。
	</notification>
	<notification name="CantEnablePhysCostTooGreat">
		物件的物理資源成本超過 [MAX_OBJECTS],無法啟用物理
	</notification>
	<notification name="PhantomWithConcavePiece">
		此物件不得有凹面部件,因為物件是幻影物件,對導航網面有貢獻。
	</notification>
	<notification name="UnableAddItem">
		無法新增項目!
	</notification>
	<notification name="UnableEditItem">
		無法編輯這項目!
	</notification>
	<notification name="NoPermToEdit">
		無權編輯這項目。
	</notification>
	<notification name="NoPermToCopyInventory">
		無權複製該收納區。
	</notification>
	<notification name="CantSaveItemDoesntExist">
		無法儲存到物件內容:該項目已不存在。
	</notification>
	<notification name="CantSaveItemAlreadyExists">
		無法儲存到物件內容:收納區已存在同名稱的項目
	</notification>
	<notification name="CantSaveModifyAttachment">
		無法儲存到物件內容:這麼做將修改附件的權限。
	</notification>
	<notification name="AttachmentHasTooMuchInventory">
		你的附件已經包含太多收納區內容,不能再增加。
	</notification>
	<notification name="IllegalAttachment">
		這個附件要求了化身上不存在的點。 因此已將該附件附著到胸部。
	</notification>
	<notification name="TooManyScripts">
		腳本太多。
	</notification>
	<notification name="UnableAddScript">
		無法新增腳本!
	</notification>
	<notification name="AssetServerTimeoutObjReturn">
		資產伺服器未在正常時間內反應。  物件已返交模擬器。
	</notification>
	<notification name="RegionDisablePhysicsShapes">
		本地區未啟用物理形狀。
	</notification>
	<notification name="NoModNavmeshAcrossRegions">
		你無法變更跨越地區界限的導航網面。
	</notification>
	<notification name="NoSetPhysicsPropertiesOnObjectType">
		該物件類型不得設定物理性質。
	</notification>
	<notification name="NoSetRootPrimWithNoShape">
		根幾何元件無法設成無形狀。
	</notification>
	<notification name="NoRegionSupportPhysMats">
		本地區未啟用物理材料。
	</notification>
	<notification name="OnlyRootPrimPhysMats">
		只能調整根幾何元件的物理材料。
	</notification>
	<notification name="NoSupportCharacterPhysMats">
		尚不支援角色設定物理材料。
	</notification>
	<notification name="InvalidPhysMatProperty">
		指定的物理材料屬性中,至少有一個無效。
	</notification>
	<notification name="NoPermsAlterStitchingMeshObj">
		網面物件的縫合類型不得變更。
	</notification>
	<notification name="NoPermsAlterShapeMeshObj">
		網面物件的形狀不得變更。
	</notification>
	<notification name="FullRegionCantEnter">
		你無法進入這地區,\n因為地區滿載。
	</notification>
	<notification name="LinkFailedOwnersDiffer">
		聯結失敗——所有人不同
	</notification>
	<notification name="LinkFailedNoModNavmeshAcrossRegions">
		聯結失敗——無法修改跨越地區界限的導航網面。
	</notification>
	<notification name="LinkFailedNoPermToEdit">
		聯結失敗,你無權編輯。
	</notification>
	<notification name="LinkFailedTooManyPrims">
		聯結失敗——幾何元件太多
	</notification>
	<notification name="LinkFailedCantLinkNoCopyNoTrans">
		聯結失敗——無法將「禁止複製」和「禁止轉移」物件聯結起來
	</notification>
	<notification name="LinkFailedNothingLinkable">
		聯結失敗——沒有可聯結的東西。
	</notification>
	<notification name="LinkFailedTooManyPathfindingChars">
		聯結失敗——尋徑角色太多
	</notification>
	<notification name="LinkFailedInsufficientLand">
		聯結失敗——土地資源不足
	</notification>
	<notification name="LinkFailedTooMuchPhysics">
		物件使用了過多物理資源,其動態特性已被停用。
	</notification>
	<notification name="EstateManagerFailedllTeleportHome">
		位於[SLURL]的物件&apos;[OBJECT_NAME]&apos;無法將領地管理員瞬間傳送回家。
	</notification>
	<notification name="TeleportedHomeByObjectOnParcel">
		你已被 &apos;[PARCEL_NAME]&apos; 地段的物件 &apos;[OBJECT_NAME]&apos; 成功瞬間傳送回家
	</notification>
	<notification name="TeleportedHomeByObject">
		你已成功被物件 &apos;[OBJECT_NAME]&apos; 瞬間傳送回家
	</notification>
	<notification name="TeleportedByAttachment">
		你已成功被 [ITEM_ID] 上的一個附件瞬間傳送
		<usetemplate ignoretext="瞬間傳送:你已成功被一個附件瞬間傳送" name="notifyignore"/>
	</notification>
	<notification name="TeleportedByObjectOnParcel">
		你已成功被 &apos;[PARCEL_NAME]&apos; 地段的物件 &apos;[OBJECT_NAME]&apos; 瞬間傳送
		<usetemplate ignoretext="瞬間傳送:你已被一個物件或地段瞬間傳送成功" name="notifyignore"/>
	</notification>
	<notification name="TeleportedByObjectOwnedBy">
		你已成功被 [OWNER_ID] 擁有的物件 &apos;[OBJECT_NAME]&apos; 瞬間傳送
	</notification>
	<notification name="TeleportedByObjectUnknownUser">
		你已成功被某未知用戶擁有的物件 &apos;[OBJECT_NAME]&apos; 瞬間傳送。
	</notification>
	<notification name="StandDeniedByObject">
		「[OBJECT_NAME]」將使你無法在此時站立。
	</notification>
	<notification name="ResitDeniedByObject">
		「[OBJECT_NAME]」此時無法允許你改變座位。
	</notification>
	<notification name="CantCreateObjectRegionFull">
		無法建立要求的物件。 地區已滿載。
	</notification>
	<notification name="CantAttackMultipleObjOneSpot">
		你不能將多個物件附著到同一個點。
	</notification>
	<notification name="CantCreateMultipleObjAtLoc">
		你不能在此建立多個物件。
	</notification>
	<notification name="UnableToCreateObjTimeOut">
		無法建立要求的物件。 物件在資料庫中找不到。
	</notification>
	<notification name="UnableToCreateObjUnknown">
		無法建立要求的物件。 要求逾時,無法完成。 請再試一次。
	</notification>
	<notification name="UnableToCreateObjMissingFromDB">
		無法建立要求的物件。 請再試一次。
	</notification>
	<notification name="RezFailureTookTooLong">
		物件產生失敗,要求的物件載入時間太久。
	</notification>
	<notification name="FailedToPlaceObjAtLoc">
		無法將物件置於指定地點。  請再試一次。
	</notification>
	<notification name="CantCreatePlantsOnLand">
		你不得在這土地上建立植物。
	</notification>
	<notification name="CantRestoreObjectNoWorldPos">
		無法恢復物件。 找不到虛擬世界的位置。
	</notification>
	<notification name="CantRezObjectInvalidMeshData">
		無法產生物件,它的網面資料無效。
	</notification>
	<notification name="CantRezObjectTooManyScripts">
		無法產生物件,因為這地區已有太多的腳本。
	</notification>
	<notification name="CantCreateObjectNoAccess">
		你無權在此建立物件。
	</notification>
	<notification name="CantCreateObject">
		你此時無權建立物件。
	</notification>
	<notification name="InvalidObjectParams">
		無效的物件參數
	</notification>
	<notification name="CantDuplicateObjectNoAcess">
		你權限不夠,無法在此複製物件。
	</notification>
	<notification name="CantChangeShape">
		你無權變更這個形狀。
	</notification>
	<notification name="NoAccessToClaimObjects">
		你權限不夠,無法在此收取物件。
	</notification>
	<notification name="DeedFailedNoPermToDeedForGroup">
		讓渡失敗,你無權為你的群組讓渡物件。
	</notification>
	<notification name="NoPrivsToBuyObject">
		你權限不夠,無法在此購買物件。
	</notification>
	<notification name="CantAttachObjectAvatarSittingOnIt">
		無法附著物件,有個化身正坐在物件上。
	</notification>
	<notification name="WhyAreYouTryingToWearShrubbery">
		樹和草不能當附件穿戴。
	</notification>
	<notification name="CantAttachGroupOwnedObjs">
		無法附著群組所擁有的物件。
	</notification>
	<notification name="CantAttachObjectsNotOwned">
		無法附著不是你擁有的物件。
	</notification>
	<notification name="CantAttachNavmeshObjects">
		無法附著對導航網面有貢獻的物件。
	</notification>
	<notification name="CantAttachObjectNoMovePermissions">
		無法附著物件,你無權移動該物件。
	</notification>
	<notification name="CantAttachNotEnoughScriptResources">
		腳本資源不足,無法附著物件!
	</notification>
	<notification name="CantDropItemTrialUser">
		你無法在此卸除物件,請到「自由嘗試」區域再試。
	</notification>
	<notification name="CantDropMeshAttachment">
		你無法在此卸除附件。 請選擇把卸除附件送回收納區,再重新成形。
	</notification>
	<notification name="CantDropAttachmentNoPermission">
		卸除附件失敗:你無權在此處卸除。
	</notification>
	<notification name="CantDropAttachmentInsufficientLandResources">
		卸除附件失敗:可用土地資源不足。
	</notification>
	<notification name="CantDropAttachmentInsufficientResources">
		卸除附件失敗:可用資源不足。
	</notification>
	<notification name="CantDropObjectFullParcel">
		無法在此卸除物件。  地段滿載。
	</notification>
	<notification name="CantTouchObjectBannedFromParcel">
		無法觸摸/抓取此物件,因為你在該土地地段遭禁。
	</notification>
	<notification name="PlzNarrowDeleteParams">
		請將刪除參數範圍調小一點。
	</notification>
	<notification name="UnableToUploadAsset">
		無法上傳資產。
	</notification>
	<notification name="CantTeleportCouldNotFindUser">
		找不到要瞬間傳送到家的用戶
	</notification>
	<notification name="GodlikeRequestFailed">
		要求神的權力失敗
	</notification>
	<notification name="GenericRequestFailed">
		普通請求失敗
	</notification>
	<notification name="CantUploadPostcard">
		無法上傳明信片。  請稍候再試一次。
	</notification>
	<notification name="CantFetchInventoryForGroupNotice">
		無法取得群組通知的收納區細節。
	</notification>
	<notification name="CantSendGroupNoticeNotPermitted">
		無法送出群組通知——未准許。
	</notification>
	<notification name="CantSendGroupNoticeCantConstructInventory">
		無法送出群組通知——收納區建立失敗。
	</notification>
	<notification name="CantParceInventoryInNotice">
		無法剖析通知裡的收納品項。
	</notification>
	<notification name="TerrainUploadFailed">
		地形上傳失敗。
	</notification>
	<notification name="TerrainFileWritten">
		地形檔案已寫入。
	</notification>
	<notification name="TerrainFileWrittenStartingDownload">
		地形檔案已寫入,開始下載……
	</notification>
	<notification name="TerrainBaked">
		地形已定貌。
	</notification>
	<notification name="TenObjectsDisabledPlzRefresh">
		只成功停用前 10 個所選物件。 若有需要,請刷新之後再選取更多的項目。
	</notification>
	<notification name="UpdateViewerBuyParcel">
		你必須先更新瀏覽器後,才可購買這個地段。
	</notification>
	<notification name="CantBuyParcelNotForSale">
		無法購買,此地段不供出售。
	</notification>
	<notification name="CantBuySalePriceOrLandAreaChanged">
		無法購買,售價或土地面積已變。
	</notification>
	<notification name="CantBuyParcelNotAuthorized">
		你不是此地段的獲授權的買主。
	</notification>
	<notification name="CantBuyParcelAwaitingPurchaseAuth">
		你無法購買此地段,該地段已在等候批准購買
	</notification>
	<notification name="CantBuildOverflowParcel">
		你不得在此建立物件,這麼做將導致地段超載。
	</notification>
	<notification name="SelectedMultipleOwnedLand">
		你選擇的土地範圍,為不同人所擁有。 請縮小選擇範圍,再試一次。
	</notification>
	<notification name="CantJoinTooFewLeasedParcels">
		未選取足夠租用地段,無法合併。
	</notification>
	<notification name="CantDivideLandMultipleParcelsSelected">
		無法分割土地。
選取了超過一個地段。
請試著縮小所選的土地。
	</notification>
	<notification name="CantDivideLandCantFindParcel">
		無法分割土地。
找不到地段。
請到「幫助-&gt;回報錯誤」回報問題
	</notification>
	<notification name="CantDivideLandWholeParcelSelected">
		無法分割土地。 選擇了整個地段。
請試著縮小所選的土地。
	</notification>
	<notification name="LandHasBeenDivided">
		土地分割成功。
	</notification>
	<notification name="PassPurchased">
		你購買了通行權。
	</notification>
	<notification name="RegionDisallowsClassifieds">
		地區不允許分類廣告。
	</notification>
	<notification name="LandPassExpireSoon">
		你在此土地的通行權即將到期失效。
	</notification>
	<notification name="CantSitNoSuitableSurface">
		沒有合適的表面讓你坐下,請試一試別處。
	</notification>
	<notification name="CantSitNoRoom">
		這裡沒有空間讓你坐下,請試試另一處。
	</notification>
	<notification name="ClaimObjectFailedNoPermission">
		收取物件失敗,因為你權限不足。
	</notification>
	<notification name="ClaimObjectFailedNoMoney">
		收取物件失敗,因為你 L$ 金額不足。
	</notification>
	<notification name="CantDeedGroupLand">
		無法讓渡群組所擁有的土地。
	</notification>
	<notification name="BuyObjectFailedNoMoney">
		購買物件失敗,你 L$ 金額不足。
	</notification>
	<notification name="BuyInventoryFailedNoMoney">
		購買收納區失敗,你 L$ 金額不足。
	</notification>
	<notification name="BuyPassFailedNoMoney">
		你的 L$ 不足,無法購買此土地的通行權。
	</notification>
	<notification name="CantBuyPassTryAgain">
		此時無法購買通行權。  請稍候再試一次。
	</notification>
	<notification name="CantCreateObjectParcelFull">
		無法建立物件,\n地段滿載。
	</notification>
	<notification name="FailedPlacingObject">
		無法將物件置於指定地點。  請再試一次。
	</notification>
	<notification name="CantCreateLandmarkForEvent">
		無法為活動建立地標。
	</notification>
	<notification name="GodBeatsFreeze">
		你擁有的神力解除了凍結!
	</notification>
	<notification name="SpecialPowersRequestFailedLogged">
		要求特殊能力失敗。 該要求已載入記錄。
	</notification>
	<notification name="ExpireExplanation">
		系統此時無法處理你的要求。 要求逾時,無法完成。
	</notification>
	<notification name="DieExplanation">
		系統無法處理你的要求。
	</notification>
	<notification name="AddPrimitiveFailure">
		金額不足,無法建立幾何元件。
	</notification>
	<notification name="RezObjectFailure">
		金額不足,無法建立物件。
	</notification>
	<notification name="ResetHomePositionNotLegal">
		已重設「我的家」位置,因為前一個位置不合法。
	</notification>
	<notification name="CantInviteRegionFull">
		此刻你無法邀請任何人到你的位置,因為地區滿載。 請稍候再試一次。
	</notification>
	<notification name="CantSetHomeAtRegion">
		此地區不許你在此設定「我的家」。
	</notification>
	<notification name="ListValidHomeLocations">
		你只能在自己的土地或大陸資訊中心上設定「我的家」。
	</notification>
	<notification name="SetHomePosition">
		我的家位置已定。
	</notification>
	<notification name="CantDerezInventoryError">
		收納區出錯,無法收納物件。
	</notification>
	<notification name="CantCreateRequestedInv">
		無法建立要求的收納區。
	</notification>
	<notification name="CantCreateRequestedInvFolder">
		無法建立要求的收納區資料夾。
	</notification>
	<notification name="CantCreateInventory">
		無法建立該收納區。
	</notification>
	<notification name="CantCreateLandmark">
		無法建立地標。
	</notification>
	<notification name="CantCreateOutfit">
		此時無法建立裝扮。 請過一分鐘後再試。
	</notification>
	<notification name="InventoryNotForSale">
		收納區沒有待售。
	</notification>
	<notification name="CantFindInvItem">
		找不到收納區物項。
	</notification>
	<notification name="CantFindObject">
		找不到物件。
	</notification>
	<notification name="CantTransfterMoneyRegionDisabled">
		此地區目前未啟用轉移金錢給物件的功能。
	</notification>
	<notification name="DroppedMoneyTransferRequest">
		系統負荷太重,無法進行付款。
	</notification>
	<notification name="CantPayNoAgent">
		無法決定付款給誰。
	</notification>
	<notification name="CantDonateToPublicObjects">
		你無法將 L$ 送給公共物件。
	</notification>
	<notification name="InventoryCreationInWorldObjectFailed">
		針對虛擬世界物件建立收納區失敗。
	</notification>
	<notification name="UserBalanceOrLandUsageError">
		發生內部錯誤,我們無法如常更新你的瀏覽器。  你瀏覽器顯示的 L$ 餘額或擁有地段,可能和伺服器上的正確數額不一致。
	</notification>
	<notification name="LargePrimAgentIntersect">
		無法建立和其他參與者發生交截的大型幾何元件。  請等其他參與者移開後再試。
	</notification>
	<notification name="PreferenceChatClearLog">
		這動作將刪除先前交談的記錄,和所有記錄備份。
		<usetemplate ignoretext="刪除先前交談記錄前,先向我確認。" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="PreferenceChatDeleteTranscripts">
		這將刪除所有先前交談的內容記錄。 過去交談歷史清單不受影響。 資料夾 [FOLDER] 所有副檔名 .txt 和 txt.backup 的檔案都將刪除。
		<usetemplate ignoretext="刪除交談內容記錄前先向我確認。" name="okcancelignore" notext="取消" yestext="確定"/>
	</notification>
	<notification name="PreferenceChatPathChanged">
		無法移動檔案。 已恢復前一個路徑。
		<usetemplate ignoretext="無法移動檔案。 已恢復前一個路徑。" name="okignore" yestext="確定"/>
	</notification>
	<notification name="DefaultObjectPermissions">
		儲存預設物件權限時出問題,原因:[REASON]。  請稍後再嘗試儲存預設權限。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="ChatHistoryIsBusyAlert">
		聊天紀錄檔案還在處理前一個動作。 請稍候再試,或請換一個聊天對象。
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
	<notification name="OutfitPhotoLoadError">
		[REASON]
		<usetemplate name="okbutton" yestext="確定"/>
	</notification>
</notifications>