~ubuntu-branches/debian/stretch/universalindentgui/stretch

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
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.0" language="zh_TW">
<context>
    <name>AboutDialog</name>
    <message>
        <location filename="../src/AboutDialog.ui" line="26"/>
        <source>About UniversalIndentGUI</source>
        <translation>關於 UniversalIndentGUI</translation>
    </message>
    <message>
        <location filename="../src/AboutDialog.ui" line="94"/>
        <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:12pt;&quot;&gt;Version %1 rev.%2, %3 &lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../src/AboutDialog.ui" line="120"/>
        <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;... is a cross platform compatible GUI for several code formatter, beautifier and indenter like GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP and so on. Main feature is a live preview to directly see how the selected formatting option affects the source code.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;&lt;br /&gt;Written by : &lt;/span&gt;&lt;a href=&quot;http://www.thomas-schweitzer.de&quot;&gt;&lt;span style=&quot; font-size:9pt; text-decoration: underline; color:#0000ff;&quot;&gt;Thomas Schweitzer&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;Project Homepage : &lt;/span&gt;&lt;a href=&quot;http://universalindent.sourceforge.net&quot;&gt;&lt;span style=&quot; font-size:9pt; text-decoration: underline; color:#0000ff;&quot;&gt;http://universalindent.sourceforge.net&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;License: UniversalIndentGui is released under the GPL 2. For details read the included file LICENSE.GPL visit &lt;/span&gt;&lt;a href=&quot;http://www.gnu.org/licenses/gpl.html&quot;&gt;&lt;span style=&quot; font-size:9pt; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.gnu.org/licenses/gpl.html&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;&quot;&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:9pt;&quot;&gt;Credits:&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans&apos;; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:12pt;&quot;&gt;Version %1 rev.%2, %3 &lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:12pt;&quot;&gt;Version %1 rev.%2, %3 &lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
    </message>
    <message>
        <source>&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;Sans&apos;; font-size:10pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;... is a cross platform compatible GUI for several code formatter, beautifier and indenter like GreatCode, AStyle (Artistic Styler), GNU Indent, BCPP and so on. Main feature is a live preview to directly see how the selected formatting option affects the source code.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;&lt;br /&gt;Written by : &lt;/span&gt;&lt;a href=&quot;http://www.thomas-schweitzer.de&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt; text-decoration: underline; color:#0000ff;&quot;&gt;Thomas Schweitzer&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;Project Homepage : &lt;/span&gt;&lt;a href=&quot;http://universalindent.sourceforge.net&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt; text-decoration: underline; color:#0000ff;&quot;&gt;http://universalindent.sourceforge.net&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;License: UniversalIndentGui is released under the GPL 2. For details read the included file LICENSE.GPL visit &lt;/span&gt;&lt;a href=&quot;http://www.gnu.org/licenses/gpl.html&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.gnu.org/licenses/gpl.html&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;.&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:9pt;&quot;&gt;Credits:&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation type="obsolete">&lt;!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 4.0//EN&quot; &quot;http://www.w3.org/TR/REC-html40/strict.dtd&quot;&gt;
&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;style type=&quot;text/css&quot;&gt;
p, li { white-space: pre-wrap; }
&lt;/style&gt;&lt;/head&gt;&lt;body style=&quot; font-family:&apos;MS Shell Dlg 2&apos;; font-size:8.25pt; font-weight:400; font-style:normal;&quot;&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:&apos;Sans Serif&apos;; font-size:9pt;&quot;&gt;&lt;span style=&quot; font-family:&apos;MS Shell Dlg 2&apos;;&quot;&gt;這是一套跨平台、支援多種程式碼重整 / 美化 / 縮排工具的圖形化使用者介面,GreatCodeAStyle (Artistic Styler)GNU IndentBCPP 及其他工具皆在支援名單裡頭。本工具最大的特色在於可以讓你即時預覽原始程式碼重整之後的結果。&lt;/span&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;&quot;&gt;&lt;br /&gt;開發者:&lt;a href=&quot;http://www.thomas-schweitzer.de&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;Thomas Schweitzer&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:12px; margin-bottom:12px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;&quot;&gt;專案首頁:&lt;a href=&quot;http://universalindent.sourceforge.net&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://universalindent.sourceforge.net&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;&quot;&gt;授權協定:UniversalIndentGui 採用 GPL 2 授權。詳情請參閱附帶的 LICENSE.GPL 文件,或拜訪 &lt;a href=&quot;http://www.gnu.org/licenses/gpl.html&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#0000ff;&quot;&gt;http://www.gnu.org/licenses/gpl.html&lt;/span&gt;&lt;/a&gt; 取得進一步的資訊。&lt;/p&gt;
&lt;p style=&quot;-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;&quot;&gt;&lt;/p&gt;
&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:9pt;&quot;&gt;致謝名單:&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
    </message>
    <message>
        <location filename="../src/AboutDialog.ui" line="167"/>
        <source>          OK          </source>
        <translation>確定</translation>
    </message>
