-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanguage.txt
2378 lines (2324 loc) · 88.1 KB
/
language.txt
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
/* perfect dark infoline */
id "0"
"perfect dark by Kaicho-."
"perfect dark by 会長."
"perfect dark by 会长."
id "1"
"perfect dark"
id "2"
"intolerance"
id "3"
"changing settings.
please wait..."
"設定を変更中です。
しばらくお待ち下さい。"
"正在更改设置。
请稍等..."
id "4"
"perfect dark is shutting down.
please wait..."
"perfect dark を終了中です。
しばらくお待ち下さい。"
"正在退出 perfect dark。
请稍等...。"
id "5"
"Do you really want to exit perfect dark?"
"perfect dark を終了します。よろしいですか?"
"确实要退出 perfect dark 吗?"
id "0x07A39AB6"
"error"
"エラー"
"错误"
id "0x193C364D"
" information "
" 情報 "
" 信息 "
id "0x594B9ECD"
" search "
" 検索 "
" 搜索 "
id "0x1C932CC8"
" download "
" ダウンロード "
" 下载 "
id "0xF9A0172E"
" complete "
" 完了 "
" 完成 "
id "0x899482BE"
" gather "
" ギャザー "
" 群集 "
id "0x7C1BD181"
" board "
" ボード "
" 讨论板 "
id "0xF0FACD07"
" view "
" 表示 "
" 视图 "
id "0xB8E3ABC8"
" upload "
" アップロード "
" 上传 "
id "0x5E605FAF"
"help"
"ヘルプ"
"帮助"
id "0xB1720E2B"
"master"
"管理"
"管理"
id "0x671F57D2"
"complete"
"完了"
"完成"
id "0xAD8F3A58"
"download"
"ダウンロード"
"下载"
id "19"
"not implemented."
id "20"/* the sons of liberty */
"perfect dark version %2.2f by Kaicho- (& 2ch powered)."
"perfect dark version %2.2f by 会長 (& 2ch powered)."
"perfect dark version %2.2f by 会长 (& 2ch powered)."
id "21"
"perfect dark is offline."
id "22"
"perfect dark is online. open port NOT confirmed."
"perfect dark is online. ポート開放は未確認です。"
"perfect dark is online. 端口未打开。"
id "23"
"perfect dark is online."
id "24"
"new version detected!"
"新しいバージョンが検出されました!"
"发现新版本!"
id "25"
"automatically shutting down in %d seconds."
"自動終了まであと %d 秒"
"将在 %d 秒后自动关闭"
id "26"
"perfect dark has stopped due to the transfer limit."
"perfect dark は転送量制限のため、停止しています。"
"由于存在传输限制,perfect dark 已停止。"
id "0x0579D6C9"
"perfect dark network is not ready.
Please wait a moment now."
"ネットワークの準備が出来ていないため、アップロード出来ません。
接続してしばらくお待ちください。"
"网络尚未准备就绪,无法上传。
请连接网络并等待。"
id "39"
"search filter."
id "40"
"filter : "
"フィルタ:"
"过滤器:"
id "41"
"file"
"ファイル"
"文件"
id "42"
"board"
"ボード"
"讨论板"
id "43"
"gather"
"ギャザー"
"群集"
id "44"
"new"
"未登録"
"未下载"
id "45"
"download"
"ダウンロード"
"下载"
id "46"
"complete"
"完了"
"完成"
id "47"
"good"
"良い"
"良好"
id "48"
"neutral"
"中間"
"中立"
id "49"
"bad"
"悪い"
"有害"
id "50"
"exe"
"実行"
"可执行"
id "51"
"duplicate"
"重複"
"相同"
/* dialog box */
id "99"
"cancel"
"キャンセル"
"取消"
id "100"
"ok"
"ok"
"确定"
id "101"
"ip address :"
"IPアドレス:"
"IP 地址:"
id "102"
"port :"
"ポート:"
"端口:"
id "103"
"encrypted text :"
"暗号化された文字列:"
"加密文本:"
id "104"
"encrypt"
"暗号化"
"加密"
id "105"
"close"
"閉じる"
"关闭"
id "106"
"copy to clipboard"
"クリップボードへコピー"
"复制到剪贴板"
id "107"
"encryption of ip address/port"
"IPアドレス/ポートの暗号化"
"加密 IP 地址/端口"
id "108"
"To encrypt ip address/port,
enter ip address/port and press encrypt button."
"IPアドレス/ポートを暗号化します。
IPアドレス/ポートを入力して、暗号化ボタンを押してください。
ネットでIPアドレス/ポートを取得できる場合は、自動的に暗号化を行います。"
"要加密 IP 地址/端口,
请输入 IP 地址/端口,按“加密”。
如果能在网络上获取到 IP 地址/端口,将自动加密。"
id "109"
"ip address/port"
"IPアドレス/ポート"
"IP 地址/端口"
id "110"
"add"
"追加"
"添加"
id "111"
"Add ip address/port"
"IPアドレス/ポートの追加"
"添加 IP 地址/端口"
id "112"
"To add ip address/port,
Enter ip address/port or encrypted text, and press add button."
"IPアドレス/ポートを追加します。
IPアドレス/ポート、または暗号化された文字列を入力し、追加を押してください。"
"要添加 IP 地址/端口,
请输入 IP 地址/端口或加密文本,按“添加”。"
id "113"
"settings"
"設定"
"设置"
id "114"
"bandwidth limit (KBytes/s) :"
"帯域制限 (KBytes/s):"
"带宽限制 (kB/s):"
id "115"
"<0 to unlimit>"
"<0 で無制限>"
"<0 为不限制速度>"
id "116"
"enable ipv6 :"
"ipv6 を有効にする:"
"启用 IPv6 :"
id "117"
"enable auto-update :"
"プログラムを自動的に更新する:"
"自动更新软件:"
id "118"
"unity size limit (GBytes) :"
"unity サイズ制限 (GBytes):"
"unity 大小限制 (GB):"
id "119"
"<maximum size of unity folder(cache)>"
"<unityフォルダ(キャッシュ)の最大値>"
"<unity 文件夹(缓存)的最大大小>"
id "120"
"perfect dark settings.
perfect dark requires open port to work properly."
"perfect dark の設定です。
perfect dark が動作するためには、ポートを開放する必要があります。"
"perfect dark 设置。
perfect dark 需要打开端口才能正常工作。"
id "121"
"enable second limit :"
"二次制限を有効にする:"
"启用第二限制:"
id "122"
"<enable fair bandwidth limit>"
"<公平な帯域制限を有効にします>"
"<启用公平的带宽限制>"
id "123"
"download folder :"
"ダウンロードフォルダ:"
"下载文件夹:"
id "124"
"unity folder(cache) :"
"unityフォルダ(キャッシュ):"
"unity 文件夹(缓存):"
id "125"
"perfect dark settings have been changed.
You need to restart perfect dark to take effect."
"perfect dark の設定が変更されました。
変更した設定を有効にするには、perfect dark を再起動する必要があります。"
"perfect dark 的设置已更改。
你需要重新启动 perfect dark 才能使设置生效。"
id "126"
"select download folder."
"ダウンロードフォルダを選択してください。"
"请选择下载文件夹。"
id "127"
"select unity folder(cache)."
"unityフォルダ(キャッシュ)を選択してください。"
"请选择 unity 文件夹(缓存)。"
id "128"
"sign : "
"使用するサイン:"
"使用签名:"
id "129"
"mutagen (customize) : "
"mutagen(カスタマイズ):"
"mutagen (自定义文件夹):"
id "0xEAE76087"
"search max : "
"検索総数:"
"总搜索数:"
id "0xF9378CA0"
"search item max : "
"検索アイテム数:"
"搜索项数量:"
id "0x656A67E0"
"enable auto-delete : "
"自動消去:"
"启用自动删除:"
id "0x85631FA7"
" <automatically deletes disributed unity>"
" <十分に拡散されたunityを自動的に消去する>"
" <自动删除已完成分发的 unity>"
/* upload file dialog */
id "130"
"select file"
"ファイルを選択"
"选择文件"
id "131"
"select"
"選択"
"选择"
id "132"
"To upload file, select file and edit keyword, and push 'upload' button.
Enter keyword in detail, and make a file name as simple as possible.
You can add file by drag and drop."
"ファイルを選択して、キーワードを編集し、アップロードボタンを押すことでファイルをアップロードできます。
キーワードをなるべく詳しく設定し、ファイル名はできるだけシンプルにして下さい。
ドラッグ&ドロップでファイルを追加することもできます。"
"要上传文件,请先选择一个文件,然后添加关键字,按“上传”按钮。
请你尽可能设置详细的关键字,并设置较简洁的文件名。
你可以通过鼠标拖放来添加文件。"
id "133"
"upload"
"アップロード"
"上传"
id "134"
"select file"
"ファイルを選択"
"选择文件"
id "135"
"edit keyword"
"キーワードを編集"
"编辑关键字"
id "136"
"add"
"追加"
"添加"
id "137"
"edit"
"編集"
"编辑"
id "138"
"clear"
"クリア"
"清除"
/* edit keyword dialog */
id "140"
"Enter keyword in the keyword column.(up to 8 keywords)
You can save and load keyword from keyword stock."
"キーワード欄にキーワードを入力してください。最大8つのキーワードを設定できます。
キーワードストックにキーワードをセーブまたはロードすることができます。"
"请在关键字栏输入关键字。最多可以设置8个关键字。
你可以将关键字保存到仓库中,也可以从仓库中加载关键字。"
id "141"
"keyword stock"
"キーワードストック"
"关键字仓库"
id "142"
"keyword"
"キーワード"
"关键字"
id "143"
"save"
"セーブ"
"保存"
id "144"
"load"
"ロード"
"载入"
id "145"
"delete"
"削除"
"删除"
id "146"
"keyword length exceeds it's limit.(%d characters)"
"キーワードが長すぎます。(最大で %d 文字まで)"
"关键字太长。(最多 %d 个字符)"
id "147"
"keyword stock exceeds it's limit.(%d keywords)"
"キーワードストックが多すぎます。(最大で %d キーワードまで)"
"保存的关键字太多。(最多 %d 个关键字)"
id "148"
"file+keyword length exceeds it's limit.(%d characters)
'%s'"
"ファイル+キーワードが長すぎます。(合計で %d 文字まで)
'%s'"
"文件+关键字的长度太长。(最多总共 %d 个字符)
'%s'"
id "149"
"Upload is in process. Please retry after a while."
"処理中です。しばらく待ってから、再度アップロードしてください。"
"上传正在进行中。请稍等片刻,再尝试上传。"
id "150"
"One or more keywords are required to upload."
"アップロードするには、1つ以上のキーワードを設定する必要があります。"
"你必须先设置一个或多个关键字才能上传。"
id "151"
"Upload confirmation"
"アップロード確認"
"确认上传"
id "152"
"Please enter correct keywords because files with
wrong keywords or unnecessary keywords may be ignored or reviewed bad.
Keywords '%s' are correct?"
"不適切なキーワードや不要なキーワードを入力すると、
無視や有害評価される危険がありますので、キーワードは適切に入力してください。
キーワードは、'%s' でよろしいですか?"
"你如果输入了不适当或无意义的关键字,
文件可能会被忽略或被评价为有害,请输入合适的关键字。
确定要使用关键字 '%s' 吗?"
id "153"
"keyword is invalid."
"キーワードが無効です。"
"关键字无效。"
id "154"
"board is a message board(forum) on perfect dark. To upload board,
please enter board name, board description, default name, and select board type.
Each board has the time limit(about %ddays), and board expires after the limit."
"ボードは perfect dark の掲示板です。ボード名とボードの説明、
デフォルトで表示される名前を入力し、形式を選択してアップロードしてください。
なお、ボードには寿命(約%d日間)があり、それが過ぎると自動的に削除されます。"
"讨论板是建立在 perfect dark 上的论坛。请输入讨论板名称、讨论板描述、
默认名称和类型,按“发布”。
此外,每个讨论板具有时间限制(大约%d天),超过该时间,讨论板会被自动删除。"
id "155"
"board name :"
"ボード名:"
"讨论板名称:"
id "156"
"board description :"
"ボードの説明:"
"讨论板描述:"
id "157"
"default name :"
"デフォルトの名前:"
"默认名字:"
id "158"
"board type"
"ボード形式"
"讨论板类型"
id "159"
"Please enter board name."
"ボード名を入力してください。"
"请输入讨论板标题。"
id "0x7A6F5FA3"
"Gather is a set of files. It requires a valid sign to upload gather.
With valid sign, you can edit gather anytime.
Enter gather name, description, keyword and push upload button to upload gather."
"ギャザーは、ファイルの集合です。アップロードする際には、サインが必須になります。
アップロードの際に用いたサインを所持していれば、ギャザーを自由に編集できます。
ギャザーの名称、説明、キーワードを入力し、アップロードボタンを押してください。"
"群集是文件的集合。上传前必须为群集签名。
你如果持有上传群集时所使用的签名,就可以自由编辑群集。
输入群集名称、群集描述和关键字,再按“上传”。"
id "0x520ABFDA"
"gather name :"
"ギャザー名:"
"群集名称:"
id "0x6F7D65FF"
"gather description :"
"ギャザーの説明:"
"群集描述:"
id "0x050B4ABF"
"Please enter gather name."
"ギャザー名を入力してください。"
"请输入群集名称。"
id "0xF3C51A5D"
"Sign (required)"
"サイン(必須)"
"签名(必填)"
id "0x0422ED0A"
"It requires valid sign to upload gather.
Create your sign in the settings dialog.
And choose the sign you want to use."
"ギャザーをアップロードするためには、サインが必要です。
設定ダイアログでサインを作成し、使用したいサインを選択してください。"
"要上传群集,需要使用签名。
请你在设置对话框中创建签名,再选择要使用的签名。"
id "0xDE3BEEAE"
"auto download: Files in the gather will be downloaded automatically."
"自動ダウンロード:ギャザーに登録されているファイルは、自動でダウンロードされます。"
"自动下载:添加到群集的文件会自动下载。"
id "0x201D7E8C"
"manual download: To download files, you need to select files in the list."
"手動ダウンロード:ファイルをダウンロードするには、ファイルを選択してダウンロード登録してください。"
"手动下载:要下载文件,请选择文件并手动将其添加到下载。"
id "0x6810CDC5"
"Administration: You have the sign which created this gather. You can add/delete fies (max %d files)."
"管理:管理サインを所持しています。ファイルの追加/削除を行うことが出来ます(削除操作を含めて 最大 %d 個)。"
"管理:持有管理者签名。可添加/删除文件(含文件删除操作 最多 %d 个文件)。"
id "0x65A54126"
"Description: %s"
"説明:%s"
"描述:%s"
/* add ID dialog */
id "160"
"You can download using ID.
Enter ID and press 'ok'."
"ID を使ってダウンロードすることができます。
下の空欄に ID を入力し、'ok' を押してください。"
"你可以使用文件 ID 进行下载。
在下方文本框中输入文件 ID ,再按“确定”。"
/* review dialog */
id "162"
"You can review and comment for selected item(s).
Please select review and enter your comment, then click 'ok'."
"選択されたアイテムに対し、コメント付き評価を行います。
評価を選択し、コメントを入力して 'ok' を押してください。"
"你可以对选择的项进行评价和评论。
请选择一个评价,在文本框中输入评论,再按“确定”。"
id "163"
"review good : Satisfying or high qulity files."
"優良評価: 質が高く、満足したファイル。"
"优良评价: 高质量、令人满意的文件。"
id "164"
"review normal : Normal files."
"無害評価: 通常のファイル。"
"正常评价: 正常的文件。"
id "165"
"review bad : Data is invalid or infected by virus or the name is wrong."
"有害評価: 無効なデータやウイルスに感染したデータ、名前と異なるデータ。"
"有害评价: 无效数据或被病毒感染的数据、名不副实的数据。"
id "166"
"comment (%d characters) :"
"コメント(最大で %d 文字まで):"
"评论 (最多可以输入 %d 个字):"
/* edit sign dialog */
id "170"
"To create a sign, enter name and password and push 'add' button.
Name can be simple, but long and complex password is prefered."
"サインを作るには、名前とパスワードを入力し、'追加'ボタンを押してください。
名前は短くても結構ですが、パスワードはなるべく長く複雑なものにしてください。
名前とパスワードは慎重に管理し、バックアップを取ることをおすすめします。"
"如果要创建签名,请输入你的用户名和密码,按“添加”按钮。
用户名可以短,密码应当尽可能长且复杂。
建议你小心管理你的用户名和密码,做好备份。"
id "171"
"sign"
"サイン"
"签名"
id "172"
"name : max length %d."
"名前: 最大%d文字までです。"
"用户名: 最多 %d 个字。"
id "173"
"password : max length %d."
"パスワード: 最大%d文字までです。なるべく長く、複雑にしてください。"
"密码: 最多 %d 个字符。密码应当尽可能长且复杂。"
id "174"
"sign : generated sign. You can sign files and other data."
"サイン: 生成されたサインです。データに付加し、信頼性を向上させることができます。"
"签名: 已创建的签名。你可以对数据进行签名,以提高数据的可信度。"
id "175"
"The number of signs reaches the limit."
"サインの数の上限に達しました。"
"已达到签名的最大数量。"
id "176"
"You can't create signs of the same names."
"同じ名前のサインは複数作れません。"
"每个用户名只能创建一个签名。"
id "177"
"edit sign"
"サインを編集"
"编辑签名"
id "178"
"name"
"名前"
"用户名"
id "179"
"password"
"パスワード"
"密码"
id "180"
"sign"
"サイン"
"签名"
id "181"
"Are you sure you want to delete this sign?"
"このサインを削除してよろしいですか?"
"确实要删除这个签名吗?"
id "182"
"Sign files."
"ファイルにサインする"
"对文件签名"
id "183"
"To use sign, create your sign in the settings dialog.
And choose the sign you want to use."
"サインするには、設定ダイアログでサインを作成し、
使用したいサインを選択してください。"
"如果要签名,请你先在设置对话框中创建一个签名,
再选择你要使用的签名。"
id "184"
"write files"
"ファイルを書き出す"
"导出文件"
id "185"
"This command writes down mutagen(customize) files.
If you already have mutagen files, perfect dark won't overwrite mutagen files.
Please delete mutagen folder in order to initialize mutagen.
Are you sure you want to continue?"
"mutagenフォルダにカスタマイズ用のファイルを書き出します。
既にファイルが存在する場合は上書きしません。
カスタマイズを初期化したい場合はmutagenフォルダを消去してください。
よろしいですか?"
"将自定义文件导出为 mutagen 文件夹内的文件。
如果自定义文件已存在,则不会覆盖。
如果要初始化自定义设置,请删除 mutagen 文件夹。
是否继续?"
id "186"
"Sign board."/* (You can edit board by using this sign)"*/
"ボードにサインする"/*(サインをすると、ボードの管理ができます)"*/
"对讨论板签名"/*(签名后可以管理讨论板)"*/
id "187"
"Disable unique."
"unique を無効にする"
"禁用 unique"
id "190"
"interface port :"
"インターフェイス ポート:"
"接口端口:"
id "191"
"<No need to open this port>"
"<こちらを開放する必要はありません>"
"<不必打开此端口>"
id "192"
"general"
"一般"
"常规"
id "193"
"bandwidth limits"
"帯域制限"
"带宽限制"
id "194"
"other"
"その他"
"其他"
id "0x22638B04"
"visual settings"
"表示設定"
"视图"
/* information pane */
id "0x1CB0EB4C"
"settings"
"設定"
"设置"
id "0x9268E949"
"add ip address/port"
"IPアドレス/ポートを追加"
"添加 IP 地址/端口"
id "0x7D864B7B"
"encrypt ip address/port"
"IPアドレス/ポートを暗号化"
"加密 IP 地址/端口"
id "0x454EF18E"
"upload file"
"ファイルをアップロード"
"上传文件"
id "0x79298DA"
"upload board"
"ボードをアップロード"
"上传讨论板"
id "0x53FC7E31"
"upload gather"
"ギャザーをアップロード"
"上传群集"
/* information pane status*/
id "210"
" : neutral"
" : ニュートラル"
" : 中立"
id "211"
" : uploading"
" : アップロード中"
" : 正在上传"
id "212"
" : downloading"
" : ダウンロード中"
" : 正在下载"
id "213"
"send %3d KB/s, recv %3d KB/s"
"送信 %3d KB/s, 受信 %3d KB/s"
"上传 %3d kB/s, 下载 %3d kB/s"
id "220"
"bandwidth limit : %6d KB/s"
"帯域制限 : %6d KB/s"
"带宽限制 : %6d kB/s"
id "221"
"send : %6d KB/s"
"送信速度 : %6d KB/s"
"上传速度 : %6d kB/s"
id "222"
"receive : %6d KB/s"
"受信速度 : %6d KB/s"
"下载速度 : %6d kB/s"
id "223"
"short send : %6d KB/s"
"short send : %6d KB/s"
"短期上传 : %6d kB/s"
id "224"
"short receive : %6d KB/s"
"short receive : %6d KB/s"
"短期下载 : %6d kB/s"
id "225"
"middle send : %6d KB/s"
"middle send : %6d KB/s"
"中期上传 : %6d kB/s"
id "226"
"middle receive : %6d KB/s"
"middle receive : %6d KB/s"
"中期下载 : %6d kB/s"
id "227"
"long send : %6d KB/s"
"long send : %6d KB/s"
"长期上传 : %6d kB/s"
id "228"
"long receive : %6d KB/s"
"long receive : %6d KB/s"
"长期下载 : %6d kB/s"
id "229"
"no bandwidth limit"
"帯域制限なし"
"无带宽限制"
id "230"
"second limit : %6d KB/s"
"二次制限 : %6d KB/s"
"第二限制 : %6d kB/s"
id "231"
"unity number : %d / %d"
"unity number : %d / %d"
"unity 数量 : %d / %d"
id "232"
"unity memory : %d MB / %d MB"
"unity memory : %d MB / %d MB"
"unity 内存 : %d MB / %d MB"
id "233"
"unity size : %d MB / %d MB"
"unity size : %d MB / %d MB"
"unity 大小 : %d MB / %d MB"
id "234"
"time : %d/%02d/%02d %02d:%02d:%02d [%d]"
"time : %d/%02d/%02d %02d:%02d:%02d [%d]"
"时间 : %d-%02d-%02d %02d:%02d:%02d [%d]"
id "235"
"total send : %s bytes"
"総送信量 : %s bytes"
"总共上传 : %s 字节"
id "236"
"total receive : %s bytes"
"総受信量 : %s bytes"
"总共下载 : %s 字节"
id "237"
"upload size : %d MB"
"アップロード : %d MB"
"上传 : %d MB"
id "238"
"connection success %d, failed %d"
"接続成功 %d 回, 接続失敗 %d 回"
"连接成功 %d 次, 连接失败 %d 次"
id "0xE63A58A5"
"estimated nodes : %s, estimated unity : %s ( %s )"
"推定ノード : %s, 推定unity : %s ( %s )"
"估算的节点 : %s, 估算的 unity : %s ( %s )"
/* information pane record*/
id "250"
"upload"
"アップロード"
"上传"
id "251"
"uploading..."
"アップロード中..."
"正在上传..."
id "252"
"download"
"ダウンロード"
"下载"
id "253"
"downloading..."
"ダウンロード中..."
"正在下载..."
id "254"
"no second limit"
"二次制限なし"
"无第二限制"
id "0x2EB87C98"
"conversion finished : %s"
"変換終了 : %s"
"转换完成 : %s"
id "0xD4D6D7D8"
"upload failed : %s"
"アップロード失敗 : %s"
"上传失败 : %s"
id "0x0B0BAB51"
"download success : %s"
"ダウンロード成功 : %s"
"下载完成 : %s"
id "0x1B63E785"
"download failed : %s"
"ダウンロード失敗 : %s"
"下载失败 : %s"
id "0x582D07E8"
"perfect dark logger starts."
id "0xB65A599A"
"upload aborted : %s"
"アップロード中止 : %s"
"中止上传 : %s"
id "0xD13B27F4"
"download aborted : %s"
"ダウンロード中止 : %s"
"中止下载 : %s"
id "0x5FB325B5"
"download error code - %d"
"ダウンロードエラー コード - %d"
"下载错误 代码 - %d"
id "0x1CC15274"
"file open failed - %d"
"ファイルオープンに失敗 - %d"
"文件打开失败 - %d"
id "0x2481DE72"
"conversion finished : %s"
"部分変換終了 : %s"
"转换完成 : %s"
id "0xA775F6F0"
"upload finished : %s"
"アップロード終了 : %s"
"上传完成 : %s"
id "0xB2164636"
"file broken. download aborted - %s"
"ファイル破損のためダウンロード中止 - %s"
"文件损坏,下载已中止 - %s"
/* information pane2 */
id "0xDD463CD7"
"donate"
"寄付"
"捐赠"
id "0x59CB177C"
" task "
" タスク "
" 任务 "
id "0xB9C1DB33"
" log "
" ログ "
" 日志 "
id "0x3B81910D"
" flow "
" フロー "
" 流 "
id "0x9A50957B"
" set flow "
" フローを設定 "
" 流设置 "
id "286"
"'flow' is a message that flows over the perfect dark network.
To send flow, enter your message and push 'ok'.
You can stop sending your message by using 'clear' button."
"フローは perfect dark のネットワーク上を流れるメッセージです。
フローを送信するには、メッセージを入力し 'ok' を押してください。
'クリア' を押してメッセージを消去すると、メッセージの送信を中止できます。"
"流是在 perfect dark 网络中流动的消息。
如果要发送一个流,请你在文本框中输入消息,再按“确定”。
你可以通过按“清除”删除消息,以中止消息的发送。"
id "287"
"click: stop flow, right click: menu"
"クリック: フロー停止, 右クリック: メニュー"
"左键单击: 停止流, 右键单击: 菜单"
id "288"
"cancel task"
"タスクを中止"
"取消任务"
id "289"
"copy this flow"
"このフローをコピーする"
"复制此流"
id "290"
"clear ignore list"
"無視を全て解除する"
"清除忽略列表"
id "291"
"Are you sure you want to clear ignore list?"
"無視を全て解除してよろしいですか?"
"确实要清除忽略列表吗?"
id "292"
"ignore this flow"
"このフローを無視する"
"忽略此流"
id "0xDFCEA1AF"
"set ignore words"
"無視ワードを設定"
"设置敏感词"
id "294"
"'flow' that includes ignore words will be automatically deleted,
and you won't see ignored 'flow' again.
You can set multiple ignore words."
"無視ワードを設定すると、その無視ワードに一致するフローは自動的に削除され、
以後は表示されません。
改行して複数の無視ワードを設定することもできます。"
"你如果设置了敏感词,则匹配该词的流将被自动删除,
之后不会显示。
敏感词可以设置多个,每行写一个敏感词。"
/* search pane */
id "300"
"add keyword (M click)"
"キーワードを追加 (M click)"
"添加关键字 (M click)"
id "301"
"delete (Del)"
"削除 (Del)"
"删除 (Del)"
id "302"
"add advanced search"
"絞り込み検索を追加"
"添加高级搜索"
id "0xD3EA6CB"
"add"
"追加"
"添加"
id "0x1C00D4F7"
"set"
"置換"
"替换"
id "0xCBD515A0"
"new"
"新規"
"新建"
id "306"
"cut (Ctrl+X)"
"剪切 (Ctrl+X)"
"切り取り (Ctrl+X)"
id "307"
"copy (Ctrl+C)"
"コピー (Ctrl+C)"
"复制 (Ctrl+C)"
id "308"
"paste (Ctrl+V)"
"貼り付け (Ctrl+V)"
"粘贴 (Ctrl+V)"
id "0x676BA679"
"keyword search"
"キーワード検索"
"关键字搜索"
id "310"
"edit keyword for search."
"検索するキーワードを編集します。"
"编辑要搜索的关键字。"
id "311"
"add keyword for search."
"検索するキーワードを追加します。"
"添加要搜索的关键字。"
id "312"
"Are you sure you want to delete keyword?"
"キーワードを削除してよろしいですか?"
"是否删除关键字?"
id "313"
"space = AND , ' | ' = OR , ' ~ ' = NOT"
"スペース = AND, ' | ' = OR, ' ~ ' = NOT"
"空格 = AND, ' | ' = OR, ' ~ ' = NOT"
id "314"
"The number of keywords reaches the limit."
"キーワードの数が上限に達しました。"
"关键字数量到达上限。"
id "315"
"edit advanced search"
"絞り込み検索を編集"
"编辑高级搜索"
id "316"
"The length of keywords reaches the limit."
"キーワードの長さが上限に達しました。"
"关键字长度到达上限。"
id "320"
"download"