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
|
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<alerts>
<alert name="MissingAlert">
<message name="message">
[ALERT_NAME]がalerts.xmlにありません!
</message>
<option name="OK">
OK
</option>
</alert>
<alert name="FloaterNotFound">
<message name="message">
フロータエラー:下記のコントロールが見つかりませんでした。
[CONTROLS]
</message>
<option name="OK">
OK
</option>
</alert>
<alert name="MOTD" title="本日のメッセージ">
<message name="message">
[MOTD]
</message>
</alert>
<alert name="GenericAlert">
<message name="message">
[MESSAGE]
</message>
</alert>
<alert name="GenericAlertYesCancel">
<message name="message">
[MESSAGE]
</message>
<option name="Yes">
はい
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="GenericServerAlert">
<message name="message">
[MESSAGE]
</message>
</alert>
<alert name="ConnectTimeout">
<message name="message">
[SECOND_LIFE]に接続できません。
このシステムはダウンしている可能性があります。
数秒後にもう一度試みるか、または助言をえる
そしてシステムステータスウェブページへのリンクのためにHelpをクリックしてください。
</message>
<option name="OK">
OK
</option>
<option name="Help">
ヘルプ
</option>
</alert>
<alert name="RemoveWearableSave">
<message name="message">
現在の衣類/体の部分への変更の全てを保存しますか。
</message>
<option name="Save">
保存
</option>
<option name="Don'tSave">
保存できない
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="SetWearableSave">
<message name="message">
現在の衣類/体の部分への変更の全てを保存しますか。
</message>
<option name="Save">
保存
</option>
<option name="Don'tSave">
保存できない
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="CompileQueueSaveText">
<message name="message">
次のような理由によってスクリプトようのテキストをアップロードするのに問題があります: [REASON]. 後でもう一度試みてください。
</message>
</alert>
<alert name="CompileQueueSaveBytecode">
<message name="message">
次のような理由によって準拠したスクリプトをアップロードするのに問題があります: [REASON]. 後でもう一度試みてください。
</message>
</alert>
<alert name="WriteAnimationFail">
<message name="message">
アニメーションデータを書くことに失敗
</message>
</alert>
<alert name="UploadAuctionSnapshotFail">
<message name="message">
次のような理由によってオークションスナップショットをアップロードするのに問題があります: [REASON]
</message>
</alert>
<alert name="UnableToViewContentsMoreThanOne">
<message name="message">
一度に一つ以上の項目のコンテンツを見ることはできません。
ただ一つのオブジェクトを選択し、再び試みてください。
</message>
</alert>
<alert name="MustSupplyVoteProposal">
<message name="message">
選挙のために提案を供給する必要があります。
グループの意図として簡単な説明を入力します。
</message>
</alert>
<alert name="InsufficientFunds">
<message name="message">
不十分な資金
</message>
</alert>
<alert name="CharacterSnapshotSaved">
<message name="message">
あなたのキャラクターのスナップショットを保存しました。
それを見るにはウェブページスタジオを見てください。
</message>
</alert>
<alert name="SaveClothingBodyChanges">
<message name="message">
衣類/体の部分に変更の全てを保存しますか。
</message>
<option name="SaveAll">
全て保存
</option>
<option name="Don'tSave">
保存できない
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="GrantModifyRights">
<message name="message">
Granting modify rights to another resident allows them to change
ANY objects you may have in-world. Be VERY careful when handing
out this permission.
Do you want to grant modify rights for [FIRST_NAME] [LAST_NAME]?
</message>
<option name="Yes">
はい
</option>
<option name="No">
いいえ
</option>
</alert>
<alert name="RevokeModifyRights">
<message name="message">
Do you want to revoke modify rights for [FIRST_NAME] [LAST_NAME]?
</message>
<option name="Yes">
はい
</option>
<option name="No">
いいえ
</option>
</alert>
<alert name="RemoveFriend">
<message name="message">
あなたはあなたの友達から[FIRST] [LAST]を取り除きたいですか。
</message>
<option name="Remove">
取り除く
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="GroupCreateSuccess">
<message name="message">
グループの作成に成功しました。
</message>
</alert>
<alert name="UnableToCreateGroup">
<message name="message">
グループを作成することは不可能です。
[MESSAGE]
</message>
<option name="OK">
OK
</option>
</alert>
<alert name="PanelGroupApply">
<message name="message">
[NEEDS_APPLY_MESSAGE][WANT_APPLY_MESSAGE]
</message>
<option name="ApplyChanges">
変更の適用
</option>
<option name="IgnoreChanges">
変更の無視
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="CreateGroupCanAfford">
<message name="message">
グループ設立にはL$[COST]かかります。 3日間以上グループを維持するためには、全体で3名以上のメンバー数が必要です。
グループを設立しますか?
</message>
<option name="Create">
生成
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="CreateGroupCannotAfford">
<message name="message">
グループの価格 L$[COST]を作成
あなたはこのグループを生成するのに十分な金を持っていません。
</message>
</alert>
<alert name="GroupNameTooShort">
<message name="message">
グループ名は、少なくとも4字文字の長さである必要があります。
</message>
</alert>
<alert name="GroupNameUsesReservedWord">
<message name="message">
そのグループ名には予約の言葉を使用します。
異なった名前を選択してください。
</message>
</alert>
<alert name="MustSpecifyGroupNoticeSubject">
<message name="message">
グループ通知を送信する際は、題名を特定してください。
</message>
<option name="OK">
OK
</option>
</alert>
<alert name="MustSupplyGroupCharter">
<message name="message">
グループのために支部を供給する必要があります。
グループの意図として簡単な説明を入力します。
</message>
</alert>
<alert name="AddGroupOwnerWarning">
<message name="message">
あなたは[ROLE_NAME]の役割に、グループメンバーを追加しようとしています。役割についたメンバーは、自ら退任しない限り、役割から外すことが出来ません。
本当に作業を続けますか?
</message>
<option name="Yes">
はい
</option>
<option name="No">
いいえ
</option>
</alert>
<alert name="AssignDangerousActionWarning">
<message name="message">
あなたは、権限『[ACTION_NAME]』を役割『[ROLE_NAME]』に追加しようとしています。
*警告*
この権限を持つ役割のメンバーは、自分自身や他のメンバーに、現在よりも強力な、オーナーに近いパワーをもたせることが出来ます。
この権限を与える前に、そのことを確認してください。
この権限を『[ROLE_NAME]』に追加しますか?
</message>
<option name="Yes">
はい
</option>
<option name="No">
いいえ
</option>
</alert>
<alert name="AssignDangerousAbilityWarning">
<message name="message">
あなたは権限『[ACTION_NAME]』を、役割『[ROLE_NAME]』に追加しようとしています。
*警告*
この権限を持つ役割のメンバーは、自分自身や他のメンバーに、オーナーに近いパワーをもたせることが出来ます。
この権限を『[ROLE_NAME]』に追加しますか?
</message>
<option name="Yes">
はい
</option>
<option name="No">
いいえ
</option>
</alert>
<alert name="ClickPublishHelpGroup">
<message name="message">
ウェブ上で公開' オプションを選択した場合、[SECOND_LIFE]Webサイトにて、グループ名、記章、特権、タイトル、創立者を公開できるようになります。上記内容がコミュニティ・スタンダードにおいて成人向けコンテンツと判断されるかどうかの責任はあなたにあります。
</message>
</alert>
<alert name="ClickPublishHelpLand">
<message name="message">
ウェブ上で公開' オプションを選択した場合、[SECOND_LIFE]Webサイトにて、名前、説明、スナップショット、場所を公開できるようになります。上記内容がコミュニティ・スタンダードにおいて成人向けコンテンツと判断されるかどうかの責任はあなたにあります。
</message>
</alert>
<alert name="ClickPublishHelpPostcard">
<message name="message">
ウェブ上で公開' オプションを選択した場合、[SECOND_LIFE]Webサイトにて、撮影者の[SECOND_LIFE]名、題名、場所、メッセージ、スナップショットを公開できるようになります。上記内容がコミュニティ・スタンダードにおいて成人向けコンテンツと判断されるかどうかの責任はあなたにあります。
</message>
</alert>
<alert name="ClickPublishHelpAvatar">
<message name="message">
ウェブ上で公開' オプションを選択した場合、[SECOND_LIFE]Webサイトにて、あなたの名前、イメージ画像、自己紹介を公開できるようになります。
</message>
</alert>
<alert name="ClickWebProfileHelpAvatar">
<message name="message">
If this resident has a web profile URL set then you can:
* Click Load to load the page with the embedded web browser.
* Click Open to view externally in your default web browser.
When viewing your profile you can enter any URL as your Web Profile.
Residents can visit the URL you specify when they view your profile.
</message>
</alert>
<alert name="ClickWebProfileNoWebHelpAvatar">
<message name="message">
If this resident has a web profile URL set then you can:
* Click Open to view externally in your default web browser.
When viewing your profile you can enter any URL as your Web Profile.
Residents can visit the URL you specify when they view your profile.
</message>
</alert>
<alert name="ReputationMinGreaterThanMax">
<message name="message">
名声の最低限度は最大限度より大きいです。
最小限度をより下げるかまたは最大限度を上げるかどちらかです。
</message>
</alert>
<alert name="MoneyMinGreaterThanMax">
<message name="message">
金銭の最低限度は最大限度より大きいです。
最小限度をより下げるかまたは最大限度を上げるかどちらかです。
</message>
</alert>
<alert name="OfficerTitleTooLong">
<message name="message">
オフィサーのタイトルは、最大20文字の長さである必要があります。
より短いタイトルを選択してください。
</message>
</alert>
<alert name="MemberTitleTooLong">
<message name="message">
メンバーの役職は、最大20文字の長さである必要があります。
より短い役職を選択してください。
</message>
</alert>
<alert name="RunningLocally">
<message name="message">
ローカルで起動中…
データがありません。
</message>
<option name="OK">
OK
</option>
</alert>
<alert name="EjectNoMemberSelected">
<message name="message">
追放するために選択されたメンバーはいない。
</message>
<option name="OK">
OK
</option>
</alert>
<alert name="ConfirmEject">
<message name="message">
これはグループから[MEMBER]を追放します。
続行したいですか。
</message>
<option name="Eject">
追放する
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="JoinGroupCanAfford">
<message name="message">
グループに参加する価格は L$[COST]です。
続行したいですか。
</message>
<option name="Join">
参加
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="JoinGroupCannotAfford">
<message name="message">
グループに参加する価格は L$[COST]です。
あなたはこのグループに参加するための十分な残金を持っていません。
</message>
</alert>
<alert name="LandBuyPass">
<message name="message">
L$[COST]で [TIME] 時間のためにこの土地[PARCEL_NAME]
入ることができます。 パスをかいますか。
</message>
<option name="OK">
OK
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="CannotStartAuctionAlreadyForSale">
<message name="message">
あなたは売り物としてすでに設定された区画でオークションを開始できません。
もしオークションを開始することが確かな場合には
土地売却を不可能にします。
</message>
</alert>
<alert name="SalePriceRestriction">
<message name="message">
誰かに売却する場合には、売却価格は > L$0 で設定される必要があります。
L$0で売却する場合には、売却する個人を選択してください。
</message>
</alert>
<alert name="ConfirmLandSaleChange">
<message name="message">
選択した [LAND_SIZE] 平方メーターの土地は売り物として設定されています。
売却価格はL$[SALE_PRICE]で、[NAME]に売却を認可されます。
この変更をすることを続けたいですか。
</message>
<option name="Continue">
継続
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="ReturnObjectsDeededToGroup">
<message name="message">
この区画のグループ『[NAME]』共有の全てのオブジェクトを、以前の所有者の持ち物に本当に返却してもよいですか?
*警告*これにより、そのグループに譲渡された譲渡不可能なオブジェクトは削除されます!
オブジェクト:[N]
</message>
<option name="Return">
戻る
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="ReturnObjectsOwnedByUser">
<message name="message">
この区画の居住者『[NAME]』所有の全てのオブジェクトを、所有者の持ち物に本当に返却してもよいですか?
オブジェクト:[N]
</message>
<option name="Return">
戻る
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="ReturnObjectsOwnedBySelf">
<message name="message">
この区画であなたが所有する全てのオブジェクトを、あなたの持ち物に本当に返却してもよいですか?
オブジェクト:[N]
</message>
<option name="Return">
戻る
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="ReturnObjectsNotOwnedBySelf">
<message name="message">
この区画であなたが所有する全てのオブジェクトを、あなたの持ち物に本当に返却してもよいですか?グループに譲渡された譲渡可能オブジェクトは、以前の所有者に返却されます。
*警告*これにより、そのグループに譲渡された譲渡不可能なオブジェクトは削除されます!
オブジェクト:[N]
</message>
<option name="Return">
戻る
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="ReturnObjectsNotOwnedByUser">
<message name="message">
この土地の一区画において[NAME]の所有ではない
全てのオブジェクトをその所有者'の在庫目録に戻してもよいですか。
グループに譲渡された譲渡可能なオブジェクトは
前の所有者に戻されます。
*警告* グループに譲渡された譲渡不可能なオブジェクトは
削除されます。
オブジェクト:[N]
</message>
<option name="Return">
戻る
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="ReturnAllTopObjects">
<message name="message">
Are you sure you want to return all objects
in this region back to their owner's inventory?
</message>
<option name="Return">
戻る
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="DisableAllTopObjects">
<message name="message">
Are you sure you want to disable all objects in this region?
</message>
<option name="Disable">
不能
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="ReturnObjectsNotOwnedByGroup">
<message name="message">
この土地の区画においてグループ[NAME]と共有していないオブジェクトを、所有者に返却しますか?
オブジェクト:[N]
</message>
<option name="Return">
戻る
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="UnableToDisableOutsideScripts">
<message name="message">
外部スクリプトを不能にすることはできません。
この地域全体では、健全であるようにします(安全でない)。
スクリプトは仕事で拳銃を作動させることを許す必要があります。
</message>
</alert>
<alert name="MustBeInParcel">
<message name="message">
そのLanding Pointを設定するには
土地区画の内側に立つ必要があります。
</message>
</alert>
<alert name="PromptRecipientEmail">
<message name="message">
受領者のEメールのアドレスを入力してください。
</message>
</alert>
<alert name="PromptSelfEmail">
<message name="message">
あなたのEメールのアドレスを入力してください。
</message>
</alert>
<alert name="ErrorProcessingSnapshot">
<message name="message">
エラープロセススナップショットデータ
</message>
</alert>
<alert name="ErrorEncodingSnapshot">
<message name="message">
エラー暗号化スナップショット!
</message>
</alert>
<alert name="ErrorUploadingPostcard">
<message name="message">
次のような理由によってポストカードをアップロードするのに問題があります: [REASON]
</message>
</alert>
<alert name="ErrorUploadingReportScreenshot">
<message name="message">
次のような理由によって報告のスクリーンショットをアップロードするのに問題があります: [REASON]
</message>
</alert>
<alert name="MustAgreeToLogIn">
<message name="message">
[SECOND_LIFE]に続けてロクインするにはTerms of Serviceに同意する必要があります。
</message>
</alert>
<alert name="CouldNotPutOnOutfit">
<message name="message">
服を着ることができなかった。
アウトフィットフォルダーは衣服、体の一部または装身具は含まれていません。
</message>
</alert>
<alert name="CannotWearTrash">
<message name="message">
ゴミ箱内の衣類または体の一部をつけることはできません。
</message>
</alert>
<alert name="CannotWearInfoNotComplete">
<message name="message">
完全な情報がまだ使用可能でないのでこの項目を着用できません。すぐにもう一度試みてください。
</message>
</alert>
<alert name="MustHaveAccountToLogInNoLinks">
<message name="message">
[SECOND_LIFE]に接続するにはアカウントを持つ必要があります。
</message>
<option name="OK">
OK
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="MustHaveAccountToLogIn">
<message name="message">
[SECOND_LIFE]に接続するにはアカウントを持つ必要があります。
新しいアカウントを作成するために www.secondlife.com に行きますか。
</message>
<option name="OK">
OK
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="AddClassified">
<message name="message">
検索ディレクトリの『クラシファイド』セクションに、クラシファイド広告が一週間掲載されます。広告を記入後、『発行』をクリックし、ディレクトリに追加します。
発行する際に、支払いをする金額を尋ねられます。支払い金額を多く出すことや、キーワード検索が多くされることにより、あなたの広告は上位にリストされます。
</message>
<option name="OK">
OK
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="DeleteClassified">
<message name="message">
分類された[NAME]を削除しますか。
支払った料金のための返済はありません。
</message>
<option name="Delete">
削除
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="DeleteAvatarPick">
<message name="message">
ピック [PICK]を削除しますか。?
</message>
<option name="Delete">
削除
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="DisplayChangeRestart">
<message name="message">
その表示のいくつかは、進行中の仕事を失う原因となるような
即座のシャットダウンをすることを[SECOND_LIFE]に要求
させることを変更します。
これらの変更を適用し、終了します
</message>
<option name="ApplyandQuit">
適用と終了
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="PromptGoToEventsPage">
<message name="message">
[SECOND_LIFE] イベントウェブページに行きますか。
</message>
<option name="GotoPage">
ページに行く
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="MustSelectCandidate">
<message name="message">
投票する候補者を選択する必要があります。
</message>
</alert>
<alert name="SelectItemToView">
<message name="message">
見たい項目を選択してください。
</message>
</alert>
<alert name="SelectProposalToView">
<message name="message">
閲覧する提案を選択してください。
</message>
</alert>
<alert name="SelectHistoryItemToView">
<message name="message">
見たい履歴項目を選択してください。
</message>
</alert>
<alert name="ResetShowNextTimeDialogs">
<message name="message">
全て再設定 '次の時間を見せる' ダイアログ...
</message>
<option name="OK">
OK
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="CacheWillClear">
<message name="message">
キャッシュは[SECOND_LIFE]を再起動された後クリアされます。
</message>
</alert>
<alert name="GoToAuctionPage">
<message name="message">
オークションの詳細をみたり、
または入札をするために[SECOND_LIFE] ウェブページに行きますか。
</message>
<option name="GotoPage">
ページに行く
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="SaveChanges">
<message name="message">
変更を保存しますか。
</message>
<option name="Save">
保存
</option>
<option name="Don'tSave">
保存できない
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="GestureSaveFailedTooManySteps">
<message name="message">
身振りの保存に失敗しました。
この身振りはステップが多すぎます。
いくつかのステップ取り除くことを試み、それから再び保存してください。
</message>
</alert>
<alert name="GestureSaveFailedTryAgain">
<message name="message">
身振りの保存に失敗しました。 すぐにもう一度試みてください。
</message>
</alert>
<alert name="GestureSaveFailedObjectNotFound">
<message name="message">
オブジェクトまたは関連したオブジェクト在庫目録を見つけることができないので、身振りを保存できなかった。
このオブジェクトは範囲の外にあるかまたは削除されてしまった可能性があります。
</message>
</alert>
<alert name="GestureSaveFailedReason">
<message name="message">
次のような理由によって身振りを保存するのに問題があります: [REASON]. 後で身振りを再保存することを試みてください。
</message>
</alert>
<alert name="SaveNotecardFailObjectNotFound">
<message name="message">
オブジェクトまたは関連したオブジェクト在庫目録を見つけることができないので、ノートカードを保存できなかった。
このオブジェクトは範囲の外にあるかまたは削除されてしまった可能性があります。
</message>
</alert>
<alert name="SaveNotecardFailReason">
<message name="message">
次のような理由によってノートカードを保存するのに問題があります: [REASON]. あとでこのノートカードを再保存することを試みてください。
</message>
</alert>
<alert name="ScriptCannotUndo">
<message name="message">
あなたのスクリプトのバージョンでは、変更を元に戻す事はできませんでした。サーバーの最新保存バージョンをロードしますか?
(注意:この操作は元に戻すことができません)
</message>
<option name="Yes">
はい
</option>
<option name="No">
いいえ
</option>
</alert>
<alert name="SaveScriptFailReason">
<message name="message">
次のような理由によってスクリプトを保存するのに問題があります: [REASON]. あとでこのスクリプトを再保存することを試みてください。
</message>
</alert>
<alert name="SaveScriptFailObjectNotFound">
<message name="message">
スクリプトが乗っているオブジェクトを見つけることができないのでスクリプトを保存できませんでした。
このオブジェクトは範囲の外にあるかまたは削除されてしまった可能性があります。
</message>
</alert>
<alert name="SaveBytecodeFailReason">
<message name="message">
次のような理由によって準拠したスクリプトを保存するのに問題があります: [REASON]. あとでこのスクリプトを再保存することを試みてください。
</message>
</alert>
<alert name="CouldNotStartStopScript">
<message name="message">
スクリプトが乗っているオブジェクトを見つけることができないのでスクリプトを開始または停止できませんでした。
このオブジェクトは範囲の外にあるかまたは削除されてしまった可能性があります。
</message>
</alert>
<alert name="CannotDownloadFile">
<message name="message">
ファイルをダウンロードすることが不可能です。
</message>
</alert>
<alert name="CannotWriteEncode">
<message name="message">
ファイルを暗号化することが不可能です [[FILE]]
</message>
</alert>
<alert name="CannotWriteFile">
<message name="message">
ファイルを書き込むことは不可能です[[FILE]]
</message>
</alert>
<alert name="CannotLoadWearable">
<message name="message">
すみません。衣類をロードできません
</message>
</alert>
<alert name="ConfirmDeleteComplicated">
<message name="message">
少なくとも一つ選択されたオブジェクトはロックされているか、コピーが不可能か、ほかのだれかによって所有されています。
これらの項目を削除することを確かに望んでいますか。
</message>
<option name="Yes">
はい
</option>
<option name="No">
いいえ
</option>
</alert>
<alert name="DisplaySettingsSafe">
<message name="message">
表示設定は、あなたが安全オプションを指定したので
安全レベルに設定されました。
</message>
</alert>
<alert name="DisplaySettingsRecommended">
<message name="message">
ディスプレイ設定は、あなたのシステム構成に基づいて推奨されたレベルに設定されています。
</message>
<option name="OK">
OK
</option>
</alert>
<alert name="CannotRequestDomain">
<message name="message">
サーバーに接続できません。
ドメイン名を依頼できませんでした: [HOST]
</message>
</alert>
<alert name="CannotFindDomain">
<message name="message">
このサーバードメイン名をみつけることが不可能です。
これはネットワーク接続を失ったか
またはサーバーの問題で起こる結果の可能性があります。
数秒後にもう一度試みるか、または助言をえるそしてシステムステータスウェブページへのリンクのために
Helpをクリックしてください。
</message>
<option name="OK">
OK
</option>
<option name="Help">
ヘルプ
</option>
</alert>
<alert name="PromptSelectServer">
<message name="message">
サーバーを選択してください。
[SERVER]に接続できません
</message>
</alert>
<alert name="CannotConnectDNSError">
<message name="message">
[SECOND_LIFE]に接続できません
DNS はホスト名を解明できませんでした。
www.secondlife.com ウエブサイトに接続できることを確認してください。
もしできで、しかしこのエラーを続けて受け取る場合には、
支援セクションに行きそしてこの問題を報告してください。
</message>
</alert>
<alert name="CannotConnectSecurityError">
<message name="message">
ログインサーバーに安定した接続を確立することが不可能です。
しばしばこれはあなたのコンピュータのクロックが不適当に設定されていることを意味します。
Control Panels に行きそして時間と日付が正しく設定されていることを
確認してください。
このエラーを続けて受け取る場合には、
SecondLife.com ウェブサイト上のSupportセクションにいって
そしてこの問題を報告してください。
</message>
</alert>
<alert name="CannotConnectVerificationError">
<message name="message">
[SECOND_LIFE]に接続できません。
このログインサーバーはそれ自身をSSLを介して確認できませんでした。
このエラーを続けて受領する場合には、
SecondLife.com ウェブサイト上のSupportセクションにいって
そしてこの問題を報告してください。
</message>
</alert>
<alert name="CannotConnectUnknownErrorWindows">
<message name="message">
[SECOND_LIFE]に接続できません。
我々の最善の努力にも関わらず、予期しない出来事が発生しました。
SecondLife.comのWebサイトのサポート・セクションで問題を報告してください。可能ならば、C:\Documents and Settings\(name)\Application Data\SecondLife\logs から、あなたのログファイルを含めてください。
ご協力ありがとうございます。
</message>
</alert>
<alert name="CannotConnectUnknownErrorDarwin">
<message name="message">
[SECOND_LIFE]に接続できません。
最高の努力にも関わらず、予期しない何かが故障しました。
SecondLife.com ウェブサイトの支援セクションに行きそして問題を報告してください。
可能な場合には、以下からのあなたのSecondLife.logファイルを含める:
file from: ~/Library/Application Support/SecondLife/logs
どうもありがとう
</message>
</alert>
<alert name="CannotResolveLoginToken">
<message name="message">
認証を取った
あなたの地域で解決する問題があります。
もう一度ロクインを試みてください。
このエラーを続けて受け取る場合には、
SecondLife.com ウェブサイト上のSupportセクションにいってください。
</message>
</alert>
<alert name="CannotConnectNoMessage">
<message name="message">
未知の問題を正しく直すには
(サーバーからの空エラーメッセージ)
数秒後にもう一度試みるか、または助言をえるそしてシステムステータスウェブページへのリンクのために
Helpをクリックしてください。
</message>
<option name="OK">
OK
</option>
<option name="Help">
ヘルプ
</option>
</alert>
<alert name="CannotConnectNoReplyFromLogin">
<message name="message">
接続は不可能です。ログインデータベースからは返答がありません。
数秒後にもう一度試みるか、または助言をえるそしてシステムステータスウェブページへのリンクのために
Helpをクリックしてください。
</message>
<option name="OK">
OK
</option>
<option name="Help">
ヘルプ
</option>
</alert>
<alert name="CannotConnectLoginTimeout">
<message name="message">
ログインは世界の中のあなたの場所でまっていることにタイムアウトしました。 もう一度試みてください。
</message>
</alert>
<alert name="FirstRunDialog">
<message name="message">
[SECOND_LIFE] のインストールは完了しました。
これはあなたが最初に[SECOND_LIFE]使用する場合に、
あなたがロクオンする前にアカウント生成する必要があります。.
新しいアカウントを作成するために www.secondlife.com に戻りますか。
</message>
<option name="NewAccount...">
新しいアカウント...
</option>
<option name="Continue">
継続
</option>
</alert>
<alert name="ClothingStillDownloading">
<message name="message">
あなたの衣類はまだダウンロードしています。
あなたは世界を普通に使用でき、そして他の使用者は
現在のあなたを見ます。
</message>
</alert>
<alert name="CannotResolveDomain">
<message name="message">
サーバーに接続できません。
ドメイン名を解明できませんでした: [DOMAIN]
あなたのネットワーク接続をチェックしてください。
</message>
</alert>
<alert name="CannotConnectLoginPacket">
<message name="message">
接続は不可能です。ロクインのパケットは
ロクインサーバーによって受け取られませんでした。
数秒後にもう一度試みるか、または助言をえるそしてシステムステータスウェブページへのリンクのために
Helpをクリックしてください。
</message>
<option name="OK">
OK
</option>
<option name="Help">
ヘルプ
</option>
</alert>
<alert name="WelcomeToSecondLife">
<message name="message">
[SECOND_LIFE]にようこそ!
矢印キーを使用して歩きます。
男性あるいは女性の人物を選択してください。
後であなたの決定を変更できます。
</message>
<option name="Male">
男性
</option>
<option name="Female">
女性
</option>
</alert>
<alert name="WelcomeToSecondLifeSimple">
<message name="message">
[SECOND_LIFE]にようこそ!
矢印キーを使用して歩きます。
男性あるいは女性の人物を選択してください。
</message>
<option name="Male">
男性
</option>
<option name="Female">
女性
</option>
</alert>
<alert name="ConfirmQuit">
<message name="message">
止めるのは望んでいるのは確かですか。
</message>
<option name="Yes">
はい
</option>
<option name="No">
いいえ
</option>
</alert>
<alert name="RegionNoTerraforming">
<message name="message">
この地域[REGION]は、土地生成は許されません。
土地生成をするには
世界のほかの部分で土地を購入する必要があります。
</message>
</alert>
<alert name="CannotCopyWarning">
<message name="message">
この項目を
コピーする許可を持っていないし、
それをあげてしまう場合にはあなたの
在庫目録からそれを失います。
この項目を実際に
提供したいですか。
</message>
<option name="Yes">
はい
</option>
<option name="No">
いいえ
</option>
</alert>
<alert name="CannotGiveItem">
<message name="message">
在庫目録の分類を与えることが不可能です。
</message>
</alert>
<alert name="TransactionCancelled">
<message name="message">
取引は取れ消されました。
</message>
</alert>
<alert name="TooManyItems">
<message name="message">
一つの在庫目録移動の中でたくさんの項目を与えることはできません。
</message>
</alert>
<alert name="NoItems">
<message name="message">
与えることができる項目はない。
</message>
</alert>
<alert name="CannotCopyCountItems">
<message name="message">
選択された項目の
[COUNT]コピーについて許可を持っていません。
あなたの在庫目録からこれらの項目を失います。
この項目を実際に与えたいですか。
</message>
<option name="Yes">
はい
</option>
<option name="No">
いいえ
</option>
</alert>
<alert name="CannotGiveCategory">
<message name="message">
在庫目録の分類を与えることが不可能です。
</message>
</alert>
<alert name="FreezeAvatar">
<message name="message">
このアバターを静止させてますか。
彼または彼女は移動する
チャットまたは世界と対話することがことが一時的にできません。
</message>
<option name="Freeze">
静止する
</option>
<option name="Unfreeze">
静止を解除する
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="EjectAvatar">
<message name="message">
あなたの土地からこのアバターを追放しますか。
</message>
<option name="Eject">
追放する
</option>
<option name="EjectandBan">
追放と禁止
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="InvalidUUID">
<message name="message">
有効なuuidではない
</message>
</alert>
<alert name="AcquireErrorTooManyObjects">
<message name="message">
エラーを獲得: 選択されたオブジェクトが多すぎます。
</message>
</alert>
<alert name="AcquireErrorObjectSpan">
<message name="message">
エラーを獲得: オブジェクトは一つ以上の地域に広がります。
獲得されたオブジェクトの全てを移動してください。
同じ地域で
</message>
</alert>
<alert name="TakeLockedOrNotOwnedBy">
<message name="message">
少なくとも一つのオブジェクトはロックされるかまたはあなたによって所有されません。
オブジェクトがあなたによって所有されないそしてあなたがそれを得ている場合には、
オブジェクトがあなたによって所有されないそしてあなたがそれを得ている場合には、
それを変更するまたはコピーするためにあなたの能力をことによると限定します。
将来
しかし、あなたはまだ現行の選択を取ることができます。
これらの項目を得ることを確かに望んでいますか。
</message>
<option name="Yes">
はい
</option>
<option name="No">
いいえ
</option>
</alert>
<alert name="PromptGoToCurrencyPage">
<message name="message">
[EXTRA]
購入通貨に関する情報について [URL]に行きますか。
</message>
<option name="GotoPage">
ページに行く
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="UnableToLinkObjects">
<message name="message">
これらの[COUNT]オブジェクトをリンクできません。
最大[MAX]オブジェクトをリンクすることができます。数を減らして、試みてください。
</message>
</alert>
<alert name="CannotLinkIncompleteSet">
<message name="message">
あなたは完全なセットのオブジェクトにリンクでき、
そして一つ以上のオブジェクトを選択しなければなりません。
</message>
</alert>
<alert name="CannotLinkModify">
<message name="message">
リンクすることが不可能です。すべてのオブジェクトの許可
を修正しなかったからです。
どれもロックされていない、そしてそれらの全てをあなたが所有していることを確認します。
</message>
</alert>
<alert name="CannotLinkDifferentOwners">
<message name="message">
リンクすることが不可能です。全てのオブジェクトが同じ所有者を持たないからです。
選択されたオブジェクトの全てを所有していることを確認してください。
</message>
</alert>
<alert name="NoFileExtension">
<message name="message">
このファイルのためのファイル拡張はない:[FILE]
このファイルが正しいファイル拡張があるか確認してください
</message>
</alert>
<alert name="InvalidFileExtension">
<message name="message">
期待された [VALIDS]
</message>
<option name="OK">
OK
</option>
</alert>
<alert name="CannotUploadSoundFile">
<message name="message">
読むためにアップロード音ファイルを開くことができません。:
[FILE]
</message>
</alert>
<alert name="SoundFileNotRIFF">
<message name="message">
ファイルは RIFF WAVE ファイルであることがわかりません:
[FILE]
</message>
</alert>
<alert name="SoundFileNotPCM">
<message name="message">
ファイルはPCM WAVE オーディオファイルであることがわかりません:
[FILE]
</message>
</alert>
<alert name="SoundFileInvalidChannelCount">
<message name="message">
ファイルは、チャンネルの無効な数字を保持しています (モノまたはステレオである必要があります):
[FILE]
</message>
</alert>
<alert name="SoundFileInvalidSampleRate">
<message name="message">
ファイルは支援されたサンプル率であることがわかりません (44.1kである必要がある):
[FILE]
</message>
</alert>
<alert name="SoundFileInvalidWordSize">
<message name="message">
ファイルは支援された言葉サイズであることがわかりません (8 または16 ビットである必要があります):
[FILE]
</message>
</alert>
<alert name="SoundFileInvalidHeader">
<message name="message">
WAVヘダー内にデータのかたまりを見つけることができなかった:
[FILE]
</message>
</alert>
<alert name="SoundFileInvalidTooLong">
<message name="message">
オーディオファイルは長すぎます (最大10秒):
[FILE]
</message>
</alert>
<alert name="ProblemWithFile">
<message name="message">
ファイルでの問題 [FILE]:
[ERROR]
</message>
</alert>
<alert name="CannotOpenTemporarySoundFile">
<message name="message">
Couldn't 書き込みするために一時的な圧縮音ファイルを開くことができません。: [FILE]
</message>
</alert>
<alert name="UnknownVorbisEncodeFailure">
<message name="message">
以下で未知のvorbis 暗号化に失敗: [FILE]
</message>
</alert>
<alert name="CorruptResourceFile">
<message name="message">
リソースファイルの破壊: [FILE]
</message>
</alert>
<alert name="UnknownResourceFileVersion">
<message name="message">
ファイル内の未知のlinden リソースファイルバージョン: [FILE]
</message>
</alert>
<alert name="UnableToCreateOutputFile">
<message name="message">
出力ファイルを作成することは不可能です。: [FILE]
</message>
</alert>
<alert name="DoNotSupportBulkAnimationUpload">
<message name="message">
アニメーションファイルのバルクアップロードを現在支援していません
</message>
</alert>
<alert name="CannotAccessOutputFile">
<message name="message">
出力ファイルにアクセス不能: [FILE]
</message>
</alert>
<alert name="InsufficientFundsToUploadFile">
<message name="message">
価格はL$[COST]で、残金はL$[BALANCE]です: ファイルをアップロードするには不十分な資金[FILE]
</message>
</alert>
<alert name="InsufficientFundsToFinishUpload">
<message name="message">
アップロードを終了するには不十分な資金[FILE]: 価格はL$[COST]で、残金はL$[BALANCE]です
</message>
</alert>
<alert name="CannotUploadReason">
<message name="message">
次のような理由で [FILE] をアップロードすることは不可能: [REASON]
後でもう一度試みてください。
</message>
</alert>
<alert name="CannotCreateLandmarkNotOwner">
<message name="message">
ここにランドマークを生成できません。
それはこの土地の所有者がそれを許可しないからです。
最初に数メーター動くことを試みます。
</message>
</alert>
<alert name="CannotRecompileSelectObjectsNoScripts">
<message name="message">
再コンパイルを行うことができません。
有効なスクリプトを持ったオブジェクトを
選択する。
</message>
</alert>
<alert name="CannotRecompileSelectObjectsNoPermission">
<message name="message">
再コンパイルを行うことができません。
あなたが修正する許可のあるスクリプトを持ったオブジェクトを選択する。
あなたが修正する許可のあるスクリプトを持ったオブジェクトを選択する。
</message>
</alert>
<alert name="CannotResetSelectObjectsNoScripts">
<message name="message">
再設定を行うことができません。
有効なスクリプトを持ったオブジェクトを
選択する。
</message>
</alert>
<alert name="CannotResetSelectObjectsNoPermission">
<message name="message">
再設定を行うことができません。
あなたが修正する許可のあるスクリプトを持ったオブジェクトを
選択する。
</message>
</alert>
<alert name="CannotSetRunningSelectObjectsNoScripts">
<message name="message">
実行するようなどんなスクリプトも設定できない。
有効なスクリプトを持ったオブジェクトを
選択する。
</message>
</alert>
<alert name="CannotSetRunningSelectObjectsNoPermission">
<message name="message">
実行するようなどんなスクリプトも設定できない。
あなたが修正する許可のあるスクリプトを持ったオブジェクトを
選択する。
</message>
</alert>
<alert name="CannotSetRunningNotSelectObjectsNoScripts">
<message name="message">
実行しないようなどんなスクリプトも設定できない。
有効なスクリプトを持ったオブジェクトを
選択する。
</message>
</alert>
<alert name="CannotSetRunningNotSelectObjectsNoPermission">
<message name="message">
実行しないようなどんなスクリプトも設定できない。
あなたが修正する許可のあるスクリプトを持ったオブジェクトを
選択する。
</message>
</alert>
<alert name="NoFrontmostFloater">
<message name="message">
保存するためにのfrontmost フロータはない
</message>
</alert>
<alert name="ColladaExportFailedUnknownServerError">
<message name="message">
コライダのエクスポートに失敗した: 未知のサービスエラー
</message>
</alert>
<alert name="ColladaExportFailedInvalidPermissions">
<message name="message">
コライダのエクスポートに失敗した: 有効でない許可またはオブジェクトがロックされた。
</message>
</alert>
<alert name="ColladaExportFailedUnknownError">
<message name="message">
コライダのエクスポートに失敗した: 未知のエラー
</message>
</alert>
<alert name="ObjectImportFailedTransfer">
<message name="message">
オブジェクトのインポートに失敗しました。ファイルを転送することができなかった。
</message>
</alert>
<alert name="ObjectImportFailedBadFormat">
<message name="message">
オブジェクトのインポートに失敗しました。 ファイルはSLObject フォーマットを受け入れません。
</message>
</alert>
<alert name="ObjectImportFailedUnknownError">
<message name="message">
オブジェクトのインポートに失敗しました。 未知のエラー.
</message>
</alert>
<alert name="CouldNotTeleportReason">
<message name="message">
テレポートができませんでした。
[REASON]
</message>
</alert>
<alert name="CannotSetLandOwnerNothingSelected">
<message name="message">
土地所有者を設定することは不可能:
何も選択しませんでした。
</message>
</alert>
<alert name="CannotSetLandOwnerMultipleRegions">
<message name="message">
土地の所有権を強制することができません。選択が複数の地域に渡るからです。
より小さなエリアを選択し、再度試みてください。
</message>
</alert>
<alert name="ForceOwnerAuctionWarning">
<message name="message">
この区画はオークションにでます。所有権を強制することは
オークションを取消し、そして入札が始まった場合にはいくらかの居住者を
不幸にする可能性があります。所有権を強制しますか。
</message>
<option name="Force">
強制
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="CannotContentifyNothingSelected">
<message name="message">
コンテンツ化は不可能です。
何も選択しませんでした。
</message>
</alert>
<alert name="CannotContentifyNoRegion">
<message name="message">
コンテンツ化は不可能です。
地域は無し。
</message>
</alert>
<alert name="CannotReleaseLandNothingSelected">
<message name="message">
土地を捨てることは不可能:
N何も選択しませんでした。
</message>
</alert>
<alert name="CannotReleaseLandNoRegion">
<message name="message">
土地を捨てることは不可能:
地域を見つけることができません。
</message>
</alert>
<alert name="CannotBuyLandNothingSelected">
<message name="message">
土地を購入することは不可能:
何も選択しませんでした。
</message>
</alert>
<alert name="CannotBuyLandNoRegion">
<message name="message">
土地を購入することは不可能:
この土地がある地域を見つけることができません。
</message>
</alert>
<alert name="CannotDeedLandNothingSelected">
<message name="message">
土地を証書を作成して譲渡することは不可能:
何も選択しませんでした。
</message>
</alert>
<alert name="CannotDeedLandNoGroup">
<message name="message">
土地を証書を作成して譲渡することは不可能:
グループは無し。
</message>
</alert>
<alert name="CannotDeedLandNoRegion">
<message name="message">
土地を証書を作成して譲渡することは不能:
この土地がある地域を見つけることができません。
この報告をするためにHelp -> Report Bugを使用してください。
</message>
</alert>
<alert name="CannotSetLandOwnerNothingSelected">
<message name="message">
土地所有者を設定することは不可能:
何も選択しませんでした。
</message>
</alert>
<alert name="CannotBuyLandMultipleRegions">
<message name="message">
土地を購入することができません。選択が複数の地域に渡るからです。
より小さなエリアを選択し、再度試みてください。
</message>
</alert>
<alert name="CannotBuyLandMultipleSelected">
<message name="message">
土地を購入することは不可能:
複数の異なった区画を選択しました。
より小さなエリアを選択するよう試みます。
</message>
</alert>
<alert name="CannotDeedLandMultipleSelected">
<message name="message">
土地を証書を作成して譲渡することは不可能:
複数の異なった区画を選択しました。
より小さなエリアを選択するよう試みます。
</message>
</alert>
<alert name="RegionNotFound">
<message name="message">
地域が見つかりません
</message>
</alert>
<alert name="ParcelCanPlayMusic">
<message name="message">
この場所はストリーミング音楽を演奏できます。
音楽は768 kbps を要求するかまたは より速い
Internet の接続が必要です。
使用可能なときは音楽を演奏しますか。
</message>
<option name="PlayMusic">
音楽を演奏
</option>
<option name="Disable">
不能
</option>
</alert>
<alert name="ParcelCanPlayMedia">
<message name="message">
この場所はストリーミングビデオを上映できます。
ストリーミングビデオは768 kbps を要求するかまたは より速い
Internet の接続が必要です。
使用可能なときはビデオを演奏しますか。
(Preferences > Audio & Videoの所で
このオプションを後で変更できます。)
</message>
<option name="PlayMedia">
メディアを上映
</option>
<option name="Disable">
不能
</option>
</alert>
<alert name="CannotBuyLandWaitingForServer">
<message name="message">
土地を購入することは不可能:
W価格を報告するためのサーバーを待っています。
数秒後に一度試みてください。
</message>
</alert>
<alert name="CannotDeedLandWaitingForServer">
<message name="message">
土地を証書を作成して譲渡することは不可能:
所有権を報告するためのサーバーを待っています。
数秒後に一度試みてください。
</message>
</alert>
<alert name="CannotBuyLandNoPublic">
<message name="message">
土地を購入することは不可能:
この選択はいかなる公共の土地も含んでいません。
</message>
</alert>
<alert name="CannotBuyLandLandOwned">
<message name="message">
土地を購入することは不可能:
他の使用者によって所有された土地が選択されています。
より小さなエリアを選択するよう試みます。
</message>
</alert>
<alert name="CannotButLandRegionNotFound">
<message name="message">
土地を購入することは不可能:
この土地がある地域を見つけることができません。
この報告をするためにHelp -> Report Bugを使用してください。
</message>
</alert>
<alert name="CannotBuyLandNoTransfer">
<message name="message">
土地を購入することは不可能:
この地域[REGION]は、土地の転送を許されません。
</message>
</alert>
<alert name="CannotDeedLandNoTransfer">
<message name="message">
土地を証書を作成して譲渡することは不可能:
この地域[REGION]は、土地の転送を許されません。
</message>
</alert>
<alert name="CannotBuyLandForGroupNotOfficer">
<message name="message">
グループようの土地の購入が不可能:
現在のクループであなたはオフィサーではありません。
Edit -> Groupsを使用して他のクループを起動してください...
</message>
</alert>
<alert name="CannotBuyLandInsufficientFunds">
<message name="message">
土地価格L$[PRICE]のこの [AREA] 平方メーターを買います。
あんたはただ L$[BALANCE]を持っています。
</message>
</alert>
<alert name="CannotReleaseLandNothingSelected">
<message name="message">
土地を捨てることは不可能:
N何も選択しませんでした。
</message>
</alert>
<alert name="CannotReleaseLandWatingForServer">
<message name="message">
土地を捨てることは不可能:
価格を報告するためのサーバーを待っています。
数秒後に一度試みてください。
</message>
</alert>
<alert name="CannotReleaseLandSelected">
<message name="message">
土地を捨てることは不可能:
複数の異なった区画を選択しました。
より小さなエリアを選択するよう試みます。
</message>
</alert>
<alert name="CannotReleaseLandDontOwn">
<message name="message">
土地を捨てることができません:
この区画を解放する権限がありません。あなたの所有する区画は緑色で表されます。
</message>
</alert>
<alert name="CannotReleaseLandRegionNotFound">
<message name="message">
土地を捨てることは不可能:
この土地がある地域を見つけることができません。
この報告をするためにHelp -> Report Bugを使用してください。
</message>
</alert>
<alert name="CannotReleaseLandNoTransfer">
<message name="message">
土地を捨てることは不可能:
この地域[REGION]は、土地の転送を許されません。
</message>
</alert>
<alert name="CannotReleaseLandPartialSelection">
<message name="message">
土地を捨てることは不可能:
区画全体を選択するか、それを解放する必要があります。
ダブルクリックを試みて、区画全体を選択するか、または
最初にあなたの区画を分割します。
</message>
</alert>
<alert name="ReleaseLandWarning">
<message name="message">
あなたは [AREA] 平方メーターの土地を手放そうとしています。
この区画の解放はあなたの土地
保有からそれを取り除きますが、
いくらかの金額L$でクレジットされません。
土地を解放しますか。
</message>
<option name="Release">
解放
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="CannotDivideLandNothingSelected">
<message name="message">
土地を分割することは不可能:
何も選択しませんでした。
</message>
</alert>
<alert name="CannotDivideLandPartialSelection">
<message name="message">
土地を分割することは不可能:
あなたは選択された全ての区画を持っています。
クリックとドラッグによってより小さいエリアを選択するように
心がけます。
</message>
</alert>
<alert name="LandDivideWarning">
<message name="message">
この土地を分割することは、この区画を2つに分割し、
そして各区画はそれ自身の設定を保持することができます。 いくつかの設定は
オペレーションの後デフォルトで再設定されます。
土地を分割しますか。
</message>
<option name="Divide">
分割
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="CannotDivideLandNoRegion">
<message name="message">
土地を分割することは不可能:
この土地がある地域を見つけることができません。
の報告をするためにHelp -> Report Bugを使用してください。
</message>
</alert>
<alert name="CannotJoinLandNoRegion">
<message name="message">
土地を統合することが出来ませんでした:
この土地が存在する地域が見つかりません。ヘルプのバグを報告を利用して報告してください。
</message>
</alert>
<alert name="CannotJoinLandNothingSelected">
<message name="message">
土地に加わることは不可能:
何も選択しませんでした。
</message>
</alert>
<alert name="CannotJoinLandEntireParcelSelected">
<message name="message">
土地に加わることは不可能:
あなたは選択された全ての区画を持っています。
クリックとドラッグによってより大きいエリアを
選択するように心がけます。
</message>
</alert>
<alert name="CannotJoinLandSelection">
<message name="message">
土地に加わることは不可能:
一つ以上の区画を選択する必要があります。
クリックとドラッグによってより大きいエリアを
選択するように心がけます。
</message>
</alert>
<alert name="JoinLandWarning">
<message name="message">
この土地に加わるには、選択された長方形に交差する全ての区画の外の
一つの大きな区画を生成します。
あなたは、新しい区画
の名前とオプションを再設定する必要があります。
土地に加わりますか。
</message>
<option name="Join">
参加
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="ConfirmNotecardSave">
<message name="message">
This notecard needs to be saved before the item can be copied or viewed. Save notecard?
</message>
<option name="Save">
保存
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="ConfirmLandmarkCopy">
<message name="message">
あなたの在庫目録にこの項目をコピーする。
</message>
<option name="Copy">
コピー
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="ConfirmItemCopy">
<message name="message">
あなたの在庫目録にこの項目をコピーする。
</message>
<option name="Copy">
コピー
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="ResolutionSwitchFail">
<message name="message">
ソリューションを [RESY]で[RESX]に交換することに失敗した
</message>
</alert>
<alert name="ErrorUndefinedGrasses">
<message name="message">
エラー: 未定義の草: [SPECIES]
</message>
</alert>
<alert name="ErrorUndefinedTrees">
<message name="message">
エラー: 未定義の草: [SPECIES]
</message>
</alert>
<alert name="CannotSaveWearableOutOfSpace">
<message name="message">
衣類のファイルにを保存することが不可能です。
あなたのコンピュータのいくつかのスペースを解放する必要があり、
そしてもう一度衣類を保存してください。
</message>
</alert>
<alert name="CannotSaveToAssetStore">
<message name="message">
中央資産格納庫に[NAME]の保存が不可能です。
これは通常一時的な故障です。
カスタマイズして、そして数分後もう一度衣類を保存してください。
この問題が続く場合には、
プルダウンメニューをクリックし
そしてあなたのネットワーク設定について詳細を提供してください。
</message>
</alert>
<alert name="AppEarlyExit">
<message name="message">
[MESSAGE]
この問題から回復することができません。
もう一度試みる前にアンインストールし、そしてインストールしてください。
問題が続く場合には、以下でTech Support FAQをチェック:
www.secondlife.com/support.
</message>
<option name="Quit">
終了
</option>
</alert>
<alert name="YouHaveBeenLoggedOut">
<message name="message">
[SECOND_LIFE]をログアウト:
[MESSAGE]
存在するIM とチャットをみるためにContinueをクリックします。
他のオペレーションを行うことはできません。
即座に[SECOND_LIFE] をでるにはQuitをクリックします。
</message>
<option name="Continue">
継続
</option>
<option name="Quit">
終了
</option>
</alert>
<alert name="OnlyOfficerCanBuyLand">
<message name="message">
グループ用の土地の購入ができません:
活動グループのための土地を購入する権限がありません。Edit→Groupsを使用して、他のグループを起動してください。
</message>
</alert>
<alert name="AddFriend" title="フレンドを追加">
<message name="message">
Friends can give permissions to
track each other on the map and
receive online status updates.
Offer friendship to [NAME]?
</message>
<option name="Offer">
申し出る
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="RemoveFromFriends">
<message name="message">
あなたはあなたの友達から[FIRST_NAME] [LAST_NAME]を取り除きたいですか。
</message>
<option name="Remove">
取り除く
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="RemoveMultipleFromFriends">
<message name="message">
Do you want to remove multiple friends from your friends list?
</message>
<option name="Remove">
取り除く
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="GodDeleteAllScriptedPublicObjectsByUser">
<message name="message">
このシムの他の全ての土地において、**[AVATAR_NAME]**所有のスクリプトを含むオブジェクトを、本当に全部削除してもよいですか?
</message>
<option name="DELETE!!">
削除!!
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="GodDeleteAllScriptedObjectsByUser">
<message name="message">
このシムの全ての土地において、**[AVATAR_NAME]**所有のスクリプトを含むオブジェクトを、本当に全部削除してもよいですか?
</message>
<option name="!!DELETEALL!!">
!!全て削除!!
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="GodDeleteAllObjectsByUser">
<message name="message">
このシムの全ての土地において、**[AVATAR_NAME]**所有のオブジェクト(スクリプトを含む、または無し)を、本当に全部削除してもよいですか?
</message>
<option name="!!DELETEALL!!">
!!全て削除!!
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="PublishGroupInfoToWeb">
<message name="message">
ウェブ上で公開' オプションを選択した場合、[SECOND_LIFE]Webサイトにて、グループ名、記章、特権、タイトル、創立者を公開できるようになります。上記内容がコミュニティ・スタンダードにおいて成人向けコンテンツと判断されるかどうかの責任はあなたにあります。
</message>
</alert>
<alert name="ErrorEncodingSnapshot">
<message name="message">
エラー暗号化スナップショット!
</message>
</alert>
<alert name="BlankClassifiedName">
<message name="message">
あなたの分類のために空白でない名前を指定する必要があります。
</message>
</alert>
<alert name="MinClassifiedPrice">
<message name="message">
指定の支払い金額は少なくともL$[MIN_PRICE]です。
もっと高い金額を入力してください。
</message>
</alert>
<alert name="CantLoadVertexShaders">
<message name="message">
Vertex Shadersをロードすることが不可能です。
</message>
</alert>
<alert name="ConfirmObjectDeleteLock">
<message name="message">
すくなくとも一つのオブジェクトはロックされます。
しかし、あなたはまだ現行の選択を削除できます。
これらの項目を削除することを確かに望んでいますか。
</message>
<option name="Yes">
はい
</option>
<option name="No">
いいえ
</option>
</alert>
<alert name="ConfirmObjectDeleteNoCopy">
<message name="message">
すくなくとも一つのオブジェクトはコピーが可能ではありません。
しかし、あなたはまだ現行の選択を削除できます。
これらの項目を削除することを確かに望んでいますか。
</message>
<option name="Yes">
はい
</option>
<option name="No">
いいえ
</option>
</alert>
<alert name="ConfirmObjectDeleteNoOwn">
<message name="message">
あなたは特に一つのオブジェクトも所有していません。
しかし、あなたはまだ現行の選択を削除できます。
これらの項目を削除することを確かに望んでいますか。
</message>
<option name="Yes">
はい
</option>
<option name="No">
いいえ
</option>
</alert>
<alert name="ConfirmObjectDeleteLockNoCopy">
<message name="message">
すくなくとも一つのオブジェクトはロックされます。
すくなくとも一つのオブジェクトはコピーが可能ではありません。
しかし、あなたはまだ現行の選択を削除できます。
これらの項目を削除することを確かに望んでいますか。
</message>
<option name="Yes">
はい
</option>
<option name="No">
いいえ
</option>
</alert>
<alert name="ConfirmObjectDeleteLockNoOwn">
<message name="message">
すくなくとも一つのオブジェクトはロックされます。
あなたは特に一つのオブジェクトも所有していません。
しかし、あなたはまだ現行の選択を削除できます。
これらの項目を削除することを確かに望んでいますか。
</message>
<option name="Yes">
はい
</option>
<option name="No">
いいえ
</option>
</alert>
<alert name="ConfirmObjectDeleteNoCopyNoOwn">
<message name="message">
すくなくとも一つのオブジェクトはコピーが可能ではありません。
あなたは特に一つのオブジェクトも所有していません。
しかし、あなたはまだ現行の選択を削除できます。
これらの項目を削除することを確かに望んでいますか。
</message>
<option name="Yes">
はい
</option>
<option name="No">
いいえ
</option>
</alert>
<alert name="ConfirmObjectDeleteLockNoCopyNoOwn">
<message name="message">
すくなくとも一つのオブジェクトはロックされます。
すくなくとも一つのオブジェクトはコピーが可能ではありません。
あなたは特に一つのオブジェクトも所有していません。
しかし、あなたはまだ現行の選択を削除できます。
これらの項目を削除することを確かに望んでいますか。
</message>
<option name="Yes">
はい
</option>
<option name="No">
いいえ
</option>
</alert>
<alert name="ConfirmObjectTakeLock">
<message name="message">
すくなくとも一つのオブジェクトはロックされます。
しかし、あなたはまだ現行の選択を得ることができます。
これらの項目を得ることを確かに望んでいますか。
</message>
<option name="Yes">
はい
</option>
<option name="No">
いいえ
</option>
</alert>
<alert name="ConfirmObjectTakeNoOwn">
<message name="message">
あなたは得ているオブジェクトの全てを所有していません。
もし継続する場合には, 次の所有者の許可は、オブジェクトに適用され、
そして将来それらを変更またはコピーするためのあなたの能力を
ことによると限定します。
しかし、あなたはまだ現行の選択を得ることができます。
これらの項目を得ることを確かに望んでいますか。
</message>
<option name="Yes">
はい
</option>
<option name="No">
いいえ
</option>
</alert>
<alert name="ConfirmObjectTakeLockNoOwn">
<message name="message">
すくなくとも一つのオブジェクトはロックされます。
あなたが得ているオブジェクトの全てを所有していません。
もし継続する場合には, 次の所有者の許可は、オブジェクトに適用
能力をことによると限定します。
され、そして将来それらを変更またはコピーするためのあなたの
しかし、あなたはまだ現行の選択を得ることができます。
これらの項目を得ることを確かに望んでいますか。
</message>
<option name="Yes">
はい
</option>
<option name="No">
いいえ
</option>
</alert>
<alert name="CantBuyLandAcrossMultipleRegions">
<message name="message">
土地を購入することができません。選択が複数の地域に渡るからです。
より小さなエリアを選択し、再度試みてください。
</message>
</alert>
<alert name="DeedLandToGroup">
<message name="message">
この区画を証書を作成して譲渡することで、このグループはクレジットを使用して十分な土地を保持し、維持することを
要求されます。
その土地の購入価格は、所有者その土地の購入価格は、所有者
には返金されません。 もし譲渡された区画が、売却される場合には、その売却
価格は、グループメンバーの間で均等に分配されます。
このクループへ土地のこの[AREA] 平方メーターを証書を作成して譲渡しますか。
[GROUP_NAME]?
</message>
<option name="Deed">
譲渡する
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="DeedLandToGroupWithContribution">
<message name="message">
この区画を証書を作成して譲渡することで、このグループはクレジットを使用して十分な土地を保持し、維持することを
要求されます。
この譲渡は、[FIRST_NAME] [LAST_NAME]からそのグループへの同時に起こる土地
の寄贈を含みます。
Tその土地の購入価格は、所有者には返金されません。
もし譲渡された区画が、売却される場合には、その売却
価格は、グループメンバーの間で均等に分配されます。
このクループへ土地のこの[AREA] 平方メーターを証書を作成して譲渡しますか。
[GROUP_NAME]
</message>
<option name="Deed">
譲渡する
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="DisplaySetToSafe">
<message name="message">
表示設定は、あなたが安全オプションを指定したので
安全レベルに設定されました。
</message>
</alert>
<alert name="DisplaySetToRecommended">
<message name="message">
ディスプレイ設定は、あなたのシステム構成に基づいて推奨されたレベルに設定されています。
</message>
</alert>
<alert name="UnableToConnect">
<message name="message">
サーバーに接続できません。
ドメイン名を依頼できませんでした: [HOST_NAME]
</message>
</alert>
<alert name="CanNotFindServer">
<message name="message">
このサーバードメイン名をみつけることが不可能です。
これはネットワーク接続を失ったか
またはサーバーの問題で起こる結果の可能性があります。
数秒後にもう一度試みるか、または助言をえるそしてシステムステータスウェブページへのリンクのために
Helpをクリックしてください。
</message>
<option name="OK">
OK
</option>
<option name="Help">
ヘルプ
</option>
</alert>
<alert name="PleaseSelectServer">
<message name="message">
サーバーを選択してください。
[IP_ADDRESS]に接続できません
</message>
</alert>
<alert name="SystemMayBeDown">
<message name="message">
SECOND_LIFE]に接続できません
このシステムはダウンしている可能性があります。
数秒後にもう一度試みるか、または助言をえるそしてシステムステータスウェブページへのリンクのために
Helpをクリックしてください
</message>
<option name="OK">
OK
</option>
<option name="Help">
ヘルプ
</option>
</alert>
<alert name="ErrorMessage">
<message name="message">
[ERROR_MESSAGE]
</message>
</alert>
<alert name="AvatarMoved">
<message name="message">
Your [TYPE] location is not currently available.
[HELP]
You have been moved into a nearby region.
</message>
</alert>
<alert name="ClothingLoading">
<message name="message">
あなたの衣類はまだダウンロードしています。
あなたは世界を普通に使用でき、そして他の使用者は
現在のあなたを見ます。
</message>
</alert>
<alert name="FirstRun">
<message name="message">
[SECOND_LIFE] のインストールは完了しました。
これはあなたが最初に[SECOND_LIFE]使用する場合に、
あなたがロクオンする前にアカウント生成する必要があります。.
新しいアカウントを作成するために www.secondlife.com に戻りますか。
</message>
<option name="NewAccount...">
新しいアカウント...
</option>
<option name="Continue">
継続
</option>
</alert>
<alert name="SetByHostFail">
<message name="message">
サーバーに接続できません。
ドメイン名を解明できませんでした: [HOST_NAME]
あなたのネットワーク接続をチェックしてください。
</message>
</alert>
<alert name="LoginPacketNeverReceived">
<message name="message">
接続は不可能です。ロクインのパケットは
ロクインサーバーによって受け取られませんでした。
数秒後にもう一度試みるか、または助言をえるそしてシステムステータスウェブページへのリンクのために
Helpをクリックしてください。
</message>
<option name="OK">
OK
</option>
<option name="Help">
ヘルプ
</option>
</alert>
<alert name="WelcomeNoClothes">
<message name="message">
あなたのキャラクターは、まもなく表示されます。
矢印キーを使用して歩きます。
ヘルプ、または[SECOND_LIFE]に関して学ぶ場合は、いつでもF1キーを押してください。
</message>
</alert>
<alert name="WelcomeChooseSex">
<message name="message">
あなたのキャラクターは、まもなく表示されます。
矢印キーを使用して歩きます。
ヘルプ、または[SECOND_LIFE]に関して学ぶ場合は、いつでもF1キーを押してください。
男性あるいは女性のキャラクターを選択してください。あなたの決定は後で変更可能です。
</message>
<option name="Male">
男性
</option>
<option name="Female">
女性
</option>
</alert>
<alert name="NotEnoughCurrency">
<message name="message">
[NAME] L$ [PRICE] それをするのは十分な金額をもっていません。
</message>
</alert>
<alert name="GrantedModifyRights">
<message name="message">
You have been granted the privilege to modify [FIRST_NAME] [LAST_NAME]'s objects.
</message>
</alert>
<alert name="RevokedModifyRights">
<message name="message">
Your privilege to modify [FIRST_NAME] [LAST_NAME]'s objects has been revoked
</message>
</alert>
<alert name="FlushMapVisibilityCaches">
<message name="message">
この地域の地図のキャッシュを消去します。実際にはデバッグを行う時のみ有用なオプションです。 (プロダクションには、5分程度待つと、再度ログイン後に、全員の地図が更新されます)
</message>
<option name="OK">
OK
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="OnlyCopyContentsOfSingleItem">
<message name="message">
一度に一つ以上のコンテンツをコピーすることはできません。単一オブジェクトを選択し、再度、試みてください。
</message>
<option name="OK">
OK
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="KickUsersFromRegion">
<message name="message">
本地域の全てのユーザーをホームにテレポートしますか?
</message>
<option name="OK">
OK
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="ReturnScriptedOnOthersLand">
<message name="message">
**[USER_NAME]**所有の土地で、彼/彼女の全てのスクリプトを含むオブジェクトを、本当に返却してもよいですか?
</message>
<option name="Return">
戻る
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="ReturnScriptedOnAllLand">
<message name="message">
この地域の他の全ての土地において、**[AVATAR_NAME]**所有のスクリプトを含むオブジェクトを、本当に全部返却してもよいですか?
</message>
<option name="Return">
戻る
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="InvalidTerrainBitDepth">
<message name="message">
Couldn't set region textures:
Terrain texture [TEXTURE_NUM] has an invalid bit depth of [TEXTURE_BIT_DEPTH].
Replace texture [TEXTURE_NUM] with a 24 bit 512x512 or smaller image
then click "Set" again.
</message>
</alert>
<alert name="InvalidTerrainSize">
<message name="message">
Couldn't set region textures:
Terrain texture [TEXTURE_NUM] is too large at [TEXTURE_SIZE_X]x[TEXTURE_SIZE_Y].
Replace texture [TEXTURE_NUM] with a 24 bit 512x512 or smaller image
then click "Set" again.
</message>
</alert>
<alert name="RawUploadStarted">
<message name="message">
アップロードが開始されました。あなたの接続速度により、2分程度かかることがあります。
</message>
</alert>
<alert name="ConfirmBakeTerrain">
<message name="message">
現在の領域を上昇/下降させる境界の中間点にベークし、『復帰』ツールのデフォルトにしますか?
</message>
<option name="Bake">
ベークする
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="MaxAllowedAgentOnRegion">
<message name="message">
[MAX_AGENTS]許可居住人のみ使用可能です
</message>
</alert>
<alert name="MaxAllowedGroupsOnRegion">
<message name="message">
[MAX_GROUPS]許可グループのみ使用可能です
</message>
<option name="Bake">
ベークする
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="MaxBannedAgentsOnRegion">
<message name="message">
[MAX_BANNED]禁止居住者のみ使用可能です
</message>
</alert>
<alert name="MaxManagersOnRegion">
<message name="message">
[MAX_MANAGER]禁止居住者のみ使用可能です
</message>
</alert>
<alert name="OwnerCanNotBeDenied">
<message name="message">
不動産オーナーを不動産『アクセス拒否』リストに追加できません。
</message>
</alert>
<alert name="CanNotChangeAppearanceUntilLoaded">
<message name="message">
服および形がロードされるまで、容姿の変更はできません。
</message>
</alert>
<alert name="ClassifiedMustBeAlphanumeric">
<message name="message">
クラシファイドの名前は、AからZの文字、または、数字で始める必要があります。句読点からは始められません。
</message>
</alert>
<alert name="CantSetBuyObject">
<message name="message">
オブジェクトが販売対象ではないため、オブジェクトの購入が設定できません。 販売対象のオブジェクトを設定し、再度試みてください。
</message>
</alert>
<alert name="FinishedRawDownload">
<message name="message">
[DOWNLOAD_PATH]への、 未加工の領域ファイルのダウンロードが終了しました。
</message>
</alert>
<alert name="DownloadWindowsMandatory">
<message name="message">
[SECOND_LIFE]の新しいバージョンが使用可能です。 [MESSAGE] このシステムを使用するために、アップデートをダウンロードする必要があります。
</message>
<option name="Download">
ダウンロード
</option>
<option name="Quit">
終了
</option>
</alert>
<alert name="DownloadWindows">
<message name="message">
[SECOND_LIFE]のアップデートバージョンが使用可能です。
[MESSAGE]
このアップデートは必須ではありませんが、性能と安定性を向上させるために、インストールする事をお勧めします。
</message>
<option name="Download">
ダウンロード
</option>
<option name="Continue">
継続
</option>
</alert>
<alert name="DownloadWindowsReleaseForDownload">
<message name="message">
[SECOND_LIFE]のアップデートバージョンが使用可能です。
[MESSAGE]
このアップデートは必須ではありませんが、性能と安定性を向上させるために、インストールする事をお勧めします。
</message>
<option name="Download">
ダウンロード
</option>
<option name="Continue">
継続
</option>
</alert>
<alert name="DownloadMacMandatory">
<message name="message">
A new version of [SECOND_LIFE] is available.
[MESSAGE]
You must download this update to use the system.
Download to your Applications folder?
</message>
<option name="Download">
ダウンロード
</option>
<option name="Quit">
終了
</option>
</alert>
<alert name="DownloadMac">
<message name="message">
[SECOND_LIFE]のアップデートバージョンが使用可能です。
[MESSAGE]
このアップデートは必須ではありませんが、性能と安定性を向上させるために、インストールする事をお勧めします。
アプリケーション・フォルダーにダウンロードしますか?
</message>
<option name="Download">
ダウンロード
</option>
<option name="Continue">
継続
</option>
</alert>
<alert name="DownloadMacReleaseForDownload">
<message name="message">
[SECOND_LIFE]のアップデートバージョンが使用可能です。
[MESSAGE]
このアップデートは必須ではありませんが、性能と安定性を向上させるために、インストールする事をお勧めします。
アプリケーション・フォルダーにダウンロードしますか?
</message>
<option name="Download">
ダウンロード
</option>
<option name="Continue">
継続
</option>
</alert>
<alert name="DeedObjectToGroup">
<message name="message">
このオブジェクトを譲渡することはグループとって以下の原因になります:
* オブジェクトへの支払いの金銭を受け取ります
</message>
<option name="Deed">
譲渡する
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="AddClassified">
<message name="message">
案内広告は、;一週間のディレクトリーを見つけるの
部分に現れます。
あなたの広告を見つけるには、Publish...をクリックし、
ディレクトリーにそれを追加します。
Publishをクリックする時支払いをする金額を尋ねられます。
より多く支払うことは、リスト内であなたの広告がより高い位置に表示され、そして
キーワードで検索した時にもより高い頻度で現れます。
</message>
<option name="OK">
OK
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="WebLaunchGraphicsDriver">
<message name="message">
このコンピュータに搭載の[VENDOR_LABLE][CARD_NAME]グラフィック・ドライバーは旧式です。
これはあなたのグラフィック・カードを制御するソフトウェアの一つです。古いドライバーは[SECOND_LIFE]のような3Dグラフィック・プログラムでの動作の遅延やクラッシュの原因になる可能性があります。
[VENDOR_LABLE] から無料でダウンロードできる[DRIVER_NAME]ドライバーへのアップグレードを強く推奨します。[SECOND_LIFE]のドライバーWebページに移行しますか?
</message>
<option name="Gotopage">
ページに行く
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="WebLaunchGraphicsDriverIntelExtreme">
<message name="message">
このコンピュータのあなたの Intel Extreme グラフィックドライバーは旧式です。
これはあなたのグラフィックカードを制御するソフトウェアの一つです。
古いドライバーは[SECOND_LIFE]のような3Dグラフィックプログラムでゆっくり作動したり、またはチャッシュの原因になる可能性があります。
最も最新のドライバーにアップグレードすることを強く推奨します、Intelから無料のダウンロードが使用可能です。
[SECOND_LIFE] ドライバーウェブページに行きたいですか。?
</message>
<option name="Gotopage">
ページに行く
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="RunningInPCI">
<message name="message">
GL は、このシステム上のこのグラフィックドライバが、グラフィックを描くよりゆっくりした方法であるPCI
モードで作動していることを示しています。 あなたがPCIビデオカードを使用している場合には
このメッセージを無視できます。 あなたがAGPビデオカードを使用している場合には、このアプリケーションそして
3Dアプリケーションでの向上した性能のためにあなたのマザーボードドライバをアップデートする
必要があります。 PCI Express グラフィックスカードを使用している場合には、[SECOND_LIFE]内の参照のオプションパネルから
AGP Graphics Accelerationを可能にできます。
</message>
</alert>
<alert name="WebLaunchJoinNow">
<message name="message">
あなたのアカウントを管理するために www.secondlife.com に行きますか。
</message>
<option name="OK">
OK
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="WebLaunchForums">
<message name="message">
最新のヒントおよびトリックは、[SECOND_LIFE]の知識ベースを検索してください。
</message>
<option name="Gotopage">
ページに行く
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="WebLaunchSupport">
<message name="message">
Contact [SECOND_LIFE] Support.
</message>
<option name="Gotopage">
ページに行く
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="WebLaunchSupportWiki">
<message name="message">
公式のLindenブログで、最新のニュースや情報を入手してください。
</message>
<option name="Gotopage">
ページに行く
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="WebLaunchLSLGuide">
<message name="message">
スクリプトによるヘルプのためにLSL ガイドに行きますか。
</message>
<option name="Gotopage">
ページに行く
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="WebLaunchLSLWiki">
<message name="message">
スクリプトによるヘルプのためにLSL Wikiに行きますか。
</message>
<option name="Gotopage">
ページに行く
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="WebLaunchReleaseNotes">
<message name="message">
[SECOND_LIFE]のリリースノートを閲覧しますか?
</message>
<option name="Gotopage">
ページに行く
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="ReturnToOwner">
<message name="message">
オブジェクトをそれらの所有者に戻すことを確かに望んでいますか。
選択された 譲渡可能な証書を作成して譲渡された
オブジェクトはそれらの以前の所有者に戻されます。
(返還された全てにオブジェクトは、それらが最後にあったフォールダに戻されます。.)
*警告* 譲渡不可能な証書を作成して譲渡されたオブジェクトは削除されます。
</message>
<option name="Return">
戻る
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="ViewReleaseNotes">
<message name="message">
Second Lifeのリリースノートを閲覧しますか?
</message>
<option name="Gotopage">
ページに行く
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="GroupLeaveConfirmOfficer">
<message name="message">
あなたは現在このグループ[GROUP]のオフィサーです。
グループを去りますか。
</message>
<option name="Leave">
去る
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="GroupLeaveConfirmMember">
<message name="message">
あなたは現在このグループ[GROUP]のメンバーです。
グループを去りますか。
</message>
<option name="Leave">
去る
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="ConfirmKick">
<message name="message">
全ての使用者をグリッドから追い出すことを本当に望んでいるのですか。
</message>
</alert>
<alert name="MuteLinden">
<message name="message">
すみません。Lindenをミュートできません。
</message>
<option name="OK">
OK
</option>
</alert>
<alert name="MuteByName" title="オブジェクト名でミュートする">
<message name="message">
名前によるミュートは、オブジェクト・チャット、およびIMのみに影響し、サウンドには影響しません。 正確なオブジェクト名をタイプする必要があります。
</message>
<editline>
オブジェクト名
</editline>
<option name="OK">
OK
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="MuteByNameFailed" title="オブジェクト名でミュートの失敗">
<message name="message">
この名前は、すでにミュートされています。
</message>
<option name="OK">
OK
</option>
</alert>
<alert name="RemoveItemWarn">
<message name="message">
許可されたけれど、在庫目録を削除することはそのオブジェクトに損害を与える可能性があります。
その在庫目録項目を削除したいですか。
</message>
<option name="Yes">
はい
</option>
<option name="No">
いいえ
</option>
</alert>
<alert name="CantRateOwnedByGroup">
<message name="message">
Can't このオブジェクトの所有者を格付けすることはできないので, オブジェクトはグループによて所有されます。
</message>
<option name="OK">
OK
</option>
</alert>
<alert name="CantOfferCallingCard">
<message name="message">
今のところ電話カードを提供できません。すぐにもう一度試みてください。
</message>
<option name="OK">
OK
</option>
</alert>
<alert name="CantOfferFriendship">
<message name="message">
今のところ友情を提供できません。すぐにもう一度試みてください。
</message>
<option name="OK">
OK
</option>
</alert>
<alert name="CantSetHome">
<message name="message">
Can't ここにホームを設定できま
あなたのホームは、あなたまたはあなたのグループが所有する土地の上にある必要があります。
</message>
<option name="OK">
OK
</option>
</alert>
<alert name="BusyModeSet">
<message name="message">
使用中モードの設定
チャットとインスタントメッセージは隠されます。 インスタント
メッセージは、あなたの使用中の返答を受けます。 全てのテレポート
と在庫目録の提供は、低下します。
</message>
<option name="OK">
OK
</option>
</alert>
<alert name="NoPVPDetected">
<message name="message">
プレーヤ無し 対 プレーヤ (PvP) 悪用が発見された
</message>
<option name="OK">
OK
</option>
</alert>
<alert name="NotecardAttachPermFail">
<message name="message">
制限されない次の所有者の許可付きの項目だけが
ノートカードに添付できます。
</message>
<option name="OK">
OK
</option>
</alert>
<alert name="JoinedTooManyGroupsMember">
<message name="message">
"他のグループに参加するにはあまりに多くのグループのメンバーです。"
"このグループに参加する前に少なくとも一つのグループから去るか、"
"またはこの申し出を断ってください。"
"グループを去るためにメニューからオプションを選択します。"
"[NAME] はメンバーとしてグループに参加するために"
"あなたを招待しました。"
"[INVITE]"
""
</message>
<option name="Join">
参加
</option>
<option name="Decline">
断わる
</option>
</alert>
<alert name="JoinedTooManyGroupsOfficer">
<message name="message">
"他のグループに参加するにはあまりに多くのグループのメンバーです。"
"このグループに参加する前に少なくとも一つのグループから去るか、"
"またはこの申し出を断ってください。"
"グループを去るためにメニューからオプションを選択します。"
"[[NAME] はオフィサーとしてグループに参加するために"
"あなたを招待しました。"
"[INVITE]"
""
</message>
<option name="Join">
参加
</option>
<option name="Decline">
断わる
</option>
</alert>
<alert name="KickUser">
<message name="message">
どんなメッセージでこの使用者を追い出しますか。
</message>
<editline>
管理人があなたをログオフしました。
</editline>
<option name="OK">
OK
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="KickAllUsers">
<message name="message">
どんなメッセージでグリット上の皆を追い出しますか。
</message>
<editline>
管理人があなたをログオフしました。
</editline>
<option name="OK">
OK
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="FreezeUser">
<message name="message">
どんなメッセージでこの使用者を静止させますか。
</message>
<editline>
あなたは動けませんでした。 あなたは移動またはチャットができません。 管理人がインスタントメッセージ(IM)で連絡します 。
</editline>
<option name="OK">
OK
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="UnFreezeUser">
<message name="message">
どんなメッセージでこの使用者の静止状態を解除しますか。
</message>
<editline>
あなたはもう動けます。
</editline>
<option name="OK">
OK
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="ExpungeUser">
<message name="message">
削除するために使用者のエージェントidを入力してください
</message>
<option name="OK">
OK
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="OfferTeleport">
<message name="message">
次のメッセージを持ったあなたの位置にテレポートを提供しますか。
</message>
<editline>
[REGION]に私を入れてください
</editline>
<option name="OK">
OK
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="OfferTeleportFromGod">
<message name="message">
神があなたの場所に使用者を呼び出しますか。
</message>
<editline>
[REGION]に私を入れてください
</editline>
<option name="OK">
OK
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="MessageEstate"
title="あなたの不動産内全員にメッセージ送信">
<message name="message">
あなたの所有地内のみんなに現在送られる
短い通知をタイプします。
</message>
<option name="OK">
OK
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="ChangeLindenEstate" title="Lindenエステートを変更">
<message name="message">
"所有地を所有したLindenを変更しようとしています"
"(本土, ティーン格子、 オリエンテーションなど)。"
" "
"これは極めて危険です。それは使用者の経験に"
"基本的に影響力があるからです。 本土では、数千の地域が変更され、"
"そしてスペースサーバーに問題をつくっています。"
" "
"続行しますか。"
""
</message>
<option name="ChangeEstate">
所有地の変更
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="ChangeLindenAccess" title="Lindenエステート・アクセスを変更">
<message name="message">
所有地を所有したLindenのためのアクセスリストを変更しようとしています
(本土,ティーン格子、オリエンテーションなど)。
これはDANGEROUSです。そして実行すべきではありません。グリッドの
内部/外部にオブジェクト/金銭を転送することを許す
ハッキングを引き起こします。
I数千の地域が変更され、そして
スペースサーバーに問題をつくっています。
続行しますか。
</message>
<option name="ChangeEstate">
所有地の変更
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="EstateAllowedAgentAdd" title="不動産を選択">
<message name="message">
この所有地または[ALL_ESTATES]のために許可リストに追加しますか
</message>
<option name="ThisEstate">
この所有地
</option>
<option name="AllEstates">
全ての所有地
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="EstateAllowedAgentRemove" title="不動産を選択">
<message name="message">
この所有地ためだけまたは[ALL_ESTATES]のために許可リストから取り除きますか
</message>
<option name="ThisEstate">
この所有地
</option>
<option name="AllEstates">
全ての所有地
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="EstateAllowedGroupAdd" title="不動産を選択">
<message name="message">
この所有地または[ALL_ESTATES]のためにグループ許可リストに追加しますか
</message>
<option name="ThisEstate">
この所有地
</option>
<option name="AllEstates">
全ての所有地
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="EstateAllowedGroupRemove" title="不動産を選択">
<message name="message">
この所有地だけまたは[ALL_ESTATES]のためにリストを許可されたグループから取り除きますか
</message>
<option name="ThisEstate">
この所有地
</option>
<option name="AllEstates">
全ての所有地
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="EstateBannedAgentAdd" title="不動産を選択">
<message name="message">
この所有地だけまたは[ALL_ESTATES]のためにアクセスを拒みますか
</message>
<option name="ThisEstate">
この所有地
</option>
<option name="AllEstates">
全ての所有地
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="EstateBannedAgentRemove" title="不動産を選択">
<message name="message">
この所有地だけまたは[ALL_ESTATES]のためにアクセスを拒むことを止めますか
</message>
<option name="ThisEstate">
この所有地
</option>
<option name="AllEstates">
全ての所有地
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="EstateManagerAdd" title="不動産を選択">
<message name="message">
この所有地または全てのあなたの所有地に対して所有地マネージャを追加しますか。
</message>
<option name="ThisEstate">
この所有地
</option>
<option name="AllEstates">
全ての所有地
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="EstateManagerRemove" title="不動産を選択">
<message name="message">
この所有地または全てのあなたの所有地のための所有地マネージャを取り除きますか。
</message>
<option name="ThisEstate">
この所有地
</option>
<option name="AllEstates">
全ての所有地
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="EstateCovenantChange" title="不動産を選択">
<message name="message">
本不動産のみ、または、[ALL_ESTATES]のための約款メッセージを変更しますか?
</message>
<option name="ThisEstate">
この所有地
</option>
<option name="AllEstates">
全ての所有地
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="EstateKickUser" title="キック確認">
<message name="message">
この所有地から[EVIL_USER] 追い出しますか。
</message>
<option name="Kick">
追い出す
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="EstateChangeCovenant">
<message name="message">
不動産約款を本当に変更してもよいですか?
</message>
<option name="Change">
変更
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="ProblemImportingEstateCovenant">
<message name="message">
不動産約款インポートの問題
</message>
<option name="OK">
OK
</option>
</alert>
<alert name="UnableToLoadNotecard">
<message name="message">
今回は、ノートカード資産を読み込むことができません。
</message>
<option name="OK">
OK
</option>
</alert>
<alert name="NotAllowedToViewNotecard">
<message name="message">
要求された資産IDに関するノートカード閲覧のための許可が不十分です
</message>
<option name="OK">
OK
</option>
</alert>
<alert name="MissingNotecardAssetID">
<message name="message">
ノートカード用資産IDがデータベースから紛失
</message>
<option name="OK">
OK
</option>
</alert>
<alert name="PublishClassified">
<message name="message">
注意 :案内広告の料金は払い戻しされません。
L$[AMOUNT]で、この案内を表示しますか?
</message>
<option name="Publish">
表示
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="ConfirmRestart" title="再スタート確認">
<message name="message">
実際に2分間でこの地域を再スタートしたいですか。
</message>
<option name="Restart">
再起動
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="MessageRegion" title="この地域内全員にメッセージ送信">
<message name="message">
あなたの所有地内のみんなに送られる
短い通知をタイプします。
</message>
<option name="OK">
OK
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="HelpRegionBlockTerraform" title="フロック土地形成">
<message name="message">
本ボックスがチェックされている場合、区画毎の『領域を編集』設定にかかわらず、土地オーナーは土地整備が出来ません。
デフォルト: オフ
</message>
</alert>
<alert name="HelpRegionBlockFly" title="ブロックフライ">
<message name="message">
このボックスがチェックされる場合には、人々は区画毎のFly設定に関わりなく
彼らの土地での飛行はできません。
ディフォルト値: オフ
</message>
</alert>
<alert name="HelpRegionAllowDamage" title="ダメージを許可">
<message name="message">
このボックスをチェックすることは、個々人の区画設定に関わらず
全ての区画に渡って健全なシステムが可能です。
このボックスがチェックしないで残される場合には、
個々の区画の所有者は彼らの区画で健全なシステムを起動することはまだできます。
ディフォルト値: オフ
</message>
</alert>
<alert name="HelpRegionAgentLimit" title="エージェントの制限">
<message name="message">
この地域に許可される最大数のアバターを設定します。
一つの地域により多くのアバターを持っていると、
性能がより悪くなる可能性があることに注意します。
ディフォルト値: 30
</message>
</alert>
<alert name="HelpRegionObjectBonus" title="オブジェクトボーナス">
<message name="message">
The Object Bonus is a multiplier for primitives allowed on any given
parcel. The range allowed is 1 to 10. Set at '1' each 512m2 parcel
would be allowed 117 objects. Set at '2' each 512m2 parcel would be
allowed 234, or twice as many, and so on. The max number of objects
allowed per region remains 15,000 no matter what the value set for
Object Bonus. Once this value is set, it should not be lowered until
you are certain that changing it will not force return or deletion of
the objects currently on parcels.
Default: 1.0
</message>
</alert>
<alert name="HelpRegionMaturity" title="年齢制限">
<message name="message">
地図のポップアップ助言とスクリーンの上部右側
の角に示したように、この地域の年齢制限を設定します。 年齢制限
も検索結果に影響します - 居住者は成人向け地域でのコンテンツを
を見つけないように選択できます。
システムが地図情報を定期的にアップデートしているだけな
ので、マップ上のポップアップ助言は5 分間は変更しません。
ディフォルト値: PG
</message>
</alert>
<alert name="HelpRegionRestrictPushObject" title="プッシングを制限">
<message name="message">
全地域において、プッシュ許可を制限します。エージェントは自分自身でのプッシュ、他区画のオーナー、および、その区画に設定/譲渡されたグループ所有のスクリプトにプッシュされる可能性があります。
デフォルト:オフ
</message>
</alert>
<alert name="HelpParcelChanges" title="区画統合/再分割">
<message name="message">
不動産オーナーが所有していない区画を統合/再分割できる
か設定します。
本オプションが無効な場合:
*不動産オーナー、または管理者のみが、統合/再分割を行うことができます。 *オーナー、または、適切な権限を持つグループに属する区画のみを統合/再分割することができます。
本オプションが有効な場合:
*全ての区画オーナーは、所有する区画の統合/再分割ができます。 *グループ所有の区画は、適切な権限を持つグループに属する区画を統合/再分割することができます
</message>
</alert>
<alert name="RegionMaturityChange" title="地域の成熟度変更済み">
<message name="message">
この地域の年齢制限のランクはアップデートされました。
しかしながら世界地図は更新するのに約 5分間かかります。
このシステムは定期的に
地図情報を更新しているからです。
</message>
</alert>
<alert name="HelpRegionLandResell" title="再販の土地">
<message name="message">
不動産オーナーや管理者は、不動産オーナーの土地を販売することができます。 もし、このオプションが設定されていない場合、購入者は本地域における土地を再販することができません。もし、このオプションが設定されている場合、購入者は本地域における土地を再販することができます。
デフォルト: 許可しない
</message>
</alert>
<alert name="HelpEstateCovenantID" title="特権資産ID">
<message name="message">
本不動産に属する不動産約款のノートカード資産IDを設定 デフォルト:00000000-0000-0000-0000-000000000000もしくは、無し
</message>
</alert>
<alert name="HelpRegionDisableScripts" title="スクリプトを無効にする">
<message name="message">
加入者識別モジュールの動作が不良の時は、スクリプトに原因がある可能性があります。
Statistics Bar (Ctrl-Shift-1)
を開いてください。Simulator Physics FPSを見てください。
それが45より低い場合には、Stats Barのボタン
にある'Time'パネルを開きます。Script Timeが25ms以上である場合には、
'Get Top Scripts'ボタンをクリックします。動作不良の原因と考えられるスクリプトの名前と位置
が表示されます。
'Disable Scripts'ボックスをチェックし、'Apply'
ボタンを押すと、この地域での全てのスクリプトが一時的に無効になります。注をつけた
'トップスクリプト'の場所に行くためには、これを行う必要
かあるでしょう。その場所に移動したら直ぐに、それが問題の原因かどうか判断するためにその
スクリプトを調査します。そのスクリプトの所有者に連絡しても良いし、オブジェクトを削除したり戻したりしてもかまいません。
'Disable Script'ボックスのチェックを外し、'Apply'して
その地域でのスクリプトを再び有効にします。
デフォルト値:off
</message>
</alert>
<alert name="HelpRegionDisableCollisions" title="衝突を無効にする">
<message name="message">
加入者識別モジュールの動作が不良の時は、スクリプトに原因がある可能性があります。
Statistics Bar (Ctrl-Shift-1)を開いてください。Simulator
Physics FPSを見てください。”それが45より低い場合には、Stats Barのボタンにある
'Time'パネルを開きます。Sim Time (Physics) が20ms以上で
ある場合には、'Get Top Colliders'ボタンをクリックします。
動作不良の原因と考えられる
物理的オブジェクトの名前と位置が表示されます。
'Disable Collisions'ボックスをチェックし、'Apply'
ボタンを押すと、この地域での全てのオブジェクト間の衝突が一時的に無効になります。注をつけた
'トップコライダー'の場所に行くためには、これを行う必要
があるでしょう。その場所に移動したら直ぐに、
そのオブジェクトが他のオブジェクトと常に衝突しているかを調査します。そのオブジェクトの所有者に連絡しても良いし、オブジェクトを削除したり戻したりしてもかまいません。
'Disable Collisions'ボックスのチェックを外し、'Apply'して
その地域での衝突を再び有効にします。
ディォルト値: off
</message>
</alert>
<alert name="HelpRegionDisablePhysics" title="フィジックスを無効にする">
<message name="message">
Physics を不能にすることは、全ての
フィジックスシュミレーションを不能にするを除いてはCollisionsを不能にすることと似ています。 これは、オブジェクトが衝突を止めるのみならず、
アバターが移動できなくなることを意味します。
Disable Collisionsがフィジックスの問題またはTop Colliderを
調査するために地域に十分な業績を与え返さ
ない時だけにこれは使用されます。
終了する時、フィジックスを再可能にすることを確認するか、またはアバターの
動きができなくなることが続けます。
ディフォルト値: オフ
</message>
</alert>
<alert name="HelpRegionTopColliders" title="上部コライダー">
<message name="message">
可能性のあるオブジェクト-オブジェクトの
衝突の最大数を経験するオブジェクトのリストを示します。
これらのオブジェクトは参加者識別モジュールの性能をゆっくりにする可能性があります。
Statistics Barを選択し、そしてSim Time (Physics)の下を見て、 20 ms以上がフィジックス内で費やされているかかどうか
みます。
</message>
</alert>
<alert name="HelpRegionTopScripts" title="上部スクリプト">
<message name="message">
ほとんどの時間
LSL スクリプトの実行に費やしているオブジェクトのリストを示します。
これらのオブジェクトは参加者識別モジュールの性能をゆっくりにする可能性があります。
Statistics Barを選択し、そしてSimulator > Time > Sim Time (Physics)の下を見て、 25 ms以上
がフィジックス内で費やされているかかどうか みます。
</message>
</alert>
<alert name="HelpRegionRestart" title="地域を再起動">
<message name="message">
後この地域で実行しているサーバープロセスを再起動する。
2分間の警告のこの地域の全ての居住者は、連絡を
絶たれます。 この地域はそのデータを保存し、90秒以内に元に戻され
ます。
この地域を再起動することはほとんどの性能の
題を修正しません、これは指示された時だけ通常使用される必要があります。
</message>
</alert>
<alert name="HelpRegionWaterHeight" title="水の高さ">
<message name="message">
これは水が現れるメーターでの高さです。
もしこの設定が20以外のもので、そして世界の端に隣接する水または
役に立たない水がある
場合には、目に見えるギャップがあります。
ディフォルト値: 20
</message>
</alert>
<alert name="HelpRegionTerrainRaise" title="領域隆起">
<message name="message">
これは、区画所有者が彼らの土地を焼いた
土地のディフォルトの高さの上に
上げることができます。
ディフォルト値: 4
</message>
</alert>
<alert name="HelpRegionTerrainLower" title="領域沈降">
<message name="message">
これは、区画所有者が彼らの土地を焼いた
土地のディフォルトの高さの下に
下げることができます。
ディフォルト値: -4
</message>
</alert>
<alert name="HelpRegionUploadRaw" title="RAW領域をアップロード">
<message name="message">
This button uploads a .RAW file to the region you are in.
The file must have the correct dimensions/number of channels:
RGB, 256x256 and 13 channels. The best way to create a
terrain file is to download the existing RAW file. A good
first step is to modify the first channel (land height),
and upload it.
The upload can take up to 45 seconds. Note that uploading a
terrain file *will not* move the objects that are on the land,
only the terrain itself and the permissions associated with the
parcels. This can result in objects going underground.
For more information on editing region height fields, go to:
http://secondlife.com/tiki/tiki-index.php?page=RawTerrainFile
</message>
</alert>
<alert name="HelpRegionDownloadRaw" title="RAW領域をダウンロード">
<message name="message">
このボタンは高さフィールドデータ、区画寸法、売り出し状態の区画そしてこの地域
ようのいくらかの区画許可を含むファイルをダウンロードします。
Photoshopのようなプログラムのなかでこのファイルを開いた時には、以下のように
ドキュメント寸法を指定する必要があります。
: RGB, RGB, 256x256 で 13 チャンネルです。
この土地ファイルは他の方法では開くことができません。
地域の高さファイルを編集することに関する詳しい情報については、以下を参照してください:
http://secondlife.com/tiki/tiki-index.php?page=RawTerrainFile
</message>
</alert>
<alert name="HelpRegionUseEstateSun" title="Estate Sunを使用">
<message name="message">
このチェックボックスは、この地域での太陽の位置がこの所有地の残りの部分での
太陽の位置と同じであるようにさせます。
Default: on
</message>
</alert>
<alert name="HelpRegionFixedSun" title="固定の太陽">
<message name="message">
このチェックボックスは太陽の位置をPhase スライダーの中の位置を設定し、
そして移動から太陽を止めます。
ディフォルト値: オフ
</message>
</alert>
<alert name="HelpRegionBakeTerrain" title="土地を焼く">
<message name="message">
このボタンにより、現在の領域の形を新たなデフォルトとして保存します。一度ベークされると、あなたや他の使用者が領域編集の『復帰』オプション/ツールを利用しなくても、保存された形に復帰することができます。ベークされた領域は、領域上昇および下降境界の中間点でもあります。
</message>
</alert>
<alert name="HelpEstateEstateManager" title="不動産マネージャー">
<message name="message">
所有地マネージャは、地域と所有地の設定の制御を
委託した居住者です。
所有地マネージャは
アップロード、ダウンロード、地形を焼くためを除いては、
これらの区域内でいかなる設定も変更できます。 特に、
あなたの所有地から居住者を許可したり締め出したりできます。
所有地マネージャは、お互いによってではなく、その所有地の所有者によって
追加または取り除くことができます。 所有地マネージャとしてあなたが信用する
居住者のみを選択してください。あなたには彼らの行為に対する
最終的な責任があります。
</message>
</alert>
<alert name="HelpEstateUseGlobalTime" title="Global Timeを使用">
<message name="message">
このチェックボックスは、あなたの所有地での太陽がLinden-所有の
本土の所有地でものと同じ位置に
準じるようにします。
ディフォルト値: オン
</message>
</alert>
<alert name="HelpEstateFixedSun" title="固定の太陽">
<message name="message">
このチェックボックスは太陽の位置をPhase スライダーの中の位置を設定し、
そして移動から太陽を止めます。
</message>
</alert>
<alert name="HelpEstateExternallyVisible" title="Public Access">
<message name="message">
Sets whether residents who are on other estates can enter this
estate without being on an access list.
Default: on
</message>
</alert>
<alert name="HelpEstateAllowDirectTeleport" title="直接テレポートを許可">
<message name="message">
When checked, allows residents to directly teleport to any
point in your estate. When unchecked, residents teleport
to the nearest telehub.
Default: off
</message>
</alert>
<alert name="HelpEstateAllowResident" title="アクセスを許可">
<message name="message">
どんな居住者でもここにリストされている場合には、所有地にアクセスすることは
どんな居住者でもここにリストされている場合には、所有地にアクセスすることは上記で特別に許可されたグループに限定されています。
(この所有地が本土から見える場合には、アクセスは
居住者またはリストされたクループに限定することはできないし、これらの制御は
不能にされています。 ただアクセス拒否リストだけが使用されます。)
</message>
</alert>
<alert name="HelpEstateAllowGroup" title="グループ・アクセスを許可">
<message name="message">
どんなグループでもここにリストされている場合には、所有地にアクセスすることは
このリスト上のグループそして
上記で特別に許可された居住者に限定されています。
(この所有地が本土から見える場合には、アクセスは
居住者またはリストされたクループに限定することはできないし、これらの制御は
不能にされています。 アクセス拒否リストだけが使用されます。)
</message>
</alert>
<alert name="HelpEstateBanResident" title="アクセス拒否">
<message name="message">
許可と上記のグループ設定に関わらず
、このリストの居住者はあなたの所有地へのアクセスを拒絶されます。
このリストに居住者を追加することは許可リスト
から彼らを取り除きます。
</message>
</alert>
<alert name="HelpEstateCovenant" title="不動産特権">
<message name="message">
不動産約款を設定することにより、その不動産内において土地を販売することができます。約款がない場合、その土地を販売することができません。購入者が購入する前に、土地に関する規則を適用したり、アドバイスをしたくない場合は、約款のノートカードは空白でも構いません。 約款は、規則、ガイドライン、文化的情報、または、単に将来の購入者に対してあなたが期待することを伝えるために利用できます。これには、土地使用区分、建造物規制、支払いオプション、または、新しいオーナーにとってあなたが重要と思われる事柄等の、購入前に購入者が読んで同意しておくべき情報を含むことができます。 購入者は購入を完了する前にチェックボックスをチェックし、約款に同意する必要があります。不動産約款が設定されている土地の約款は、土地に関するダイアログ内に表示されます。
</message>
</alert>
<alert name="BuyObjectOneOnly" title="オブジェクトの購入不可">
<message name="message">
一度に一つ以上のオブジェクトを購入できません。
ただ一つのオブジェクトを選択し、再び試みてください。
</message>
</alert>
<alert name="BuyObjectOneOwner" title="オブジェクトの購入不可">
<message name="message">
同時に異なった所有者からオブジェクトを購入できません。
ただ一つのオブジェクトを選択し、再び試みてください。
</message>
</alert>
<alert name="BuyContentsOneOnly" title="コンテンツの購入不可">
<message name="message">
一度に一つ以上のオブジェクトを購入できません。
ただ一つのオブジェクトを選択し、再び試みてください。
</message>
</alert>
<alert name="BuyContentsOneOwner" title="コンテンツの購入不可">
<message name="message">
同時に異なった所有者からオブジェクトを購入できません。
ただ一つのオブジェクトを選択し、再び試みてください。
</message>
</alert>
<alert name="PermYes">
<message name="message">
はい
</message>
</alert>
<alert name="PermNo">
<message name="message">
いいえ
</message>
</alert>
<alert name="BuyOriginal">
<message name="message">
L$[PRICE]で[OWNER]からオリジナルのオブジェクトを購入しますか?
あなたが本オブジェクトの所有者になります。
あなたには以下の権限があります。
修正:[MODIFYPERM]
コピー:[COPYPERM]
再販、またはプレゼント:[RESELLPERM]
</message>
<option name="Buy">
購入
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="BuyOriginalNoOwner">
<message name="message">
L$[PRICE]でオリジナルのオブジェクトを購入しますか?
あなたが本オブジェクトの所有者になります。
あなたには以下の権限があります。
修正:[MODIFYPERM]
コピー:[COPYPERM]
再販、またはプレゼント:[RESELLPERM]
</message>
<option name="Buy">
購入
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="BuyCopy">
<message name="message">
L$[PRICE]で[OWNER]からコピーを購入しますか?
そのオブジェクトはあなたの持ち物にコピーされます。
あなたには以下の権限があります。
修正:[MODIFYPERM]
コピー:[COPYPERM]
再販、またはプレゼント:[RESELLPERM]
</message>
<option name="Buy">
購入
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="BuyCopyNoOwner">
<message name="message">
L$[PRICE]でコピーを購入しますか?
そのオブジェクトはあなたの持ち物にコピーされます。
あなたには以下の権限があります。
修正:[MODIFYPERM]
コピー:[COPYPERM]
再販、またはプレゼント:[RESELLPERM]
</message>
<option name="Buy">
購入
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="BuyContents">
<message name="message">
L$[PRICE]で[OWNER]からコンテンツを購入しますか?
それらはあなたの持ち物にコピーされます。
</message>
<option name="Buy">
購入
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="BuyContentsNoOwner">
<message name="message">
L$[PRICE]でコンテンツを購入しますか?
それらはあなたの持ち物にコピーされます。
</message>
<option name="Buy">
購入
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="ConfirmPurchase">
<message name="message">
この取引は以下です:
[ACTION]
この購入を続行したいですか。
</message>
<option name="Confirm">
確認
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="ConfirmPurchasePassword">
<message name="message">
この取引は以下です:
[ACTION]
この購入を続行したいですか。
あなたのパスワードを再入力してそして確認をクリックしてください。
</message>
<option name="ConfirmPurchase">
購入を確認
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="SetPickLocation">
<message name="message">
注意:
あなたは、本ピックのロケーションを更新しましたが、他の詳細は、元の値のままです。
</message>
<option name="OK">
OK
</option>
</alert>
<alert name="MoveInventoryFromObject">
<message name="message">
コピー無し在庫目録を選択しました。
これらの項目は、あなたの在庫目録に移動され、コピーはされません。
在庫目録項目を移しますか。
</message>
<option name="Move">
移動する
</option>
<option name="Don'tMove">
移動できない
</option>
</alert>
<alert name="MoveInventoryFromScriptedObject">
<message name="message">
コピー無し在庫目録項目を選択しました。
これらの項目はあなたの在庫目録に移動され、コピーはされません。
このオブジェクトはスクリプトされているので、あなたの在庫目録にこれらの項目を移すことは
スクリプトが誤作動する原因になる可能性があります。
在庫目録項目を移しますか。
</message>
<option name="Move">
移動する
</option>
<option name="Don'tMove">
移動できない
</option>
</alert>
<alert name="ClickActionNotPayable">
<message name="message">
警告: Pay Object クリックオークションは設定されましたが、しかしこれはスクリプトが金銭() イベントに
追加された場合にはだけ作動します。
これは、居住者が一般に金銭がそれらに支払われる時にどういうわけか
反応するオブジェクトを期待するからです。
</message>
</alert>
<alert name="OpenObjectCannotCopy">
<message name="message">
このオブジェクト内に、あなたがコピーできるアイテムはありません
</message>
</alert>
<alert name="LoadAccountTransactions">
<message name="message">
取引の詳細を見るために
[URL]に行ってください。
</message>
<option name="OK">
OK
</option>
<option name="Cancel">
取消
</option>
</alert>
<alert name="HelpReportAbuse">
<message name="message">
Use this tool to report violations of the Terms of Service and Community Standards. See:
http://secondlife.com/corporate/tos.php
http://secondlife.com/corporate/cs.php
All reported abuses of the Terms of Service and Community Standards
are investigated and resolved. You will receive an email informing you
of the resolution when it occurs.
You can also view the incident resolution on the Police Blotter at:
http://secondlife.com/community/blotter.php
</message>
</alert>
<alert name="HelpReportBug">
<message name="message">
Use this tool to report technical features that do not perform
as described or expected. All bug reports are investigated and
resolved. No email response will be sent, you may reply to the
auto-response email to add more details to your report.
If you are having a technical difficulty, please contact Support at:
http://secondlife.com/community/support.php
</message>
</alert>
<alert name="HelpReportAbuseSelectCategory">
<message name="message">
この嫌がらせ報告のカテゴリを選択してください。カテゴリを選択することにより、嫌がらせ報告の処理や保管に大変役立ちます。
</message>
</alert>
<alert name="HelpReportBugSelectCategory">
<message name="message">
Please select a category for this bug.
Selecting a category helps us file and process bug reports.
</message>
</alert>
<alert name="HelpReportAbuseAbuserNameEmpty">
<message name="message">
嫌がらせを行った者の名前を入力してください。あなたの正確な情報は、嫌がらせ報告の処理や保管に大変役立ちます。
</message>
</alert>
<alert name="HelpReportAbuseAbuserLocationEmpty">
<message name="message">
嫌がらせの起きた場所を入力してください。あなたの正確な場所(地点)は、嫌がらせ報告の処理や保管に大変役立ちます。
</message>
</alert>
<alert name="HelpReportAbuseSummaryEmpty">
<message name="message">
起きた嫌がらせの要旨を入力してください。あなたの正確な要旨は、嫌がらせ報告の処理や保管に大変役立ちます。
</message>
</alert>
<alert name="HelpReportBugSummaryEmpty">
<message name="message">
Please enter a summary of the bug.
Entering an accurate summary helps us file and process bug reports.
</message>
</alert>
<alert name="HelpReportAbuseDetailsEmpty">
<message name="message">
嫌がらせの詳細説明を入力してください。名前や、報告する事象等、できるだけ詳しくわかりやすく記入してください。
あなたの正確な説明は、嫌がらせ報告の処理や保管に大変役立ちます。
</message>
</alert>
<alert name="HelpReportBugDetailsEmpty">
<message name="message">
Please enter a detailed description of the bug.
Be as specific as you can, including steps to reproduce the bug
if possible.
Entering an accurate description helps us file and process bug reports.
</message>
</alert>
<alert name="HelpReportAbuseContainsCopyright">
<message name="message">
親愛なる居住者の皆様へ:
著作権侵害に関する報告は http://secondlife.com/corporate/dmca.phpの記述に従ってのみ提出することができます。
著作権侵害に関する報告は『嫌がらせ報告』を通して提出され場合、自動的に廃棄されます。報告が著作権侵害に関しない場合は、本ウインドウを閉じ、報告を提出してください。
ありがとうございます。
Linden Lab
</message>
</alert>
<alert name="FailedRequirementsCheck">
<message name="message">
次の要求されたコンポーネントは[FLOATER]から失われています。:
[COMPONENTS]
</message>
</alert>
<alert name="ReplaceAttachment" title="既存の付属品を入れ替え">
<message name="message">
この体の部位には、すでに装着されているオブジェクトが存在します。選択されたオブジェクトとそれを取り替えますか?
</message>
<option ignore="自動的に交換" name="Yes">
はい
</option>
<option ignore="交換しない" name="No">
いいえ
</option>
</alert>
<alert name="BusyModePay" title="取り込み中モードの警告">
<message name="message">
使用中モードです。
それはあなたがこの支払いで交換として提供された項目も
受け取れないことを意味します。
この取引を完了するまえに
使用中モードを去りたいですか。
</message>
<option ignore="いつも使用中モードにしておく" name="Yes">
はい
</option>
<option ignore="使用中モードのままにしない" name="No">
いいえ
</option>
</alert>
<alert name="ConfirmEmptyTrash">
<message name="message">
Are you sure you want to permanently remove
the contents of your Trash folder?
</message>
<option name="Yes">
はい
</option>
<option name="No">
いいえ
</option>
</alert>
</alerts>
|