</context>
<context>
    <name>FindDialog</name>
    <message>
        <location filename="../src/FindDialog.ui" line="14"/>
        <source>Find</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../src/FindDialog.ui" line="26"/>
        <source>Find what:</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../src/FindDialog.ui" line="46"/>
        <source>Find options</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../src/FindDialog.ui" line="52"/>
        <source>Match case</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../src/FindDialog.ui" line="59"/>
        <source>Match whole word</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../src/FindDialog.ui" line="66"/>
        <source>Search forward</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../src/FindDialog.ui" line="76"/>
        <source>Use Regular Expressions</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../src/FindDialog.ui" line="104"/>
        <source>Find Next</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../src/FindDialog.ui" line="111"/>
        <source>Close</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>IndentHandler</name>
    <message>
        <location filename="../src/IndentHandler.cpp" line="567"/>
        <source>&lt;b&gt;Indent console output was:&lt;/b&gt; </source>
        <translation>&lt;b&gt;重整工具命令列輸出為:&lt;/b&gt; </translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="566"/>
        <source>&lt;b&gt;Indenter returned with exit code:&lt;/b&gt; </source>
        <translation>&lt;b&gt;重整工具傳回的錯誤代碼:&lt;/b&gt; </translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="532"/>
        <source>&lt;b&gt;Reason could be:&lt;/b&gt; </source>
        <translation>&lt;b&gt;原因可能是:&lt;/b&gt; </translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="528"/>
        <source>&lt;b&gt;Returned error message:&lt;/b&gt; </source>
        <translation>&lt;b&gt;傳回的錯誤訊息:&lt;/b&gt; </translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="559"/>
        <source>Error calling Indenter</source>
        <translation>呼叫重整工具時發生錯誤</translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="574"/>
        <source>Indenter returned error</source>
        <translation>重整工具傳回錯誤</translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="505"/>
        <source>No indenter executable</source>
        <translation>找不到重整工具</translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="1411"/>
        <source>There exists only a win32 executable of the indenter and wine does not seem to be installed. Please install wine to be able to run the indenter.</source>
        <translation>該重整工具只有 Win32 版本,而你似乎尚未安裝 wine。請安裝 wine 以便執行該重整工具。</translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="1411"/>
        <source>wine not installed</source>
        <translation>尚未安裝 wine</translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="552"/>
        <location filename="../src/IndentHandler.cpp" line="570"/>
        <source>&lt;br&gt;&lt;b&gt;Callstring was:&lt;/b&gt; </source>
        <translation>&lt;br&gt;&lt;b&gt;呼叫方式是:&lt;/b&gt; </translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="159"/>
        <source>No indenter ini files</source>
        <translation>找不到重整工具需要的 INI </translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="159"/>
        <source>There exists no indenter ini files in the directory &quot;</source>
        <translation>本目錄下找不到重整工具所需的 INI  &quot;</translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="506"/>
        <source>There exists no indenter executable with the name &quot;%1&quot; in the directory &quot;%2&quot; nor in the global environment.</source>
        <translation>找不到重整工具 &quot;%1&quot; 於目錄 &quot;%2&quot; 下及全域環境變數下。</translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="553"/>
        <source>&lt;br&gt;&lt;br&gt;&lt;b&gt;Indenter output was:&lt;/b&gt;&lt;pre&gt;</source>
        <translation>&lt;br&gt;&lt;br&gt;&lt;b&gt;重整工具的輸出結果:&lt;/b&gt;&lt;pre&gt;</translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="907"/>
        <source>Indenter ini file header error</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="908"/>
        <source>The loaded indenter ini file &quot;%1&quot;has a faulty header. At least the indenters file name is not set.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="1366"/>
        <source>Interpreter needed</source>
        <translation>需要直譯器</translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="1367"/>
        <source>To use the selected indenter the program &quot;%1&quot; needs to be available in the global environment. You should add an entry to your path settings.</source>
        <translation>要使用這個重整工具,你必須將程式 &quot;%1&quot; 加到全域的 Path 變數中。</translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="1457"/>
        <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Shows the currently chosen indenters name and lets you choose other available indenters&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;顯示目前使用的重整工具名稱,並讓你選擇其他可用的重整工具&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="1458"/>
        <source>Brings you to the online manual of the currently selected indenter, where you can get further help on the possible parameters.</source>
        <translation>這會開啟當前重整工具的線上手冊,你將能找到更多關於可用參數的說明。</translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="1469"/>
        <location filename="../src/IndentHandler.cpp" line="1470"/>
        <source>Create a shell script that calls the current selected indenter for formatting an as parameter given file with the current indent settings.</source>
        <translation>建立批次檔呼叫目前的重整工具。它會接受檔案路徑作為參數,接著呼叫重整工具並套用目前的重整設定,適合讓 IDE 作為外部工具呼叫。</translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="1502"/>
        <source>Choose indenter config file</source>
        <translation>選擇重整工具設定檔</translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="1516"/>
        <location filename="../src/IndentHandler.cpp" line="1548"/>
        <source>All files</source>
        <translation>所有檔案</translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="1519"/>
        <source>Save indent config file</source>
        <translation>儲存重整工具的設定</translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="1548"/>
        <source>Shell Script</source>
        <translation>批次檔</translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="1554"/>
        <source>Save shell script</source>
        <translation>儲存批次檔</translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="1460"/>
        <source>Load Indenter Config File</source>
        <translation>載入重整工具設定檔</translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="1461"/>
        <source>Opens a file dialog to load the original config file of the indenter.</source>
        <translation>載入目前重整工具的設定</translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="1462"/>
        <source>Alt+O</source>
        <translation>Alt+O</translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="1464"/>
        <source>Save Indenter Config File</source>
        <translation>儲存重整工具設定檔</translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="1465"/>
        <source>Opens a dialog to save the current indenter configuration to a file.</source>
        <translation>儲存目前重整工具的設定</translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="1466"/>
        <source>Alt+S</source>
        <translation>Alt+S</translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="1468"/>
        <source>Create Indenter Call Shell Script</source>
        <translation>建立重整工具批次檔</translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="1472"/>
        <source>Reset indenter parameters</source>
        <translation>恢復為預設值</translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="1473"/>
        <location filename="../src/IndentHandler.cpp" line="1474"/>
        <source>Resets all indenter parameters to the default values.</source>
        <translation>將所有重整參數設定恢復為預設值。</translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="1582"/>
        <source>Really reset parameters?</source>
        <translation>確定要恢復為預設值?</translation>
    </message>
    <message>
        <location filename="../src/IndentHandler.cpp" line="1582"/>
        <source>Do you really want to reset the indenter parameters to the default values?</source>
        <translation>你真的要將參數恢復為預設值嗎?</translation>
    </message>
