-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlibrepcb_zh_TW.ts
18572 lines (18530 loc) · 858 KB
/
librepcb_zh_TW.ts
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
<?xml version="1.0" ?><!DOCTYPE TS><TS version="2.1" language="zh_TW" sourcelanguage="en">
<context>
<name>ArchiveOutputJob</name>
<message>
<location filename="libs/librepcb/core/job/archiveoutputjob.cpp" line="42"/>
<source>Output Archive</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/job/archiveoutputjob.h" line="71"/>
<source>Archive</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>AttributeKey</name>
<message>
<location filename="libs/librepcb/core/attribute/attributekey.h" line="55"/>
<source>Invalid attribute key: '%1'</source>
<translation>無效的屬性鍵值:"%1"</translation>
</message>
</context>
<context>
<name>AttributeType</name>
<message>
<location filename="libs/librepcb/core/attribute/attributetype.cpp" line="77"/>
<source>Unknown unit of attribute type "%1": "%2"</source>
<translation>屬性類型 "%1" 有未知的單位:"%2" </translation>
</message>
<message>
<location filename="libs/librepcb/core/attribute/attributetype.cpp" line="124"/>
<source>Invalid attribute type: "%1"</source>
<translation>無效的屬性類型:"%1"</translation>
</message>
</context>
<context>
<name>BGI_FootprintPad</name>
<message>
<location filename="libs/librepcb/editor/project/boardeditor/graphicsitems/bgi_footprintpad.cpp" line="164"/>
<source>Pad:</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/editor/project/boardeditor/graphicsitems/bgi_footprintpad.cpp" line="170"/>
<source>Signal:</source>
<translation>訊號:</translation>
</message>
<message>
<location filename="libs/librepcb/editor/project/boardeditor/graphicsitems/bgi_footprintpad.cpp" line="176"/>
<source>Net:</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>BGI_Via</name>
<message>
<location filename="libs/librepcb/editor/project/boardeditor/graphicsitems/bgi_via.cpp" line="248"/>
<source>Through-Hole Via</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/editor/project/boardeditor/graphicsitems/bgi_via.cpp" line="250"/>
<source>Blind Via</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/editor/project/boardeditor/graphicsitems/bgi_via.cpp" line="252"/>
<source>Buried Via</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/editor/project/boardeditor/graphicsitems/bgi_via.cpp" line="254"/>
<source>Net: %1</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/editor/project/boardeditor/graphicsitems/bgi_via.cpp" line="256"/>
<source>Start Layer: %1</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/editor/project/boardeditor/graphicsitems/bgi_via.cpp" line="257"/>
<source>End Layer: %1</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>Board3DOutputJob</name>
<message>
<location filename="libs/librepcb/core/job/board3doutputjob.cpp" line="39"/>
<source>STEP Model</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/job/board3doutputjob.h" line="73"/>
<source>3D Model</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>BoardDesignRuleCheckMessages</name>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="53"/>
<source>Depending on the capabilities of the PCB manufacturer, this could cause higher costs or even serious troubles during production, leading to a possibly non-functional PCB.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="64"/>
<source>(no net)</source>
<translation>( 沒有連接線 )</translation>
</message>
</context>
<context>
<name>BomOutputJob</name>
<message>
<location filename="libs/librepcb/core/job/bomoutputjob.cpp" line="40"/>
<source>Bill of Materials</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/job/bomoutputjob.h" line="79"/>
<source>Bill Of Materials</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>BoundedUnsignedRatio</name>
<message>
<location filename="libs/librepcb/core/types/boundedunsignedratio.cpp" line="108"/>
<source>Minimum value must not be greater than maximum value.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>CircuitIdentifier</name>
<message>
<location filename="libs/librepcb/core/types/circuitidentifier.h" line="53"/>
<source>Invalid identifier: '%1'</source>
<translation>無效的識別字: '%1'</translation>
</message>
</context>
<context>
<name>CmpSigPinDisplayType</name>
<message>
<location filename="libs/librepcb/core/library/cmp/cmpsigpindisplaytype.h" line="95"/>
<source>None (no text)</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/library/cmp/cmpsigpindisplaytype.h" line="101"/>
<source>Symbol pin name</source>
<translation>符號引腳名稱</translation>
</message>
<message>
<location filename="libs/librepcb/core/library/cmp/cmpsigpindisplaytype.h" line="107"/>
<source>Component signal name</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/library/cmp/cmpsigpindisplaytype.h" line="113"/>
<source>Schematic net name</source>
<translation>線路圖連接線名稱</translation>
</message>
</context>
<context>
<name>CommandLineInterface</name>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="86"/>
<source>Open a project to execute project-related tasks.</source>
<translation>開啟一個專案來進行專案相關工作。</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="89"/>
<source>Open a library to execute library-related tasks.</source>
<translation>開啟一個元件庫來進行元件庫相關工作。</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="92"/>
<source>Open a STEP model to execute STEP-related tasks outside of a library.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="99"/>
<source>LibrePCB Command Line Interface</source>
<translation>LibrePCB 指令介面</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="102"/>
<source>Print this message.</source>
<translation>顯示此訊息</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="105"/>
<source>Displays version information.</source>
<translation>顯示版本資訊</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="107"/>
<source>Verbose output.</source>
<translation>詳細的輸出。</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="110"/>
<source>The command to execute (see list below).</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="116"/>
<source>Run the electrical rule check, print all non-approved warnings/errors and report failure (exit code = 1) if there are non-approved messages.</source>
<translation>執行電氣規範檢查(ERC),列出所有不符合規範的錯誤與警告,若有任何不符規範則回報失敗(錯誤碼=1)。</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="121"/>
<source>Run the design rule check, print all non-approved warnings/errors and report failure (exit code = 1) if there are non-approved messages.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="126"/>
<source>Override DRC settings by providing a *.lp file containing custom settings. If not set, the settings from the boards will be used instead.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="129"/>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="141"/>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="152"/>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="158"/>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="164"/>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="181"/>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="187"/>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="194"/>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="200"/>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="282"/>
<source>file</source>
<translation>檔案</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="132"/>
<source>Run a particular output job. Can be given multiple times to run multiple jobs.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="134"/>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="205"/>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="222"/>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="234"/>
<source>name</source>
<translation>名稱</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="136"/>
<source>Run all existing output jobs.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="139"/>
<source>Override output jobs with a *.lp file containing custom jobs. If not set, the jobs from the project will be used instead.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="144"/>
<source>Override the output base directory of jobs. If not set, the standard output directory from the project is used.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="146"/>
<source>path</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="149"/>
<source>Export schematics to given file(s). Existing files will be overwritten. Supported file extensions: %1</source>
<translation>匯出線路圖至(一個或多個)檔案,覆寫存在的檔案,支援的檔案類型有:%1</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="155"/>
<source>Export generic BOM to given file(s). Existing files will be overwritten. Supported file extensions: %1</source>
<translation>匯出通用的原物料清單(BOM)至(一個或多個)檔案,覆寫存在的檔案,支援的檔案類型有:%1</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="161"/>
<source>Export board-specific BOM to given file(s). Existing files will be overwritten. Supported file extensions: %1</source>
<translation>匯出 board-specific BOM 至(一個或多個)檔案,覆寫存在的檔案,支援的檔案類型有:%1</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="167"/>
<source>Comma-separated list of additional attributes to be exported to the BOM. Example: "%1"</source>
<translation>以逗點分隔,要被匯出至原物料清單(BOM)的附加屬性列表。例如:"%1"</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="170"/>
<source>attributes</source>
<translation>屬性</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="173"/>
<source>Export PCB fabrication data (Gerber/Excellon) according the fabrication output settings of boards. Existing files will be overwritten.</source>
<translation>根據電路板的加工資料設定值匯出 PCB 加工資料 (Gerber/Excellon)。存在的檔案將被覆寫。</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="178"/>
<source>Override PCB fabrication output settings by providing a *.lp file containing custom settings. If not set, the settings from the boards will be used instead.</source>
<translation>提供一個包含自訂設定檔的 *.lp 檔來覆寫 PCB 加工資料設定。未設定則會使用專案中電路板的設定。</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="184"/>
<source>Export pick&place file for automated assembly of the top board side. Existing files will be overwritten. Supported file extensions: %1</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="190"/>
<source>Export pick&place file for automated assembly of the bottom board side. Existing files will be overwritten. Supported file extensions: %1</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="197"/>
<source>Export netlist file for automated PCB testing. Existing files will be overwritten. Supported file extensions: %1</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="202"/>
<source>The name of the board(s) to export. Can be given multiple times. If not set, all boards are exported.</source>
<translation>需要匯出的(一張或多張)電路板名稱,可以多次提及。未設定則匯出全部電路板。</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="207"/>
<source>Same as '%1', but allows to specify boards by index instead of by name.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="210"/>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="228"/>
<source>index</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="213"/>
<source>Remove all boards not specified with '%1' from the project before executing all the other actions. If '%1' is not passed, all boards will be removed. Pass '%2' to save the modified project to disk.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="220"/>
<source>The name of the assembly variant(s) to export. Can be given multiple times. If not set, all assembly variants are exported.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="225"/>
<source>Same as '%1', but allows to specify assembly variants by index instead of by name.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="231"/>
<source>Move the specified assembly variant to the top before executing all the other actions. Pass '%1' to save the modified project to disk.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="237"/>
<source>Save project before closing it (useful to upgrade file format).</source>
<translation>在關閉專案之前儲存(更新檔案格式時很實用)。</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="240"/>
<source>Fail if the project files are not strictly canonical, i.e. there would be changes when saving the project. Note that this option is not available for *.lppz files.</source>
<translation>當專案檔不是嚴格的正規寫法,即在儲存專案時會有所變更。此選項不適用於 *.lppz 檔案。</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="247"/>
<source>Perform the selected action(s) on all elements contained in the opened library.</source>
<translation>在開啟的元件庫中全部元素執行所選擇的動作。</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="251"/>
<source>Run the library element check, print all non-approved messages and report failure (exit code = 1) if there are non-approved messages.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="255"/>
<source>Minify the STEP models of all packages. Only works in conjunction with '--all'. Pass '--save' to write the minified files to disk.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="259"/>
<source>Save library (and contained elements if '--all' is given) before closing them (useful to upgrade file format).</source>
<translation>在關閉之前儲存元件庫,若指定 '--all' 則包括所有包含的元素(更新檔案格式時很實用)。</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="263"/>
<source>Fail if the opened files are not strictly canonical, i.e. there would be changes when saving the library elements.</source>
<translation>當開啟的檔案不是嚴格的正規寫法時導致失敗,即在儲存元件庫元素時會有所變更。</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="269"/>
<source>Minify the STEP model before validating it. Use in conjunction with '%1' to save the output of the operation.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="274"/>
<source>Tesselate the loaded STEP model to check if LibrePCB is able to render it. Reports failure (exit code = 1) if no content is detected.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="279"/>
<source>Write the (modified) STEP file to this output location (may be equal to the opened file path). Only makes sense in conjunction with '%1'.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="286"/>
<source>Commands:</source>
<translation>指令:</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="290"/>
<source>List command-specific options:</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="293"/>
<source>Help:</source>
<translation>求助:</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="307"/>
<source>Path to project file (*.lpp[z]).</source>
<translation>專案檔的路徑 (*.lpp[z])。</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="337"/>
<source>Path to library directory (*.lplib).</source>
<translation>元件庫目錄的路徑 (*.lplib)。</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="348"/>
<source>Path to the STEP file (%1).</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="354"/>
<source>Unknown command '%1'.</source>
<translation>未知的指令'%1'。</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="411"/>
<source>Missing arguments:</source>
<translation>遺漏參數:</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="417"/>
<source>Unknown arguments:</source>
<translation>未知參數:</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="471"/>
<source>SUCCESS</source>
<translation>成功</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="474"/>
<source>Finished with errors!</source>
<translation>帶錯誤的完成!</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="503"/>
<source>Open project '%1'...</source>
<translation>開啟專案 '%1'...</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="525"/>
<source>Attention: Project has been upgraded to a newer file format!</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="546"/>
<source>Set default assembly variant to '%1'...</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="551"/>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="565"/>
<source>ERROR: No assembly variant with the name '%1' found.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="580"/>
<source>ERROR: Assembly variant index '%1' is invalid.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="602"/>
<source>ERROR: No board with the name '%1' found.</source>
<translation>錯誤:找不到包含名稱 %1 的電路板。</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="615"/>
<source>ERROR: Board index '%1' is invalid.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="623"/>
<source>Remove other boards...</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="652"/>
<source>Check for non-canonical files...</source>
<translation>檢查非正規的檔案...</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="655"/>
<source>ERROR: The option '--strict' is not available for *.lppz files!</source>
<translation>錯誤:選項'--strict'不適用於*.lppz檔案!</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="678"/>
<source>Run ERC...</source>
<translation>執行 ERC...</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="684"/>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="725"/>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="1271"/>
<source>Approved messages: %1</source>
<translation>批准的訊息:%1</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="685"/>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="727"/>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="1273"/>
<source>Non-approved messages: %1</source>
<translation>未批准的訊息:'%1'</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="694"/>
<source>Run DRC...</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="706"/>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="911"/>
<source>ERROR: Failed to load custom settings: %1</source>
<translation>錯誤:載入自訂設定檔失敗:%1</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="712"/>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="917"/>
<source>Board '%1':</source>
<translation>電路板'%1':</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="747"/>
<source>ERROR: Failed to load custom output jobs: %1</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="763"/>
<source>ERROR: No output job with the name '%1' found.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="774"/>
<source>Run output job '%1'...</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="793"/>
<source>ERROR:</source>
<translation>錯誤:</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="801"/>
<source>Export schematics to '%1'...</source>
<translation>匯出線路圖到'%1'...</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="825"/>
<source>ERROR</source>
<translation>錯誤</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="854"/>
<source>Export board-specific BOM to '%1'...</source>
<translation>匯出電路板用的原物料清單(BOM)到'%1'...</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="857"/>
<source>Export generic BOM to '%1'...</source>
<translation>匯出通用的原物料清單(BOM)到'%1'...</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="887"/>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="978"/>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="1005"/>
<source>ERROR: Unknown extension '%1'.</source>
<translation>錯誤:未知的檔案關聯 '%1'。</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="897"/>
<source>Export PCB fabrication data...</source>
<translation>匯出加工資料...</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="940"/>
<source>top</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="944"/>
<source>bottom</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="948"/>
<source>Export %1 assembly data to '%2'...</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="988"/>
<source>Export netlist to '%1'...</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="1013"/>
<source>Save project...</source>
<translation>儲存專案...</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="1034"/>
<source>ERROR: The file '%1' was written multiple times!</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="1039"/>
<source>NOTE: To avoid writing files multiple times, make sure to pass unique filepaths to all export functions. For board output files, you could either add the placeholder '%1' to the path or specify the boards to export with the '%2' argument.</source>
<translation>註:為了避免檔案被多次覆寫,再次確認所有的輸出功能都是唯一的檔案路徑。對於電路板輸出檔,您可以在路徑中加入置換符號 '%1' 或者在指定電路板輸出時使用 '%2' 參數。</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="1050"/>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="1190"/>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="1368"/>
<source>ERROR: %1</source>
<translation>錯誤:%1</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="1063"/>
<source>Open library '%1'...</source>
<translation>開啟元件庫 '%1'...</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="1078"/>
<source>Process %1 component categories...</source>
<translation>處理 %1 個元件分類...</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="1081"/>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="1100"/>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="1119"/>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="1138"/>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="1157"/>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="1176"/>
<source>Open '%1'...</source>
<translation>開啟 '%1'...</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="1097"/>
<source>Process %1 package categories...</source>
<translation>處理 %1 個封裝分類...</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="1116"/>
<source>Process %1 symbols...</source>
<translation>處理 %1 個符號...</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="1135"/>
<source>Process %1 packages...</source>
<translation>處理 %1 個封裝...</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="1154"/>
<source>Process %1 components...</source>
<translation>處理 %1 個元件...</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="1173"/>
<source>Process %1 devices...</source>
<translation>處理 %1 個裝置...</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="1221"/>
<source>Minify STEP model '%1'...</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="1227"/>
<source> - Minified '%1' from %2 to %3 bytes</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="1246"/>
<source>Check '%1' for non-canonical files...</source>
<translation>檢查 '%1' 是否為非正規檔案...</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="1264"/>
<source>Check '%1' for non-approved messages...</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="1284"/>
<source>Save '%1'...</source>
<translation>儲存 '%1'...</translation>
</message>
<message>
<location filename="apps/librepcb-cli/commandlineinterface.cpp" line="1420"/>
<source>This application version is UNSTABLE! Option '%1' is disabled to avoid breaking projects or libraries. Please use a stable release instead.</source>
<translation>此應用程式版本為 非 穩 定 版 !'%1' 選項已關閉來避免破壞到專案或是元件庫。請改用穩定釋出的版本。</translation>
</message>
</context>
<context>
<name>ComponentPrefix</name>
<message>
<location filename="libs/librepcb/core/library/cmp/componentprefix.h" line="56"/>
<source>Invalid component prefix: '%1'</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>ComponentSymbolVariantItemSuffix</name>
<message>
<location filename="libs/librepcb/core/library/cmp/componentsymbolvariantitemsuffix.h" line="57"/>
<source>Invalid component symbol suffix: '%1'</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>CopyOutputJob</name>
<message>
<location filename="libs/librepcb/core/job/copyoutputjob.cpp" line="39"/>
<source>Custom File</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/job/copyoutputjob.h" line="78"/>
<source>File Copy</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>DesktopIntegration</name>
<message>
<location filename="libs/librepcb/editor/workspace/desktopintegration.cpp" line="130"/>
<source>To avoid troubles, only proceed if there are no other (installed) LibrePCB applications on this computer.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/editor/workspace/desktopintegration.cpp" line="143"/>
<source>Install Desktop Integration</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/editor/workspace/desktopintegration.cpp" line="144"/>
<source>This installs the following files to register the executable <i>%1</i>:</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/editor/workspace/desktopintegration.cpp" line="152"/>
<source>Uninstall Desktop Integration</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/editor/workspace/desktopintegration.cpp" line="153"/>
<source>This removes the following files:</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/editor/workspace/desktopintegration.cpp" line="176"/>
<source>Error</source>
<translation>錯誤</translation>
</message>
<message>
<location filename="libs/librepcb/editor/workspace/desktopintegration.cpp" line="259"/>
<source>Failed to run '%1'.
Please make sure this tool is available in PATH.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>DirectoryLock</name>
<message>
<location filename="libs/librepcb/core/fileio/directorylock.cpp" line="79"/>
<location filename="libs/librepcb/core/fileio/directorylock.cpp" line="191"/>
<source>The directory "%1" does not exist.</source>
<translation>目錄 "%1" 不存在。</translation>
</message>
<message>
<location filename="libs/librepcb/core/fileio/directorylock.cpp" line="97"/>
<source>The lock file "%1" has too few lines.</source>
<translation>鎖定檔案 "%1" 的行數太少。</translation>
</message>
<message>
<location filename="libs/librepcb/core/fileio/directorylock.cpp" line="170"/>
<source>Could not lock the directory "%1" because it is already locked by "%2". Close any application accessing this directory and try again.</source>
<translation>無法鎖定目錄 "%1" 因為它已經被 "%2" 鎖定。請將任何存取此目錄的程式結束再試一次。</translation>
</message>
</context>
<context>
<name>DrcMsgCopperBoardClearanceViolation</name>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="625"/>
<source>Clearance via ↔ board outline < %1 %2</source>
<comment>Placeholders: Clearance value, unit</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="628"/>
<source>The clearance between a via and the board outline is smaller than the board outline clearance configured in the DRC settings.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="632"/>
<source>Check the DRC settings and move the via away from the board outline if needed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="647"/>
<source>Clearance trace ↔ board outline < %1 %2</source>
<comment>Placeholders: Clearance value, unit</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="650"/>
<source>The clearance between a trace and the board outline is smaller than the board outline clearance configured in the DRC settings.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="654"/>
<source>Check the DRC settings and move the trace away from the board outline if needed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="670"/>
<source>Clearance pad ↔ board outline < %1 %2</source>
<comment>Placeholders: Clearance value, unit</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="673"/>
<source>The clearance between a footprint pad and the board outline is smaller than the board outline clearance configured in the DRC settings.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="677"/>
<source>Check the DRC settings and move the device away from the board outline if needed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="692"/>
<source>Clearance plane ↔ board outline < %1 %2</source>
<comment>Placeholders: Clearance value, unit</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="695"/>
<source>The clearance between a plane and the board outline is smaller than the board outline clearance configured in the DRC settings.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="699"/>
<source>Check the DRC settings and increase the configured plane clearance if needed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="713"/>
<source>Clearance copper polygon ↔ board outline < %1 %2</source>
<comment>Placeholders: Clearance value, unit</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="716"/>
<source>The clearance between a polygon and the board outline is smaller than the board outline clearance configured in the DRC settings.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="719"/>
<source>Check the DRC settings and move the polygon away from the board outline if needed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="736"/>
<source>Clearance copper circle ↔ board outline < %1 %2</source>
<comment>Placeholders: Clearance value, unit</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="739"/>
<source>The clearance between a circle and the board outline is smaller than the board outline clearance configured in the DRC settings.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="742"/>
<source>Check the DRC settings and move the circle away from the board outline if needed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="758"/>
<source>Clearance copper text ↔ board outline < %1 %2</source>
<comment>Placeholders: Clearance value, unit</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="761"/>
<source>The clearance between a stroke text and the board outline is smaller than the board outline clearance configured in the DRC settings.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="765"/>
<source>Check the DRC settings and move the stroke text away from the board outline if needed.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>DrcMsgCopperCopperClearanceViolation</name>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="503"/>
<source>trace</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="505"/>
<source>via</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="507"/>
<source>plane</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="509"/>
<source>polygon</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="511"/>
<source>circle</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="513"/>
<source>text</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="582"/>
<source>Clearance on %1: %2 ↔ %3 < %4 %5</source>
<comment>Placeholders: Layer name, object name, object name, Clearance value, unit</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="587"/>
<source>The clearance between two copper objects of different nets is smaller than the minimum copper clearance configured in the DRC settings.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="591"/>
<source>Check the DRC settings and move the objects to increase their clearance if needed.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="613"/>
<source>%1 layers</source>
<comment>Placeholder is a number > 1.</comment>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>DrcMsgCopperHoleClearanceViolation</name>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="787"/>
<source>Clearance copper ↔ hole < %1 %2</source>
<comment>Placeholders: Clearance value, unit</comment>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="790"/>
<source>The clearance between a non-plated hole and copper objects is smaller than the hole clearance configured in the DRC settings.</source>
<translation type="unfinished"/>
</message>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="793"/>
<source>Check the DRC settings and move the copper objects away from the hole if needed.</source>
<translation type="unfinished"/>
</message>
</context>
<context>
<name>DrcMsgCopperInKeepoutZone</name>
<message>
<location filename="libs/librepcb/core/project/board/drc/boarddesignrulecheckmessages.cpp" line="816"/>
<source>Pad in copper keepout zone: '%1'</source>
<comment>Placeholder is pad name</comment>
<translation type="unfinished"/>