aboutsummaryrefslogblamecommitdiffstats
path: root/view/ja/hstrings.php
blob: 49c7f2388f4485aea89bccce4f073eadb8a9921c (plain) (tree)
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

     




                                                  
                                            



































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   
<?php

if(! function_exists("string_plural_select_ja")) {
function string_plural_select_ja($n){
	return 0;;
}}
App::$rtl = 0;
App::$strings["plural_function_code"] = "0";
App::$strings["Create an account to access services and applications"] = "サービスとアプリケーションにアクセスするためにアカウントを作成する。";
App::$strings["Register"] = "登録";
App::$strings["Logout"] = "ログアウト";
App::$strings["Login"] = "ログイン";
App::$strings["Remote Authentication"] = "リモートログイン";
App::$strings["Login/Email"] = "ログイン/Eメール";
App::$strings["Password"] = "パスワード";
App::$strings["Remember me"] = "記憶する";
App::$strings["No"] = "いいえ";
App::$strings["Yes"] = "はい";
App::$strings["Forgot your password?"] = "パスワードを忘れましたか?";
App::$strings["Password Reset"] = "パスワードのリセット";
App::$strings["[\$Projectname] Website SSL error for %s"] = "[$ Projectname] %s WebサイトSSLエラー";
App::$strings["Website SSL certificate is not valid. Please correct."] = "ウェブサイトのssl認証ができません。修正してください。";
App::$strings["[\$Projectname] Cron tasks not running on %s"] = "[\$Projectname] Cronタスクが%s実行されていません";
App::$strings["Cron/Scheduled tasks not running."] = "Cron/スケジュール済みタスクが実行されていません。";
App::$strings["never"] = "一度もなし";
App::$strings["Not a valid email address"] = "未認証のメールアドレス";
App::$strings["Your email domain is not among those allowed on this site"] = "あなたのメールアドレスのドメインはこのサイトでは許可されていません。";
App::$strings["Your email address is already registered at this site."] = "あなたのメールアドレスは既にこのサイトに登録されています。";
App::$strings["An invitation is required."] = "招待状が必要です。";
App::$strings["Invitation could not be verified."] = "招待状が認証されませんでした。";
App::$strings["Please enter the required information."] = "必須事項を入力してください。";
App::$strings["Failed to store account information."] = "アカウント情報の保存に失敗しました。";
App::$strings["Registration confirmation for %s"] = "登録確認: %s";
App::$strings["Registration request at %s"] = "登録リクエスト: %s";
App::$strings["your registration password"] = "あなたの登録されているパスワード";
App::$strings["Registration details for %s"] = "登録の詳細: %s";
App::$strings["Account approved."] = "アカウントが承認されました。";
App::$strings["Registration revoked for %s"] = "%sの登録が取り消されました";
App::$strings["Click here to upgrade."] = "ここをクリックしてアップグレード";
App::$strings["This action exceeds the limits set by your subscription plan."] = "このアクションは、サブスクリプションプランで設定された制限を超えています。";
App::$strings["This action is not available under your subscription plan."] = "このアクションは、サブスクリプションプランでは使用できません。";
App::$strings["Visible to your default audience"] = "デフォルトの視聴者に表示されます";
App::$strings["__ctx:acl__ Profile"] = "プロファイル";
App::$strings["Only me"] = "自分のみ";
App::$strings["Who can see this?"] = "表示できる人";
App::$strings["Custom selection"] = "カスタム選択";
App::$strings["Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit the scope of \"Show\"."] = "表示を許可するには、「表示」を選択します。 「表示しない」を使用すると、「表示」の範囲を上書きおよび制限できます";
App::$strings["Show"] = "表示";
App::$strings["Don't show"] = "非表示";
App::$strings["Search"] = "検索";
App::$strings["Permissions"] = "権限";
App::$strings["Close"] = "閉じる";
App::$strings["Post permissions %s cannot be changed %s after a post is shared.</br />These permissions set who is allowed to view the post."] = "投稿を共有した後、投稿権限%sを%sに変更することはできません。</ br />これらの権限は、投稿の閲覧を許可するユーザーを設定します。";
App::$strings[" and "] = "そして";
App::$strings["public profile"] = "公開プロフィール";
App::$strings["%1\$s changed %2\$s to &ldquo;%3\$s&rdquo;"] = "%1\$sが%2\$sを&ldquo;に変更しました%3\$s &rdquo;";
App::$strings["Visit %1\$s's %2\$s"] = "%1\$sの%2\$sアクセス";
App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$sには更新された%2\$s 、 %3\$s変更しています。";
App::$strings["Permission denied."] = "アクセス拒否。";
App::$strings["Item was not found."] = "アイテムが見つかりませんでした。";
App::$strings["Unknown error."] = "未知のエラー。";
App::$strings["No source file."] = "ソースファイルがありません。";
App::$strings["Cannot locate file to replace"] = "置き換えるファイルが見つかりません";
App::$strings["Cannot locate file to revise/update"] = "修正/更新するファイルが見つかりません";
App::$strings["File exceeds size limit of %d"] = "ファイルはサイズ制限%dを超えています";
App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "%1 $ .0fメガバイトの添付ファイルストレージの制限に達しました。";
App::$strings["File upload failed. Possible system limit or action terminated."] = "ファイルのアップロードに失敗しました。可能なシステム制限またはアクションが終了しました。";
App::$strings["Stored file could not be verified. Upload failed."] = "保存されたファイルを確認できませんでした。アップロードに失敗しました。";
App::$strings["Path not available."] = "パスが利用できません。";
App::$strings["Empty pathname"] = "空のパス名";
App::$strings["duplicate filename or path"] = "ファイル名またはパスが重複しています";
App::$strings["Path not found."] = "パスが見つかりません。";
App::$strings["mkdir failed."] = "mkdirが失敗しました。";
App::$strings["database storage failed."] = "データベースストレージが失敗しました。";
App::$strings["Empty path"] = "空のパス";
App::$strings["Delegation session ended."] = "委任セッションは終了しました。";
App::$strings["Logged out."] = "ログアウトしました。";
App::$strings["Email validation is incomplete. Please check your email."] = "メールの検証が不完全です。メールを確認してください。";
App::$strings["Failed authentication"] = "認証失敗";
App::$strings["Login failed."] = "ログインに失敗しました。";
App::$strings["Image/photo"] = "画像/写真";
App::$strings["Encrypted content"] = "暗号化されたコンテンツ";
App::$strings["Install %1\$s element %2\$s"] = "%1\$s要素%2\$sをインストール";
App::$strings["This post contains an installable %s element, however you lack permissions to install it on this site."] = "この投稿にはインストール可能な%s要素が含まれていますが、このサイトにインストールする権限がありません。";
App::$strings["webpage"] = "ウェブページ";
App::$strings["layout"] = "レイアウト";
App::$strings["block"] = "ブロック";
App::$strings["menu"] = "メニュー";
App::$strings["card"] = "カード";
App::$strings["article"] = "記事";
App::$strings["post"] = "役職";
App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$sは次の%2\$s %3\$s書きました";
App::$strings["Click to open/close"] = "クリックして開閉";
App::$strings["spoiler"] = "スポイラー";
App::$strings["View article"] = "記事を見る";
App::$strings["View summary"] = "概要を見る";
App::$strings["Different viewers will see this text differently"] = "視聴者が異なれば、このテキストの見方も異なります";
App::$strings["$1 wrote:"] = "$ 1の書き込み:";
App::$strings["%1\$s's bookmarks"] = "%1\$sのブックマーク";
App::$strings["Unable to obtain identity information from database"] = "データベースからID情報を取得できません";
App::$strings["Empty name"] = "空の名前";
App::$strings["Name too long"] = "名前が長すぎます";
App::$strings["No account identifier"] = "アカウント識別子なし";
App::$strings["Nickname is required."] = "ニックネームが必要です。";
App::$strings["Reserved nickname. Please choose another."] = "予約済みのニックネーム。別のものを選択してください。";
App::$strings["Nickname has unsupported characters or is already being used on this site."] = "ニックネームにサポートされていない文字が含まれているか、このサイトで既に使用されています。";
App::$strings["Unable to retrieve created identity"] = "作成されたIDを取得できません";
App::$strings["Default Profile"] = "デフォルトプロファイル";
App::$strings["Friends"] = "友だち";
App::$strings["Unable to retrieve modified identity"] = "変更されたIDを取得できません";
App::$strings["Requested channel is not available."] = "要求されたチャンネルは利用できません。";
App::$strings["Requested profile is not available."] = "要求されたプロファイルは利用できません。";
App::$strings["Change profile photo"] = "プロフィール写真を変更";
App::$strings["Edit Profiles"] = "プロファイルを編集する";
App::$strings["Edit"] = "編集";
App::$strings["Create New Profile"] = "新しいプロファイルを作成";
App::$strings["Edit Profile"] = "プロファイル編集";
App::$strings["Profile Image"] = "プロフィール画像";
App::$strings["Visible to everybody"] = "みんなに見える";
App::$strings["Edit visibility"] = "可視性を編集";
App::$strings["Connect"] = "つなぐ";
App::$strings["Location:"] = "ロケーション:";
App::$strings["Gender:"] = "性別:";
App::$strings["Status:"] = "状態:";
App::$strings["Homepage:"] = "ホームページ:";
App::$strings["Online Now"] = "今オンラインです";
App::$strings["Change your profile photo"] = "プロフィール写真を変更する";
App::$strings["Female"] = "女性";
App::$strings["Male"] = "男性";
App::$strings["Trans"] = "トランス";
App::$strings["Neuter"] = "中性";
App::$strings["Non-specific"] = "非特異的";
App::$strings["Full Name:"] = "フルネーム:";
App::$strings["Like this channel"] = "このチャンネルのように";
App::$strings["__ctx:noun__ Like"] = array(
	0 => "いいね",
	1 => "いいね",
);
App::$strings["j F, Y"] = "j F、Y";
App::$strings["j F"] = "j F";
App::$strings["Birthday:"] = "お誕生日:";
App::$strings["Age:"] = "年齢:";
App::$strings["for %1\$d %2\$s"] = "%1\$d %2\$s";
App::$strings["Tags:"] = "タグ:";
App::$strings["Sexual Preference:"] = "性的嗜好:";
App::$strings["Hometown:"] = "出身地:";
App::$strings["Political Views:"] = "政見:";
App::$strings["Religion:"] = "宗教:";
App::$strings["About:"] = "約:";
App::$strings["Hobbies/Interests:"] = "趣味/興味:";
App::$strings["Likes:"] = "好きなもの:";
App::$strings["Dislikes:"] = "嫌いなもの:";
App::$strings["Contact information and Social Networks:"] = "連絡先情報とソーシャルネットワーク:";
App::$strings["My other channels:"] = "私の他のチャンネル:";
App::$strings["Musical interests:"] = "音楽的興味:";
App::$strings["Books, literature:"] = "書籍、文学:";
App::$strings["Television:"] = "テレビ:";
App::$strings["Film/dance/culture/entertainment:"] = "映画/ダンス/文化/エンターテイメント:";
App::$strings["Love/Romance:"] = "愛/ロマンス:";
App::$strings["Work/employment:"] = "仕事/雇用:";
App::$strings["School/education:"] = "学校教育:";
App::$strings["Profile"] = "プロフィール";
App::$strings["Like this thing"] = "このように";
App::$strings["Export"] = "輸出する";
App::$strings["cover photo"] = "カバー写真";
App::$strings["Enter your channel address (e.g. channel@example.com)"] = "チャンネルアドレスを入力します(例:channel@example.com)";
App::$strings["Authenticate"] = "認証する";
App::$strings["Account '%s' deleted"] = "アカウント「 %s 」を削除しました";
App::$strings["New window"] = "新しい窓";
App::$strings["Open the selected location in a different window or browser tab"] = "選択した場所を別のウィンドウまたはブラウザタブで開きます";
App::$strings["Mobile"] = "モバイル";
App::$strings["Home"] = "ホーム";
App::$strings["Home, Voice"] = "ホーム、ボイス";
App::$strings["Home, Fax"] = "ホーム、ファックス";
App::$strings["Work"] = "作業";
App::$strings["Work, Voice"] = "仕事、声";
App::$strings["Work, Fax"] = "仕事、ファックス";
App::$strings["Other"] = "その他";
App::$strings["%d invitation available"] = array(
	0 => "%d招待可能",
	1 => "%d招待可能",
);
App::$strings["Advanced"] = "高度な";
App::$strings["Find Channels"] = "チャンネルを探す";
App::$strings["Enter name or interest"] = "名前または興味を入力してください";
App::$strings["Connect/Follow"] = "接続/フォロー";
App::$strings["Examples: Robert Morgenstein, Fishing"] = "例:Robert Morgenstein、釣り";
App::$strings["Find"] = "見つける";
App::$strings["Channel Suggestions"] = "チャンネルの提案";
App::$strings["Random Profile"] = "ランダムプロファイル";
App::$strings["Invite Friends"] = "友達を招待";
App::$strings["Advanced example: name=fred and country=iceland"] = "高度な例:name = fredおよびcountry = iceland";
App::$strings["Saved Folders"] = "保存されたフォルダー";
App::$strings["Everything"] = "すべて";
App::$strings["Categories"] = "カテゴリー";
App::$strings["Common Connections"] = "共通接続";
App::$strings["View all %d common connections"] = "すべての%d共通接続を表示";
App::$strings["photo"] = "写真";
App::$strings["event"] = "出来事";
App::$strings["channel"] = "チャネル";
App::$strings["status"] = "状態";
App::$strings["comment"] = "コメント";
App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$sが%2\$sの%3\$s気に入っています";
App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$sは%2\$sの%3\$s好きではありません";
App::$strings["likes %1\$s's %2\$s"] = "%1\$sの%2\$sが好き";
App::$strings["doesn't like %1\$s's %2\$s"] = "%1\$sの%2\$sが気に入らない";
App::$strings["%1\$s is now connected with %2\$s"] = "%1\$sは%2\$s接続されました";
App::$strings["%1\$s poked %2\$s"] = "%1\$s %2\$sを突破しました";
App::$strings["poked"] = "突く";
App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$sは%2\$s";
App::$strings["This is an unsaved preview"] = "これは未保存のプレビューです";
App::$strings["__ctx:title__ Likes"] = "いいね";
App::$strings["__ctx:title__ Dislikes"] = "嫌い";
App::$strings["__ctx:title__ Agree"] = "同意する";
App::$strings["__ctx:title__ Disagree"] = "同意しない";
App::$strings["__ctx:title__ Abstain"] = "棄権";
App::$strings["__ctx:title__ Attending"] = "出席中";
App::$strings["__ctx:title__ Not attending"] = "出席しない";
App::$strings["__ctx:title__ Might attend"] = "出席するかもしれない";
App::$strings["Select"] = "選択してください";
App::$strings["Delete"] = "削除する";
App::$strings["Toggle Star Status"] = "スターステータスの切り替え";
App::$strings["Private Message"] = "プライベートメッセージ";
App::$strings["Message signature validated"] = "検証されたメッセージ署名";
App::$strings["Message signature incorrect"] = "メッセージ署名が正しくありません";
App::$strings["Approve"] = "承認する";
App::$strings["View %s's profile @ %s"] = "%sのプロフィール@ %s";
App::$strings["Categories:"] = "カテゴリー:";
App::$strings["Filed under:"] = "下に提出:";
App::$strings["from %s"] = "%sから";
App::$strings["last edited: %s"] = "最終編集: %s";
App::$strings["Expires: %s"] = "有効期限: %s";
App::$strings["View in context"] = "コンテキストで表示";
App::$strings["Please wait"] = "お待ちください";
App::$strings["remove"] = "取り除く";
App::$strings["Loading..."] = "読み込み中...";
App::$strings["Conversation Tools"] = "会話ツール";
App::$strings["Delete Selected Items"] = "選択したアイテムを削除";
App::$strings["View Source"] = "ソースを見る";
App::$strings["Follow Thread"] = "スレッドをフォロー";
App::$strings["Unfollow Thread"] = "スレッドをフォロー解除";
App::$strings["View Profile"] = "プロフィールを見る";
App::$strings["Recent Activity"] = "最近の活動";
App::$strings["Edit Connection"] = "接続を編集";
App::$strings["Message"] = "メッセージ";
App::$strings["Ratings"] = "評価";
App::$strings["Poke"] = "ポーク";
App::$strings["Unknown"] = "道の";
App::$strings["%s likes this."] = "%sはこれが好きです。";
App::$strings["%s doesn't like this."] = "%sはこれを%sません。";
App::$strings["<span  %1\$s>%2\$d people</span> like this."] = array(
	0 => "<span %1\$s > %2\$d人</ span>このように。",
	1 => "<span %1\$s > %2\$d人</ span>このように。",
);
App::$strings["<span  %1\$s>%2\$d people</span> don't like this."] = array(
	0 => "<span %1\$s > %2\$d人</ span>はこれが好きではありません。",
	1 => "<span %1\$s > %2\$d人</ span>はこれが好きではありません。",
);
App::$strings["and"] = "そして";
App::$strings[", and %d other people"] = array(
	0 => "、他%d人",
	1 => "、他%d人",
);
App::$strings["%s like this."] = "このような%s 。";
App::$strings["%s don't like this."] = "%sはこれが好きではありません。";
App::$strings["Set your location"] = "場所を設定する";
App::$strings["Clear browser location"] = "ブラウザの場所をクリア";
App::$strings["Insert web link"] = "Webリンクを挿入";
App::$strings["Embed (existing) photo from your photo albums"] = "フォトアルバムから(既存の)写真を埋め込む";
App::$strings["Please enter a link URL:"] = "リンクURLを入力してください:";
App::$strings["Tag term:"] = "タグ用語:";
App::$strings["Where are you right now?"] = "今どこにいますか?";
App::$strings["Choose images to embed"] = "埋め込む画像を選択";
App::$strings["Choose an album"] = "アルバムを選択してください";
App::$strings["Choose a different album..."] = "別のアルバムを選択...";
App::$strings["Error getting album list"] = "アルバムリストの取得に失敗";
App::$strings["Error getting photo link"] = "フォトリンクの取得に失敗";
App::$strings["Error getting album"] = "アルバムの取得エラー";
App::$strings["Comments enabled"] = "コメント有効";
App::$strings["Comments disabled"] = "コメント無効";
App::$strings["Preview"] = "プレビュー";
App::$strings["Share"] = "共有";
App::$strings["Page link name"] = "ページリンク名";
App::$strings["Post as"] = "として投稿";
App::$strings["Bold"] = "太字";
App::$strings["Italic"] = "斜体";
App::$strings["Underline"] = "下線";
App::$strings["Quote"] = "代入";
App::$strings["Code"] = "コード";
App::$strings["Attach/Upload file"] = "ファイルのアップロード";
App::$strings["Embed an image from your albums"] = "アルバムから画像を追加";
App::$strings["Cancel"] = "キャンセル";
App::$strings["OK"] = "OK";
App::$strings["Toggle voting"] = "投票のトグル";
App::$strings["Disable comments"] = "コメントの無効化";
App::$strings["Toggle comments"] = "コメントのトグル";
App::$strings["Title (optional)"] = "タイトル(任意)";
App::$strings["Categories (optional, comma-separated list)"] = "カテゴリー(任意、カンマで仕切り)";
App::$strings["Permission settings"] = "権限設定";
App::$strings["Other networks and post services"] = "他のネットワークと投稿サービス";
App::$strings["Set expiration date"] = "有効期限を設定する";
App::$strings["Set publish date"] = "公開日を設定する";
App::$strings["Encrypt text"] = "テキストを暗号化する";
App::$strings["__ctx:noun__ Dislike"] = array(
	0 => "嫌い",
	1 => "嫌い",
);
App::$strings["__ctx:noun__ Attending"] = array(
	0 => "出席中",
	1 => "出席中",
);
App::$strings["__ctx:noun__ Not Attending"] = array(
	0 => "出席しない",
	1 => "出席しない",
);
App::$strings["__ctx:noun__ Undecided"] = array(
	0 => "未定",
	1 => "未定",
);
App::$strings["__ctx:noun__ Agree"] = array(
	0 => "同意する",
	1 => "同意する",
);
App::$strings["__ctx:noun__ Disagree"] = array(
	0 => "同意しない",
	1 => "同意しない",
);
App::$strings["__ctx:noun__ Abstain"] = array(
	0 => "棄権",
	1 => "棄権",
);
App::$strings["Miscellaneous"] = "雑多";
App::$strings["Birthday"] = "お誕生日";
App::$strings["Age: "] = "年齢:";
App::$strings["YYYY-MM-DD or MM-DD"] = "YYYY-MM-DDまたはMM-DD";
App::$strings["Required"] = "必須";
App::$strings["less than a second ago"] = "ちょっと前";
App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s前";
App::$strings["__ctx:relative_date__ year"] = array(
	0 => "年",
	1 => "年",
);
App::$strings["__ctx:relative_date__ month"] = array(
	0 => "月",
	1 => "月",
);
App::$strings["__ctx:relative_date__ week"] = array(
	0 => "週間",
	1 => "週間",
);
App::$strings["__ctx:relative_date__ day"] = array(
	0 => "日",
	1 => "日",
);
App::$strings["__ctx:relative_date__ hour"] = array(
	0 => "時間",
	1 => "時間",
);
App::$strings["__ctx:relative_date__ minute"] = array(
	0 => "分",
	1 => "分",
);
App::$strings["__ctx:relative_date__ second"] = array(
	0 => "秒",
	1 => "秒",
);
App::$strings["%1\$s's birthday"] = "%1\$sの誕生日";
App::$strings["Happy Birthday %1\$s"] = "%1\$s、お誕生日おめでとう!";
App::$strings["Directory Options"] = "ディレクトリオプション";
App::$strings["Safe Mode"] = "セーフモード";
App::$strings["Public Forums Only"] = "公開フォーラムのみ";
App::$strings["This Website Only"] = "このウェブサイトのみ";
App::$strings["l F d, Y \\@ g:i A"] = "l F d、Y \\ @ g:i A";
App::$strings["Starts:"] = "開始:";
App::$strings["Finishes:"] = "仕上げ:";
App::$strings["This event has been added to your calendar."] = "このイベントはカレンダーに追加されました。";
App::$strings["Not specified"] = "指定されていない";
App::$strings["Needs Action"] = "アクションが必要";
App::$strings["Completed"] = "完成しました";
App::$strings["In Process"] = "処理中";
App::$strings["Cancelled"] = "キャンセル";
App::$strings["Off"] = "オフ";
App::$strings["On"] = "に";
App::$strings["CalDAV"] = "CalDAV";
App::$strings["Start calendar week on Monday"] = "月曜日に週を開始";
App::$strings["Default is Sunday"] = "デフォルトは日曜日です";
App::$strings["Channel Home"] = "チャンネルホーム";
App::$strings["Search by Date"] = "日付で検索";
App::$strings["Ability to select posts by date ranges"] = "日付範囲で投稿を選択する機能";
App::$strings["Tag Cloud"] = "タグクラウド";
App::$strings["Provide a personal tag cloud on your channel page"] = "チャンネルページで個人タグクラウドを提供する";
App::$strings["Use blog/list mode"] = "ブログ/リストモードを使用する";
App::$strings["Comments will be displayed separately"] = "コメントは個別に表示されます";
App::$strings["Connections"] = "接続";
App::$strings["Connection Filtering"] = "接続フィルタリング";
App::$strings["Filter incoming posts from connections based on keywords/content"] = "キーワード/コンテンツに基づいて接続からの受信投稿をフィルタリングする";
App::$strings["Conversation"] = "会話";
App::$strings["Community Tagging"] = "コミュニティのタグ付け";
App::$strings["Ability to tag existing posts"] = "既存の投稿にタグを付ける機能";
App::$strings["Emoji Reactions"] = "絵文字反応";
App::$strings["Add emoji reaction ability to posts"] = "絵文字反応機能を投稿に追加する";
App::$strings["Dislike Posts"] = "投稿を嫌う";
App::$strings["Ability to dislike posts/comments"] = "投稿/コメントを嫌う能力";
App::$strings["Star Posts"] = "スター投稿";
App::$strings["Ability to mark special posts with a star indicator"] = "星印で特別な投稿をマークする機能";
App::$strings["Directory"] = "ディレクトリ";
App::$strings["Advanced Directory Search"] = "高度なディレクトリ検索";
App::$strings["Allows creation of complex directory search queries"] = "複雑なディレクトリ検索クエリを作成できます";
App::$strings["Editor"] = "編集者";
App::$strings["Post Categories"] = "投稿カテゴリ";
App::$strings["Add categories to your posts"] = "投稿にカテゴリを追加する";
App::$strings["Large Photos"] = "大きい写真";
App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "投稿に大きな(1024px)写真のサムネイルを含める。有効になっていない場合は、小さい(640ピクセル)写真のサムネイルを使用します";
App::$strings["Even More Encryption"] = "さらに暗号化";
App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "共有秘密鍵を使用して、エンドツーエンドのコンテンツのオプションの暗号化を許可します";
App::$strings["Enable Voting Tools"] = "投票ツールを有効にする";
App::$strings["Provide a class of post which others can vote on"] = "他の人が投票できる投稿のクラスを提供する";
App::$strings["Disable Comments"] = "コメントを無効にする";
App::$strings["Provide the option to disable comments for a post"] = "投稿のコメントを無効にするオプションを提供します";
App::$strings["Delayed Posting"] = "遅延投稿";
App::$strings["Allow posts to be published at a later date"] = "投稿を後日公開することを許可する";
App::$strings["Content Expiration"] = "コンテンツの有効期限";
App::$strings["Remove posts/comments and/or private messages at a future time"] = "将来、投稿/コメントやプライベートメッセージを削除する";
App::$strings["Suppress Duplicate Posts/Comments"] = "重複する投稿/コメントを抑制する";
App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "同一のコンテンツを含む投稿が、送信と送信の間に2分未満で公開されるのを防ぎます。";
App::$strings["Auto-save drafts of posts and comments"] = "投稿とコメントの下書きを自動保存する";
App::$strings["Automatically saves post and comment drafts in local browser storage to help prevent accidental loss of compositions"] = "投稿やコメントの下書きをローカルのブラウザストレージに自動的に保存して、誤って楽曲を失うのを防ぎます";
App::$strings["Events"] = "イベント";
App::$strings["Smart Birthdays"] = "スマートバースデー";
App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "友人が地球上に散らばっている場合に備えて、誕生日イベントのタイムゾーンを認識させます。";
App::$strings["Event Timezone Selection"] = "イベントタイムゾーンの選択";
App::$strings["Allow event creation in timezones other than your own."] = "自分以外のタイムゾーンでのイベント作成を許可します。";
App::$strings["Manage"] = "管理する";
App::$strings["Navigation Channel Select"] = "ナビゲーションチャネルの選択";
App::$strings["Change channels directly from within the navigation dropdown menu"] = "ナビゲーションドロップダウンメニューから直接チャネルを変更します";
App::$strings["Network"] = "ネットワーク";
App::$strings["Saved Searches"] = "保存された検索";
App::$strings["Save search terms for re-use"] = "再利用のために検索語を保存する";
App::$strings["Ability to file posts under folders"] = "フォルダーの下に投稿をファイルする機能";
App::$strings["Alternate Stream Order"] = "代替ストリーム順序";
App::$strings["Ability to order the stream by last post date, last comment date or unthreaded activities"] = "最終投稿日、最終コメント日、またはスレッド化されていないアクティビティでストリームを順序付けする機能";
App::$strings["Contact Filter"] = "連絡先フィルター";
App::$strings["Ability to display only posts of a selected contact"] = "選択した連絡先の投稿のみを表示する機能";
App::$strings["Forum Filter"] = "フォーラムフィルター";
App::$strings["Ability to display only posts of a specific forum"] = "特定のフォーラムの投稿のみを表示する機能";
App::$strings["Personal Posts Filter"] = "個人投稿フィルター";
App::$strings["Ability to display only posts that you've interacted on"] = "やり取りした投稿のみを表示する機能";
App::$strings["Photos"] = "写真";
App::$strings["Photo Location"] = "写真の場所";
App::$strings["If location data is available on uploaded photos, link this to a map."] = "アップロードされた写真で位置データが利用できる場合、これを地図にリンクします。";
App::$strings["Profiles"] = "プロフィール";
App::$strings["Advanced Profiles"] = "高度なプロファイル";
App::$strings["Additional profile sections and selections"] = "追加のプロファイルセクションと選択";
App::$strings["Profile Import/Export"] = "プロファイルのインポート/エクスポート";
App::$strings["Save and load profile details across sites/channels"] = "サイト/チャネル全体でプロファイルの詳細を保存およびロードします";
App::$strings["Multiple Profiles"] = "複数のプロファイル";
App::$strings["Ability to create multiple profiles"] = "複数のプロファイルを作成する機能";
App::$strings["unknown"] = "道の";
App::$strings["Channel is blocked on this site."] = "このサイトでチャンネルがブロックされています。";
App::$strings["Channel location missing."] = "チャンネルの場所がありません。";
App::$strings["Response from remote channel was incomplete."] = "リモートチャネルからの応答が不完全でした。";
App::$strings["Premium channel - please visit:"] = "プレミアムチャンネル-をご覧ください:";
App::$strings["Channel was deleted and no longer exists."] = "チャンネルは削除され、存在しなくなりました。";
App::$strings["Remote channel or protocol unavailable."] = "リモートチャネルまたはプロトコルが利用できません。";
App::$strings["Channel discovery failed."] = "チャネルの検出に失敗しました。";
App::$strings["Protocol disabled."] = "プロトコルが無効です。";
App::$strings["Cannot connect to yourself."] = "自分に接続できません。";
App::$strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "この名前の削除されたグループが復活しました。既存のアイテムの権限は、このグループと将来のメンバーに適用される可能性があります<strong> </ strong>。これが意図したものでない場合は、別の名前で別のグループを作成してください。";
App::$strings["Add new connections to this privacy group"] = "このプライバシーグループに新しい接続を追加します";
App::$strings["edit"] = "編集する";
App::$strings["Privacy Groups"] = "プライバシーグループ";
App::$strings["Edit group"] = "グループを編集";
App::$strings["Add privacy group"] = "プライバシーグループを追加";
App::$strings["Channels not in any privacy group"] = "プライバシーグループに属さないチャンネル";
App::$strings["add"] = "加える";
App::$strings["Help:"] = "ヘルプ:";
App::$strings["Help"] = "ヘルプ";
App::$strings["Not Found"] = "見つかりません";
App::$strings["Page not found."] = "ページが見つかりません。";
App::$strings["Unable to import a removed channel."] = "削除されたチャンネルをインポートできません。";
App::$strings["Cannot create a duplicate channel identifier on this system. Import failed."] = "このシステムに重複したチャネル識別子を作成できません。インポートに失敗しました。";
App::$strings["Unable to create a unique channel address. Import failed."] = "一意のチャネルアドレスを作成できません。インポートに失敗しました。";
App::$strings["Cloned channel not found. Import failed."] = "複製されたチャンネルが見つかりません。インポートに失敗しました。";
App::$strings["Permission denied"] = "アクセス拒否";
App::$strings["(Unknown)"] = "(不明)";
App::$strings["Visible to anybody on the internet."] = "インターネット上の誰でも閲覧できます。";
App::$strings["Visible to you only."] = "あなただけに表示されます。";
App::$strings["Visible to anybody in this network."] = "このネットワーク内のすべてのユーザーに表示されます。";
App::$strings["Visible to anybody authenticated."] = "認証されたすべてのユーザーに表示されます。";
App::$strings["Visible to anybody on %s."] = "%s誰でも閲覧できます。";
App::$strings["Visible to all connections."] = "すべての接続に表示されます。";
App::$strings["Visible to approved connections."] = "承認された接続に表示されます。";
App::$strings["Visible to specific connections."] = "特定の接続に表示されます。";
App::$strings["Item not found."] = "アイテムが見つかりません。";
App::$strings["Privacy group not found."] = "プライバシーグループが見つかりません。";
App::$strings["Privacy group is empty."] = "プライバシーグループが空です。";
App::$strings["Privacy group: %s"] = "プライバシーグループ: %s";
App::$strings["Connection: %s"] = "接続: %s";
App::$strings["Connection not found."] = "接続が見つかりません。";
App::$strings["female"] = "女性";
App::$strings["%1\$s updated her %2\$s"] = "%1\$s彼女の%2\$s更新しました";
App::$strings["male"] = "男性";
App::$strings["%1\$s updated his %2\$s"] = "%1\$s彼の%2\$s更新しました";
App::$strings["%1\$s updated their %2\$s"] = "%1\$sが%2\$s更新しました";
App::$strings["profile photo"] = "プロフィール写真";
App::$strings["[Edited %s]"] = "[ %s編集]";
App::$strings["__ctx:edit_activity__ Post"] = "役職";
App::$strings["__ctx:edit_activity__ Comment"] = "コメント";
App::$strings["Delete this item?"] = "このアイテムを削除しますか?";
App::$strings["Comment"] = "コメント";
App::$strings["%s show all"] = "%s 全て見る";
App::$strings["%s show less"] = "%s 畳む";
App::$strings["%s expand"] = "%s 展開する";
App::$strings["%s collapse"] = "%s畳む";
App::$strings["Password too short"] = "パスワードが短すぎます。";
App::$strings["Passwords do not match"] = "パスワードが一致しません。";
App::$strings["everybody"] = "誰でも";
App::$strings["Secret Passphrase"] = "シークレットパスフレーズ";
App::$strings["Passphrase hint"] = "パスフレーズヒント";
App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "注意:権限は変更されましたが、まだ送信されていません。";
App::$strings["close all"] = "すべて閉じる";
App::$strings["Nothing new here"] = "ここに新しいものはありません";
App::$strings["Rate This Channel (this is public)"] = "このチャンネルを評価(これは公開です)";
App::$strings["Rating"] = "格付け";
App::$strings["Describe (optional)"] = "説明(オプション)";
App::$strings["Submit"] = "確定";
App::$strings["Please enter a link URL"] = "リンクURLを入力してください";
App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "未保存の変更。このページから移動してもよろしいですか?";
App::$strings["Location"] = "ロケーション";
App::$strings["lovely"] = "素敵な";
App::$strings["wonderful"] = "素晴らしい";
App::$strings["fantastic"] = "幻想的";
App::$strings["great"] = "すばらしいです";
App::$strings["Your chosen nickname was either already taken or not valid. Please use our suggestion ("] = "選択したニックネームはすでに使用されているか、無効です。提案を使用してください(";
App::$strings[") or enter a new one."] = ")または新しいものを入力します。";
App::$strings["Thank you, this nickname is valid."] = "ありがとう、このニックネームは有効です。";
App::$strings["A channel name is required."] = "チャンネル名が必要です。";
App::$strings["This is a "] = "これは";
App::$strings[" channel name"] = "チャンネル名";
App::$strings["%d minutes"] = array(
	0 => "%d分",
	1 => "%d分",
);
App::$strings["about %d hours"] = array(
	0 => "約%d時間",
	1 => "約%d時間",
);
App::$strings["%d days"] = array(
	0 => "%d日",
	1 => "%d日",
);
App::$strings["%d months"] = array(
	0 => "%dか月",
	1 => "%dか月",
);
App::$strings["%d years"] = array(
	0 => "%d年",
	1 => "%d年",
);
App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo";
App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow";
App::$strings["timeago.suffixAgo"] = "timeago.suffixAgo";
App::$strings["timeago.suffixFromNow"] = "timeago.suffixFromNow";
App::$strings["less than a minute"] = "ちょっと前";
App::$strings["about a minute"] = "1分前";
App::$strings["about an hour"] = "一時間前";
App::$strings["a day"] = "一日前";
App::$strings["about a month"] = "一ヶ月前";
App::$strings["about a year"] = "一年前";
App::$strings[" "] = " ";
App::$strings["timeago.numbers"] = "timeago.numbers";
App::$strings["January"] = "1月";
App::$strings["February"] = "2月";
App::$strings["March"] = "3月";
App::$strings["April"] = "4月";
App::$strings["__ctx:long__ May"] = "5月";
App::$strings["June"] = "6月";
App::$strings["July"] = "7月";
App::$strings["August"] = "8月";
App::$strings["September"] = "9月";
App::$strings["October"] = "10月";
App::$strings["November"] = "11月";
App::$strings["December"] = "12月";
App::$strings["Jan"] = "1";
App::$strings["Feb"] = "2";
App::$strings["Mar"] = "3";
App::$strings["Apr"] = "4";
App::$strings["__ctx:short__ May"] = "5";
App::$strings["Jun"] = "6";
App::$strings["Jul"] = "7";
App::$strings["Aug"] = "8";
App::$strings["Sep"] = "9";
App::$strings["Oct"] = "10";
App::$strings["Nov"] = "11";
App::$strings["Dec"] = "12";
App::$strings["Sunday"] = "日曜日";
App::$strings["Monday"] = "月曜日";
App::$strings["Tuesday"] = "火曜日";
App::$strings["Wednesday"] = "水曜日";
App::$strings["Thursday"] = "木曜日";
App::$strings["Friday"] = "金曜日";
App::$strings["Saturday"] = "土曜日";
App::$strings["Sun"] = "日";
App::$strings["Mon"] = "月";
App::$strings["Tue"] = "火";
App::$strings["Wed"] = "水";
App::$strings["Thu"] = "木";
App::$strings["Fri"] = "金";
App::$strings["Sat"] = "土";
App::$strings["__ctx:calendar__ today"] = "今日";
App::$strings["__ctx:calendar__ month"] = "月";
App::$strings["__ctx:calendar__ week"] = "週間";
App::$strings["__ctx:calendar__ day"] = "日";
App::$strings["__ctx:calendar__ All day"] = "一日中";
App::$strings["default"] = "デフォルト";
App::$strings["Select an alternate language"] = "別の言語を選択してください";
App::$strings["Download binary/encrypted content"] = "バイナリ/暗号化コンテンツをダウンロードする";
App::$strings["Unable to determine sender."] = "送信者を特定できません。";
App::$strings["No recipient provided."] = "受信者が指定されていません。";
App::$strings["[no subject]"] = "[件名なし]";
App::$strings["Stored post could not be verified."] = "保存された投稿を確認できませんでした。";
App::$strings["Remote authentication"] = "リモート認証";
App::$strings["Click to authenticate to your home hub"] = "クリックしてホームハブの認証を行います";
App::$strings["Channel Manager"] = "チャンネルマネージャー";
App::$strings["Manage your channels"] = "チャンネルを管理する";
App::$strings["Manage your privacy groups"] = "プライバシーグループを管理する";
App::$strings["Settings"] = "設定";
App::$strings["Account/Channel Settings"] = "アカウント/チャンネル設定";
App::$strings["End this session"] = "このセッションを終了";
App::$strings["Your profile page"] = "あなたのプロフィールページ";
App::$strings["Manage/Edit profiles"] = "プロファイルの管理/編集";
App::$strings["Edit your profile"] = "プロフィールを編集";
App::$strings["Sign in"] = "サインイン";
App::$strings["Take me home"] = "ホームへ戻る";
App::$strings["Log me out of this site"] = "このサイトからログアウトする";
App::$strings["Create an account"] = "アカウントを作成";
App::$strings["Help and documentation"] = "ヘルプとドキュメント";
App::$strings["Search site @name, !forum, #tag, ?docs, content"] = "@name, !forum, #tag, ?docs, content でサイトを検索";
App::$strings["Admin"] = "管理者";
App::$strings["Site Setup and Configuration"] = "サイトセットアップと設定";
App::$strings["Loading"] = "読み込み中";
App::$strings["@name, !forum, #tag, ?doc, content"] = "@name、!forum、#tag、?doc、content";
App::$strings["Please wait..."] = "お待ちください....";
App::$strings["Add Apps"] = "アプリの追加";
App::$strings["Arrange Apps"] = "アプリを配置する";
App::$strings["Toggle System Apps"] = "システムアプリの切り替え";
App::$strings["Channel"] = "チャンネル";
App::$strings["Status Messages and Posts"] = "ステータスメッセージと投稿";
App::$strings["About"] = "約";
App::$strings["Profile Details"] = "プロファイルの詳細";
App::$strings["Photo Albums"] = "フォトアルバム";
App::$strings["Files"] = "ファイル";
App::$strings["Files and Storage"] = "ファイルとストレージ";
App::$strings["Calendar"] = "カレンダー";
App::$strings["Chatrooms"] = "チャットルーム";
App::$strings["Bookmarks"] = "しおり";
App::$strings["Saved Bookmarks"] = "保存したブックマーク";
App::$strings["Cards"] = "カード";
App::$strings["View Cards"] = "カードを見る";
App::$strings["Articles"] = "記事";
App::$strings["View Articles"] = "記事を見る";
App::$strings["Webpages"] = "ウェブページ";
App::$strings["View Webpages"] = "Webページを表示";
App::$strings["Wikis"] = "ウィキ";
App::$strings["Wiki"] = "Wiki";
App::$strings["Friendica"] = "フレンドカ";
App::$strings["OStatus"] = "OStatus";
App::$strings["GNU-Social"] = "GNUソーシャル";
App::$strings["RSS/Atom"] = "RSS / Atom";
App::$strings["ActivityPub"] = "ActivityPub";
App::$strings["Email"] = "Eメール";
App::$strings["Diaspora"] = "ディアスポラ";
App::$strings["Facebook"] = "フェイスブック";
App::$strings["Zot"] = "ゾット";
App::$strings["LinkedIn"] = "LinkedIn";
App::$strings["XMPP/IM"] = "XMPP / IM";
App::$strings["MySpace"] = "私のスペース";
App::$strings["View PDF"] = "PDFを見る";
App::$strings[" by "] = "によって";
App::$strings[" on "] = "に";
App::$strings["Embedded content"] = "埋め込みコンテンツ";
App::$strings["Embedding disabled"] = "埋め込みが無効です";
App::$strings["Profile Photos"] = "プロフィール写真";
App::$strings["Image exceeds website size limit of %lu bytes"] = "画像がウェブサイトのサイズ制限%luバイトを超えています";
App::$strings["Image file is empty."] = "画像ファイルが空です。";
App::$strings["Unable to process image"] = "画像を処理できません";
App::$strings["Photo storage failed."] = "写真の保存に失敗しました。";
App::$strings["a new photo"] = "新しい写真";
App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$sが%2\$sから%3\$s投稿しました";
App::$strings["Recent Photos"] = "最近の写真";
App::$strings["Upload New Photos"] = "新しい写真をアップロード";
App::$strings["The form security token was not correct. This probably happened because the form has been opened for too long (>3 hours) before submitting it."] = "フォームセキュリティトークンが正しくありませんでした。これは、フォームを送信する前にフォームが長時間(3時間以上)開かれたために発生した可能性があります。";
App::$strings["Profile to assign new connections"] = "新しい接続を割り当てるプロファイル";
App::$strings["Frequently"] = "よく";
App::$strings["Hourly"] = "毎時";
App::$strings["Twice daily"] = "1日2回";
App::$strings["Daily"] = "毎日";
App::$strings["Weekly"] = "毎週";
App::$strings["Monthly"] = "毎月";
App::$strings["Currently Male"] = "現在男性";
App::$strings["Currently Female"] = "現在女性";
App::$strings["Mostly Male"] = "主に男性";
App::$strings["Mostly Female"] = "主に女性";
App::$strings["Transgender"] = "トランスジェンダー";
App::$strings["Intersex"] = "インターセックス";
App::$strings["Transsexual"] = "性転換";
App::$strings["Hermaphrodite"] = "ふたなり";
App::$strings["Undecided"] = "未定";
App::$strings["Males"] = "男性";
App::$strings["Females"] = "女性";
App::$strings["Gay"] = "ゲイ";
App::$strings["Lesbian"] = "レズビアン";
App::$strings["No Preference"] = "指定なし";
App::$strings["Bisexual"] = "バイセクシャル";
App::$strings["Autosexual"] = "性欲";
App::$strings["Abstinent"] = "禁欲";
App::$strings["Virgin"] = "バージン";
App::$strings["Deviant"] = "逸脱";
App::$strings["Fetish"] = "フェチ";
App::$strings["Oodles"] = "ウードル";
App::$strings["Nonsexual"] = "非性的";
App::$strings["Single"] = "シングル";
App::$strings["Lonely"] = "寂しい";
App::$strings["Available"] = "利用可能";
App::$strings["Unavailable"] = "利用できません";
App::$strings["Has crush"] = "クラッシュしている";
App::$strings["Infatuated"] = "夢中";
App::$strings["Dating"] = "デート";
App::$strings["Unfaithful"] = "不誠実な";
App::$strings["Sex Addict"] = "性中毒";
App::$strings["Friends/Benefits"] = "友達/特典";
App::$strings["Casual"] = "カジュアル";
App::$strings["Engaged"] = "従事";
App::$strings["Married"] = "既婚";
App::$strings["Imaginarily married"] = "想像上の結婚";
App::$strings["Partners"] = "パートナー";
App::$strings["Cohabiting"] = "同ha";
App::$strings["Common law"] = "コモンロー";
App::$strings["Happy"] = "ハッピー";
App::$strings["Not looking"] = "見てない";
App::$strings["Swinger"] = "ウィンガー";
App::$strings["Betrayed"] = "裏切られた";
App::$strings["Separated"] = "離れた";
App::$strings["Unstable"] = "不安定";
App::$strings["Divorced"] = "離婚した";
App::$strings["Imaginarily divorced"] = "想像上の離婚";
App::$strings["Widowed"] = "未亡人";
App::$strings["Uncertain"] = "不確実";
App::$strings["It's complicated"] = "それは複雑です";
App::$strings["Don't care"] = "気にしない";
App::$strings["Ask me"] = "私に聞いて";
App::$strings["Trending"] = "トレンド";
App::$strings["Tags"] = "タグ";
App::$strings["Keywords"] = "キーワード";
App::$strings["have"] = "持ってる";
App::$strings["has"] = "持っている";
App::$strings["want"] = "欲しいです";
App::$strings["wants"] = "望む";
App::$strings["like"] = "のような";
App::$strings["likes"] = "好き";
App::$strings["dislike"] = "嫌い";
App::$strings["dislikes"] = "嫌い";
App::$strings["prev"] = "前の";
App::$strings["first"] = "最初";
App::$strings["last"] = "最終";
App::$strings["next"] = "次";
App::$strings["older"] = "年上の";
App::$strings["newer"] = "より新しい";
App::$strings["No connections"] = "接続なし";
App::$strings["View all %s connections"] = "すべての%s接続を表示";
App::$strings["Network: %s"] = "ネットワーク: %s";
App::$strings["Save"] = "保存する";
App::$strings["poke"] = "ポーク";
App::$strings["ping"] = "ping";
App::$strings["pinged"] = "pingされた";
App::$strings["prod"] = "製品";
App::$strings["prodded"] = "突っ込んだ";
App::$strings["slap"] = "平手打ち";
App::$strings["slapped"] = "平手打ち";
App::$strings["finger"] = "指";
App::$strings["fingered"] = "手マン";
App::$strings["rebuff"] = "拒絶";
App::$strings["rebuffed"] = "拒否された";
App::$strings["happy"] = "ハッピー";
App::$strings["sad"] = "悲しい";
App::$strings["mellow"] = "まろやかな";
App::$strings["tired"] = "疲れた";
App::$strings["perky"] = "はつらつと";
App::$strings["angry"] = "怒っている";
App::$strings["stupefied"] = "st然たる";
App::$strings["puzzled"] = "困惑した";
App::$strings["interested"] = "興味がある";
App::$strings["bitter"] = "苦い";
App::$strings["cheerful"] = "陽気な";
App::$strings["alive"] = "生きている";
App::$strings["annoyed"] = "イライラする";
App::$strings["anxious"] = "気になる";
App::$strings["cranky"] = "気難しい";
App::$strings["disturbed"] = "乱れた";
App::$strings["frustrated"] = "欲求不満";
App::$strings["depressed"] = "落ち込んでいる";
App::$strings["motivated"] = "やる気";
App::$strings["relaxed"] = "リラックスした";
App::$strings["surprised"] = "びっくりした";
App::$strings["May"] = "5月";
App::$strings["Unknown Attachment"] = "不明な添付ファイル";
App::$strings["Size"] = "サイズ";
App::$strings["remove category"] = "カテゴリーを削除";
App::$strings["remove from file"] = "ファイルから削除";
App::$strings["Link to Source"] = "元記事へのリンク";
App::$strings["Page layout"] = "ページレイアウト";
App::$strings["You can create your own with the layouts tool"] = "レイアウトツールを使用して独自に作成できます";
App::$strings["BBcode"] = "BBcode";
App::$strings["HTML"] = "HTML";
App::$strings["Markdown"] = "マークダウン";
App::$strings["Text"] = "テキスト";
App::$strings["Comanche Layout"] = "コマンチレイアウト";
App::$strings["PHP"] = "PHP";
App::$strings["Page content type"] = "ページコンテンツタイプ";
App::$strings["activity"] = "アクティビティ";
App::$strings["a-z, 0-9, -, and _ only"] = "az、0-9、-、および_のみ";
App::$strings["Design Tools"] = "設計ツール";
App::$strings["Blocks"] = "ブロック";
App::$strings["Menus"] = "メニュー";
App::$strings["Layouts"] = "レイアウト";
App::$strings["Pages"] = "Pages";
App::$strings["Import"] = "インポート";
App::$strings["Import website..."] = "ウェブサイトをインポート...";
App::$strings["Select folder to import"] = "インポートするフォルダーを選択";
App::$strings["Import from a zipped folder:"] = "zipフォルダーからインポート:";
App::$strings["Import from cloud files:"] = "クラウドファイルからインポート:";
App::$strings["/cloud/channel/path/to/folder"] = "/ cloud / channel / path / to / folder";
App::$strings["Enter path to website files"] = "ウェブサイトのファイルへのパスを入力してください";
App::$strings["Select folder"] = "フォルダーを選択";
App::$strings["Export website..."] = "ウェブサイトをエクスポート...";
App::$strings["Export to a zip file"] = "zipファイルにエクスポートする";
App::$strings["website.zip"] = "website.zip";
App::$strings["Enter a name for the zip file."] = "zipファイルの名前を入力します。";
App::$strings["Export to cloud files"] = "クラウドファイルにエクスポートする";
App::$strings["/path/to/export/folder"] = "/ path / to / export / folder";
App::$strings["Enter a path to a cloud files destination."] = "クラウドファイルの保存先へのパスを入力します。";
App::$strings["Specify folder"] = "フォルダーを指定";
App::$strings["Collection"] = "コレクション";
App::$strings["Default"] = "デフォルト";
App::$strings["OpenWebAuth: %1\$s welcomes %2\$s"] = "OpenWebAuth: %1\$sは%2\$s歓迎します";
App::$strings["Invalid data packet"] = "無効なデータパケット";
App::$strings["Unable to verify channel signature"] = "チャンネルの署名を確認できません";
App::$strings["Unable to verify site signature for %s"] = "%sサイト署名を確認できません";
App::$strings["invalid target signature"] = "無効なターゲット署名";
App::$strings["Source channel not found."] = "ソースチャネルが見つかりません。";
App::$strings["Focus (Hubzilla default)"] = "フォーカス(Hubzillaのデフォルト)";
App::$strings["Theme settings"] = "テーマ設定";
App::$strings["Narrow navbar"] = "狭いナビゲーションバー";
App::$strings["Navigation bar background color"] = "ナビゲーションバーの背景色";
App::$strings["Navigation bar icon color "] = "ナビゲーションバーのアイコンの色";
App::$strings["Navigation bar active icon color "] = "ナビゲーションバーのアクティブなアイコンの色";
App::$strings["Link color"] = "リンクの色";
App::$strings["Set font-color for banner"] = "バナーのフォント色を設定";
App::$strings["Set the background color"] = "背景色を設定する";
App::$strings["Set the background image"] = "背景画像を設定する";
App::$strings["Set the background color of items"] = "アイテムの背景色を設定する";
App::$strings["Set the background color of comments"] = "コメントの背景色を設定する";
App::$strings["Set font-size for the entire application"] = "アプリケーション全体のフォントサイズを設定する";
App::$strings["Examples: 1rem, 100%, 16px"] = "例:1rem、100%、16px";
App::$strings["Set font-color for posts and comments"] = "投稿とコメントのフォント色を設定する";
App::$strings["Set radius of corners"] = "角の半径を設定する";
App::$strings["Example: 4px"] = "例:4px";
App::$strings["Set shadow depth of photos"] = "写真の影の深さを設定する";
App::$strings["Set maximum width of content region in pixel"] = "コンテンツ領域の最大幅をピクセル単位で設定します";
App::$strings["Leave empty for default width"] = "デフォルトの幅の場合は空のままにします";
App::$strings["Set size of conversation author photo"] = "会話の著者の写真のサイズを設定する";
App::$strings["Set size of followup author photos"] = "フォローアップ著者の写真のサイズを設定する";
App::$strings["Show advanced settings"] = "詳細設定を表示する";
App::$strings["Social Networking"] = "ソーシャルネットワーキング";
App::$strings["Social - Federation"] = "ソーシャル-フェデレーション";
App::$strings["Social - Mostly Public"] = "ソーシャル-ほとんど公開";
App::$strings["Social - Restricted"] = "ソーシャル-制限付き";
App::$strings["Social - Private"] = "ソーシャル-プライベート";
App::$strings["Community Forum"] = "コミュニティフォーラム";
App::$strings["Forum - Mostly Public"] = "フォーラム-ほとんど公開";
App::$strings["Forum - Restricted"] = "フォーラム-制限付き";
App::$strings["Forum - Private"] = "フォーラム-プライベート";
App::$strings["Feed Republish"] = "フィードの再公開";
App::$strings["Feed - Mostly Public"] = "フィード-ほとんど公開";
App::$strings["Feed - Restricted"] = "フィード-制限付き";
App::$strings["Special Purpose"] = "特別な目的";
App::$strings["Special - Celebrity/Soapbox"] = "スペシャル-セレブ/ソープボックス";
App::$strings["Special - Group Repository"] = "特別-グループリポジトリ";
App::$strings["Custom/Expert Mode"] = "カスタム/エキスパートモード";
App::$strings["Can view my channel stream and posts"] = "チャンネルストリームと投稿を表示できます";
App::$strings["Can send me their channel stream and posts"] = "チャンネルストリームと投稿を送信できます";
App::$strings["Can view my default channel profile"] = "デフォルトのチャンネルプロファイルを表示できます";
App::$strings["Can view my connections"] = "接続を表示できます";
App::$strings["Can view my file storage and photos"] = "ファイルストレージと写真を表示できます";
App::$strings["Can upload/modify my file storage and photos"] = "ファイルストレージと写真をアップロード/変更できます";
App::$strings["Can view my channel webpages"] = "チャンネルのウェブページを表示できます";
App::$strings["Can view my wiki pages"] = "Wikiページを表示できます";
App::$strings["Can create/edit my channel webpages"] = "チャンネルWebページを作成/編集できます";
App::$strings["Can write to my wiki pages"] = "wikiページに書き込むことができます";
App::$strings["Can post on my channel (wall) page"] = "チャンネル(ウォール)ページに投稿できます";
App::$strings["Can comment on or like my posts"] = "自分の投稿にコメントしたり、いいねをしたりできます";
App::$strings["Can send me private mail messages"] = "プライベートメールメッセージを送信できます";
App::$strings["Can like/dislike profiles and profile things"] = "好き嫌いのあるプロファイルとプロファイルのもの";
App::$strings["Can forward to all my channel connections via ! mentions in posts"] = "\"!\"を使用したメンションで自分のチャンネルに寄稿することができます";
App::$strings["Can chat with me"] = "私とチャットできます";
App::$strings["Can source my public posts in derived channels"] = "派生チャンネルで公開投稿を入手できますか";
App::$strings["Can administer my channel"] = "チャンネルを管理できますか";
App::$strings["Likes %1\$s's %2\$s"] = "%1\$sの%2\$s好きです";
App::$strings["Doesn't like %1\$s's %2\$s"] = "%1\$sの%2\$s気に入らない";
App::$strings["Will attend %1\$s's %2\$s"] = "%1\$sの%2\$s";
App::$strings["Will not attend %1\$s's %2\$s"] = "%1\$sの%2\$s参加しません";
App::$strings["May attend %1\$s's %2\$s"] = "%1\$sの%2\$s";
App::$strings["&#x1f501; Repeated %1\$s's %2\$s"] = "&#x1f501; %1\$sの%2\$s繰り返しました";
App::$strings["Apps"] = "アプリ";
App::$strings["Affinity Tool"] = "アフィニティツール";
App::$strings["Site Admin"] = "サイト管理者";
App::$strings["Report Bug"] = "バグを報告";
App::$strings["Content Filter"] = "コンテンツフィルター";
App::$strings["Content Import"] = "コンテンツのインポート";
App::$strings["Remote Diagnostics"] = "リモート診断";
App::$strings["Suggest Channels"] = "チャンネルを提案する";
App::$strings["Stream"] = "ストリーム";
App::$strings["Mail"] = "ダイレクトメール";
App::$strings["Mood"] = "気分";
App::$strings["Chat"] = "チャット";
App::$strings["Probe"] = "プローブ";
App::$strings["Suggest"] = "提案する";
App::$strings["Random Channel"] = "ランダムチャンネル";
App::$strings["Invite"] = "招待する";
App::$strings["Features"] = "特徴";
App::$strings["Language"] = "言語";
App::$strings["Post"] = "役職";
App::$strings["Profile Photo"] = "プロフィール写真";
App::$strings["Notifications"] = "通知";
App::$strings["Order Apps"] = "アプリを注文する";
App::$strings["CardDAV"] = "CardDAV";
App::$strings["Channel Sources"] = "チャンネルソース";
App::$strings["Guest Access"] = "ゲストアクセス";
App::$strings["Notes"] = "ノート";
App::$strings["OAuth Apps Manager"] = "OAuthアプリマネージャー";
App::$strings["OAuth2 Apps Manager"] = "OAuth2アプリマネージャー";
App::$strings["PDL Editor"] = "PDLエディター";
App::$strings["Permission Categories"] = "許可カテゴリ";
App::$strings["Premium Channel"] = "プレミアムチャンネル";
App::$strings["Public Stream"] = "連合ストリーム";
App::$strings["My Chatrooms"] = "私のチャットルーム";
App::$strings["Channel Export"] = "チャンネルのエクスポート";
App::$strings["Update"] = "更新";
App::$strings["Install"] = "インストール";
App::$strings["Purchase"] = "購入";
App::$strings["Undelete"] = "元に戻す";
App::$strings["Add to app-tray"] = "アプリトレイに追加";
App::$strings["Remove from app-tray"] = "アプリトレイから削除";
App::$strings["Pin to navbar"] = "navbarに固定";
App::$strings["Unpin from navbar"] = "navbarから固定解除";
App::$strings["Missing room name"] = "部屋名がありません";
App::$strings["Duplicate room name"] = "部屋名が重複しています";
App::$strings["Invalid room specifier."] = "無効な部屋指定子。";
App::$strings["Room not found."] = "部屋が見つかりません。";
App::$strings["Room is full"] = "部屋がいっぱいです";
App::$strings["Update Error at %s"] = "%s更新エラー";
App::$strings["Update %s failed. See error logs."] = "%s更新に失敗しました。エラーログを参照してください。";
App::$strings["\$Projectname Notification"] = "\$Projectname通知";
App::$strings["\$projectname"] = "\$projectname";
App::$strings["Thank You,"] = "ありがとうございました、";
App::$strings["%s Administrator"] = "%s管理者";
App::$strings["This email was sent by %1\$s at %2\$s."] = "このメールは%1\$sが%2\$sに送信しました。";
App::$strings["\$Projectname"] = "\$Projectname";
App::$strings["To stop receiving these messages, please adjust your Notification Settings at %s"] = "これらのメッセージの受信を停止するには、通知設定を%sで調整してください";
App::$strings["To stop receiving these messages, please adjust your %s."] = "これらのメッセージの受信を停止するには、 %sを調整してください。";
App::$strings["Notification Settings"] = "通知設定";
App::$strings["%s <!item_type!>"] = "%s <!item_type!>";
App::$strings["[\$Projectname:Notify] New mail received at %s"] = "[\$Projectname:Notify] %s受信した新しいメール";
App::$strings["%1\$s sent you a new private message at %2\$s."] = "%1\$sから%2\$s新しいプライベートメッセージが送信されました。";
App::$strings["%1\$s sent you %2\$s."] = "%1\$sから%2\$s送信されました。";
App::$strings["a private message"] = "プライベートメッセージ";
App::$strings["Please visit %s to view and/or reply to your private messages."] = "プライベートメッセージを表示または返信するには、 %sにアクセスしてください。";
App::$strings["commented on"] = "コメントした";
App::$strings["liked"] = "すこ";
App::$strings["disliked"] = "嫌い";
App::$strings["%1\$s %2\$s [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s %2\$s [zrl = %3\$s ] a %4\$s [/ zrl]";
App::$strings["%1\$s %2\$s [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s %2\$s [zrl = %3\$s ] %4\$sの%5\$s [/ zrl]";
App::$strings["%1\$s %2\$s [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s %2\$s [zrl = %3\$s ] %4\$s [/ zrl]";
App::$strings["[\$Projectname:Notify] Moderated Comment to conversation #%1\$d by %2\$s"] = "[$ Projectname:Notify]会話へのモデレートされたコメント#%1\$d by %2\$s";
App::$strings["[\$Projectname:Notify] Comment to conversation #%1\$d by %2\$s"] = "[$ Projectname:Notify]会話へのコメント#%1\$d by %2\$s";
App::$strings["%1\$s commented on an item/conversation you have been following."] = "%1\$sあなたがフォローしているアイテム/会話にコメントしました。";
App::$strings["Please visit %s to view and/or reply to the conversation."] = "会話を表示または返信するには、 %sにアクセスしてください。";
App::$strings["Please visit %s to approve or reject this comment."] = "このコメントを承認または拒否するには、 %sにアクセスしてください。";
App::$strings["%1\$s liked [zrl=%2\$s]your %3\$s[/zrl]"] = "%1\$sが[zrl = %2\$s ] %3\$s [/ zrl]を高く評価しました";
App::$strings["[\$Projectname:Notify] Like received to conversation #%1\$d by %2\$s"] = "[$ Projectname:Notify]会話# %1\$dから%2\$s受け取ったようです";
App::$strings["%1\$s liked an item/conversation you created."] = "%1\$sがあなたが作成したアイテム/会話を気に入りました。";
App::$strings["[\$Projectname:Notify] %s posted to your profile wall"] = "[$ Projectname:Notify] %sプロフィールウォールに投稿されました";
App::$strings["%1\$s posted to your profile wall at %2\$s"] = "%1\$sがあなたのプロフィールウォールに%2\$s投稿されました";
App::$strings["%1\$s posted to [zrl=%2\$s]your wall[/zrl]"] = "%1\$sが[zrl = %2\$s ]壁[/ zrl]に投稿しました";
App::$strings["[\$Projectname:Notify] %s tagged you"] = "[$ Projectname:Notify] %sがあなたにタグを付けました";
App::$strings["%1\$s tagged you at %2\$s"] = "%1\$sがあなたを%2\$sでタグ付けしました";
App::$strings["%1\$s [zrl=%2\$s]tagged you[/zrl]."] = "%1\$s [zrl = %2\$s ]あなたにタグを付けました[/ zrl]。";
App::$strings["[\$Projectname:Notify] %1\$s poked you"] = "[$ Projectname:Notify] %1\$sあなたを突きました";
App::$strings["%1\$s poked you at %2\$s"] = "%1\$s %2\$sであなたを突きました";
App::$strings["%1\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s [zrl = %2\$s ]があなたを突きました[/ zrl]。";
App::$strings["[\$Projectname:Notify] %s tagged your post"] = "[$ Projectname:Notify] %sがあなたの投稿にタグを付けました";
App::$strings["%1\$s tagged your post at %2\$s"] = "%1\$sがあなたの投稿を%2\$sでタグ付けしました";
App::$strings["%1\$s tagged [zrl=%2\$s]your post[/zrl]"] = "%1\$sが[zrl = %2\$s ]あなたの投稿にタグを付けました[/ zrl]";
App::$strings["[\$Projectname:Notify] Introduction received"] = "[$ Projectname:Notify]紹介を受け取りました";
App::$strings["You've received an new connection request from '%1\$s' at %2\$s"] = "「 %1\$s 」から%2\$s新しい接続要求を受け取りました";
App::$strings["You've received [zrl=%1\$s]a new connection request[/zrl] from %2\$s."] = "[zrl = %1\$s ] %2\$sから新しい接続要求[/ zrl]を受け取りました。";
App::$strings["You may visit their profile at %s"] = "%sで彼らのプロフィールにアクセスできます";
App::$strings["Please visit %s to approve or reject the connection request."] = "接続リクエストを承認または拒否するには、 %sにアクセスしてください。";
App::$strings["[\$Projectname:Notify] Friend suggestion received"] = "[$ Projectname:Notify]友人の提案を受け取りました";
App::$strings["You've received a friend suggestion from '%1\$s' at %2\$s"] = "「 %1\$s 」から%2\$s友達の提案を受け取りました";
App::$strings["You've received [zrl=%1\$s]a friend suggestion[/zrl] for %2\$s from %3\$s."] = "[zrl = %1\$s ] %3\$sから%3\$s %2\$s友人の提案[/ zrl]を受け取りました。";
App::$strings["Name:"] = "名:";
App::$strings["Photo:"] = "写真:";
App::$strings["Please visit %s to approve or reject the suggestion."] = "提案を承認または拒否するには、 %sにアクセスしてください。";
App::$strings["[\$Projectname:Notify]"] = "[$ Projectname:Notify]";
App::$strings["created a new post"] = "新しい投稿を作成しました";
App::$strings["commented on %s's post"] = "%sの投稿にコメントしました";
App::$strings["edited a post dated %s"] = "%s日付の投稿を編集しました";
App::$strings["edited a comment dated %s"] = "%s日付のコメントを編集しました";
App::$strings["Wiki updated successfully"] = "Wikiが正常に更新されました";
App::$strings["Wiki files deleted successfully"] = "Wikiファイルが正常に削除されました";
App::$strings["(No Title)"] = "(無題)";
App::$strings["Wiki page create failed."] = "Wikiページの作成に失敗しました。";
App::$strings["Wiki not found."] = "Wikiが見つかりません。";
App::$strings["Destination name already exists"] = "宛先名はすでに存在します";
App::$strings["Page not found"] = "ページが見つかりません";
App::$strings["Error reading page content"] = "ページコンテンツの読み取りエラー";
App::$strings["Error reading wiki"] = "Wikiの読み取りエラー";
App::$strings["Page update failed."] = "ページの更新に失敗しました。";
App::$strings["Nothing deleted"] = "削除されたものはありません";
App::$strings["Compare: object not found."] = "比較:オブジェクトが見つかりません。";
App::$strings["Page updated"] = "ページを更新しました";
App::$strings["Untitled"] = "無題";
App::$strings["Wiki resource_id required for git commit"] = "gitコミットにはWiki resource_idが必要です";
App::$strings["Name"] = "名前";
App::$strings["__ctx:wiki_history__ Message"] = "メッセージ";
App::$strings["Date"] = "日付";
App::$strings["Revert"] = "元に戻す";
App::$strings["Compare"] = "比較する";
App::$strings["__ctx:permcat__ default"] = "デフォルト";
App::$strings["__ctx:permcat__ follower"] = "信者";
App::$strings["__ctx:permcat__ contributor"] = "寄稿者";
App::$strings["__ctx:permcat__ publisher"] = "出版社";
App::$strings["Public"] = "パブリック";
App::$strings["Anybody in the \$Projectname network"] = "$ Projectnameネットワークの誰でも";
App::$strings["Any account on %s"] = "%sアカウント";
App::$strings["Any of my connections"] = "私の接続のいずれか";
App::$strings["Only connections I specifically allow"] = "特に許可している接続のみ";
App::$strings["Anybody authenticated (could include visitors from other networks)"] = "認証された誰でも(他のネットワークからの訪問者を含めることができます)";
App::$strings["Any connections including those who haven't yet been approved"] = "まだ承認されていない人を含むすべての接続";
App::$strings["This is your default setting for the audience of your normal stream, and posts."] = "これは、通常のストリームと投稿の視聴者に対するデフォルト設定です。";
App::$strings["This is your default setting for who can view your default channel profile"] = "これは、デフォルトのチャンネルプロファイルを表示できるユーザーのデフォルト設定です";
App::$strings["This is your default setting for who can view your connections"] = "これは、接続を表示できるユーザーのデフォルト設定です";
App::$strings["This is your default setting for who can view your file storage and photos"] = "これは、ファイルストレージと写真を表示できるユーザーのデフォルト設定です";
App::$strings["This is your default setting for the audience of your webpages"] = "これは、Webページのオーディエンスのデフォルト設定です";
App::$strings["0. Beginner/Basic"] = "0.初心者/基本";
App::$strings["1. Novice - not skilled but willing to learn"] = "1.初心者-熟練していないが、学習したい";
App::$strings["2. Intermediate - somewhat comfortable"] = "2.中級-やや快適";
App::$strings["3. Advanced - very comfortable"] = "3.高度-非常に快適";
App::$strings["4. Expert - I can write computer code"] = "4.エキスパート-コンピューターコードを書くことができます";
App::$strings["5. Wizard - I probably know more than you do"] = "5.ウィザード-私はおそらくあなたよりも多くを知っています";
App::$strings["Privacy conflict. Discretion advised."] = "プライバシーの競合。裁量をお勧めします。";
App::$strings["Admin Delete"] = "管理者権限で消去";
App::$strings["Save to Folder"] = "フォルダーへ保存";
App::$strings["I will attend"] = "参加予定";
App::$strings["I will not attend"] = "参加しない予定";
App::$strings["I might attend"] = "たぶん参加する";
App::$strings["I agree"] = "肯定";
App::$strings["I disagree"] = "否定";
App::$strings["I abstain"] = "棄権";
App::$strings["View all"] = "すべて表示";
App::$strings["Add Tag"] = "タグの追加";
App::$strings["I like this (toggle)"] = "いいね!する";
App::$strings["I don't like this (toggle)"] = "わるいね!する";
App::$strings["Share This"] = "この投稿を再共有";
App::$strings["share"] = "共有";
App::$strings["Delivery Report"] = "転送状況";
App::$strings["%d comment"] = "%d件のコメント";
App::$strings["View %s's profile - %s"] = "%sのプロファイルを見る - %s";
App::$strings["to"] = "に";
App::$strings["via"] = "";
App::$strings["Wall-to-Wall"] = "壁間";
App::$strings["via Wall-To-Wall:"] = "Wall-to-Wall経由:";
App::$strings["Attend"] = "参加";
App::$strings["Attendance Options"] = "出席オプション";
App::$strings["Vote"] = "投票";
App::$strings["Voting Options"] = "投票オプション";
App::$strings["Save Bookmarks"] = "ブックマークを保存";
App::$strings["Add to Calendar"] = "カレンダーへ追加";
App::$strings["Mark all seen"] = "全てを既読にする";
App::$strings["__ctx:noun__ Likes"] = "好き";
App::$strings["__ctx:noun__ Dislikes"] = "嫌い";
App::$strings["This is you"] = "これはあなたです";
App::$strings["Image"] = "画像";
App::$strings["Insert Link"] = "リンクを挿入";
App::$strings["Video"] = "ビデオ";
App::$strings["Your full name (required)"] = "あなたの氏名(必須)";
App::$strings["Your email address (required)"] = "あなたのメールアドレス(必須)";
App::$strings["Your website URL (optional)"] = "WebサイトのURL(オプション)";
App::$strings["Some blurb about what to do when you're new here"] = "ここに初めて来たときに何をすべきかについてのいくつかの宣伝文句";
App::$strings["network"] = "ネットワーク";
App::$strings["%s account blocked/unblocked"] = array(
	0 => "%sアカウントがブロック/ブロック解除されました",
	1 => "%sアカウントがブロック/ブロック解除されました",
);
App::$strings["%s account deleted"] = array(
	0 => "%sアカウントが削除されました",
	1 => "%sアカウントが削除されました",
);
App::$strings["Account not found"] = "アカウントが見つかりません";
App::$strings["Account '%s' blocked"] = "アカウント ' %s 'はブロックされました";
App::$strings["Account '%s' unblocked"] = "アカウント ' %s 'のブロックを解除しました";
App::$strings["Administration"] = "運営";
App::$strings["Accounts"] = "アカウント";
App::$strings["select all"] = "すべて選択";
App::$strings["Registrations waiting for confirm"] = "確認待ちの登録";
App::$strings["Request date"] = "依頼日";
App::$strings["No registrations."] = "登録なし。";
App::$strings["Deny"] = "拒否する";
App::$strings["Block"] = "ブロック";
App::$strings["Unblock"] = "ブロック解除";
App::$strings["ID"] = "ID";
App::$strings["All Channels"] = "すべてのチャンネル";
App::$strings["Register date"] = "登録日";
App::$strings["Last login"] = "前回のログイン";
App::$strings["Expires"] = "期限切れ";
App::$strings["Service Class"] = "サービスクラス";
App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "選択したアカウントは削除されます!\\n\\nこれらのアカウントがこのサイトに投稿したものはすべて完全に削除されます!\\n\\nよろしいですか?";
App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "アカウント{0}は削除されます。\\n\\nこのアカウントがこのサイトに投稿したものはすべて完全に削除されます!\\n\\nよろしいですか?";
App::$strings["Password changed for account %d."] = "アカウント%dパスワードが変更されました。";
App::$strings["Account settings updated."] = "アカウント設定は更新されました。";
App::$strings["Account not found."] = "アカウントが見つかりません。";
App::$strings["Account Edit"] = "アカウント編集";
App::$strings["New Password"] = "新しいパスワード";
App::$strings["New Password again"] = "新しいパスワードを再入力";
App::$strings["Account language (for emails)"] = "アカウント言語(メール用)";
App::$strings["Service class"] = "サービスクラス";
App::$strings["Plugin %s disabled."] = "プラグイン%s無効です。";
App::$strings["Plugin %s enabled."] = "プラグイン%s有効になりました。";
App::$strings["Disable"] = "無効にする";
App::$strings["Enable"] = "有効にする";
App::$strings["Addons"] = "アドオン";
App::$strings["Toggle"] = "トグル";
App::$strings["Author: "] = "著者:";
App::$strings["Maintainer: "] = "メンテナー:";
App::$strings["Minimum project version: "] = "最小プロジェクトバージョン:";
App::$strings["Maximum project version: "] = "最大プロジェクトバージョン:";
App::$strings["Minimum PHP version: "] = "最小PHPバージョン:";
App::$strings["Compatible Server Roles: "] = "互換性のあるサーバーの役割:";
App::$strings["Requires: "] = "必要なもの:";
App::$strings["Disabled - version incompatibility"] = "無効-バージョンの非互換性";
App::$strings["Enter the public git repository URL of the addon repo."] = "アドオンリポジトリの公開gitリポジトリURLを入力します。";
App::$strings["Addon repo git URL"] = "アドオンリポジトリgit URL";
App::$strings["Custom repo name"] = "カスタムリポジトリ名";
App::$strings["(optional)"] = "(オプション)";
App::$strings["Download Addon Repo"] = "アドオンリポジトリのダウンロード";
App::$strings["Install new repo"] = "新しいレポをインストールする";
App::$strings["Manage Repos"] = "リポジトリの管理";
App::$strings["Installed Addon Repositories"] = "インストールされたアドオンリポジトリ";
App::$strings["Install a New Addon Repository"] = "新しいアドオンリポジトリをインストールする";
App::$strings["Switch branch"] = "スイッチブランチ";
App::$strings["Remove"] = "削除する";
App::$strings["%s channel censored/uncensored"] = array(
	0 => "%sチャンネルの検閲/無検閲",
	1 => "%sチャンネルの検閲/無検閲",
);
App::$strings["%s channel code allowed/disallowed"] = array(
	0 => "%sチャンネルコードの許可/禁止",
	1 => "%sチャンネルコードの許可/禁止",
);
App::$strings["%s channel deleted"] = array(
	0 => "%sチャンネルが削除されました",
	1 => "%sチャンネルが削除されました",
);
App::$strings["Channel not found"] = "チャンネルが見つかりません";
App::$strings["Channel '%s' deleted"] = "チャンネル「 %s 」を削除しました";
App::$strings["Channel '%s' censored"] = "チャンネル ' %s 'は打ち切られました";
App::$strings["Channel '%s' uncensored"] = "チャンネル ' %s 'は無修正";
App::$strings["Channel '%s' code allowed"] = "チャンネル「 %s 」コードが許可されています";
App::$strings["Channel '%s' code disallowed"] = "チャンネル ' %s 'コードは許可されていません";
App::$strings["Channels"] = "チャンネル";
App::$strings["Censor"] = "検閲";
App::$strings["Uncensor"] = "無修正";
App::$strings["Allow Code"] = "コードを許可";
App::$strings["Disallow Code"] = "コードを許可しない";
App::$strings["UID"] = "UID";
App::$strings["Address"] = "住所";
App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "選択したチャンネルは削除されます!\\ n \\ nこのサイトのこれらのチャンネルに投稿されたものはすべて完全に削除されます!\\ n \\ nよろしいですか?";
App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "チャンネル{0}は削除されます!\\n \\nこのサイトでこのチャンネルに投稿されたすべてのものは完全に削除されます!\\n \\nよろしいですか?";
App::$strings["Update has been marked successful"] = "更新に成功のマークが付けられました";
App::$strings["Executing %s failed. Check system logs."] = "%s実行に失敗しました。システムログを確認してください。";
App::$strings["Update %s was successfully applied."] = "更新%sが正常に適用されました。";
App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "更新%sはステータスを返しませんでした。成功した場合は不明です。";
App::$strings["Update function %s could not be found."] = "更新関数%sが見つかりませんでした。";
App::$strings["Failed Updates"] = "失敗した更新";
App::$strings["Mark success (if update was manually applied)"] = "成功をマーク(更新が手動で適用された場合)";
App::$strings["Attempt to execute this update step automatically"] = "この更新手順を自動的に実行しようとします";
App::$strings["No failed updates."] = "失敗した更新はありません。";
App::$strings["Lock feature %s"] = "機能%sロック";
App::$strings["Manage Additional Features"] = "追加機能を管理する";
App::$strings["Log settings updated."] = "ログ設定が更新されました。";
App::$strings["Logs"] = "ログ";
App::$strings["Clear"] = "クリア";
App::$strings["Debugging"] = "デバッグ";
App::$strings["Log file"] = "ログファイル";
App::$strings["Must be writable by web server. Relative to your top-level webserver directory."] = "Webサーバーから書き込み可能である必要があります。最上位のWebサーバーディレクトリに関連します。";
App::$strings["Log level"] = "ログレベル";
App::$strings["New Profile Field"] = "新しいプロファイルフィールド";
App::$strings["Field nickname"] = "フィールドのニックネーム";
App::$strings["System name of field"] = "フィールドのシステム名";
App::$strings["Input type"] = "入力方式";
App::$strings["Field Name"] = "フィールド名";
App::$strings["Label on profile pages"] = "プロフィールページのラベル";
App::$strings["Help text"] = "ヘルプテキスト";
App::$strings["Additional info (optional)"] = "追加情報(オプション)";
App::$strings["Field definition not found"] = "フィールド定義が見つかりません";
App::$strings["Edit Profile Field"] = "プロファイルフィールドの編集";
App::$strings["Profile Fields"] = "プロファイルフィールド";
App::$strings["Basic Profile Fields"] = "基本プロファイルフィールド";
App::$strings["Advanced Profile Fields"] = "高度なプロファイルフィールド";
App::$strings["(In addition to basic fields)"] = "(基本的なフィールドに加えて)";
App::$strings["All available fields"] = "利用可能なすべてのフィールド";
App::$strings["Custom Fields"] = "カスタムフィールド";
App::$strings["Create Custom Field"] = "カスタムフィールドを作成";
App::$strings["Queue Statistics"] = "キュー統計";
App::$strings["Total Entries"] = "総エントリー数";
App::$strings["Priority"] = "優先度";
App::$strings["Destination URL"] = "リンク先URL";
App::$strings["Mark hub permanently offline"] = "ハブを完全にオフラインとしてマークする";
App::$strings["Empty queue for this hub"] = "このハブの空のキュー";
App::$strings["Last known contact"] = "最後の既知の連絡先";
App::$strings["By default, unfiltered HTML is allowed in embedded media. This is inherently insecure."] = "デフォルトでは、埋め込みメディアではフィルタリングされていないHTMLが許可されています。これは本質的に安全ではありません。";
App::$strings["The recommended setting is to only allow unfiltered HTML from the following sites:"] = "推奨される設定は、次のサイトからのフィルタリングされていないHTMLのみを許可することです。";
App::$strings["https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/<br />https://vimeo.com/<br />https://soundcloud.com/<br />"] = "https://youtube.com/ <br /> https://www.youtube.com/ <br /> https://youtu.be/ <br /> https://vimeo.com/ <br /> https://soundcloud.com/ <br />";
App::$strings["All other embedded content will be filtered, <strong>unless</strong> embedded content from that site is explicitly blocked."] = "他のすべての埋め込みコンテンツはフィルタリングされ、そのサイトからの埋め込みコンテンツが明示的にブロックされない限り<strong> </ strong>。";
App::$strings["Security"] = "セキュリティ";
App::$strings["Block public"] = "一般公開をブロック";
App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "現在認証されていない限り、このサイトで公開されている他のすべての個人ページへの公開アクセスをブロックする場合にオンにします。";
App::$strings["Provide a cloud root directory"] = "クラウドルートディレクトリを提供する";
App::$strings["The cloud root directory lists all channel names which provide public files"] = "クラウドルートディレクトリには、パブリックファイルを提供するすべてのチャネル名がリストされます";
App::$strings["Show total disk space available to cloud uploads"] = "クラウドアップロードに使用可能な合計ディスク容量を表示する";
App::$strings["Set \"Transport Security\" HTTP header"] = "\"Transport Security \" HTTPヘッダーを設定します";
App::$strings["Set \"Content Security Policy\" HTTP header"] = "「コンテンツセキュリティポリシー」HTTPヘッダーを設定します";
App::$strings["Allowed email domains"] = "許可されたメールドメイン";
App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "このサイトへの登録用の電子メールアドレスで許可されるドメインのカンマ区切りリスト。ワイルドカードが受け入れられます。すべてのドメインを許可するには空にしてください。";
App::$strings["Not allowed email domains"] = "メールドメインは許可されていません";
App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "このサイトへの登録用の電子メールアドレスで許可されていないドメインのカンマ区切りリスト。ワイルドカードが受け入れられます。許可されたドメインが定義されていない限り、すべてのドメインを許可するには空にします。";
App::$strings["Allow communications only from these sites"] = "これらのサイトからの通信のみを許可する";
App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "1行に1つのサイト。空のままにして、デフォルトでどこからでも通信できるようにします";
App::$strings["Block communications from these sites"] = "これらのサイトからの通信をブロックする";
App::$strings["Allow communications only from these channels"] = "これらのチャネルからの通信のみを許可する";
App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "1行に1つのチャネル(ハッシュ)。デフォルトで任意のチャンネルから許可するには空のままにします";
App::$strings["Block communications from these channels"] = "これらのチャネルからの通信をブロックする";
App::$strings["Only allow embeds from secure (SSL) websites and links."] = "安全な(SSL)Webサイトおよびリンクからの埋め込みのみを許可します。";
App::$strings["Allow unfiltered embedded HTML content only from these domains"] = "これらのドメインからのみ、フィルタリングされていない埋め込みHTMLコンテンツを許可します";
App::$strings["One site per line. By default embedded content is filtered."] = "1行に1つのサイト。デフォルトでは、埋め込みコンテンツはフィルタリングされます。";
App::$strings["Block embedded HTML from these domains"] = "これらのドメインからの埋め込みHTMLをブロックする";
App::$strings["Site settings updated."] = "サイトの設定は更新されました。";
App::$strings["%s - (Incompatible)"] = "%s (互換性なし)";
App::$strings["mobile"] = "モバイル";
App::$strings["experimental"] = "実験的";
App::$strings["unsupported"] = "サポートされていない";
App::$strings["Yes - with approval"] = "はい-承認済み";
App::$strings["My site is not a public server"] = "私のサイトは公開サーバーではありません";
App::$strings["My site has paid access only"] = "私のサイトは有料アクセスのみです";
App::$strings["My site has free access only"] = "私のサイトは無料アクセスのみです";
App::$strings["My site offers free accounts with optional paid upgrades"] = "私のサイトはオプションの有料アップグレードで無料アカウントを提供しています";
App::$strings["Default permission role for new accounts"] = "新しいアカウントへのデフォルトの権限定義";
App::$strings["This role will be used for the first channel created after registration."] = "この役割は、登録後に作成される最初のチャネルに使用されます。";
App::$strings["Site"] = "サイト";
App::$strings["Registration"] = "登録";
App::$strings["File upload"] = "ファイルをアップロード";
App::$strings["Policies"] = "ポリシー";
App::$strings["Site name"] = "サイト名";
App::$strings["Banner/Logo"] = "バナー/ロゴ";
App::$strings["Unfiltered HTML/CSS/JS is allowed"] = "フィルタリングされていないHTML / CSS / JSは許可されます";
App::$strings["Administrator Information"] = "管理者情報";
App::$strings["Contact information for site administrators.  Displayed on siteinfo page.  BBCode can be used here"] = "サイト管理者の連絡先情報。 siteinfoページに表示されます。 BBCodeはここで使用できます";
App::$strings["Site Information"] = "サイト情報";
App::$strings["Publicly visible description of this site.  Displayed on siteinfo page.  BBCode can be used here"] = "このサイトの一般公開されている説明。 siteinfoページに表示されます。 BBCodeはここで使用できます";
App::$strings["System language"] = "システム言語";
App::$strings["System theme"] = "システムテーマ";
App::$strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "デフォルトのシステムテーマ-ユーザープロファイルによって上書きされる場合があります-<a href='#' id='cnftheme'>テーマ設定の変更</a>";
App::$strings["Allow Feeds as Connections"] = "接続としてフィードを許可する";
App::$strings["(Heavy system resource usage)"] = "(重いシステムリソースの使用)";
App::$strings["Maximum image size"] = "最大画像サイズ";
App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "アップロードされる画像の最大サイズ(バイト単位)。デフォルトは0で、制限がないことを意味します。";
App::$strings["Does this site allow new member registration?"] = "このサイトは新規会員登録を許可していますか?";
App::$strings["Invitation only"] = "招待のみ";
App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "招待コードを使用した新しいメンバー登録のみを許可します。上記の登録ポリシーは「はい」に設定する必要があります。";
App::$strings["Minimum age"] = "最低年齢";
App::$strings["Minimum age (in years) for who may register on this site."] = "このサイトに登録できる最低年齢(年)。";
App::$strings["Which best describes the types of account offered by this hub?"] = "このハブが提供するアカウントの種類を最もよく説明しているのはどれですか?";
App::$strings["This is displayed on the public server site list."] = "これは、公開サーバーのサイトリストに表示されます。";
App::$strings["Register text"] = "登録テキスト";
App::$strings["Will be displayed prominently on the registration page."] = "登録ページに目立つように表示されます。";
App::$strings["Site homepage to show visitors (default: login box)"] = "訪問者を表示するサイトのホームページ(デフォルト:ログインボックス)";
App::$strings["example: 'pubstream' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "例:パブリックストリームを表示する「pubstream」、「home」または「include:home.html」と呼ばれるシステムWebページを表示する「page / sys / home」はファイルを含めます。";
App::$strings["Preserve site homepage URL"] = "サイトのホームページURLを保持";
App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "リダイレクトする代わりに、サイトのホームページを元の場所のフレームに表示します";
App::$strings["Accounts abandoned after x days"] = "x日後に放棄されたアカウント";
App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "放棄されたアカウントの外部サイトをポーリングするシステムリソースを無駄にしません。時間制限なしの場合は0を入力します。";
App::$strings["Allowed friend domains"] = "許可された友達ドメイン";
App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "このサイトとの友情を確立できるドメインのカンマ区切りリスト。ワイルドカードが受け入れられます。すべてのドメインを許可するには空";
App::$strings["Verify Email Addresses"] = "メールアドレスを確認する";
App::$strings["Check to verify email addresses used in account registration (recommended)."] = "アカウント登録で使用されるメールアドレスを確認してください(推奨)。";
App::$strings["Force publish"] = "強制公開";
App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "このサイトのすべてのプロファイルがサイトディレクトリにリストされるように強制する場合はオンにします。";
App::$strings["Import Public Streams"] = "パブリックストリームをインポートする";
App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "他のサイトから取得した公開コンテンツをインポートしてアクセスを許可します。警告:このコンテンツはモデレートされていません。";
App::$strings["Site only Public Streams"] = "サイトのみの公開ストリーム";
App::$strings["Allow access to public content originating only from this site if Imported Public Streams are disabled."] = "インポートされたパブリックストリームが無効になっている場合、このサイトからのみ発信されるパブリックコンテンツへのアクセスを許可します。";
App::$strings["Allow anybody on the internet to access the Public streams"] = "インターネット上の誰でもパブリックストリームにアクセスできるようにする";
App::$strings["Disable to require authentication before viewing. Warning: this content is unmoderated."] = "表示する前に認証を要求するには無効にします。警告:このコンテンツはモデレートされていません。";
App::$strings["Only import Public stream posts with this text"] = "このテキストを含む公開ストリーム投稿のみをインポートします";
App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "1行に1語ずつ、または#tagsまたは/ patterns /またはlang = xx。すべての投稿をインポートするには空白のままにします";
App::$strings["Do not import Public stream posts with this text"] = "このテキストを含む公開ストリームの投稿をインポートしないでください";
App::$strings["Login on Homepage"] = "ホームページにログイン";
App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "他のコンテンツが設定されていない場合、ホームページで訪問者にログインボックスを提示します。";
App::$strings["Enable context help"] = "コンテキストヘルプを有効にする";
App::$strings["Display contextual help for the current page when the help button is pressed."] = "ヘルプボタンが押されたときに、現在のページのコンテキストヘルプを表示します。";
App::$strings["Reply-to email address for system generated email."] = "システム生成メールの返信先メールアドレス。";
App::$strings["Sender (From) email address for system generated email."] = "システムが生成した電子メールの送信者(差出人)電子メールアドレス。";
App::$strings["Name of email sender for system generated email."] = "システムが生成した電子メールの電子メール送信者の名前。";
App::$strings["Directory Server URL"] = "ディレクトリサーバーのURL";
App::$strings["Default directory server"] = "デフォルトのディレクトリサーバー";
App::$strings["Proxy user"] = "プロキシユーザー";
App::$strings["Proxy URL"] = "プロキシURL";
App::$strings["Network timeout"] = "ネットワークタイムアウト";
App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "値は秒単位です。無制限の場合は0に設定します(推奨されません)。";
App::$strings["Delivery interval"] = "配送間隔";
App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "システムの負荷を軽減するには、バックグラウンド配信プロセスをこの数秒遅らせます。推奨:共有ホストには4〜5、仮想プライベートサーバーには2〜3。大規模な専用サーバーの場合は0-1。";
App::$strings["Deliveries per process"] = "プロセスごとの配達";
App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "単一のオペレーティングシステムプロセスで試行する配信の数。必要に応じて調整して、システムのパフォーマンスを調整します。推奨:1-5。";
App::$strings["Queue Threshold"] = "キューのしきい値";
App::$strings["Always defer immediate delivery if queue contains more than this number of entries."] = "キューにこの数を超えるエントリが含まれる場合は、即時配信を常に延期します。";
App::$strings["Poll interval"] = "ポーリング間隔";
App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "バックグラウンドポーリングプロセスをこの数秒遅らせて、システムの負荷を減らします。 0の場合、配信間隔を使用します。";
App::$strings["Path to ImageMagick convert program"] = "ImageMagick変換プログラムへのパス";
App::$strings["If set, use this program to generate photo thumbnails for huge images ( > 4000 pixels in either dimension), otherwise memory exhaustion may occur. Example: /usr/bin/convert"] = "設定されている場合、このプログラムを使用して巨大な画像(いずれかの方向で4000ピクセル以上)の写真のサムネイルを生成します。そうしないと、メモリ不足が発生する可能性があります。例:/usr/bin/convert";
App::$strings["Allow SVG thumbnails in file browser"] = "ファイルブラウザでSVGサムネイルを許可する";
App::$strings["WARNING: SVG images may contain malicious code."] = "警告:SVG画像には悪意のあるコードが含まれている場合があります。";
App::$strings["Maximum Load Average"] = "最大負荷平均";
App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "配信およびポーリングプロセスが延期される前の最大システム負荷-デフォルトは50。";
App::$strings["Expiration period in days for imported (grid/network) content"] = "インポートされた(グリッド/ネットワーク)コンテンツの有効期限(日数)";
App::$strings["0 for no expiration of imported content"] = "インポートされたコンテンツの有効期限がない場合は0";
App::$strings["Do not expire any posts which have comments less than this many days ago"] = "この数日前よりもコメントが少ない投稿を期限切れにしないでください。";
App::$strings["Public servers: Optional landing (marketing) webpage for new registrants"] = "パブリックサーバー:新規登録者向けのオプションのランディング(マーケティング)Webページ";
App::$strings["Create this page first. Default is %s/register"] = "最初にこのページを作成します。デフォルトは%s / registerです";
App::$strings["Page to display after creating a new channel"] = "新しいチャンネルを作成した後に表示するページ";
App::$strings["Default: profiles"] = "デフォルト:プロファイル";
App::$strings["Optional: site location"] = "サイトの所在地:オプション";
App::$strings["Region or country"] = "地域または国";
App::$strings["Theme settings updated."] = "テーマ設定は保存されました。";
App::$strings["No themes found."] = "テーマが見つかりませんでした。";
App::$strings["Screenshot"] = "スクリーンショット";
App::$strings["Themes"] = "テーマ";
App::$strings["[Experimental]"] = "[実験的]";
App::$strings["[Unsupported]"] = "[サポート無し]";
App::$strings["Blocked accounts"] = "ブロックされたアカウント";
App::$strings["Expired accounts"] = "期限切れのアカウント";
App::$strings["Expiring accounts"] = "期限切れのアカウント";
App::$strings["Message queues"] = "メッセージのキュー";
App::$strings["Your software should be updated"] = "ソフトのアップデートをしてください。";
App::$strings["Summary"] = "概要";
App::$strings["Registered accounts"] = "登録されているアカウント";
App::$strings["Pending registrations"] = "保留中の登録";
App::$strings["Registered channels"] = "登録されているチャンネル";
App::$strings["Active addons"] = "有効なアドオン";
App::$strings["Version"] = "バージョン";
App::$strings["Repository version (master)"] = "リポジトリバージョン(master)";
App::$strings["Repository version (dev)"] = "リポジトリバージョン(dev)";
App::$strings["Affinity Tool settings updated."] = "アフィニティツールの設定が更新されました。";
App::$strings["This app presents a slider control in your connection editor and also on your network page. The slider represents your degree of friendship (affinity) with each connection. It allows you to zoom in or out and display conversations from only your closest friends or everybody in your stream."] = "このアプリは、接続エディターおよびネットワークページにスライダーコントロールを表示します。スライダーは、各接続との友好度(親和性)を表します。ズームインまたはズームアウトして、親しい友人またはストリーム内の全員からの会話を表示できます。";
App::$strings["Affinity Tool App"] = "アフィニティツールアプリ";
App::$strings["Not Installed"] = "インストールされていない";
App::$strings["The numbers below represent the minimum and maximum slider default positions for your network/stream page as a percentage."] = "以下の数字は、ネットワーク/ストリームページのスライダーのデフォルトの最小および最大位置をパーセンテージで表しています。";
App::$strings["Default maximum affinity level"] = "デフォルトの最大アフィニティレベル";
App::$strings["0-99 default 99"] = "0-99デフォルト99";
App::$strings["Default minimum affinity level"] = "デフォルトの最小アフィニティレベル";
App::$strings["0-99 - default 0"] = "0-99-デフォルト0";
App::$strings["Persistent affinity levels"] = "永続的なアフィニティレベル";
App::$strings["If disabled the max and min levels will be reset to default after page reload"] = "無効にすると、ページのリロード後に最大レベルと最小レベルがデフォルトにリセットされます";
App::$strings["Affinity Tool Settings"] = "アフィニティツールの設定";
App::$strings["Authorize application connection"] = "アプリケーション接続を許可する";
App::$strings["Return to your app and insert this Security Code:"] = "アプリに戻り、このセキュリティコードを挿入します。";
App::$strings["Please login to continue."] = "続行するにはログインしてください。";
App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "このアプリケーションを許可して、投稿や連絡先にアクセスしたり、新しい投稿を作成したりしますか?";
App::$strings["App installed."] = "アプリがインストールされました。";
App::$strings["Malformed app."] = "不正なアプリ。";
App::$strings["Embed code"] = "埋め込みコード";
App::$strings["Edit App"] = "アプリを編集";
App::$strings["Create App"] = "アプリを作成";
App::$strings["Name of app"] = "アプリの名前";
App::$strings["Location (URL) of app"] = "アプリの場所(URL)";
App::$strings["Description"] = "説明";
App::$strings["Photo icon URL"] = "写真アイコンURL";
App::$strings["80 x 80 pixels - optional"] = "80 x 80ピクセル-オプション";
App::$strings["Categories (optional, comma separated list)"] = "カテゴリー(オプション、コンマ区切りリスト)";
App::$strings["Version ID"] = "バージョンID";
App::$strings["Price of app"] = "アプリの価格";
App::$strings["Location (URL) to purchase app"] = "アプリを購入する場所(URL)";
App::$strings["Change Order of Pinned Navbar Apps"] = "固定されたNavbarアプリの順序を変更する";
App::$strings["Change Order of App Tray Apps"] = "アプリトレイアプリの順序を変更する";
App::$strings["Use arrows to move the corresponding app left (top) or right (bottom) in the navbar"] = "矢印を使用して、対応するアプリをナビゲーションバーで左(上)または右(下)に移動します";
App::$strings["Use arrows to move the corresponding app up or down in the app tray"] = "矢印を使用して、対応するアプリをアプリトレイ内で上下に移動します";
App::$strings["Available Apps"] = "利用可能なアプリ";
App::$strings["Installed Apps"] = "インストール済みアプリ";
App::$strings["Manage Apps"] = "アプリを管理する";
App::$strings["Create Custom App"] = "カスタムアプリを作成する";
App::$strings["Articles App"] = "記事アプリ";
App::$strings["Create interactive articles"] = "インタラクティブな記事を作成する";
App::$strings["Add Article"] = "記事を追加";
App::$strings["Create"] = "作成";
App::$strings["Item not found"] = "アイテムが見つかりません";
App::$strings["Channel not found."] = "チャンネルが見つかりません。";
App::$strings["Edit Article"] = "記事を編集";
App::$strings["Item not available."] = "アイテムは利用できません。";
App::$strings["Unknown App"] = "不明なアプリ";
App::$strings["Authorize"] = "許可する";
App::$strings["Do you authorize the app %s to access your channel data?"] = "アプリ%sにチャンネルデータへのアクセスを許可していますか?";
App::$strings["Allow"] = "許可する";
App::$strings["Invalid item."] = "無効なアイテム。";
App::$strings["Block Name"] = "ブロック名";
App::$strings["Block Title"] = "ブロックタイトル";
App::$strings["Created"] = "作成した";
App::$strings["Edited"] = "編集済み";
App::$strings["View"] = "表示する";
App::$strings["Bookmark added"] = "ブックマークを追加しました";
App::$strings["Bookmarks App"] = "ブックマークアプリ";
App::$strings["Bookmark links from posts and manage them"] = "投稿のリンクをブックマークして管理する";
App::$strings["My Bookmarks"] = "私のブックマーク";
App::$strings["My Connections Bookmarks"] = "私の接続ブックマーク";
App::$strings["Permissions denied."] = "許可が拒否されました。";
App::$strings["l, F j"] = "l、F j";
App::$strings["Edit Event"] = "イベントを編集";
App::$strings["Create Event"] = "イベントを作成";
App::$strings["Previous"] = "前";
App::$strings["Next"] = "次";
App::$strings["Today"] = "今日";
App::$strings["Cards App"] = "カードアプリ";
App::$strings["Create personal planning cards"] = "個人計画カードを作成する";
App::$strings["Add Card"] = "カードを追加";
App::$strings["INVALID EVENT DISMISSED!"] = "無効なイベントは破棄されました!";
App::$strings["Summary: "] = "概要:";
App::$strings["Date: "] = "日付:";
App::$strings["Reason: "] = "理由:";
App::$strings["INVALID CARD DISMISSED!"] = "無効なカードが破棄されました!";
App::$strings["Name: "] = "名:";
App::$strings["CalDAV App"] = "CalDAVアプリ";
App::$strings["CalDAV capable calendar"] = "CalDAV対応カレンダー";
App::$strings["CardDAV App"] = "CardDAVアプリ";
App::$strings["CalDAV capable addressbook"] = "CalDAV対応のアドレス帳";
App::$strings["Event title"] = "イベントタイトル";
App::$strings["Start date and time"] = "開始日時";
App::$strings["End date and time"] = "終了日時";
App::$strings["Month"] = "月";
App::$strings["Week"] = "週間";
App::$strings["Day"] = "日";
App::$strings["List month"] = "月のリスト";
App::$strings["List week"] = "リスト週";
App::$strings["List day"] = "リスト日";
App::$strings["More"] = "もっと";
App::$strings["Less"] = "もっと少なく";
App::$strings["Select calendar"] = "カレンダーを選択";
App::$strings["Delete all"] = "すべて削除";
App::$strings["Sorry! Editing of recurrent events is not yet implemented."] = "ごめんなさい!繰り返しイベントの編集はまだ実装されていません。";
App::$strings["Organisation"] = "組織";
App::$strings["Title"] = "タイトル";
App::$strings["Phone"] = "電話";
App::$strings["Instant messenger"] = "インスタントメッセンジャー";
App::$strings["Website"] = "ウェブサイト";
App::$strings["Note"] = "注意";
App::$strings["Add Contact"] = "連絡先を追加";
App::$strings["Add Field"] = "フィールドを追加";
App::$strings["P.O. Box"] = "私書箱";
App::$strings["Additional"] = "追加";
App::$strings["Street"] = "通り";
App::$strings["Locality"] = "局所性";
App::$strings["Region"] = "領域";
App::$strings["ZIP Code"] = "郵便番号";
App::$strings["Country"] = "国";
App::$strings["Default Calendar"] = "デフォルトのカレンダー";
App::$strings["Default Addressbook"] = "デフォルトのアドレス帳";
App::$strings["Channel name changes are not allowed within 48 hours of changing the account password."] = "アカウントパスワードを変更してから48時間以内にチャンネル名を変更することはできません。";
App::$strings["Change channel nickname/address"] = "チャンネルのニックネーム/アドレスを変更する";
App::$strings["WARNING: "] = "警告:";
App::$strings["Any/all connections on other networks will be lost!"] = "他のネットワーク上の接続はすべて失われます!";
App::$strings["Please enter your password for verification:"] = "確認のためにパスワードを入力してください:";
App::$strings["New channel address"] = "新しいチャンネルアドレス";
App::$strings["Rename Channel"] = "チャンネル名を変更";
App::$strings["You must be logged in to see this page."] = "このページを表示するには、ログインする必要があります。";
App::$strings["Posts and comments"] = "投稿とコメント";
App::$strings["Only posts"] = "投稿のみ";
App::$strings["Insufficient permissions.  Request redirected to profile page."] = "権限が不十分です。プロフィールページにリダイレクトされたリクエスト。";
App::$strings["Search Results For:"] = "検索結果:";
App::$strings["Reset form"] = "フォームをリセット";
App::$strings["You must enable javascript for your browser to be able to view this content."] = "このコンテンツを表示するには、ブラウザのJavaScriptを有効にする必要があります。";
App::$strings["toggle full screen mode"] = "全画面モードを切り替える";
App::$strings["Chatrooms App"] = "チャットルームアプリ";
App::$strings["Access Controlled Chatrooms"] = "アクセス制御されたチャットルーム";
App::$strings["Room not found"] = "部屋が見つかりません";
App::$strings["Leave Room"] = "部屋を出る";
App::$strings["Delete Room"] = "部屋を削除";
App::$strings["I am away right now"] = "私は今不在です";
App::$strings["I am online"] = "オンライン中";
App::$strings["Bookmark this room"] = "この部屋をブックマークする";
App::$strings["New Chatroom"] = "新しいチャットルーム";
App::$strings["Chatroom name"] = "チャットルーム名";
App::$strings["Expiration of chats (minutes)"] = "チャットの有効期限(分)";
App::$strings["%1\$s's Chatrooms"] = "%1\$sのチャットルーム";
App::$strings["No chatrooms available"] = "利用可能なチャットルームはありません";
App::$strings["Create New"] = "新しく作る";
App::$strings["Expiration"] = "有効期限";
App::$strings["min"] = "分";
App::$strings["Away"] = "離れて";
App::$strings["Online"] = "オンライン";
App::$strings["Not found"] = "見つかりません";
App::$strings["Please refresh page"] = "ページを更新してください";
App::$strings["Unknown error"] = "未知のエラー";
App::$strings["No channel."] = "チャンネルなし。";
App::$strings["No connections in common."] = "共通の接続はありません。";
App::$strings["View Common Connections"] = "共通接続を表示する";
App::$strings["Continue"] = "持続する";
App::$strings["Premium Channel App"] = "プレミアムチャンネルアプリ";
App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "チャンネルに接続するものに制限と条件を設定できます";
App::$strings["Premium Channel Setup"] = "プレミアムチャンネルのセットアップ";
App::$strings["Enable premium channel connection restrictions"] = "プレミアムチャネル接続制限を有効にする";
App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "PayPalレシート、使用ガイドラインなどの制限または条件を入力してください。";
App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "このチャネルでは、接続する前に次の条件の追加手順または確認が必要になる場合があります。";
App::$strings["Potential connections will then see the following text before proceeding:"] = "潜在的な接続では、続行する前に次のテキストが表示されます。";
App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "続行することにより、このページに記載されている指示を遵守したことを保証します。";
App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(チャンネル所有者から具体的な指示は提供されていません。)";
App::$strings["Restricted or Premium Channel"] = "制限付きチャンネルまたはプレミアムチャンネル";
App::$strings["Active"] = "アクティブ";
App::$strings["Blocked"] = "ブロックされました";
App::$strings["Ignored"] = "無視された";
App::$strings["Hidden"] = "非表示";
App::$strings["Archived/Unreachable"] = "アーカイブ済み/到達不能";
App::$strings["New"] = "新しい";
App::$strings["All"] = "すべて";
App::$strings["Active Connections"] = "アクティブな接続";
App::$strings["Show active connections"] = "アクティブな接続を表示";
App::$strings["New Connections"] = "新しい接続";
App::$strings["Show pending (new) connections"] = "保留中の(新しい)接続を表示";
App::$strings["Only show blocked connections"] = "ブロックされた接続のみを表示";
App::$strings["Only show ignored connections"] = "無視された接続のみを表示";
App::$strings["Only show archived/unreachable connections"] = "アーカイブされた/到達不能な接続のみを表示する";
App::$strings["Only show hidden connections"] = "非表示の接続のみを表示";
App::$strings["All Connections"] = "すべての接続";
App::$strings["Show all connections"] = "すべての接続を表示";
App::$strings["Pending approval"] = "承認待ちの";
App::$strings["Archived"] = "アーカイブ済み";
App::$strings["Not connected at this location"] = "この場所では接続されていません";
App::$strings["%1\$s [%2\$s]"] = "%1\$s [ %2\$s ]";
App::$strings["Edit connection"] = "接続を編集";
App::$strings["Delete connection"] = "接続を削除";
App::$strings["Channel address"] = "チャンネルアドレス";
App::$strings["Call"] = "コール";
App::$strings["Status"] = "状態";
App::$strings["Connected"] = "接続済み";
App::$strings["Approve connection"] = "接続を承認する";
App::$strings["Ignore connection"] = "接続を無視";
App::$strings["Ignore"] = "無視する";
App::$strings["Recent activity"] = "最近の活動";
App::$strings["Search your connections"] = "接続を検索する";
App::$strings["Connections search"] = "接続検索";
App::$strings["Could not access contact record."] = "連絡先レコードにアクセスできませんでした。";
App::$strings["Could not locate selected profile."] = "選択したプロファイルが見つかりませんでした。";
App::$strings["Connection updated."] = "接続が更新されました。";
App::$strings["Failed to update connection record."] = "接続レコードの更新に失敗しました。";
App::$strings["is now connected to"] = "に接続されました";
App::$strings["Could not access address book record."] = "アドレス帳のレコードにアクセスできませんでした。";
App::$strings["Refresh failed - channel is currently unavailable."] = "更新に失敗しました-チャンネルは現在利用できません。";
App::$strings["Unable to set address book parameters."] = "アドレス帳のパラメーターを設定できません。";
App::$strings["Connection has been removed."] = "接続が削除されました。";
App::$strings["View %s's profile"] = "%sのプロフィールを表示";
App::$strings["Refresh Permissions"] = "権限を更新";
App::$strings["Fetch updated permissions"] = "更新された権限を取得する";
App::$strings["Refresh Photo"] = "写真を更新";
App::$strings["Fetch updated photo"] = "更新された写真を取得する";
App::$strings["View recent posts and comments"] = "最近の投稿とコメントを見る";
App::$strings["Block (or Unblock) all communications with this connection"] = "この接続とのすべての通信をブロック(またはブロック解除)";
App::$strings["This connection is blocked!"] = "この接続はブロックされています!";
App::$strings["Unignore"] = "無視しない";
App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "この接続からのすべてのインバウンド通信を無視(または無視しない)";
App::$strings["This connection is ignored!"] = "この接続は無視されます!";
App::$strings["Unarchive"] = "アーカイブ解除";
App::$strings["Archive"] = "アーカイブ";
App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "この接続をアーカイブ(またはアーカイブ解除)します-チャンネルをデッドにマークしますが、コンテンツは保持します";
App::$strings["This connection is archived!"] = "この接続はアーカイブされています!";
App::$strings["Unhide"] = "再表示";
App::$strings["Hide"] = "隠す";
App::$strings["Hide or Unhide this connection from your other connections"] = "この接続を他の接続から非表示または非表示にします";
App::$strings["This connection is hidden!"] = "この接続は非表示です!";
App::$strings["Delete this connection"] = "この接続を削除";
App::$strings["Fetch Vcard"] = "Vcardを取得";
App::$strings["Fetch electronic calling card for this connection"] = "この接続の電子通話カードを取得する";
App::$strings["Open Individual Permissions section by default"] = "デフォルトで個人権限セクションを開く";
App::$strings["Affinity"] = "親和性";
App::$strings["Open Set Affinity section by default"] = "デフォルトでセットアフィニティセクションを開く";
App::$strings["Me"] = "私";
App::$strings["Family"] = "家族";
App::$strings["Acquaintances"] = "知人";
App::$strings["Filter"] = "フィルタ";
App::$strings["Open Custom Filter section by default"] = "デフォルトでカスタムフィルターセクションを開く";
App::$strings["Approve this connection"] = "この接続を承認";
App::$strings["Accept connection to allow communication"] = "接続を受け入れて通信を許可する";
App::$strings["Set Affinity"] = "アフィニティを設定する";
App::$strings["Set Profile"] = "プロファイルを設定";
App::$strings["Set Affinity & Profile"] = "アフィニティとプロファイルを設定する";
App::$strings["This connection is unreachable from this location."] = "この場所からこの接続に到達できません。";
App::$strings["This connection may be unreachable from other channel locations."] = "この接続は、他のチャネルの場所から到達できない場合があります。";
App::$strings["Location independence is not supported by their network."] = "場所の独立性は、ネットワークではサポートされていません。";
App::$strings["This connection is unreachable from this location. Location independence is not supported by their network."] = "この場所からこの接続に到達できません。場所の独立性は、ネットワークではサポートされていません。";
App::$strings["Connection Default Permissions"] = "接続のデフォルト許可";
App::$strings["Apply these permissions automatically"] = "これらの許可を自動的に適用する";
App::$strings["Connection requests will be approved without your interaction"] = "接続要求はユーザーの操作なしで承認されます";
App::$strings["Permission role"] = "許可の役割";
App::$strings["Add permission role"] = "権限ロールを追加";
App::$strings["This connection's primary address is"] = "この接続のプライマリアドレスは";
App::$strings["Available locations:"] = "利用可能な場所:";
App::$strings["The permissions indicated on this page will be applied to all new connections."] = "このページに示されている権限は、すべての新しい接続に適用されます。";
App::$strings["Connection Tools"] = "接続ツール";
App::$strings["Slide to adjust your degree of friendship"] = "スライドして友好度を調整します";
App::$strings["Slide to adjust your rating"] = "スライドして評価を調整します";
App::$strings["Optionally explain your rating"] = "オプションで、評価を説明してください";
App::$strings["Custom Filter"] = "カスタムフィルター";
App::$strings["Only import posts with this text"] = "このテキストを含む投稿のみをインポートする";
App::$strings["Do not import posts with this text"] = "このテキストを含む投稿をインポートしないでください";
App::$strings["This information is public!"] = "この情報は公開されています!";
App::$strings["Connection Pending Approval"] = "接続の保留中の承認";
App::$strings["inherited"] = "継承されました";
App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "プロフィールを安全に表示するときに、 %sに表示するプロフィールを選択してください。";
App::$strings["Their Settings"] = "それらの設定";
App::$strings["My Settings"] = "私の設定";
App::$strings["Individual Permissions"] = "個別の許可";
App::$strings["Some permissions may be inherited from your channel's <a href=\"settings\"><strong>privacy settings</strong></a>, which have higher priority than individual settings. You can <strong>not</strong> change those settings here."] = "一部の権限は、チャンネルの<a href=\"settings\"> <strong>プライバシー設定</ strong> </a>から継承される場合があり、個々の設定よりも優先度が高くなります。ここでこれらの設定を変更することは<strong>できません</ strong>。";
App::$strings["Some permissions may be inherited from your channel's <a href=\"settings\"><strong>privacy settings</strong></a>, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "一部の権限は、チャンネルの<a href=\"settings\"> <strong>プライバシー設定</ strong> </a>から継承される場合があり、個々の設定よりも優先度が高くなります。これらの設定はここで変更できますが、継承された設定が変更されない限り、影響はありません。";
App::$strings["Last update:"] = "最後の更新:";
App::$strings["Details"] = "詳細";
App::$strings["Image uploaded but image cropping failed."] = "画像はアップロードされましたが、画像の切り取りに失敗しました。";
App::$strings["Cover Photos"] = "カバー写真";
App::$strings["Image resize failed."] = "画像のサイズ変更に失敗しました。";
App::$strings["Image upload failed."] = "画像のアップロードに失敗しました。";
App::$strings["Unable to process image."] = "画像を処理できません。";
App::$strings["Photo not available."] = "写真は利用できません。";
App::$strings["Your cover photo may be visible to anybody on the internet"] = "カバー写真はインターネット上の誰でも見ることができます";
App::$strings["Upload File:"] = "ファイルをアップロードする:";
App::$strings["Select a profile:"] = "プロファイルを選択:";
App::$strings["Change Cover Photo"] = "カバー写真を変更";
App::$strings["Upload"] = "アップロードする";
App::$strings["Use a photo from your albums"] = "アルバムの写真を使用する";
App::$strings["Choose a different album"] = "別のアルバムを選択してください";
App::$strings["Select existing photo"] = "既存の写真を選択";
App::$strings["Crop Image"] = "クロップ画像";
App::$strings["Please adjust the image cropping for optimum viewing."] = "最適な表示になるように画像のトリミングを調整してください。";
App::$strings["Done Editing"] = "編集完了";
App::$strings["Settings updated."] = "設定が更新されました。";
App::$strings["Default Permissions App"] = "デフォルトの権限アプリ";
App::$strings["Set custom default permissions for new connections"] = "新しい接続のカスタムデフォルト許可を設定する";
App::$strings["If enabled, connection requests will be approved without your interaction"] = "有効にすると、ユーザーの操作なしで接続要求が承認されます";
App::$strings["Automatic approval settings"] = "自動承認設定";
App::$strings["Some individual permissions may have been preset or locked based on your channel type and privacy settings."] = "チャンネルの種類とプライバシー設定に基づいて、個々の権限が事前設定またはロックされている場合があります。";
App::$strings["Public access denied."] = "パブリックアクセスが拒否されました。";
App::$strings["No default suggestions were found."] = "デフォルトの提案は見つかりませんでした。";
App::$strings["%d rating"] = array(
	0 => "%d評価",
	1 => "%d評価",
);
App::$strings["Gender: "] = "性別:";
App::$strings["Status: "] = "状態:";
App::$strings["Homepage: "] = "ホームページ:";
App::$strings["Description:"] = "説明:";
App::$strings["Public Forum:"] = "公開フォーラム:";
App::$strings["Keywords: "] = "キーワード:";
App::$strings["Don't suggest"] = "提案しないでください";
App::$strings["Common connections (estimated):"] = "一般的な接続(推定):";
App::$strings["Global Directory"] = "グローバルディレクトリ";
App::$strings["Local Directory"] = "ローカルディレクトリ";
App::$strings["Finding:"] = "発見:";
App::$strings["next page"] = "次のページ";
App::$strings["previous page"] = "前のページ";
App::$strings["Sort options"] = "並べ替えオプション";
App::$strings["Alphabetic"] = "アルファベット";
App::$strings["Reverse Alphabetic"] = "逆アルファベット";
App::$strings["Newest to Oldest"] = "最新から最新";
App::$strings["Oldest to Newest"] = "最新から最新";
App::$strings["No entries (some entries may be hidden)."] = "エントリなし(一部のエントリは非表示になる場合があります)。";
App::$strings["This site is not a directory server"] = "このサイトはディレクトリサーバーではありません";
App::$strings["This directory server requires an access token"] = "このディレクトリサーバーにはアクセストークンが必要です";
App::$strings["Article"] = "記事";
App::$strings["Item has been removed."] = "アイテムは削除されました。";
App::$strings["Edit Block"] = "ブロックを編集";
App::$strings["Layout Name"] = "レイアウト名";
App::$strings["Layout Description (Optional)"] = "レイアウトの説明(オプション)";
App::$strings["Edit Layout"] = "レイアウトを編集";
App::$strings["Item is not editable"] = "アイテムは編集できません";
App::$strings["Edit post"] = "投稿を編集";
App::$strings["Page link"] = "ページリンク";
App::$strings["Edit Webpage"] = "ウェブページを編集";
App::$strings["Token verification failed."] = "トークンの検証に失敗しました。";
App::$strings["Email verification resent"] = "メール確認の再送";
App::$strings["Unable to resend email verification message."] = "メール確認メッセージを再送信できません。";
App::$strings["Email Verification Required"] = "メール確認が必要です";
App::$strings["A verification token was sent to your email address [%s]. Enter that token here to complete the account verification step. Please allow a few minutes for delivery, and check your spam folder if you do not see the message."] = "確認トークンがメールアドレス[ %s ]に送信されました。ここにトークンを入力して、アカウントの確認手順を完了します。配信に数分かかり、メッセージが表示されない場合はスパムフォルダーを確認してください。";
App::$strings["Resend Email"] = "メールを再送";
App::$strings["Validation token"] = "検証トークン";
App::$strings["View Photo"] = "写真を見る";
App::$strings["Edit Album"] = "アルバムを編集";
App::$strings["Calendar entries imported."] = "インポートされたカレンダーエントリ。";
App::$strings["No calendar entries found."] = "カレンダーエントリが見つかりません。";
App::$strings["Event can not end before it has started."] = "イベントは開始する前に終了できません。";
App::$strings["Unable to generate preview."] = "プレビューを生成できません。";
App::$strings["Event title and start time are required."] = "イベントのタイトルと開始時間が必要です。";
App::$strings["Event not found."] = "イベントが見つかりません。";
App::$strings["Edit event title"] = "イベントのタイトルを編集";
App::$strings["Categories (comma-separated list)"] = "カテゴリー(コンマ区切りリスト)";
App::$strings["Edit Category"] = "カテゴリを編集";
App::$strings["Category"] = "カテゴリー";
App::$strings["Edit start date and time"] = "開始日時を編集する";
App::$strings["Finish date and time are not known or not relevant"] = "終了日時がわからない、または関係ない";
App::$strings["Edit finish date and time"] = "終了日時を編集する";
App::$strings["Finish date and time"] = "終了日時";
App::$strings["Adjust for viewer timezone"] = "視聴者のタイムゾーンに合わせて調整する";
App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "特定の場所で発生するイベントにとって重要です。世界的な休日には実用的ではありません。";
App::$strings["Edit Description"] = "説明の編集";
App::$strings["Edit Location"] = "場所を編集";
App::$strings["Timezone:"] = "タイムゾーン:";
App::$strings["Advanced Options"] = "高度なオプション";
App::$strings["Edit event"] = "イベントを編集";
App::$strings["Delete event"] = "イベントを削除";
App::$strings["calendar"] = "カレンダー";
App::$strings["Event removed"] = "イベントを削除しました";
App::$strings["Failed to remove event"] = "イベントを削除できませんでした";
App::$strings["Enter a folder name"] = "フォルダー名を入力してください";
App::$strings["or select an existing folder (doubleclick)"] = "または、既存のフォルダーを選択します(ダブルクリック)";
App::$strings["File not found."] = "ファイルが見つかりません。";
App::$strings["Permission Denied."] = "アクセス拒否。";
App::$strings["Edit file permissions"] = "ファイルのアクセス許可を編集する";
App::$strings["Set/edit permissions"] = "許可の設定/編集";
App::$strings["Include all files and sub folders"] = "すべてのファイルとサブフォルダーを含める";
App::$strings["Return to file list"] = "ファイルリストに戻る";
App::$strings["Copy/paste this code to attach file to a post"] = "このコードをコピーして貼り付けて、ファイルを投稿に添付します";
App::$strings["Copy/paste this URL to link file from a web page"] = "このURLをコピー/貼り付けして、Webページからファイルをリンクします";
App::$strings["Share this file"] = "このファイルを共有する";
App::$strings["Show URL to this file"] = "このファイルへのURLを表示";
App::$strings["Show in your contacts shared folder"] = "連絡先の共有フォルダーに表示する";
App::$strings["Connection added."] = "接続が追加されました。";
App::$strings["This page is available only to site members"] = "このページはサイトメンバーのみが利用できます";
App::$strings["Welcome"] = "ようこそ";
App::$strings["What would you like to do?"] = "何をしたいですか?";
App::$strings["Please bookmark this page if you would like to return to it in the future"] = "今後このページに戻る場合は、このページをブックマークしてください";
App::$strings["Upload a profile photo"] = "プロフィール写真をアップロードする";
App::$strings["Upload a cover photo"] = "カバー写真をアップロードする";
App::$strings["Edit your default profile"] = "デフォルトのプロファイルを編集する";
App::$strings["View friend suggestions"] = "友達の提案を見る";
App::$strings["View the channel directory"] = "チャンネルディレクトリを表示する";
App::$strings["View/edit your channel settings"] = "チャンネル設定の表示/編集";
App::$strings["View the site or project documentation"] = "サイトまたはプロジェクトのドキュメントを表示する";
App::$strings["Visit your channel homepage"] = "チャンネルのホームページにアクセスします";
App::$strings["View your connections and/or add somebody whose address you already know"] = "接続を表示したり、アドレスを既に知っている人を追加したりします";
App::$strings["View your personal stream (this may be empty until you add some connections)"] = "パーソナルストリームを表示します(接続を追加するまで空の場合があります)";
App::$strings["View the public stream. Warning: this content is not moderated"] = "パブリックストリームを表示します。警告:このコンテンツは管理されていません";
App::$strings["Privacy group created."] = "プライバシーグループが作成されました。";
App::$strings["Could not create privacy group."] = "プライバシーグループを作成できませんでした。";
App::$strings["Privacy group updated."] = "プライバシーグループが更新されました。";
App::$strings["Privacy Groups App"] = "プライバシーグループアプリ";
App::$strings["Management of privacy groups"] = "プライバシーグループを管理する";
App::$strings["Add Group"] = "グループを追加";
App::$strings["Privacy group name"] = "プライバシーグループ名";
App::$strings["Members are visible to other channels"] = "メンバーは他のチャンネルに表示されます";
App::$strings["Members"] = "メンバー";
App::$strings["Privacy group removed."] = "プライバシーグループが削除されました。";
App::$strings["Unable to remove privacy group."] = "プライバシーグループを削除できません。";
App::$strings["Privacy Group: %s"] = "プライバシーグループ: %s";
App::$strings["Privacy group name: "] = "プライバシーグループ名:";
App::$strings["Delete Group"] = "グループを削除";
App::$strings["Group members"] = "グループの人(仲間)たち";
App::$strings["Not in this group"] = "グループ外";
App::$strings["Click a channel to toggle membership"] = "チャンネルをクリックしてメンバーシップを切り替えます";
App::$strings["Documentation Search"] = "ドキュメント検索";
App::$strings["Administrators"] = "管理者";
App::$strings["Developers"] = "開発者";
App::$strings["Tutorials"] = "チュートリアル";
App::$strings["\$Projectname Documentation"] = "\$Projectnameドキュメント";
App::$strings["Contents"] = "内容";
App::$strings["Welcome to %s"] = "%sへようこそ";
App::$strings["Welcome to Hubzilla!"] = "Hubzillaへようこそ!";
App::$strings["You have got no unseen posts..."] = "未読の投稿はありません...";
App::$strings["%s element installed"] = "%s要素がインストールされました";
App::$strings["%s element installation failed"] = "%s要素のインストールに失敗しました";
App::$strings["Nothing to import."] = "インポートするものはありません。";
App::$strings["Unable to download data from old server"] = "古いサーバーからデータをダウンロードできません";
App::$strings["Imported file is empty."] = "インポートされたファイルは空です。";
App::$strings["Your service plan only allows %d channels."] = "サービスプランでは%dチャンネルのみが許可されています。";
App::$strings["No channel. Import failed."] = "チャンネルなし。インポートに失敗しました。";
App::$strings["Import completed."] = "インポートが完了しました。";
App::$strings["You must be logged in to use this feature."] = "この機能を使用するには、ログインする必要があります。";
App::$strings["Import Channel"] = "インポートチャンネル";
App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "このフォームを使用して、別のサーバー/ハブから既存のチャンネルをインポートします。ネットワーク経由で古いサーバー/ハブからチャネルIDを取得するか、エクスポートファイルを提供できます。";
App::$strings["File to Upload"] = "アップロードするファイル";
App::$strings["Or provide the old server/hub details"] = "または、古いサーバー/ハブの詳細を提供します";
App::$strings["Your old identity address (xyz@example.com)"] = "古いIDアドレス(xyz@example.com)";
App::$strings["Your old login email address"] = "古いログイン用メールアドレス";
App::$strings["Your old login password"] = "古いログインパスワード";
App::$strings["Import a few months of posts if possible (limited by available memory"] = "可能な場合は数か月分の投稿をインポートします(使用可能なメモリによって制限されます)";
App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "どちらのオプションでも、このハブを新しいプライマリアドレスにするか、古い場所でこの役割を継続するかを選択してください。どちらの場所からでも投稿できますが、ファイル、写真、およびメディアの主要な場所としてマークできるのは1つだけです。";
App::$strings["Make this hub my primary location"] = "このハブを主要な場所にする";
App::$strings["Move this channel (disable all previous locations)"] = "このチャネルを移動します(以前のすべての場所を無効にします)";
App::$strings["Use this channel nickname instead of the one provided"] = "提供されたものの代わりにこのチャンネルのニックネームを使用します";
App::$strings["Leave blank to keep your existing channel nickname. You will be randomly assigned a similar nickname if either name is already allocated on this site."] = "空白のままにして、既存のチャンネルのニックネームを保持します。いずれかの名前が既にこのサイトに割り当てられている場合、同様のニックネームがランダムに割り当てられます。";
App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "このプロセスが完了するまでに数分かかる場合があります。フォームを1回だけ送信し、完了するまでこのページを開いたままにしてください。";
App::$strings["Warning: Database versions differ by %1\$d updates."] = "警告:データベースのバージョンは%1\$d更新によって異なります。";
App::$strings["Import completed"] = "インポート完了";
App::$strings["Import Items"] = "アイテムをインポート";
App::$strings["Use this form to import existing posts and content from an export file."] = "このフォームを使用して、エクスポートファイルから既存の投稿とコンテンツをインポートします。";
App::$strings["Total invitation limit exceeded."] = "合計招待制限を超えました。";
App::$strings["%s : Not a valid email address."] = "%s :有効なメールアドレスではありません。";
App::$strings["Please join us on \$Projectname"] = "\$Projectnameに参加してください";
App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "招待制限を超えました。サイト管理者に連絡してください。";
App::$strings["%s : Message delivery failed."] = "%s :メッセージの配信に失敗しました。";
App::$strings["%d message sent."] = array(
	0 => "%d件のメッセージを送信しました。",
	1 => "%d件のメッセージを送信しました。",
);
App::$strings["Invite App"] = "アプリを招待";
App::$strings["Send email invitations to join this network"] = "このネットワークに参加するための招待メールを送信する";
App::$strings["You have no more invitations available"] = "利用可能な招待はもうありません";
App::$strings["Send invitations"] = "招待状を送信";
App::$strings["Enter email addresses, one per line:"] = "電子メールアドレスを1行に1つずつ入力します。";
App::$strings["Your message:"] = "あなたのメッセージ:";
App::$strings["Please join my community on \$Projectname."] = "\$Projectnameでコミュニティに参加してください。";
App::$strings["You will need to supply this invitation code:"] = "この招待コードを提供する必要があります。";
App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1.任意の\$Projectnameの場所に登録します(すべて相互に接続されています)";
App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. \$Projectnameネットワークアドレスをサイト検索バーに入力します。";
App::$strings["or visit"] = "または訪問";
App::$strings["3. Click [Connect]"] = "3. [接続]をクリックします";
App::$strings["Unable to locate original post."] = "元の投稿が見つかりません。";
App::$strings["Empty post discarded."] = "空の投稿は破棄されました。";
App::$strings["Duplicate post suppressed."] = "重複した投稿は抑制されました。";
App::$strings["System error. Post not saved."] = "システムエラー。投稿は保存されませんでした。";
App::$strings["Your comment is awaiting approval."] = "あなたのコメントは承認待ちです。";
App::$strings["Unable to obtain post information from database."] = "データベースから投稿情報を取得できません。";
App::$strings["You have reached your limit of %1$.0f top level posts."] = "トップレベルの投稿の上限%1$.0fに達しました。";
App::$strings["You have reached your limit of %1$.0f webpages."] = "ウェブページの制限%1$.0fに達しました。";
App::$strings["Language App"] = "言語アプリ";
App::$strings["Change UI language"] = "UI言語を変更する";
App::$strings["Comanche page description language help"] = "Comancheページ記述言語のヘルプ";
App::$strings["Layout Description"] = "レイアウトの説明";
App::$strings["Download PDL file"] = "PDLファイルをダウンロードする";
App::$strings["Like/Dislike"] = "好き/嫌い";
App::$strings["This action is restricted to members."] = "このアクションはメンバーに制限されています。";
App::$strings["Please <a href=\"rmagic\">login with your \$Projectname ID</a> or <a href=\"register\">register as a new \$Projectname member</a> to continue."] = "続行するには、<a href=\"rmagic\"> \$Projectname IDでログイン</a>するか、<a href=\"register\">新しい\$Projectnameメンバーとして登録</a>してください。";
App::$strings["Invalid request."] = "無効なリクエスト。";
App::$strings["thing"] = "事";
App::$strings["Channel unavailable."] = "チャンネルは利用できません。";
App::$strings["Previous action reversed."] = "前のアクションが逆になりました。";
App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$sは%2\$sの%3\$s同意します";
App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$sは%2\$sの%3\$sと一致しません";
App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$sは%2\$sの%3\$s決定を棄権します";
App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$sは%2\$sの%3\$s";
App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$sは%2\$sの%3\$s参加していません";
App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$sは%2\$sの%3\$sに参加するかも";
App::$strings["Action completed."] = "アクションが完了しました。";
App::$strings["Thank you."] = "ありがとうございました。";
App::$strings["Remote privacy information not available."] = "リモートプライバシー情報は利用できません。";
App::$strings["Visible to:"] = "表示:";
App::$strings["Location not found."] = "場所が見つかりません。";
App::$strings["Location lookup failed."] = "場所の検索に失敗しました。";
App::$strings["Please select another location to become primary before removing the primary location."] = "プライマリロケーションを削除する前に、プライマリになる別のロケーションを選択してください。";
App::$strings["Syncing locations"] = "場所の同期";
App::$strings["No locations found."] = "場所が見つかりません。";
App::$strings["Manage Channel Locations"] = "チャンネルの場所を管理する";
App::$strings["Primary"] = "メインの場所";
App::$strings["Drop"] = "削除";
App::$strings["Sync Now"] = "今すぐ同期";
App::$strings["Please wait several minutes between consecutive operations."] = "作業中は数分そのまま待機してください。";
App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "可能であれば、そのWebサイト/ハブにログインしてチャンネルを削除して、場所を削除してください。";
App::$strings["Use this form to drop the location if the hub is no longer operating."] = "ハブが動作しなくなった場合、このフォームを使用して場所を削除します。";
App::$strings["No valid account found."] = "有効なアカウントが見つかりません。";
App::$strings["Password reset request issued. Check your email."] = "パスワードリセット要求が発行されました。あなたのメールをチェックしてください。";
App::$strings["Site Member (%s)"] = "サイトメンバー( %s )";
App::$strings["Password reset requested at %s"] = "%s要求されたパスワードのリセット";
App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "リクエストを確認できませんでした。パスワードのリセットに失敗しました。(既に送信済みな可能性があります。)";
App::$strings["Your password has been reset as requested."] = "パスワードは要求どおりにリセットされました。";
App::$strings["Your new password is"] = "新しいパスワードは";
App::$strings["Save or copy your new password - and then"] = "新しいパスワードを保存またはコピーします-その後";
App::$strings["click here to login"] = "ここをクリックしてログイン";
App::$strings["Your password may be changed from the <em>Settings</em> page after successful login."] = "ログインに成功すると、パスワードは<em>設定</em>ページから変更される場合があります。";
App::$strings["Your password has changed at %s"] = "パスワードは%sに変更されました";
App::$strings["Forgot your Password?"] = "パスワードをお忘れですか?";
App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "メールアドレスを入力して送信し、パスワードをリセットしてください。その後、メールで詳細な手順を確認してください。";
App::$strings["Email Address"] = "メールアドレス";
App::$strings["Reset"] = "リセットする";
App::$strings["Hub not found."] = "ハブが見つかりません。";
App::$strings["Unable to lookup recipient."] = "受信者を検索できません。";
App::$strings["Unable to communicate with requested channel."] = "要求されたチャネルと通信できません。";
App::$strings["Cannot verify requested channel."] = "要求されたチャンネルを確認できません。";
App::$strings["Selected channel has private message restrictions. Send failed."] = "選択したチャンネルにはプライベートメッセージの制限があります。送信に失敗しました。";
App::$strings["Messages"] = "メッセージ";
App::$strings["message"] = "メッセージ";
App::$strings["Message recalled."] = "メッセージを思い出しました。";
App::$strings["Conversation removed."] = "会話を削除しました。";
App::$strings["Expires YYYY-MM-DD HH:MM"] = "有効期限YYYY-MM-DD HH:MM";
App::$strings["Requested channel is not in this network"] = "要求されたチャンネルはこのネットワークにありません";
App::$strings["Send Private Message"] = "プライベートメッセージを送信";
App::$strings["To:"] = "に:";
App::$strings["Subject:"] = "件名:";
App::$strings["Attach file"] = "ファイルを添付する";
App::$strings["Send"] = "送る";
App::$strings["Delete message"] = "メッセージを削除";
App::$strings["Delivery report"] = "送達通知";
App::$strings["Recall message"] = "リコールメッセージ";
App::$strings["Message has been recalled."] = "メッセージが呼び戻されました。";
App::$strings["Delete Conversation"] = "会話を削除";
App::$strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "安全な通信は利用できません。送信者のプロファイルページから返信できる<strong>かも</strong>しれません。";
App::$strings["Send Reply"] = "返信する";
App::$strings["Your message for %s (%s):"] = "%s ( %s ) %sメッセージ:";
App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "%2$.0fの%1$.0fが許可されたチャンネルを作成しました。";
App::$strings["Create a new channel"] = "新しいチャンネルを作成する";
App::$strings["Current Channel"] = "現在のチャンネル";
App::$strings["Switch to one of your channels by selecting it."] = "チャンネルを選択して切り替えます。";
App::$strings["Default Channel"] = "デフォルトチャンネル";
App::$strings["Make Default"] = "デフォルトにする";
App::$strings["%d new messages"] = "%d新しいメッセージ";
App::$strings["%d new introductions"] = "%d新しい紹介";
App::$strings["Delegated Channel"] = "委任チャンネル";
App::$strings["Unable to update menu."] = "メニューを更新できません。";
App::$strings["Unable to create menu."] = "メニューを作成できません。";
App::$strings["Menu Name"] = "メニュー名";
App::$strings["Unique name (not visible on webpage) - required"] = "一意の名前(Webページには表示されません)-必須";
App::$strings["Menu Title"] = "メニュータイトル";
App::$strings["Visible on webpage - leave empty for no title"] = "Webページに表示-タイトルがない場合は空のままにします";
App::$strings["Allow Bookmarks"] = "ブックマークを許可";
App::$strings["Menu may be used to store saved bookmarks"] = "メニューを使用して、保存したブックマークを保存できます";
App::$strings["Submit and proceed"] = "送信して続行";
App::$strings["Bookmarks allowed"] = "ブックマークを許可";
App::$strings["Delete this menu"] = "このメニューを削除";
App::$strings["Edit menu contents"] = "メニューの内容を編集";
App::$strings["Edit this menu"] = "このメニューを編集";
App::$strings["Menu could not be deleted."] = "メニューを削除できませんでした。";
App::$strings["Menu not found."] = "メニューが見つかりません。";
App::$strings["Edit Menu"] = "編集メニュー";
App::$strings["Add or remove entries to this menu"] = "このメニューにエントリを追加または削除します";
App::$strings["Menu name"] = "メニュー名";
App::$strings["Must be unique, only seen by you"] = "固有である必要があります。あなただけに表示されます。";
App::$strings["Menu title"] = "メニュータイトル";
App::$strings["Menu title as seen by others"] = "他の人に表示されるメニュータイトル";
App::$strings["Allow bookmarks"] = "ブックマークを許可する";
App::$strings["Not found."] = "見つかりません。";
App::$strings["Unable to create element."] = "要素を作成できません。";
App::$strings["Unable to update menu element."] = "メニュー要素を更新できません。";
App::$strings["Unable to add menu element."] = "メニュー要素を追加できません。";
App::$strings["Menu Item Permissions"] = "メニュー項目の許可";
App::$strings["(click to open/close)"] = "(クリックして開閉)";
App::$strings["Link Name"] = "リンク名";
App::$strings["Link or Submenu Target"] = "リンクまたはサブメニューターゲット";
App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "リンクのURLを入力するか、メニュー名を選択してサブメニューを作成します";
App::$strings["Use magic-auth if available"] = "可能であればmagic-authを使用する";
App::$strings["Open link in new window"] = "新しいウィンドウでリンクを開く";
App::$strings["Order in list"] = "リスト内の順序";
App::$strings["Higher numbers will sink to bottom of listing"] = "数字が大きいほどリストの最後に沈みます";
App::$strings["Submit and finish"] = "提出して終了";
App::$strings["Submit and continue"] = "送信して続行";
App::$strings["Menu:"] = "メニュー:";
App::$strings["Link Target"] = "リンク先";
App::$strings["Edit menu"] = "編集メニュー";
App::$strings["Edit element"] = "要素を編集";
App::$strings["Drop element"] = "ドロップ要素";
App::$strings["New element"] = "新しい要素";
App::$strings["Edit this menu container"] = "このメニューコンテナを編集";
App::$strings["Add menu element"] = "メニュー要素を追加";
App::$strings["Delete this menu item"] = "このメニュー項目を削除";
App::$strings["Edit this menu item"] = "このメニュー項目を編集";
App::$strings["Menu item not found."] = "メニュー項目が見つかりません。";
App::$strings["Menu item deleted."] = "メニュー項目が削除されました。";
App::$strings["Menu item could not be deleted."] = "メニュー項目を削除できませんでした。";
App::$strings["Edit Menu Element"] = "メニュー要素の編集";
App::$strings["Link text"] = "リンクテキスト";
App::$strings["Comment approved"] = "コメントが承認されました";
App::$strings["Comment deleted"] = "コメントを削除しました";
App::$strings["Mood App"] = "ムードアプリ";
App::$strings["Set your current mood and tell your friends"] = "現在の気分を設定して友達に伝える";
App::$strings["No such group"] = "そのようなグループはありません";
App::$strings["No such channel"] = "そのようなチャンネルはありません";
App::$strings["Privacy group is empty"] = "プライバシーグループが空です";
App::$strings["Privacy group: "] = "プライバシーグループ:";
App::$strings["Invalid channel."] = "無効なチャンネル。";
App::$strings["Your real name is recommended."] = "あなたの本名が推奨されます。";
App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "例:\"Bob Jameson \"\"Lisa and her Horses \"\"Soccer \"\"Aviation Group \"";
App::$strings["This will be used to create a unique network address (like an email address)."] = "これは、一意のネットワークアドレス(電子メールアドレスなど)を作成するために使用されます。";
App::$strings["Allowed characters are a-z 0-9, - and _"] = "許可される文字はaz 0-9、-および_です";
App::$strings["Channel name"] = "チャンネル名";
App::$strings["Choose a short nickname"] = "短いニックネームを選択してください";
App::$strings["Channel role and privacy"] = "チャンネルの役割とプライバシー";
App::$strings["Select a channel permission role compatible with your usage needs and privacy requirements."] = "使用ニーズとプライバシー要件に適合するチャンネル許可ロールを選択します。";
App::$strings["Read more about channel permission roles"] = "チャネル許可の役割の詳細を読む";
App::$strings["Create a Channel"] = "チャンネルを作成する";
App::$strings["A channel is a unique network identity. It can represent a person (social network profile), a forum (group), a business or celebrity page, a newsfeed, and many other things."] = "チャネルは、一意のネットワークIDです。それは、人(ソーシャルネットワークプロファイル)、フォーラム(グループ)、ビジネスまたは有名人のページ、ニュースフィード、および他の多くのものを表すことができます。";
App::$strings["or <a href=\"import\">import an existing channel</a> from another location."] = "または<a href=\"import\">既存のチャンネルを別の場所からインポート</a>します。";
App::$strings["Validate"] = "検証";
App::$strings["Notes App"] = "ノートアプリ";
App::$strings["A simple notes app with a widget (note: notes are not encrypted)"] = "ウィジェットを備えたシンプルなメモアプリ(メモ:メモは暗号化されません)";
App::$strings["No more system notifications."] = "これ以上のシステム通知はありません。";
App::$strings["System Notifications"] = "システム通知";
App::$strings["Name is required"] = "名前が必要です";
App::$strings["Key and Secret are required"] = "キーとシークレットが必要です";
App::$strings["OAuth Apps Manager App"] = "OAuth Apps Managerアプリ";
App::$strings["OAuth authentication tokens for mobile and remote apps"] = "モバイルアプリとリモートアプリのOAuth認証トークン";
App::$strings["Add application"] = "アプリケーションを追加";
App::$strings["Name of application"] = "アプリケーション名";
App::$strings["Consumer Key"] = "消費者キー";
App::$strings["Automatically generated - change if desired. Max length 20"] = "自動生成-必要に応じて変更します。最大長20";
App::$strings["Consumer Secret"] = "消費者の秘密";
App::$strings["Redirect"] = "リダイレクト";
App::$strings["Redirect URI - leave blank unless your application specifically requires this"] = "リダイレクトURI-アプリケーションで特に必要な場合を除き、空白のままにします";
App::$strings["Icon url"] = "アイコンのURL";
App::$strings["Optional"] = "オプショナル";
App::$strings["Application not found."] = "アプリケーションは見つかりませんでした。";
App::$strings["Connected OAuth Apps"] = "接続されたOAuthアプリ";
App::$strings["Client key starts with"] = "クライアントキーで始まる";
App::$strings["No name"] = "ノーネーム";
App::$strings["Remove authorization"] = "承認を削除";
App::$strings["Name and Secret are required"] = "名前と秘密が必要です";
App::$strings["OAuth2 Apps Manager App"] = "OAuth2 Apps Managerアプリ";
App::$strings["OAuth2 authenticatication tokens for mobile and remote apps"] = "モバイルアプリおよびリモートアプリ用のOAuth2認証トークン";
App::$strings["Add OAuth2 application"] = "OAuth2アプリケーションを追加する";
App::$strings["Grant Types"] = "助成金の種類";
App::$strings["leave blank unless your application sepcifically requires this"] = "アプリケーションが個別にこれを必要としない限り、空白のままにしてください";
App::$strings["Authorization scope"] = "認可範囲";
App::$strings["OAuth2 Application not found."] = "OAuth2アプリケーションが見つかりません。";
App::$strings["leave blank unless your application specifically requires this"] = "アプリケーションで特に必要な場合を除き、空白のままにしてください";
App::$strings["Connected OAuth2 Apps"] = "接続されたOAuth2アプリ";
App::$strings["Edit Card"] = "カードを編集";
App::$strings["Invalid message"] = "無効なメッセージ";
App::$strings["no results"] = "結果がありません";
App::$strings["channel sync processed"] = "処理されたチャネル同期";
App::$strings["queued"] = "待機中です";
App::$strings["posted"] = "投稿完了しました";
App::$strings["accepted for delivery"] = "配達が承諾されました";
App::$strings["updated"] = "更新しました";
App::$strings["update ignored"] = "更新は無視されました";
App::$strings["permission denied"] = "アクセス拒否されました";
App::$strings["recipient not found"] = "受信者が見つかりません";
App::$strings["mail recalled"] = "リコールされたメール";
App::$strings["duplicate mail received"] = "重複メールを受信";
App::$strings["mail delivered"] = "メール配信";
App::$strings["Delivery report for %1\$s"] = "%1\$sの配信レポート";
App::$strings["Options"] = "オプション";
App::$strings["Redeliver"] = "再配信";
App::$strings["Please login."] = "ログインしてください。";
App::$strings["Unable to find your hub."] = "ハブが見つかりません。";
App::$strings["Post successful."] = "投稿に成功しました。";
App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet、consectetur adipiscing elit、sed do eiusmod tempor incididunt ut Labore et dolore magna aliqua。 Ut enim ad minim veniam、quis nostrud exercitation ullamco Laboris nisi ut aliquip ex ea commodo consequat。 Duip aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur。 Sint occaecat cupidatat non proident、culpa qui officia deserunt mollit anim id est Laborumで例外を除きます。";
App::$strings["This setting requires special processing and editing has been blocked."] = "この設定には特別な処理が必要であり、編集はブロックされています。";
App::$strings["Configuration Editor"] = "構成エディター";
App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "警告:一部の設定を変更すると、チャンネルが動作しなくなる可能性があります。この機能を正しく使用する方法に慣れていない場合は、このページを離れてください。";
App::$strings["Layout updated."] = "レイアウトが更新されました。";
App::$strings["PDL Editor App"] = "PDLエディターアプリ";
App::$strings["Provides the ability to edit system page layouts"] = "システムページレイアウトを編集する機能を提供します。";
App::$strings["Edit System Page Description"] = "システムページの説明の編集";
App::$strings["(modified)"] = "(変更済み)";
App::$strings["Layout not found."] = "レイアウトが見つかりません。";
App::$strings["Module Name:"] = "モジュール名:";
App::$strings["Layout Help"] = "レイアウトヘルプ";
App::$strings["Edit another layout"] = "別のレイアウトを編集する";
App::$strings["System layout"] = "システムレイアウト";
App::$strings["Permission category name is required."] = "許可カテゴリ名が必要です。";
App::$strings["Permission category saved."] = "許可カテゴリが保存されました。";
App::$strings["Permission Categories App"] = "許可カテゴリアプリ";
App::$strings["Create custom connection permission limits"] = "カスタム接続許可制限を作成する";
App::$strings["Use this form to create permission rules for various classes of people or connections."] = "このフォームを使用して、さまざまなクラスの人または接続の許可ルールを作成します。";
App::$strings["Permission category name"] = "許可カテゴリ名";
App::$strings["Page owner information could not be retrieved."] = "ページ所有者情報を取得できませんでした。";
App::$strings["Album not found."] = "アルバムが見つかりません。";
App::$strings["Delete Album"] = "アルバムを削除";
App::$strings["Delete Photo"] = "写真を削除";
App::$strings["No photos selected"] = "写真が選択されていません";
App::$strings["Access to this item is restricted."] = "このアイテムへのアクセスは制限されています。";
App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%2$.2f MB中%1$.2f MBの写真ストレージが使用されています。";
App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MBの写真ストレージが使用されています。";
App::$strings["Upload Photos"] = "写真をアップロードする";
App::$strings["Enter an album name"] = "アルバム名を入力してください";
App::$strings["or select an existing album (doubleclick)"] = "または既存のアルバムを選択します(ダブルクリック)";
App::$strings["Create a status post for this upload"] = "このアップロードのステータス投稿を作成";
App::$strings["Description (optional)"] = "説明(オプション)";
App::$strings["Show Newest First"] = "新しいもの順に表示";
App::$strings["Show Oldest First"] = "古いもの順に表示";
App::$strings["Add Photos"] = "写真を追加";
App::$strings["Permission denied. Access to this item may be restricted."] = "アクセスが拒否されました。このアイテムへのアクセスは制限されている場合があります。";
App::$strings["Photo not available"] = "写真は利用できません";
App::$strings["Use as profile photo"] = "プロフィール写真として使用";
App::$strings["Use as cover photo"] = "カバー写真として使用";
App::$strings["Private Photo"] = "プライベート写真";
App::$strings["View Full Size"] = "フルサイズを表示";
App::$strings["Edit photo"] = "写真を編集する";
App::$strings["Rotate CW (right)"] = "CWを回転(右)";
App::$strings["Rotate CCW (left)"] = "CCWを回転(左)";
App::$strings["Move photo to album"] = "写真をアルバムに移動";
App::$strings["Enter a new album name"] = "新しいアルバム名を入力してください";
App::$strings["or select an existing one (doubleclick)"] = "または、既存のものを選択します(ダブルクリック)";
App::$strings["Add a Tag"] = "タグを追加する";
App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "例:@bob、@Barbara_Jensen、@jim@example.com";
App::$strings["Flag as adult in album view"] = "アルバムビューでアダルトとしてフラグを立てる";
App::$strings["Photo Tools"] = "写真ツール";
App::$strings["In This Photo:"] = "この写真の中で:";
App::$strings["Map"] = "地図";
App::$strings["sent you a private message"] = "あなたにプライベートメッセージを送りました";
App::$strings["added your channel"] = "チャンネルを追加しました";
App::$strings["requires approval"] = "承認が必要です";
App::$strings["g A l F d"] = "g A l F d";
App::$strings["[today]"] = "[今日]";
App::$strings["posted an event"] = "イベントを投稿しました";
App::$strings["shared a file with you"] = "あなたとファイルを共有しました";
App::$strings["Private forum"] = "プライベートフォーラム";
App::$strings["Public forum"] = "公開フォーラム";
App::$strings["Poke App"] = "Pokeアプリ";
App::$strings["Poke somebody in your addressbook"] = "アドレス帳で誰かを突く";
App::$strings["Poke somebody"] = "誰かを突く";
App::$strings["Poke/Prod"] = "";
App::$strings["Poke, prod or do other things to somebody"] = "突く、突き出す、または他のことを誰かに行う";
App::$strings["Recipient"] = "受取人";
App::$strings["Choose what you wish to do to recipient"] = "受信者にしたいことを選択してください";
App::$strings["Make this post private"] = "この投稿を非公開にします";
App::$strings["Remote Diagnostics App"] = "リモート診断アプリ";
App::$strings["Perform diagnostics on remote channels"] = "リモートチャネルで診断を実行する";
App::$strings["vcard"] = "vcard";
App::$strings["Profile not found."] = "プロファイルが見つかりません。";
App::$strings["Profile deleted."] = "プロファイルが削除されました。";
App::$strings["Profile-"] = "プロファイル-";
App::$strings["New profile created."] = "新しいプロファイルが作成されました。";
App::$strings["Profile unavailable to clone."] = "プロファイルを複製できません。";
App::$strings["Profile unavailable to export."] = "プロファイルをエクスポートできません。";
App::$strings["Profile Name is required."] = "プロファイル名が必要です。";
App::$strings["Marital Status"] = "配偶者の有無";
App::$strings["Romantic Partner"] = "ロマンチックなパートナー";
App::$strings["Likes"] = "いいね";
App::$strings["Dislikes"] = "わるいね";
App::$strings["Work/Employment"] = "仕事/雇用";
App::$strings["Religion"] = "宗教";
App::$strings["Political Views"] = "政見";
App::$strings["Gender"] = "性別";
App::$strings["Sexual Preference"] = "性的嗜好";
App::$strings["Homepage"] = "ホームページ";
App::$strings["Interests"] = "趣味";
App::$strings["Profile updated."] = "プロフィール更新済み。";
App::$strings["Hide your connections list from viewers of this profile"] = "このプロファイルの閲覧者から接続リストを非表示にします";
App::$strings["Edit Profile Details"] = "プロファイルの詳細を編集";
App::$strings["View this profile"] = "このプロフィールを見る";
App::$strings["Profile Tools"] = "プロファイルツール";
App::$strings["Change cover photo"] = "カバー写真を変更";
App::$strings["Create a new profile using these settings"] = "これらの設定を使用して新しいプロファイルを作成します";
App::$strings["Clone this profile"] = "このプロファイルを複製";
App::$strings["Delete this profile"] = "このプロファイルを削除";
App::$strings["Add profile things"] = "プロフィールを追加する";
App::$strings["Personal"] = "パーソナル";
App::$strings["Relationship"] = "関係";
App::$strings["Import profile from file"] = "ファイルからプロファイルをインポート";
App::$strings["Export profile to file"] = "プロファイルをファイルにエクスポート";
App::$strings["Your gender"] = "あなたの性別";
App::$strings["Marital status"] = "配偶者の有無";
App::$strings["Sexual preference"] = "性的嗜好";
App::$strings["Profile name"] = "プロファイル名";
App::$strings["This is your default profile."] = "これがデフォルトのプロファイルです。";
App::$strings["Your full name"] = "あなたのフルネーム";
App::$strings["Title/Description"] = "タイトル説明";
App::$strings["Street address"] = "住所";
App::$strings["Locality/City"] = "地方/市";
App::$strings["Region/State"] = "地域/州";
App::$strings["Postal/Zip code"] = "郵便番号";
App::$strings["Who (if applicable)"] = "誰(該当する場合)";
App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "例:cathy123、Cathy Williams、cathy @ example.com";
App::$strings["Since (date)"] = "以来(日付)";
App::$strings["Tell us about yourself"] = "あなた自身について教えてください";
App::$strings["Homepage URL"] = "ホームページURL";
App::$strings["Hometown"] = "出身地";
App::$strings["Political views"] = "政見";
App::$strings["Religious views"] = "宗教的見解";
App::$strings["Keywords used in directory listings"] = "ディレクトリリストで使用されるキーワード";
App::$strings["Example: fishing photography software"] = "例:釣り写真ソフトウェア";
App::$strings["Musical interests"] = "音楽的興味";
App::$strings["Books, literature"] = "本、文学";
App::$strings["Television"] = "テレビ";
App::$strings["Film/Dance/Culture/Entertainment"] = "映画/ダンス/文化/エンターテイメント";
App::$strings["Hobbies/Interests"] = "趣味/興味";
App::$strings["Love/Romance"] = "愛/ロマンス";
App::$strings["School/Education"] = "学校教育";
App::$strings["Contact information and social networks"] = "連絡先情報とソーシャルネットワーク";
App::$strings["My other channels"] = "私の他のチャンネル";
App::$strings["Communications"] = "コミュニケーションズ";
App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "新しい写真がすぐに表示されない場合は、Shiftキーを押しながらページをリロードするか、ブラウザーのキャッシュをクリアします。";
App::$strings["Your default profile photo is visible to anybody on the internet. Profile photos for alternate profiles will inherit the permissions of the profile"] = "デフォルトのプロフィール写真は、インターネット上の誰でも見ることができます。代替プロファイルのプロファイル写真は、プロファイルの権限を継承します";
App::$strings["Your profile photo is visible to anybody on the internet and may be distributed to other websites."] = "あなたのプロフィール写真はインターネット上の誰でも見ることができ、他のウェブサイトに配布される場合があります。";
App::$strings["Use Photo for Profile"] = "プロフィールに写真を使用";
App::$strings["Change Profile Photo"] = "プロフィール写真の変更";
App::$strings["Use"] = "使用する";
App::$strings["Invalid profile identifier."] = "無効なプロファイル識別子。";
App::$strings["Profile Visibility Editor"] = "プロファイル可視性エディター";
App::$strings["Click on a contact to add or remove."] = "連絡先をクリックして追加または削除します。";
App::$strings["Visible To"] = "に表示";
App::$strings["Public Hubs"] = "公共ハブ";
App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself <strong>may</strong> provide additional details."] = "このリスト化されたハブは\$Projectnameのネットワークに登録が許可されています。全てのハブは相互にリンクしておりどこのハブにいても接続できます。それぞれのハブには独自の制約がある可能性もあります。";
App::$strings["Hub URL"] = "ハブURL";
App::$strings["Access Type"] = "アクセスタイプ";
App::$strings["Registration Policy"] = "登録ポリシー";
App::$strings["Stats"] = "統計";
App::$strings["Software"] = "ソフトウェア";
App::$strings["Rate"] = "レート";
App::$strings["Public Stream App"] = "パブリックストリームアプリ";
App::$strings["The unmoderated public stream of this hub"] = "このハブのモデレートされていないパブリックストリーム";
App::$strings["Random Channel App"] = "ランダムチャンネルアプリ";
App::$strings["Visit a random channel in the \$Projectname network"] = "\$Projectnameネットワークのランダムチャネルにアクセスします";
App::$strings["Website:"] = "ウェブサイト:";
App::$strings["Remote Channel [%s] (not yet known on this site)"] = "リモートチャネル[ %s ](このサイトではまだ知られていない)";
App::$strings["Rating (this information is public)"] = "評価(この情報は公開されています)";
App::$strings["Optionally explain your rating (this information is public)"] = "オプションで、評価を説明してください(この情報は公開されています)";
App::$strings["No ratings"] = "評価なし";
App::$strings["Rating: "] = "評価:";
App::$strings["Website: "] = "ウェブサイト:";
App::$strings["Description: "] = "説明:";
App::$strings["Select a bookmark folder"] = "ブックマークフォルダを選択";
App::$strings["Save Bookmark"] = "ブックマークを保存";
App::$strings["URL of bookmark"] = "ブックマークのURL";
App::$strings["Or enter new bookmark folder name"] = "または、新しいブックマークフォルダ名を入力してください";
App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "1日の最大サイト登録数を超えました。明日もう一度お試しください。";
App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "利用規約への同意を示してください。登録に失敗しました。";
App::$strings["Passwords do not match."] = "パスワードが一致していません。";
App::$strings["Registration successful. Continue to create your first channel..."] = "登録に成功。最初のチャンネルを作成し続けます...";
App::$strings["Registration successful. Please check your email for validation instructions."] = "登録に成功。検証手順については、メールを確認してください。";
App::$strings["Your registration is pending approval by the site owner."] = "登録はサイト所有者による承認待ちです。";
App::$strings["Your registration can not be processed."] = "登録を処理できません。";
App::$strings["Registration on this hub is disabled."] = "このハブでの登録は無効になっています。";
App::$strings["Registration on this hub is by approval only."] = "このハブへの登録は承認された人のみです。";
App::$strings["<a href=\"pubsites\">Register at another affiliated hub.</a>"] = "<a href=\"pubsites\">別の提携ハブに登録します。</a>";
App::$strings["Registration on this hub is by invitation only."] = "このハブへ登録できるのは招待状を持っている人のみです。";
App::$strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "このサイトは、許可されている1日のアカウント登録数を超えています。明日もう一度お試しください。";
App::$strings["Terms of Service"] = "利用規約";
App::$strings["I accept the %s for this website"] = "このウェブサイトの%sに同意します";
App::$strings["I am over %s years of age and accept the %s for this website"] = "私は%s歳以上で、このウェブサイトの%sを受け入れます";
App::$strings["Your email address"] = "メールアドレス";
App::$strings["Choose a password"] = "パスワードを決めて下さい";
App::$strings["Please re-enter your password"] = "パスワードを再入力してください";
App::$strings["Please enter your invitation code"] = "招待コードを入力してください";
App::$strings["Your Name"] = "あなたの名前";
App::$strings["Real names are preferred."] = "本名が優先されます。";
App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "ニックネームは覚えやすいチャンネルアドレスを作成するために使用されます。ニックネーム:%s";
App::$strings["Select a channel permission role for your usage needs and privacy requirements."] = "使用上のニーズとプライバシーの要件に応じて、チャンネル許可の役割を選択します。";
App::$strings["no"] = "いや";
App::$strings["yes"] = "はい";
App::$strings["This site requires email verification. After completing this form, please check your email for further instructions."] = "このサイトではメールの確認が必要です。このフォームに記入した後、詳細な手順についてはメールを確認してください。";
App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "アカウントのパスワードを変更してから48時間以内にアカウントを削除することはできません。";
App::$strings["Remove This Account"] = "このアカウントを削除";
App::$strings["This account and all its channels will be completely removed from the network. "] = "このアカウントとそのすべてのチャネルは、ネットワークから完全に削除されます。";
App::$strings["This action is permanent and can not be undone!"] = "このアクションは永続的であり、元に戻すことはできません!";
App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "このアカウント、そのすべてのチャンネル、およびそのすべてのチャンネルクローンをネットワークから削除します";
App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "デフォルトでは、このハブにあるチャネルのインスタンスのみがネットワークから削除されます";
App::$strings["Remove Account"] = "アカウントを削除";
App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "アカウントのパスワードを変更してから48時間以内にチャンネルを削除することはできません。";
App::$strings["Remove This Channel"] = "このチャンネルを削除";
App::$strings["This channel will be completely removed from the network. "] = "このチャネルはネットワークから完全に削除されます。";
App::$strings["Remove this channel and all its clones from the network"] = "このチャネルとそのすべてのクローンをネットワークから削除します";
App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "デフォルトでは、このハブにあるチャネルのインスタンスのみがネットワークから削除されます";
App::$strings["Remove Channel"] = "チャンネルを削除";
App::$strings["Authentication failed."] = "認証に失敗しました。";
App::$strings["Items tagged with: %s"] = "タグ付けされたアイテム: %s";
App::$strings["Search results for: %s"] = "%s検索結果";
App::$strings["No service class restrictions found."] = "サービスクラスの制限は見つかりませんでした。";
App::$strings["Not valid email."] = "無効なメール。";
App::$strings["Protected email address. Cannot change to that email."] = "保護されたメールアドレス。そのメールに変更できません。";
App::$strings["System failure storing new email. Please try again."] = "新しいメールの保存中にシステム障害が発生しました。もう一度試してください。";
App::$strings["Password verification failed."] = "パスワードの確認に失敗しました。";
App::$strings["Passwords do not match. Password unchanged."] = "パスワードが一致していません。パスワードは変更されていません。";
App::$strings["Empty passwords are not allowed. Password unchanged."] = "空のパスワードは許可されていません。パスワードは変更されていません。";
App::$strings["Password changed."] = "パスワード変更済み。";
App::$strings["Password update failed. Please try again."] = "パスワードの更新に失敗しました。もう一度試してください。";
App::$strings["Account Settings"] = "アカウント設定";
App::$strings["Current Password"] = "現在のパスワード";
App::$strings["Enter New Password"] = "新しいパスワードを入力してください";
App::$strings["Confirm New Password"] = "新しいパスワードを確認";
App::$strings["Leave password fields blank unless changing"] = "変更しない限り、パスワードフィールドは空白のままにしてください";
App::$strings["Email Address:"] = "電子メールアドレス:";
App::$strings["Remove this account including all its channels"] = "すべてのチャンネルを含むこのアカウントを削除します";
App::$strings["CalDAV Settings"] = "CalDAV設定";
App::$strings["Nobody except yourself"] = "自分以外は誰もいません";
App::$strings["Only those you specifically allow"] = "特に許可したもののみ";
App::$strings["Approved connections"] = "承認された接続";
App::$strings["Any connections"] = "すべての接続";
App::$strings["Anybody on this website"] = "このウェブサイトの誰でも";
App::$strings["Anybody in this network"] = "このネットワークの誰でも";
App::$strings["Anybody authenticated"] = "誰でも認証済み";
App::$strings["Anybody on the internet"] = "インターネット上の誰でも";
App::$strings["Publish your default profile in the network directory"] = "ネットワークディレクトリでデフォルトプロファイルを公開する";
App::$strings["Allow us to suggest you as a potential friend to new members?"] = "あなたを新しいメンバーの潜在的な友人として提案させてください。";
App::$strings["or"] = "または";
App::$strings["Your channel address is"] = "あなたのチャンネルのアドレスは";
App::$strings["Your files/photos are accessible via WebDAV at"] = "ファイル/写真には、WebDAVからアクセスできます";
App::$strings["Automatic membership approval"] = "自動会員承認";
App::$strings["Channel Settings"] = "チャンネル設定";
App::$strings["Basic Settings"] = "基本設定";
App::$strings["Your Timezone:"] = "あなたのタイムゾーン:";
App::$strings["Default Post Location:"] = "デフォルトの投稿場所:";
App::$strings["Geographical location to display on your posts"] = "投稿に表示する地理的な場所";
App::$strings["Use Browser Location:"] = "ブラウザの場所を使用:";
App::$strings["Adult Content"] = "成人コンテンツ";
App::$strings["This channel frequently or regularly publishes adult content. (Please tag any adult material and/or nudity with #NSFW)"] = "このチャンネルは頻繁または定期的にアダルトコンテンツを公開しています。 (成人向けの素材やヌードには#NSFWのタグを付けてください)";
App::$strings["Security and Privacy Settings"] = "セキュリティとプライバシーの設定";
App::$strings["Your permissions are already configured. Click to view/adjust"] = "権限はすでに構成されています。クリックして表示/調整";
App::$strings["Hide my online presence"] = "オンラインプレゼンスを非表示にする";
App::$strings["Prevents displaying in your profile that you are online"] = "あなたがオンラインであることをあなたのプロフィールに表示しないようにします";
App::$strings["Simple Privacy Settings:"] = "シンプルなプライバシー設定:";
App::$strings["Very Public - <em>extremely permissive (should be used with caution)</em>"] = "非常にパブリック-<em>非常に寛容です(注意して使用する必要があります)</em>";
App::$strings["Typical - <em>default public, privacy when desired (similar to social network permissions but with improved privacy)</em>"] = "標準-必要に応じてデフォルトのパブリック、プライバシー(ソーシャルネットワークのアクセス許可に似ていますが、プライバシーが改善されます)</em>";
App::$strings["Private - <em>default private, never open or public</em>"] = "非公開-デフォルトでは非公開、非公開または公開</ em>";
App::$strings["Blocked - <em>default blocked to/from everybody</em>"] = "ブロック済み-<em>デフォルトですべてのユーザーとの間でブロック</ em>";
App::$strings["Allow others to tag your posts"] = "他のユーザーがあなたの投稿にタグ付けできるようにします";
App::$strings["Often used by the community to retro-actively flag inappropriate content"] = "コミュニティが不適切なコンテンツを遡ってフラグを立てるためによく使用します";
App::$strings["Channel Permission Limits"] = "チャンネル許可の制限";
App::$strings["Expire other channel content after this many days"] = "この数日後に他のチャンネルコンテンツを期限切れにする";
App::$strings["0 or blank to use the website limit."] = "Webサイトの制限を使用する場合は0または空白。";
App::$strings["This website expires after %d days."] = "このウェブサイトは%d日後に有効期限が切れます。";
App::$strings["This website does not expire imported content."] = "このWebサイトは、インポートされたコンテンツを期限切れにしません。";
App::$strings["The website limit takes precedence if lower than your limit."] = "Webサイトの制限は、制限より低い場合に優先されます。";
App::$strings["Maximum Friend Requests/Day:"] = "最大友達リクエスト/日:";
App::$strings["May reduce spam activity"] = "スパム活動を減らす可能性があります";
App::$strings["Default Privacy Group"] = "デフォルトのプライバシーグループ";
App::$strings["Use my default audience setting for the type of object published"] = "公開されたオブジェクトのタイプにデフォルトのオーディエンス設定を使用します";
App::$strings["Default permissions category"] = "デフォルトの許可カテゴリ";
App::$strings["Maximum private messages per day from unknown people:"] = "不明な人からの1日あたりの最大プライベートメッセージ:";
App::$strings["Useful to reduce spamming"] = "スパムを減らすのに役立ちます";
App::$strings["By default post a status message when:"] = "デフォルトでは、次の場合にステータスメッセージを投稿します。";
App::$strings["accepting a friend request"] = "友達リクエストを受け入れたとき";
App::$strings["joining a forum/community"] = "フォーラム/コミュニティへ参加したとき";
App::$strings["making an <em>interesting</em> profile change"] = "<em>興味深い</em>プロファイルの変更を行ったとき";
App::$strings["Send a notification email when:"] = "次の場合に通知メールを送信します。";
App::$strings["You receive a connection request"] = "接続要求を受け取ったとき";
App::$strings["Your connections are confirmed"] = "接続が確認されたとき";
App::$strings["Someone writes on your profile wall"] = "誰かがあなたのプロフィールウォールに書き込んだとき";
App::$strings["Someone writes a followup comment"] = "誰かがフォローアップコメントを書いたとき";
App::$strings["You receive a private message"] = "プライベートメッセージを受け取ったとき";
App::$strings["You receive a friend suggestion"] = "友達の提案を受け取ったとき";
App::$strings["You are tagged in a post"] = "あなたが投稿でタグ付けされたとき";
App::$strings["You are poked/prodded/etc. in a post"] = "あなたの投稿にpokeやproddedをされたとき";
App::$strings["Someone likes your post/comment"] = "誰かがあなたの投稿/コメントをいいね!したとき";
App::$strings["Show visual notifications including:"] = "以下を含む視覚的な通知を表示します。";
App::$strings["Unseen stream activity"] = "未読のストリーム活動";
App::$strings["Unseen channel activity"] = "未読のチャンネルアクティビティ";
App::$strings["Unseen private messages"] = "未読のプライベートメッセージ";
App::$strings["Recommended"] = "お勧め";
App::$strings["Upcoming events"] = "今後のイベント";
App::$strings["Events today"] = "今日のイベント";
App::$strings["Upcoming birthdays"] = "今後の誕生日";
App::$strings["Not available in all themes"] = "テーマは利用できません";
App::$strings["System (personal) notifications"] = "システム(個人)通知";
App::$strings["System info messages"] = "システム情報メッセージ";
App::$strings["System critical alerts"] = "システムクリティカルアラート";
App::$strings["New connections"] = "新しい接続";
App::$strings["System Registrations"] = "システム登録";
App::$strings["Unseen shared files"] = "未確認の共有ファイル";
App::$strings["Unseen public stream activity"] = "未確認の公開ストリームアクティビティ";
App::$strings["Unseen likes and dislikes"] = "未確認の好き嫌い";
App::$strings["Unseen forum posts"] = "未確認のフォーラム投稿";
App::$strings["Email notification hub (hostname)"] = "電子メール通知ハブ(ホスト名)";
App::$strings["If your channel is mirrored to multiple hubs, set this to your preferred location. This will prevent duplicate email notifications. Example: %s"] = "チャンネルが複数のハブにミラーリングされている場合、これを好みの場所に設定します。これにより、電子メール通知の重複が防止されます。例: %s";
App::$strings["Show new wall posts, private messages and connections under Notices"] = "お知らせの下に新しい壁の投稿、プライベートメッセージ、接続を表示します";
App::$strings["Notify me of events this many days in advance"] = "この数日前にイベントを通知してください";
App::$strings["Must be greater than 0"] = "0より大きくなければなりません";
App::$strings["Advanced Account/Page Type Settings"] = "アカウント/ページタイプの詳細設定";
App::$strings["Change the behaviour of this account for special situations"] = "特別な状況でこのアカウントの動作を変更する";
App::$strings["Miscellaneous Settings"] = "その他の設定";
App::$strings["Default photo upload folder"] = "デフォルトの写真アップロードフォルダ";
App::$strings["%Y - current year, %m -  current month"] = "%Y-現在の年、%m-現在の月";
App::$strings["Default file upload folder"] = "デフォルトのファイルアップロードフォルダ";
App::$strings["Remove this channel."] = "このチャンネルを削除します。";
App::$strings["Max height of content (in pixels)"] = "コンテンツの最大の高さ(ピクセル単位)";
App::$strings["Click to expand content exceeding this height"] = "この高さを超えるコンテンツはクリックして展開します";
App::$strings["Personal menu to display in your channel pages"] = "チャンネルページに表示する個人メニュー";
App::$strings["Channel Home Settings"] = "チャンネルのホーム設定";
App::$strings["Connections Settings"] = "接続設定";
App::$strings["Settings saved."] = "保存された設定。";
App::$strings["Settings saved. Reload page please."] = "設定は保存されました。ページをリロードしてください。";
App::$strings["Conversation Settings"] = "会話設定";
App::$strings["Directory Settings"] = "ディレクトリ設定";
App::$strings["%s - (Experimental)"] = "%s (実験的)";
App::$strings["Display Settings"] = "画面表示の設定";
App::$strings["Theme Settings"] = "テーマ設定";
App::$strings["Custom Theme Settings"] = "テーマのカスタマイズ設定";
App::$strings["Content Settings"] = "コンテンツ設定";
App::$strings["Display Theme:"] = "テーマ:";
App::$strings["Select scheme"] = "スキームを選択";
App::$strings["Preload images before rendering the page"] = "ページをレンダリングする前に画像をプリロードする";
App::$strings["The subjective page load time will be longer but the page will be ready when displayed"] = "主観的なページの読み込み時間は長くなりますが、表示されるとページの準備が整います";
App::$strings["Enable user zoom on mobile devices"] = "モバイルデバイスでユーザーズームを有効にする";
App::$strings["Update browser every xx seconds"] = "xx秒ごとに画面を更新する";
App::$strings["Minimum of 10 seconds, no maximum"] = "最小10秒、最大なし";
App::$strings["Maximum number of conversations to load at any time:"] = "常にロードする会話の最大数:";
App::$strings["Maximum of 100 items"] = "最大100アイテム";
App::$strings["Show emoticons (smilies) as images"] = "絵文字(スマイリー)を画像として表示する";
App::$strings["Provide channel menu in navigation bar"] = "ナビゲーションバーにチャンネルメニューを表示する";
App::$strings["Default: channel menu located in app menu"] = "デフォルト:アプリメニューにあるチャンネルメニュー";
App::$strings["Manual conversation updates"] = "手動会話の更新";
App::$strings["Default is on, turning this off may increase screen jumping"] = "デフォルトはオンです。これをオフにすると、画面ジャンプが増加する場合があります";
App::$strings["Link post titles to source"] = "投稿のタイトルをソースにリンクする";
App::$strings["New Member Links"] = "新規会員リンク";
App::$strings["Display new member quick links menu"] = "新しいメンバーのクイックリンクメニューを表示する";
App::$strings["Editor Settings"] = "エディター設定";
App::$strings["Events Settings"] = "イベント設定";
App::$strings["No feature settings configured"] = "機能設定が構成されていません";
App::$strings["Addon Settings"] = "アドオン設定";
App::$strings["Please save/submit changes to any panel before opening another."] = "別のパネルを開く前に、パネルの変更を保存/送信してください。";
App::$strings["Additional Features"] = "追加機能";
App::$strings["Channel Manager Settings"] = "チャネルマネージャーの設定";
App::$strings["Stream Settings"] = "ストリーム設定";
App::$strings["Photos Settings"] = "写真の設定";
App::$strings["Profiles Settings"] = "プロファイル設定";
App::$strings["\$Projectname Server - Setup"] = "$ Projectnameサーバー-セットアップ";
App::$strings["Could not connect to database."] = "データベースに接続できません。";
App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "指定されたサイトURLに接続できませんでした。 SSL証明書またはDNSの問題の可能性。";
App::$strings["Could not create table."] = "テーブルを作成できませんでした。";
App::$strings["Your site database has been installed."] = "サイトデータベースがインストールされました。";
App::$strings["You may need to import the file \"install/schema_xxx.sql\" manually using a database client."] = "データベースクライアントを使用して、手動でファイル\"install / schema_xxx.sql \"をインポートする必要がある場合があります。";
App::$strings["Please see the file \"install/INSTALL.txt\"."] = "ファイル「install / INSTALL.txt」を参照してください。";
App::$strings["System check"] = "システムチェック";
App::$strings["Check again"] = "再確認";
App::$strings["Database connection"] = "データベース接続";
App::$strings["In order to install \$Projectname we need to know how to connect to your database."] = "\$Projectnameをインストールするには、データベースへの接続方法を知る必要があります。";
App::$strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "これらの設定について質問がある場合は、ホスティングプロバイダーまたはサイト管理者にお問い合わせください。";
App::$strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "以下で指定するデータベースはすでに存在している必要があります。存在しない場合は、続行する前に作成してください。";
App::$strings["Database Server Name"] = "データベースサーバー名";
App::$strings["Default is 127.0.0.1"] = "デフォルトは127.0.0.1";
App::$strings["Database Port"] = "データベースポート";
App::$strings["Communication port number - use 0 for default"] = "通信ポート番号 - 0でデフォルト値を使用します。";
App::$strings["Database Login Name"] = "データベースのログイン名";
App::$strings["Database Login Password"] = "データベースログインパスワード";
App::$strings["Database Name"] = "データベース名";
App::$strings["Database Type"] = "データベースの種類";
App::$strings["Site administrator email address"] = "サイト管理者のメールアドレス";
App::$strings["Your account email address must match this in order to use the web admin panel."] = "ウェブ管理パネルを使用するには、アカウントのメールアドレスがこれと一致する必要があります。";
App::$strings["Website URL"] = "ウェブサイトのURL";
App::$strings["Please use SSL (https) URL if available."] = "可能な場合は、SSL(https)URLを使用してください。";
App::$strings["Please select a default timezone for your website"] = "ウェブサイトのデフォルトのタイムゾーンを選択してください";
App::$strings["Site settings"] = "サイト設定";
App::$strings["PHP version 7.1 or greater is required."] = "PHPバージョン7.1以降が必要です。";
App::$strings["PHP version"] = "PHPバージョン";
App::$strings["Could not find a command line version of PHP in the web server PATH."] = "WebサーバーPATHにコマンドラインバージョンのPHPが見つかりませんでした。";
App::$strings["If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron."] = "PHPのコマンドラインバージョンがサーバーにインストールされていない場合、cronを介してバックグラウンドポーリングを実行することはできません。";
App::$strings["PHP executable path"] = "PHP実行可能パス";
App::$strings["Enter full path to php executable. You can leave this blank to continue the installation."] = "php実行可能ファイルへのフルパスを入力します。これを空白のままにしてインストールを続行できます。";
App::$strings["Command line PHP"] = "コマンドラインPHP";
App::$strings["Unable to check command line PHP, as shell_exec() is disabled. This is required."] = "shell_exec()が無効になっているため、コマンドラインPHPをチェックできません。これは必須です。";
App::$strings["The command line version of PHP on your system does not have \"register_argc_argv\" enabled."] = "ご使用のシステムのコマンドラインバージョンのPHPでは、\"register_argc_argv \"が有効になっていません。";
App::$strings["This is required for message delivery to work."] = "これは、メッセージ配信が機能するために必要です。";
App::$strings["PHP register_argc_argv"] = "PHP register_argc_argv";
App::$strings["This is not sufficient to upload larger images or files. You should be able to upload at least 4 MB at once."] = "これは、大きな画像やファイルをアップロードするには不十分です。少なくとも4 MBを一度にアップロードできる必要があります。";
App::$strings["Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once."] = "アップロードの最大許容合計サイズは%s設定されています。アップロードする1つのファイルの最大サイズは%s設定されています。一度に最大%dファイルをアップロードできます。";
App::$strings["You can adjust these settings in the server php.ini file."] = "サーバーのphp.iniファイルでこれらの設定を調整できます。";
App::$strings["PHP upload limits"] = "PHPアップロード制限";
App::$strings["Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys"] = "エラー:このシステムの\"openssl_pkey_new \"関数は暗号化キーを生成できません";
App::$strings["If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"."] = "Windowsで実行している場合は、「http://www.php.net/manual/en/openssl.installation.php \」を参照してください。";
App::$strings["Generate encryption keys"] = "暗号化キーを生成する";
App::$strings["libCurl PHP module"] = "libCurl PHPモジュール";
App::$strings["GD graphics PHP module"] = "GDグラフィックスPHPモジュール";
App::$strings["OpenSSL PHP module"] = "OpenSSL PHPモジュール";
App::$strings["PDO database PHP module"] = "PDOデータベースPHPモジュール";
App::$strings["mb_string PHP module"] = "mb_string PHPモジュール";
App::$strings["xml PHP module"] = "XML PHPモジュール";
App::$strings["zip PHP module"] = "zip PHPモジュール";
App::$strings["Apache mod_rewrite module"] = "Apache mod_rewriteモジュール";
App::$strings["Error: Apache webserver mod-rewrite module is required but not installed."] = "エラー:Apache webserver mod-rewriteモジュールが必要ですが、インストールされていません。";
App::$strings["exec"] = "幹部";
App::$strings["Error: exec is required but is either not installed or has been disabled in php.ini"] = "エラー:execが必要ですが、インストールされていないか、php.iniで無効にされています";
App::$strings["shell_exec"] = "shell_exec";
App::$strings["Error: shell_exec is required but is either not installed or has been disabled in php.ini"] = "エラー:shell_execが必要ですが、インストールされていないか、php.iniで無効にされています";
App::$strings["Error: libCURL PHP module required but not installed."] = "エラー:libCURL PHPモジュールが必要ですが、インストールされていません。";
App::$strings["Error: GD PHP module with JPEG support or ImageMagick graphics library required but not installed."] = "エラー:JPEGサポートまたはImageMagickグラフィックライブラリを備えたGD PHPモジュールが必要ですが、インストールされていません。";
App::$strings["Error: openssl PHP module required but not installed."] = "エラー:openssl PHPモジュールが必要ですが、インストールされていません。";
App::$strings["Error: PDO database PHP module missing a driver for either mysql or pgsql."] = "エラー:PDOデータベースPHPモジュールにmysqlまたはpgsqlのいずれかのドライバーがありません。";
App::$strings["Error: PDO database PHP module required but not installed."] = "エラー:PDOデータベースPHPモジュールが必要ですが、インストールされていません。";
App::$strings["Error: mb_string PHP module required but not installed."] = "エラー:mb_string PHPモジュールが必要ですが、インストールされていません。";
App::$strings["Error: xml PHP module required for DAV but not installed."] = "エラー:DAVにはXML PHPモジュールが必要ですが、インストールされていません。";
App::$strings["Error: zip PHP module required but not installed."] = "エラー:zip PHPモジュールが必要ですが、インストールされていません。";
App::$strings[".htconfig.php is writable"] = ".htconfig.phpは書き込み可能です";
App::$strings["The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so."] = "Webインストーラーは、Webサーバーの最上位フォルダーに\"。htconfig.php \"というファイルを作成できる必要がありますが、作成できません。";
App::$strings["This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can."] = "これはほとんどの場合、Webサーバーがフォルダーにファイルを書き込むことができない場合でも、許可にできる設定です。";
App::$strings["Please see install/INSTALL.txt for additional information."] = "詳細については、install / INSTALL.txtを参照してください。";
App::$strings["This software uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "このソフトウェアは、Smarty3テンプレートエンジンを使用してWebビューをレンダリングします。 Smarty3はテンプレートをPHPにコンパイルして、レンダリングを高速化します。";
App::$strings["In order to store these compiled templates, the web server needs to have write access to the directory %s under the top level web folder."] = "これらのコンパイル済みテンプレートを保存するには、Webサーバーが最上位のWebフォルダー%s下のディレクトリへの書き込みアクセス権を持っている必要があります。";
App::$strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "Webサーバーを実行するユーザー(www-dataなど)がこのフォルダーへの書き込みアクセス権を持っていることを確認してください。";
App::$strings["Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains."] = "注:セキュリティ対策として、Webサーバーに含まれるテンプレートファイル(.tpl)ではなく、 %sへの書き込みアクセスを許可する必要があります。";
App::$strings["%s is writable"] = "%sは書き込み可能です";
App::$strings["This software uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the top level web folder"] = "このソフトウェアは、ストアディレクトリを使用して、アップロードされたファイルを保存します。 Webサーバーには、最上位Webフォルダーの下のストアディレクトリへの書き込みアクセスが必要です。";
App::$strings["store is writable"] = "ストアは書き込み可能です";
App::$strings["SSL certificate cannot be validated. Fix certificate or disable https access to this site."] = "SSL証明書を検証できません。証明書を修正するか、このサイトへのhttpsアクセスを無効にします。";
App::$strings["If you have https access to your website or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!"] = "Webサイトへのhttpsアクセスがある場合、またはTCPポート443(https:ポート)への接続を許可する場合は、ブラウザーで有効な証明書を使用する必要があります。自己署名証明書を使用してはいけません!";
App::$strings["This restriction is incorporated because public posts from you may for example contain references to images on your own hub."] = "あなたからの一般公開の投稿には、たとえばあなた自身のハブ上の画像への参照が含まれている可能性があるため、この制限が組み込まれています。";
App::$strings["If your certificate is not recognized, members of other sites (who may themselves have valid certificates) will get a warning message on their own site complaining about security issues."] = "証明書が認識されない場合、他のサイトのメンバー(自分自身が有効な証明書を持っている可能性があります)は、自分のサイトでセキュリティの問題について不平を言っている警告メッセージを受け取ります。";
App::$strings["This can cause usability issues elsewhere (not just on your own site) so we must insist on this requirement."] = "これにより、他の場所(ユーザのサイトだけでなく)でユーザビリティの問題が発生する可能性があるため、この要件を主張する必要があります。";
App::$strings["Providers are available that issue free certificates which are browser-valid."] = "ブラウザで有効な無料の証明書を発行するプロバイダーが利用可能です。";
App::$strings["If you are confident that the certificate is valid and signed by a trusted authority, check to see if you have failed to install an intermediate cert. These are not normally required by browsers, but are required for server-to-server communications."] = "証明書が有効であり、信頼できる機関によって署名されていると確信している場合は、中間証明書のインストールに失敗したかどうかを確認してください。これらは通常ブラウザには必要ありませんが、サーバー間の通信には必要です。";
App::$strings["SSL certificate validation"] = "SSL証明書の検証";
App::$strings["Url rewrite in .htaccess is not working. Check your server configuration.Test: "] = ".htaccessのURL書き換えが機能していません。サーバーの構成を確認します。テスト:";
App::$strings["Url rewrite is working"] = "URLの書き換えが機能しています";
App::$strings["The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root."] = "データベース構成ファイル\"。htconfig.php \"を書き込めませんでした。同封のテキストを使用して、Webサーバーのルートに構成ファイルを作成してください。";
App::$strings["Errors encountered creating database tables."] = "データベーステーブルの作成中にエラーが発生しました。";
App::$strings["<h1>What next?</h1>"] = "<h1>次にすること</h1>";
App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "重要:ポーラーのスケジュールされたタスクを[手動で]設定する必要があります。";
App::$strings["Post repeated"] = "繰り返し投稿";
App::$strings["Files: shared with me"] = "ファイル:私と共有";
App::$strings["NEW"] = "新しい";
App::$strings["Last Modified"] = "最終更新日";
App::$strings["Remove all files"] = "すべてのファイルを削除する";
App::$strings["Remove this file"] = "このファイルを削除";
App::$strings["About this site"] = "このサイトについて";
App::$strings["Site Name"] = "サイト名";
App::$strings["Administrator"] = "管理者";
App::$strings["Software and Project information"] = "ソフトウェアおよびプロジェクト情報";
App::$strings["This site is powered by \$Projectname"] = "このサイトは$ Projectnameを使用しています";
App::$strings["Federated and decentralised networking and identity services provided by Zot"] = "Zotが提供する統合および分散型のネットワークおよびIDサービス";
App::$strings["Additional federated transport protocols:"] = "追加の統合トランスポートプロトコル:";
App::$strings["Version %s"] = "バージョン: %s";
App::$strings["Project homepage"] = "プロジェクトのホームページ";
App::$strings["Developer homepage"] = "開発者ホームページ";
App::$strings["Failed to create source. No channel selected."] = "ソースの作成に失敗しました。チャンネルが選択されていません。";
App::$strings["Source created."] = "ソースが作成されました。";
App::$strings["Source updated."] = "ソースが更新されました。";
App::$strings["Sources App"] = "ソースアプリ";
App::$strings["Automatically import channel content from other channels or feeds"] = "他のチャンネルまたはフィードからチャンネルコンテンツを自動的にインポートする";
App::$strings["*"] = "*";
App::$strings["Manage remote sources of content for your channel."] = "チャンネルのコンテンツのリモートソースを管理します。";
App::$strings["New Source"] = "新しいソース";
App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "次のチャネルからすべてまたは選択したコンテンツをこのチャネルにインポートし、チャネル設定に従って配信します。";
App::$strings["Only import content with these words (one per line)"] = "これらの単語を含むコンテンツのみをインポートします(1行に1つ)";
App::$strings["Leave blank to import all public content"] = "すべての公開コンテンツをインポートするには空白のままにします";
App::$strings["Channel Name"] = "チャンネル名";
App::$strings["Add the following categories to posts imported from this source (comma separated)"] = "このソースからインポートされた投稿に次のカテゴリを追加します(カンマ区切り)";
App::$strings["Resend posts with this channel as author"] = "このチャンネルを著者として投稿を再送信する";
App::$strings["Copyrights may apply"] = "著作権が適用される場合があります";
App::$strings["Source not found."] = "ソースが見つかりません。";
App::$strings["Edit Source"] = "ソースを編集";
App::$strings["Delete Source"] = "ソースを削除";
App::$strings["Source removed"] = "ソースを削除しました";
App::$strings["Unable to remove source."] = "ソースを削除できません。";
App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$sは%2\$sの%3\$sをフォローしています";
App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$sが%2\$sの%3\$sのフォローを停止しました";
App::$strings["Suggest Channels App"] = "チャンネルアプリの提案";
App::$strings["Suggestions for channels in the \$Projectname network you might be interested in"] = "興味あるかも?";
App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "利用可能な提案はありません。新しいサイトの場合は、24時間後にもう一度お試しください。";
App::$strings["Ignore/Hide"] = "無視/非表示";
App::$strings["Post not found."] = "投稿が見つかりません。";
App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$sが%2\$sの%3\$sに%4\$sとタグを付けました";
App::$strings["Tag removed"] = "タグを削除しました";
App::$strings["Remove Item Tag"] = "アイテムタグを削除";
App::$strings["Select a tag to remove: "] = "削除するタグを選択:";
App::$strings["Thing updated"] = "更新されたもの";
App::$strings["Object store: failed"] = "オブジェクトストア:失敗";
App::$strings["Thing added"] = "モノは追加されました。";
App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s";
App::$strings["Show Thing"] = "ものを見る";
App::$strings["item not found."] = "アイテムが見つかりません。";
App::$strings["Edit Thing"] = "ものを編集";
App::$strings["Select a profile"] = "プロフィールを選択";
App::$strings["Post an activity"] = "アクティビティを投稿する";
App::$strings["Only sends to viewers of the applicable profile"] = "該当するプロファイルの閲覧者にのみ送信します";
App::$strings["Name of thing e.g. something"] = "何かの名前、たとえば何か";
App::$strings["URL of thing (optional)"] = "モノのURL(オプション)";
App::$strings["URL for photo of thing (optional)"] = "モノの写真のURL(オプション)";
App::$strings["Add Thing to your Profile"] = "プロフィールにモノを追加";
App::$strings["This channel is limited to %d tokens"] = "このチャンネルは%dトークンに制限されています";
App::$strings["Name and Password are required."] = "名前とパスワードが必要です。";
App::$strings["Token saved."] = "トークンを保存しました。";
App::$strings["Guest Access App"] = "ゲストアクセスアプリ";
App::$strings["Create access tokens so that non-members can access private content"] = "非メンバーがプライベートコンテンツにアクセスできるようにアクセストークンを作成する";
App::$strings["Use this form to create temporary access identifiers to share things with non-members. These identities may be used in Access Control Lists and visitors may login using these credentials to access private content."] = "このフォームを使用して、一時的なアクセス識別子を作成し、非メンバーと物事を共有します。これらのIDはアクセス制御リストで使用でき、訪問者はこれらの資格情報を使用してログインしてプライベートコンテンツにアクセスできます。";
App::$strings["You may also provide <em>dropbox</em> style access links to friends and associates by adding the Login Password to any specific site URL as shown. Examples:"] = "示されているように、特定のサイトURLにログインパスワードを追加することにより、友人や仲間に<em> dropbox </em>スタイルのアクセスリンクを提供することもできます。例:";
App::$strings["Guest Access Tokens"] = "ゲストアクセストークン";
App::$strings["Login Name"] = "ログイン名";
App::$strings["Login Password"] = "ログインパスワード";
App::$strings["Expires (yyyy-mm-dd)"] = "有効期限(yyyy-mm-dd)";
App::$strings["Channel Export App"] = "チャンネルエクスポートアプリ";
App::$strings["Export your channel"] = "チャンネルをエクスポートする";
App::$strings["Export Channel"] = "輸出チャンネル";
App::$strings["Export your basic channel information to a file.  This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "基本的なチャネル情報をファイルにエクスポートします。これは、接続、権限、プロファイル、および基本データのバックアップとして機能し、データを新しいサーバーハブにインポートするために使用できますが、コンテンツは含まれません。";
App::$strings["Export Content"] = "コンテンツをエクスポート";
App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large.  Please be patient - it may take several minutes for this download to begin."] = "チャンネル情報と最近のコンテンツをJSONバックアップにエクスポートし、別のサーバーハブに復元またはインポートできます。これにより、すべての接続、権限、プロファイルデータ、および数か月分の投稿がバックアップされます。このファイルは非常に大きい場合があります。しばらくお待ちください。このダウンロードが開始されるまで数分かかる場合があります。";
App::$strings["Export your posts from a given year."] = "特定の年の投稿をエクスポートします。";
App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "特定の年または月の投稿と会話をエクスポートすることもできます。ブラウザのロケーションバーで日付を調整して、他の日付を選択します。エクスポートが失敗した場合(サーバーハブのメモリ不足が原因である可能性があります)、より制限された日付範囲の選択を再試行してください。";
App::$strings["To select all posts for a given year, such as this year, visit <a href=\"%1\$s\">%2\$s</a>"] = "今年など、特定の年のすべての投稿を選択するには、<a href=\" %1\$s \"> %2\$s </a>にアクセスしてください";
App::$strings["To select all posts for a given month, such as January of this year, visit <a href=\"%1\$s\">%2\$s</a>"] = "今年の1月など、特定の月のすべての投稿を選択するには、<a href=\"%1\$s\">%2\$s</a>にアクセスしてください";
App::$strings["These content files may be imported or restored by visiting <a href=\"%1\$s\">%2\$s</a> on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "これらのコンテンツファイルは、チャンネルを含むサイトで<a href=\" %1\$s \"> %2\$s </a>に%1\$sしてインポートまたは復元できます。最良の結果を得るには、これらを日付順に(最も古いものから)インポートまたは復元してください。";
App::$strings["No connections."] = "接続なし。";
App::$strings["Visit %s's profile [%s]"] = "%sのプロフィール[%s]にアクセスしています。";
App::$strings["View Connections"] = "接続を表示";
App::$strings["item"] = "項目";
App::$strings["Webpages App"] = "ウェブページアプリ";
App::$strings["Provide managed web pages on your channel"] = "チャンネルで管理されたWebページを提供する";
App::$strings["Import Webpage Elements"] = "Webページ要素をインポートする";
App::$strings["Import selected"] = "選択したインポート";
App::$strings["Export Webpage Elements"] = "Webページ要素のエクスポート";
App::$strings["Export selected"] = "選択したエクスポート";
App::$strings["Actions"] = "行動";
App::$strings["Page Link"] = "ページリンク";
App::$strings["Page Title"] = "ページタイトル";
App::$strings["Invalid file type."] = "無効なファイルタイプ。";
App::$strings["Error opening zip file"] = "zipファイルを開く際のエラー";
App::$strings["Invalid folder path."] = "無効なフォルダーパス。";
App::$strings["No webpage elements detected."] = "Webページ要素は検出されませんでした。";
App::$strings["Import complete."] = "インポートが完了しました。";
App::$strings["Profile Unavailable."] = "プロファイルを利用できません。";
App::$strings["Wiki App"] = "Wikiアプリ";
App::$strings["Provide a wiki for your channel"] = "チャンネルのウィキを提供する";
App::$strings["Invalid channel"] = "無効なチャンネル";
App::$strings["Error retrieving wiki"] = "Wikiの取得エラー";
App::$strings["Error creating zip file export folder"] = "zipファイルエクスポートフォルダーの作成エラー";
App::$strings["Error downloading wiki: "] = "Wikiのダウンロードエラー:";
App::$strings["Download"] = "ダウンロード";
App::$strings["Wiki name"] = "ウィキ名";
App::$strings["Content type"] = "コンテンツの種類";
App::$strings["Type"] = "タイプ";
App::$strings["Any&nbsp;type"] = "任意のタイプ";
App::$strings["Lock content type"] = "コンテンツタイプをロックする";
App::$strings["Create a status post for this wiki"] = "このウィキのステータスポストを作成する";
App::$strings["Edit Wiki Name"] = "Wiki名を編集";
App::$strings["Wiki not found"] = "ウィキが見つかりません";
App::$strings["Rename page"] = "ページの名前を変更";
App::$strings["Error retrieving page content"] = "ページコンテンツの取得エラー";
App::$strings["New page"] = "新しいページ";
App::$strings["Revision Comparison"] = "リビジョン比較";
App::$strings["Short description of your changes (optional)"] = "変更の簡単な説明(オプション)";
App::$strings["Source"] = "ソース";
App::$strings["New page name"] = "新しいページ名";
App::$strings["Embed image from photo albums"] = "フォトアルバムから画像を埋め込む";
App::$strings["History"] = "歴史";
App::$strings["Error creating wiki. Invalid name."] = "Wikiの作成エラー。無効な名前。";
App::$strings["A wiki with this name already exists."] = "この名前のウィキは既に存在します。";
App::$strings["Wiki created, but error creating Home page."] = "Wikiは作成されましたが、ホームページの作成中にエラーが発生しました。";
App::$strings["Error creating wiki"] = "Wikiの作成エラー";
App::$strings["Error updating wiki. Invalid name."] = "Wikiの更新エラー。無効な名前。";
App::$strings["Error updating wiki"] = "Wikiの更新エラー";
App::$strings["Wiki delete permission denied."] = "Wikiの削除許可が拒否されました。";
App::$strings["Error deleting wiki"] = "Wikiの削除エラー";
App::$strings["New page created"] = "新しいページが作成されました";
App::$strings["Cannot delete Home"] = "ホームを削除できません";
App::$strings["Current Revision"] = "現在の改訂";
App::$strings["Selected Revision"] = "選択されたリビジョン";
App::$strings["You must be authenticated."] = "認証されている必要があります。";
App::$strings["Xchan Lookup"] = "Xchan検索";
App::$strings["Lookup xchan beginning with (or webbie): "] = "xchan(またはwebbie)を検索:";
App::$strings["parent"] = "親";
App::$strings["Principal"] = "主要な";
App::$strings["Addressbook"] = "住所録";
App::$strings["Schedule Inbox"] = "受信トレイのスケジュール";
App::$strings["Schedule Outbox"] = "送信トレイのスケジュール";
App::$strings["Total"] = "合計";
App::$strings["Shared"] = "共有";
App::$strings["Add Files"] = "追加ファイル";
App::$strings["You are using %1\$s of your available file storage."] = "使用可能なファイルストレージ%1\$sを使用しています。";
App::$strings["You are using %1\$s of %2\$s available file storage. (%3\$s&#37;)"] = "%1\$sの%2\$s使用可能なファイルストレージを使用しています。(%3\$s&#37;)";
App::$strings["WARNING:"] = "警告:";
App::$strings["Create new folder"] = "新しいフォルダーを作成";
App::$strings["Upload file"] = "ファイルをアップロードする";
App::$strings["Drop files here to immediately upload"] = "ここにファイルをドロップして、すぐにアップロードします";
App::$strings["__ctx:widget__ Activity"] = "アクティビティ";
App::$strings["Show posts related to the %s privacy group"] = "%sプライバシーグループに関連する投稿を表示";
App::$strings["Show my privacy groups"] = "自分のプライバシーグループを表示する";
App::$strings["Show posts to this forum"] = "このフォーラムへの投稿を表示";
App::$strings["Forums"] = "フォーラム";
App::$strings["Show forums"] = "フォーラムを表示";
App::$strings["Starred Posts"] = "スター付き投稿";
App::$strings["Show posts that I have starred"] = "スターを付けた投稿を表示";
App::$strings["Personal Posts"] = "個人的な投稿";
App::$strings["Show posts that mention or involve me"] = "自分に言及または関与している投稿を表示する";
App::$strings["Show posts that I have filed to %s"] = "%s提出した投稿を表示";
App::$strings["Show filed post categories"] = "提出済みの投稿カテゴリを表示";
App::$strings["Panel search"] = "パネル検索";
App::$strings["Filter by name"] = "名前で絞り込む";
App::$strings["Remove active filter"] = "アクティブなフィルターを削除";
App::$strings["ters"] = "投稿のフィルタリング";
App::$strings["Commented Date"] = "最新のコメント順";
App::$strings["Order by last commented date"] = "コメントが新しい投稿の順に並べます。";
App::$strings["Posted Date"] = "投稿日時順";
App::$strings["Order by last posted date"] = "投稿本体の時間が新しい順に並べます。";
App::$strings["Date Unthreaded"] = "スレッド化しない";
App::$strings["Order unthreaded by date"] = "投稿とコメントを分けずに最新の順に一緒に並べます。";
App::$strings["Stream Order"] = "投稿の並べ替え";
App::$strings["Member registrations waiting for confirmation"] = "確認待ちの会員登録";
App::$strings["Inspect queue"] = "待機中のキュー";
App::$strings["DB updates"] = "DBアップデート";
App::$strings["Addon Features"] = "アドオンの機能";
App::$strings["Refresh"] = "更新";
App::$strings["App Collections"] = "アプリコレクション";
App::$strings["Installed apps"] = "インストール済みアプリ";
App::$strings["Archives"] = "アーカイブ";
App::$strings["Bookmarked Chatrooms"] = "ブックマーク済みチャットルーム";
App::$strings["Select Channel"] = "チャンネルの選択";
App::$strings["Read-write"] = "読み書き";
App::$strings["Read-only"] = "読み取り専用";
App::$strings["My Calendars"] = "私のカレンダー";
App::$strings["Shared Calendars"] = "共有カレンダー";
App::$strings["Share this calendar"] = "このカレンダーを共有する";
App::$strings["Calendar name and color"] = "カレンダーの名前と色";
App::$strings["Create new calendar"] = "新しいカレンダーを作成";
App::$strings["Calendar Name"] = "カレンダー名";
App::$strings["Calendar Tools"] = "カレンダーツール";
App::$strings["Import calendar"] = "カレンダーをインポート";
App::$strings["Select a calendar to import to"] = "インポートするカレンダーを選択します";
App::$strings["Addressbooks"] = "アドレス帳";
App::$strings["Addressbook name"] = "アドレス帳名";
App::$strings["Create new addressbook"] = "新しいアドレス帳を作成";
App::$strings["Addressbook Name"] = "アドレス帳名";
App::$strings["Addressbook Tools"] = "アドレス帳ツール";
App::$strings["Import addressbook"] = "アドレス帳をインポート";
App::$strings["Select an addressbook to import to"] = "インポートするアドレス帳を選択します";
App::$strings["Overview"] = "概要";
App::$strings["Chat Members"] = "チャットメンバー";
App::$strings["Received Messages"] = "受信したメッセージ";
App::$strings["Sent Messages"] = "メッセージを送った";
App::$strings["Conversations"] = "会話";
App::$strings["No messages."] = "メッセージはありません。";
App::$strings["Delete conversation"] = "会話を削除";
App::$strings["Click to show more"] = "クリックして詳細を表示";
App::$strings["Events Tools"] = "イベントツール";
App::$strings["Export Calendar"] = "カレンダーをエクスポート";
App::$strings["Import Calendar"] = "カレンダーをインポート";
App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "%2$.0fの%1$.0fが接続を許可されています。";
App::$strings["Add New Connection"] = "新しい接続を追加";
App::$strings["Enter channel address"] = "チャンネルのアドレスを入力してください";
App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "例:bob @ example.com、https://example.com/barbara";
App::$strings["HQ Control Panel"] = "HQコントロールパネル";
App::$strings["Create a new post"] = "新しい投稿を作成する";
App::$strings["Private Mail Menu"] = "プライベートメールメニュー";
App::$strings["Combined View"] = "複合ビュー";
App::$strings["Inbox"] = "受信トレイ";
App::$strings["Outbox"] = "送信トレイ";
App::$strings["New Message"] = "新しいメッセージ";
App::$strings["Profile Creation"] = "プロファイル作成";
App::$strings["Upload profile photo"] = "プロフィール写真をアップロード";
App::$strings["Upload cover photo"] = "カバー写真をアップロード";
App::$strings["Find and Connect with others"] = "他の人を見つけてつながる";
App::$strings["View the directory"] = "ディレクトリを表示する";
App::$strings["Manage your connections"] = "接続を管理する";
App::$strings["Communicate"] = "通信する";
App::$strings["View your channel homepage"] = "チャンネルのホームページを表示する";
App::$strings["View your network stream"] = "ネットワークストリームを表示する";
App::$strings["Documentation"] = "説明書";
App::$strings["Missing Features?"] = "機能がありませんか?";
App::$strings["Pin apps to navigation bar"] = "アプリをナビゲーションバーに固定する";
App::$strings["Install more apps"] = "さらにアプリをインストールする";
App::$strings["View public stream"] = "公開ストリームを表示";
App::$strings["New Network Activity"] = "ホーム";
App::$strings["New Network Activity Notifications"] = "ホームへの通知";
App::$strings["View your network activity"] = "ホームを見る";
App::$strings["Mark all notifications read"] = "全部既読する";
App::$strings["Show new posts only"] = "新しい投稿のみ表示";
App::$strings["Filter by name or address"] = "名前やアドレスでフィルタリング";
App::$strings["New Home Activity"] = "自分への新しいアクティビティ";
App::$strings["New Home Activity Notifications"] = "自分への新しいアクティビティ通知";
App::$strings["View your home activity"] = "自分の投稿を見る";
App::$strings["Mark all notifications seen"] = "全部既読にする";
App::$strings["New Mails"] = "新着メール";
App::$strings["New Mails Notifications"] = "新規メール通知";
App::$strings["View your private mails"] = "プライベートメールを表示する";
App::$strings["Mark all messages seen"] = "すべてのメッセージを確認済みにする";
App::$strings["New Events"] = "新しいイベント";
App::$strings["New Events Notifications"] = "新しいイベント通知";
App::$strings["View events"] = "イベントを見る";
App::$strings["Mark all events seen"] = "すべてのイベントを確認済みにする";
App::$strings["New Connections Notifications"] = "新しい接続通知";
App::$strings["View all connections"] = "すべての接続を表示";
App::$strings["New Files"] = "新しいファイル";
App::$strings["New Files Notifications"] = "新しいファイルの通知";
App::$strings["Notices"] = "通知";
App::$strings["View all notices"] = "全ての通知を表示する";
App::$strings["Mark all notices seen"] = "全ての通知を既読扱いにする";
App::$strings["New Registrations"] = "新規登録";
App::$strings["New Registrations Notifications"] = "新規登録通知";
App::$strings["Public Stream Notifications"] = "連合ストリーム通知";
App::$strings["View the public stream"] = "連合ストリームを表示する";
App::$strings["Sorry, you have got no notifications at the moment"] = "現在通知はありません。";
App::$strings["photo/image"] = "画像/イメージ";
App::$strings["Rating Tools"] = "評価ツール";
App::$strings["Rate Me"] = "私を評価";
App::$strings["View Ratings"] = "評価を見る";
App::$strings["Remove term"] = "用語を削除";
App::$strings["Account settings"] = "アカウント設定";
App::$strings["Channel settings"] = "チャンネル設定";
App::$strings["Display settings"] = "画面表示設定";
App::$strings["Manage locations"] = "所在地の管理";
App::$strings["Suggested Chatrooms"] = "チャットルームの提案";
App::$strings["Suggestions"] = "提案";
App::$strings["See more..."] = "もっと見る...";
App::$strings["Tasks"] = "タスク";
App::$strings["Add new page"] = "新しいページの追加";
App::$strings["Wiki Pages"] = "ウィキページ";
App::$strings["Page name"] = "ページ名";
App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "リモート認証がブロックされました。このサイトにローカルでログインしています。ログアウトして再試行してください。";
App::$strings["Welcome %s. Remote authentication successful."] = "ようこそ%s!!リモートログインは成功しました!";