</context>
<context>
    <name>MainWindow</name>
    <message>
        <location filename="../src/MainWindow.cpp" line="399"/>
        <location filename="../src/MainWindow.cpp" line="439"/>
        <source>All files</source>
        <translation>所有檔案</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.cpp" line="367"/>
        <location filename="../src/MainWindow.cpp" line="1093"/>
        <source>Cannot read the file </source>
        <translation>無法讀取檔案</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.cpp" line="403"/>
        <source>Choose source code file</source>
        <translation>選擇檔案</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.cpp" line="367"/>
        <location filename="../src/MainWindow.cpp" line="1093"/>
        <source>Error opening file</source>
        <translation>開啟檔案時發生錯誤</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.cpp" line="825"/>
        <location filename="../src/MainWindow.cpp" line="847"/>
        <source>Export source code file</source>
        <translation>匯出檔案</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.cpp" line="840"/>
        <source>HTML Document</source>
        <translation>HTML 文件</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.cpp" line="978"/>
        <source>Modified code</source>
        <translation>修改後的檔案</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.cpp" line="818"/>
        <source>PDF Document</source>
        <translation>PDF 文件</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.cpp" line="1044"/>
        <location filename="../src/MainWindow.cpp" line="1178"/>
        <source>Reopen the currently opened source code file by using the text encoding scheme </source>
        <translation>重新開啟目前的檔案,編碼使用 </translation>
    </message>
    <message>
        <location filename="../src/MainWindow.cpp" line="442"/>
        <source>Save source code file</source>
        <translation>儲存檔案</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.cpp" line="398"/>
        <location filename="../src/MainWindow.cpp" line="438"/>
        <source>Supported by indenter</source>
        <translation>重整工具支援的檔案類型</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.cpp" line="979"/>
        <source>The source code has been modified.
Do you want to save your changes?</source>
        <translation>程式碼已被修改。
你要儲存嗎?</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.cpp" line="1123"/>
        <location filename="../src/MainWindow.cpp" line="1192"/>
        <source>Set the syntax highlightning to </source>
        <translation>將語法高亮度方式設為 </translation>
    </message>
    <message>
        <location filename="../src/MainWindow.cpp" line="1334"/>
        <source>File no longer exists</source>
        <translation>檔案不存在</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.cpp" line="1334"/>
        <source>The file %1 in the list of recently opened files does no longer exist.</source>
        <translation>找不到檔案清單裡的「%1</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.cpp" line="1052"/>
        <location filename="../src/MainWindow.cpp" line="1184"/>
        <source>Save the currently opened source code file by using the text encoding scheme </source>
        <translation>另存目前的檔案,編碼使用 </translation>
    </message>
    <message>
        <location filename="../src/MainWindow.cpp" line="240"/>
        <location filename="../src/MainWindow.cpp" line="1382"/>
        <source>Line %1, Column %2</source>
        <translation> %1,行 %2</translation>
    </message>
</context>
<context>
    <name>MainWindowUi</name>
    <message>
        <location filename="../src/MainWindow.ui" line="15"/>
        <source>UniversalIndentGUI</source>
        <translation>UniversalIndentGUI</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="53"/>
        <source>Indenter</source>
        <translation>重整工具</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="58"/>
        <source>File</source>
        <translation>檔案</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="62"/>
        <source>Export</source>
        <translation>匯出</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="69"/>
        <source>Recently Opened Files</source>
        <translation>最近開啟的檔案</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="76"/>
        <source>Reopen File with other Encoding</source>
        <translation>用別的編碼方式重新開啟</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="81"/>
        <source>Save Source File As with other Encoding</source>
        <translation>用別的編碼方式另存新檔</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="97"/>
        <location filename="../src/MainWindow.ui" line="415"/>
        <location filename="../src/MainWindow.ui" line="418"/>
        <source>Settings</source>
        <translation>設定</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="101"/>
        <source>Set Syntax Highlighter</source>
        <translation>選擇語法高亮度</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="114"/>
        <source>Help</source>
        <translation>說明</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="171"/>
        <source>Main Toolbar</source>
        <translation>主要工具列</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="198"/>
        <source>Open Source File</source>
        <translation>開啟檔案</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="201"/>
        <source>Opens a dialog for selecting a source code file.</source>
        <translation>選擇要處理的檔案</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="204"/>
        <source>Ctrl+O</source>
        <translation>Ctrl+O</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="213"/>
        <source>Save Source File</source>
        <translation>儲存</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="216"/>
        <source>Saves the currently shown source code to the last opened or saved source file.</source>
        <translation>儲存目前顯示的程式碼</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="219"/>
        <source>Ctrl+S</source>
        <translation>Ctrl+S</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="237"/>
        <source>Opens a file dialog to save the currently shown source code.</source>
        <translation>儲存目前顯示的程式碼到別的檔案</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="249"/>
        <source>About UniversalIndentGUI</source>
        <translation>關於 UniversalIndentGUI</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="252"/>
        <source>Shows info about UniversalIndentGUI.</source>
        <translation>顯示 UniversalIndentGUI 的相關資訊</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="261"/>
        <source>Exit</source>
        <translation>離開</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="264"/>
        <source>Quits the UniversalIndentGUI.</source>
        <translation>離開本程式</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="267"/>
        <source>Ctrl+Q</source>
        <translation>Ctrl+Q</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="276"/>
        <source>PDF</source>
        <translation>PDF</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="279"/>
        <source>Export the currently visible source code as PDF document</source>
        <translation>匯出目前顯示的程式碼到 PDF 文件</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="288"/>
        <source>HTML</source>
        <translation>HTML</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="291"/>
        <source>Export the currently visible source code as HTML document</source>
        <translation>匯出目前顯示的程式碼到 HTML 文件</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="306"/>
        <source>Parameter Tooltips</source>
        <translation>顯示參數的提示訊息</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="309"/>
        <source>If checked, tool tips will show up if the mouse cursor remains over an indenter parameter for a while.</source>
        <translation>滑鼠移到重整工具的各項參數設定時,會顯示該參數的相關提示</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="324"/>
        <source>Live Indent Preview</source>
        <translation>即時預覽重整效果</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="327"/>
        <source>Ctrl+L</source>
        <translation>Ctrl+L</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="345"/>
        <location filename="../src/MainWindow.ui" line="348"/>
        <source>Syntax Highlighting</source>
        <translation>語法高亮度</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="351"/>
        <source>Enables or disables syntax highlighting for the source code.</source>
        <translation>啟用或停用語法高亮度顯示</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="354"/>
        <source>By enabling special key words of the source code are highlighted.</source>
        <translation>啟用之後,程式碼會比較容易閱讀</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="368"/>
        <location filename="../src/MainWindow.ui" line="371"/>
        <source>White Space Visible</source>
        <translation>顯示空白字元</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="374"/>
        <source>Set white space visible</source>
        <translation>顯示空白字元</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="377"/>
        <source>Enables or disables diplaying of white space characters in the editor.</source>
        <translation>是否在編輯視窗裡頭顯示空白字元</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="394"/>
        <source>Auto Open Last File</source>
        <translation>自動載入上次使用的檔案</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="397"/>
        <source>Auto open last source file on startup</source>
        <translation>啟動程式後,自動載入上次使用的檔案</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="400"/>
        <source>If selected opens last source code file on startup</source>
        <translation>若你啟用這個選項,程式啟動後將會自動載入上次使用的檔案</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="421"/>
        <source>Opens the settings dialog</source>
        <translation>開啟設定視窗</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="424"/>
        <source>Opens the settings dialog, to set language etc.</source>
        <translation>開啟設定視窗</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="433"/>
        <source>Check for update</source>
        <translation>檢查是否有更新檔</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="436"/>
        <location filename="../src/MainWindow.ui" line="439"/>
        <source>Checks online whether a new version of UniversalIndentGUI is available.</source>
        <translation>上網檢查是否有新版的 UniversalIndentGUI</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="448"/>
        <source>Clear Recently Opened List</source>
        <translation>清空最近開啟的檔案清單</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="457"/>
        <source>Show Log</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="460"/>
        <source>Displays logging information.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="463"/>
        <source>Displays logging info about the currently running UiGUI application.</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="140"/>
        <source>Indenter Settings</source>
        <translation>重整工具設定</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="228"/>
        <location filename="../src/MainWindow.ui" line="231"/>
        <location filename="../src/MainWindow.ui" line="234"/>
        <source>Save Source File As...</source>
        <translation>另存新檔...</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="312"/>
        <source>DONOTTRANSLATE:IndenterParameterTooltipsEnabled</source>
        <translation></translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="360"/>
        <source>DONOTTRANSLATE:SyntaxHighlightningEnabled</source>
        <translation></translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="383"/>
        <source>DONOTTRANSLATE:WhiteSpaceIsVisible</source>
        <translation></translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="406"/>
        <source>DONOTTRANSLATE:LoadLastOpenedFileOnStartup</source>
        <translation></translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="240"/>
        <source>Ctrl+Shift+S</source>
        <translation>Ctrl+Shift+S</translation>
    </message>
    <message>
        <location filename="../src/MainWindow.ui" line="357"/>
        <source>Ctrl+H</source>
        <translation>Ctrl+H</translation>
    </message>
</context>
<context>
    <name>SettingsDialog</name>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="41"/>
        <source>Common</source>
        <translation>一般</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="17"/>
        <source>Settings</source>
        <translation>設定</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="108"/>
        <source>Automatically open last file on startup</source>
        <translation>啟動程式後,自動載入上次使用的檔案</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="121"/>
        <source>Enable Parameter Tooltips</source>
        <translation>顯示參數的提示訊息</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="220"/>
        <source>Editor</source>
        <translation>編輯器</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="355"/>
        <source>Highlighter settings</source>
        <translation>高亮度設定</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="392"/>
        <source>Set Font</source>
        <translation>選擇字型</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="402"/>
        <source>Set Color</source>
        <translation>選擇顏色</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="61"/>
        <location filename="../src/UiGuiSettingsDialog.ui" line="80"/>
        <source>Displays all available translations for UniversalIndentGui and lets you choose one.</source>
        <translation>顯示所有可用的翻譯,讓我自行挑選</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="64"/>
        <source>Application language</source>
        <translation>選擇語系</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="105"/>
        <source>If selected opens the source code file on startup that was opened last time.</source>
        <translation>若你啟用這個選項,程式啟動後將會自動載入上次使用的檔案</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="118"/>
        <source>If checked, tool tips will show up if the mouse cursor remains over an indenter parameter for a while.</source>
        <translation>滑鼠移到重整工具的各項參數設定時,會顯示該參數的相關提示</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="139"/>
        <location filename="../src/UiGuiSettingsDialog.ui" line="155"/>
        <source>Sets how many files should be remembered in the list of recently opened files.</source>
        <translation>設定在最近開啟的檔案清單裡要顯示幾筆檔案</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="232"/>
        <source>Enables or disables displaying of white space characters in the editor.</source>
        <translation>選擇是否在編輯視窗裡頭顯示空白字元</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="235"/>
        <source>Display white space character (tabs, spaces, etc.)</source>
        <translation>顯示空白字元 (Tab, 空白, 其他)</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="272"/>
        <source>Defines how many spaces should be displayed in the editor for one tab character.</source>
        <translation>設定 Tab 要用幾個空白顯示</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="253"/>
        <source>Sets width in single spaces used for tabs</source>
        <translation>設定 Tab 相當於幾個空白的寬度</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="256"/>
        <source>Defines how many spaces should be displayed in the editor for one tab.</source>
        <translation>設定 Tab 要用幾個空白顯示</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="259"/>
        <source>Displayed width of tabs</source>
        <translation>Tab 的寬度</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="324"/>
        <source>Syntax Highlighting</source>
        <translation>語法高亮度</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="336"/>
        <source>By enabling special key words of the source code are highlighted.</source>
        <translation>啟用之後,程式碼會比較容易閱讀</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="339"/>
        <source>Enable syntax highlighting</source>
        <translation>啟用語法高亮度</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="352"/>
        <source>Lets you make settings for all properties of the available syntax highlighters, like font and color.</source>
        <translation>讓你設定語法高亮度屬性,例如字型跟顏色</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="389"/>
        <source>Set the font for the current selected highlighter property.</source>
        <translation>設定字型</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="399"/>
        <source>Set the color for the current selected highlighter property.</source>
        <translation>設定顏色</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="142"/>
        <source>Number of files in recently opened list</source>
        <translation>最近開啟的檔案清單裡要顯示的檔案個數</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="189"/>
        <source>Checks whether a new version of UniversalIndentGUI exists on program start, but only once a day.</source>
        <translation>程式啟動時自動檢查是否有新版本,一天只會檢查一次。</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="192"/>
        <source>Check online for update on program start</source>
        <translation>程式啟動時自動檢查更新</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="83"/>
        <source>DONOTTRANSLATE:Language</source>
        <translation></translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="111"/>
        <source>DONOTTRANSLATE:LoadLastOpenedFileOnStartup</source>
        <translation></translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="124"/>
        <source>DONOTTRANSLATE:IndenterParameterTooltipsEnabled</source>
        <translation></translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="167"/>
        <source>DONOTTRANSLATE:RecentlyOpenedListSize</source>
        <translation></translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="195"/>
        <source>DONOTTRANSLATE:CheckForUpdate</source>
        <translation></translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="238"/>
        <source>DONOTTRANSLATE:WhiteSpaceIsVisible</source>
        <translation></translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="284"/>
        <source>DONOTTRANSLATE:TabWidth</source>
        <translation></translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.ui" line="342"/>
        <source>DONOTTRANSLATE:SyntaxHighlightningEnabled</source>
        <translation></translation>
    </message>
</context>
<context>
    <name>ToolBarWidget</name>
    <message>
        <location filename="../src/ToolBarWidget.ui" line="14"/>
        <source>Form</source>
        <translation>表單</translation>
    </message>
    <message>
        <location filename="../src/ToolBarWidget.ui" line="26"/>
        <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;Opens a dialog for selecting a source code file.&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:8pt;&quot;&gt;This file will be used to show what the indent tool changes.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;&lt;span style=&quot; font-size:8pt;&quot;&gt;選擇要重整的檔案&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
    </message>
    <message>
        <location filename="../src/ToolBarWidget.ui" line="29"/>
        <source>Open Source File </source>
        <translation>開啟檔案</translation>
    </message>
    <message>
        <location filename="../src/ToolBarWidget.ui" line="40"/>
        <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;Turns the preview of the reformatted source code on and off.&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;In other words it switches between formatted and nonformatted code. (Ctrl+L)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;啟用或停用程式碼預覽功能。&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;換句話說,它將在重整過以及未重整的程式碼之間切換 (Ctrl+L)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
    </message>
    <message>
        <location filename="../src/ToolBarWidget.ui" line="43"/>
        <source>Live Indent Preview</source>
        <translation>即時預覽重整效果</translation>
    </message>
    <message>
        <location filename="../src/ToolBarWidget.ui" line="50"/>
        <source>Ctrl+L</source>
        <translation>Ctrl+L</translation>
    </message>
    <message>
        <location filename="../src/ToolBarWidget.ui" line="57"/>
        <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;Enables and disables the highlightning of the source&lt;/p&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;code shown below. (Still needs some performance improvements) (Ctrl+H)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg 2; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-family:MS Shell Dlg; font-size:8pt;&quot;&gt;啟用或停用程式碼高亮度功能。效能尚待改進。(Ctrl+H)&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
    </message>
    <message>
        <location filename="../src/ToolBarWidget.ui" line="60"/>
        <source>Syntax Highlight</source>
        <translation>語法高亮度</translation>
    </message>
    <message>
        <location filename="../src/ToolBarWidget.ui" line="67"/>
        <source>Ctrl+H</source>
        <translation>Ctrl+H</translation>
    </message>
    <message>
        <location filename="../src/ToolBarWidget.ui" line="73"/>
        <source>DONOTTRANSLATE:SyntaxHighlightningEnabled</source>
        <translation></translation>
    </message>
    <message>
        <location filename="../src/ToolBarWidget.ui" line="93"/>
        <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Shows info about UniversalIndentGUI&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;顯示 UniversalIndentGUI 的相關資訊&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
    </message>
    <message>
        <location filename="../src/ToolBarWidget.ui" line="96"/>
        <source>About</source>
        <translation>關於</translation>
    </message>
    <message>
        <location filename="../src/ToolBarWidget.ui" line="107"/>
        <source>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;Quits the UniversalIndentGUI&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
        <translation>&lt;html&gt;&lt;head&gt;&lt;meta name=&quot;qrichtext&quot; content=&quot;1&quot; /&gt;&lt;/head&gt;&lt;body style=&quot; white-space: pre-wrap; font-family:MS Shell Dlg; font-size:8.25pt; font-weight:400; font-style:normal; text-decoration:none;&quot;&gt;&lt;p style=&quot; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;&quot;&gt;離開 UniversalIndentGUI&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</translation>
    </message>
    <message>
        <location filename="../src/ToolBarWidget.ui" line="110"/>
        <source>Exit</source>
        <translation>離開</translation>
    </message>
</context>
<context>
    <name>UiGuiErrorMessage</name>
    <message>
        <location filename="../src/UiGuiErrorMessage.cpp" line="40"/>
        <source>Show this message again</source>
        <translation>下次繼續顯示這個訊息</translation>
    </message>
</context>
<context>
    <name>UiGuiIndentServer</name>
    <message>
        <location filename="../src/UiGuiIndentServer.cpp" line="61"/>
        <source>UiGUI Server</source>
        <translation>UiGUI 伺服器</translation>
    </message>
    <message>
        <location filename="../src/UiGuiIndentServer.cpp" line="61"/>
        <source>Unable to start the server: %1.</source>
        <translation>無法連到伺服器:%1</translation>
    </message>
</context>
<context>
    <name>UiGuiLoggerDialog</name>
    <message>
        <location filename="../src/UiGuiLoggerDialog.ui" line="14"/>
        <source>Log</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../src/UiGuiLoggerDialog.ui" line="24"/>
        <source>Logged messages</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../src/UiGuiLoggerDialog.ui" line="40"/>
        <source>Clear log</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../src/UiGuiLoggerDialog.ui" line="43"/>
        <source>...</source>
        <translation type="unfinished"></translation>
    </message>
    <message>
        <location filename="../src/UiGuiLoggerDialog.ui" line="54"/>
        <location filename="../src/UiGuiLoggerDialog.ui" line="57"/>
        <source>Open folder containing log file.</source>
        <translation type="unfinished"></translation>
    </message>
</context>
<context>
    <name>UiGuiSettingsDialog</name>
    <message>
        <location filename="../src/UiGuiSettingsDialog.cpp" line="73"/>
        <location filename="../src/UiGuiSettingsDialog.cpp" line="233"/>
        <source>English</source>
        <translation>英文</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.cpp" line="79"/>
        <location filename="../src/UiGuiSettingsDialog.cpp" line="239"/>
        <source>German</source>
        <translation>德文</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.cpp" line="85"/>
        <location filename="../src/UiGuiSettingsDialog.cpp" line="245"/>
        <source>Japanese</source>
        <translation>日文</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.cpp" line="95"/>
        <location filename="../src/UiGuiSettingsDialog.cpp" line="254"/>
        <source>Unknown language mnemonic </source>
        <translation>未知語言 </translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.cpp" line="82"/>
        <location filename="../src/UiGuiSettingsDialog.cpp" line="242"/>
        <source>Chinese (Taiwan)</source>
        <translation>中文(台灣)</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.cpp" line="76"/>
        <location filename="../src/UiGuiSettingsDialog.cpp" line="236"/>
        <source>French</source>
        <translation>法文</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.cpp" line="88"/>
        <location filename="../src/UiGuiSettingsDialog.cpp" line="248"/>
        <source>Russian</source>
        <translation>俄文</translation>
    </message>
    <message>
        <location filename="../src/UiGuiSettingsDialog.cpp" line="91"/>
        <location filename="../src/UiGuiSettingsDialog.cpp" line="251"/>
        <source>Ukrainian</source>
        <translation>烏克蘭文</translation>
    </message>
</context>
<context>
    <name>UpdateCheckDialog</name>
    <message>
        <location filename="../src/UpdateCheckDialog.cpp" line="166"/>
        <location filename="../src/UpdateCheckDialog.ui" line="17"/>
        <source>Checking for update...</source>
        <translation>正在檢查是否有更新檔</translation>
    </message>
    <message>
        <location filename="../src/UpdateCheckDialog.cpp" line="167"/>
        <location filename="../src/UpdateCheckDialog.ui" line="23"/>
        <source>Checking whether a newer version is available</source>
        <translation>正在檢查是否有新版本</translation>
    </message>
    <message>
        <location filename="../src/UpdateCheckDialog.cpp" line="178"/>
        <source>Update available</source>
        <translation>找到新版本</translation>
    </message>
    <message>
        <location filename="../src/UpdateCheckDialog.cpp" line="179"/>
        <source>A newer version of UniversalIndentGUI is available.
Your version is %1. New version is %2.
Do you want to go to the download website?</source>
        <translation>找到新版本
你使用的版本是 %1,新版本是 %2
你想要開啟下載頁面嗎?</translation>
    </message>
    <message>
        <location filename="../src/UpdateCheckDialog.cpp" line="190"/>
        <source>No new update available</source>
        <translation>沒有找到新版本</translation>
    </message>
    <message>
        <location filename="../src/UpdateCheckDialog.cpp" line="191"/>
        <source>You already have the latest version of UniversalIndentGUI.</source>
        <translation>你使用的是最新版的 UniversalIndentGUI</translation>
    </message>
</context>
</TS>