1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
|
# Traditional Chinese translation for psql.
# Translated and modified from Simplified Chinese translation.
# Zhenbang Wei <forth@zbwei.net>, 2001.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PostgreSQL 7.2\n"
"POT-Creation-Date: 2001-10-01 10:02+0800\n"
"PO-Revision-Date: 2001-10-05 01:00:00+0800\n"
"Last-Translator: Zhenbang Wei <forth@zbwei.net>\n"
"Language-Team: Zhenbang Wei <forth@zbwei.net>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=Big5\n"
"Content-Transfer-Encoding: 8bit\n"
#: command.c:152
msgid "Warning: This syntax is deprecated.\n"
msgstr "ĵ�i: �o�ػy�k�w�g�o��C\n"
#: command.c:159
#, c-format
msgid "Invalid command \\%s. Try \\? for help.\n"
msgstr "�L���R�O \\%s. �� \\? ���o�����C\n"
#: command.c:161
#, c-format
msgid "invalid command \\%s\n"
msgstr "�L���R�O \\%s\n"
#: command.c:278
#, c-format
msgid "could not get home directory: %s\n"
msgstr "�L�k��o home �ؿ�: %s\n"
#: command.c:292
#, c-format
msgid "\\%s: could not change directory to '%s': %s\n"
msgstr "\\%s: ������ܨ� '%s' �ؿ�: %s\n"
#: command.c:380 command.c:726
msgid "no query buffer\n"
msgstr "�L�d�߽w�İ�\n"
#: command.c:436
#, c-format
msgid "%s: invalid encoding name\n"
msgstr "%s: �L�Ľs�X�W��\n"
#: command.c:445
#, c-format
msgid "\\%s: multibyte support is not enabled\n"
msgstr "\\%s: �h�줸�զr���䴩�����}\n"
#: command.c:499 command.c:530 command.c:541 command.c:555 command.c:597
#: command.c:706 command.c:735
#, c-format
msgid "\\%s: missing required argument\n"
msgstr "\\%s: �ʤ֩һݰѼ�\n"
#: command.c:585
msgid "Query buffer is empty."
msgstr "�d�߽w�İϬ��šC"
#: command.c:616
msgid "Query buffer reset (cleared)."
msgstr "���m(�M��)�d�߽w�İ�."
#: command.c:627
#, c-format
msgid "Wrote history to %s.\n"
msgstr "�N���v�O���g�J %s �C\n"
#: command.c:668 command.c:900 command.c:1114 command.c:1160 command.c:1844
#: common.c:57 copy.c:87 describe.c:449 mainloop.c:80 mainloop.c:384
msgid "out of memory\n"
msgstr "�O����κ�\n"
#: command.c:677 command.c:711
#, c-format
msgid "\\%s: error\n"
msgstr "\\%s: ���~\n"
#: command.c:750 command.c:770 command.c:1005 command.c:1018 command.c:1028
#: command.c:1501 command.c:1514 command.c:1526 command.c:1539 command.c:1553
#: command.c:1567 command.c:1597 common.c:106 copy.c:290
#, c-format
msgid "%s: %s\n"
msgstr "%s: %s\n"
#: command.c:835
#, c-format
msgid "\\%s: extra argument '%s' ignored\n"
msgstr "\\%s: �����h�l���Ѽ� '%s'\n"
#: command.c:892 command.c:966 command.c:994
msgid "parse error at the end of line\n"
msgstr "�b����o�ͤ��R���~\n"
#: command.c:1275 command.c:1299 startup.c:183 startup.c:201
msgid "Password: "
msgstr "�K�X: "
#: command.c:1313 common.c:155 common.c:331 common.c:496
#, c-format
msgid "%s"
msgstr ""
#: command.c:1317
msgid "Previous connection kept\n"
msgstr "�O�d�W�@���s��\n"
#: command.c:1330
#, c-format
msgid "\\connect: %s"
msgstr ""
#: command.c:1342
#, c-format
msgid "You are now connected to database %s.\n"
msgstr "�z�{�b�w�g�s�����Ʈw %s�C\n"
#: command.c:1344
#, c-format
msgid "You are now connected as new user %s.\n"
msgstr "�z�{�b�O�H�s�ϥΪ� %s �������s���C\n"
#: command.c:1347
#, c-format
msgid "You are now connected to database %s as user %s.\n"
msgstr "�z�{�b�O�H�ϥΪ� %s �������s�����Ʈw %s�C\n"
#: command.c:1438
#, c-format
msgid "could not start editor %s\n"
msgstr "�L�k����s�边 %s\n"
#: command.c:1440
msgid "could not start /bin/sh\n"
msgstr "�L�k���� /bin/sh\n"
#: command.c:1486
#, c-format
msgid "could not open temporary file %s: %s\n"
msgstr "�L�k�}���{���ɮ� %s: %s\n"
#: command.c:1670
msgid "\\pset: allowed formats are unaligned, aligned, html, latex\n"
msgstr "\\pset: ���\���榡�O unaligned�Baligned�Bhtml�Blatex\n"
#: command.c:1675
#, c-format
msgid "Output format is %s.\n"
msgstr "��X�榡�O %s�C\n"
#: command.c:1685
#, c-format
msgid "Border style is %d.\n"
msgstr "��ɭ���O %d�C\n"
#: command.c:1694
msgid "Expanded display is on.\n"
msgstr "�X�i��ܤw���}�C\n"
#: command.c:1695
msgid "Expanded display is off.\n"
msgstr "�X�i��ܤw�����C\n"
#: command.c:1707
#, c-format
msgid "Null display is '%s'.\n"
msgstr "Null ��ܬ� '%s'�C\n"
#: command.c:1719
#, c-format
msgid "Field separator is '%s'.\n"
msgstr "�����j�Ÿ��O '%s'�C\n"
#: command.c:1733
msgid "Record separator is <newline>."
msgstr "�O�����j�Ÿ��O <newline>�C"
#: command.c:1735
#, c-format
msgid "Record separator is '%s'.\n"
msgstr "�O�����j�Ÿ��O '%s'�C\n"
#: command.c:1746
msgid "Showing only tuples."
msgstr "�u��ܤ��աC"
#: command.c:1748
msgid "Tuples only is off."
msgstr "�����u��ܤ��աC"
#: command.c:1764
#, c-format
msgid "Title is \"%s\".\n"
msgstr "���D�O \"%s\"�C\n"
#: command.c:1766
msgid "Title is unset.\n"
msgstr "�L���D�C\n"
#: command.c:1782
#, c-format
msgid "Table attribute is \"%s\".\n"
msgstr "��ƪ��ݩʬO \"%s\"�C\n"
#: command.c:1784
msgid "Table attributes unset.\n"
msgstr "���]�m��ƪ��ݩʡC\n"
#: command.c:1795
msgid "Using pager is on."
msgstr "�ϥΤ������C"
#: command.c:1797
msgid "Using pager is off."
msgstr "���ϥΤ������C"
#: command.c:1808
msgid "Default footer is on."
msgstr "���}�w�]���СC"
#: command.c:1810
msgid "Default footer is off."
msgstr "�����w�]���СC"
#: command.c:1816
#, c-format
msgid "\\pset: unknown option: %s\n"
msgstr "\\pset: �����ﶵ: %s\n"
#: command.c:1859
msgid "\\!: failed\n"
msgstr "\\!: ����\n"
#: common.c:50
#, c-format
msgid "%s: xstrdup: cannot duplicate null pointer (internal error)\n"
msgstr "%s: xstrdup: �L�k�ƻs�ū���(�������~)\n"
#: common.c:299 common.c:385
msgid "You are currently not connected to a database.\n"
msgstr "�z�ثe�S���P��Ʈw�s���C\n"
#: common.c:338 common.c:506
msgid "connection to server was lost\n"
msgstr "�P��Ʈw���s�����_\n"
#: common.c:341 common.c:509
msgid "The connection to the server was lost. Attempting reset: "
msgstr "�P���A�����s���w���_�A���խ��m: "
#: common.c:345 common.c:513
msgid "Failed.\n"
msgstr "���ѡC\n"
#: common.c:355 common.c:525
msgid "Succeeded.\n"
msgstr "���\�C\n"
#: common.c:393
#, c-format
msgid ""
"***(Single step mode: Verify "
"query)*********************************************\n"
"%s\n"
"***(press return to proceed or enter x and return to "
"cancel)********************\n"
msgstr ""
"***(��B�Ҧ�: ��� "
"�d��)**********************************************\n"
"%s\n"
"***(�� Enter ���~��ο�J x �M��� Enter ��"
"����)**********************\n"
#: common.c:485
msgid ""
"Enter data to be copied followed by a newline.\n"
"End with a backslash and a period on a line by itself."
msgstr ""
"��J�n�ƻs����ƨåB����C\n"
"�b�W�ߪ��@��W��J�@�Ӥϱu�M�@�ӥy�I�����C"
#: common.c:531
#, c-format
msgid "Asynchronous NOTIFY '%s' from backend with pid %d received.\n"
msgstr "�����{�s���� %d ����ݩҶǰe���D�P�B NOTIFY(�q��) '%s'�C\n"
#: copy.c:81
msgid "\\copy: arguments required\n"
msgstr "\\copy: �ݭn�Ѽ�\n"
#: copy.c:211
#, c-format
msgid "\\copy: parse error at '%s'\n"
msgstr "\\copy: �b '%s' ���R���~\n"
#: copy.c:213
msgid "\\copy: parse error at end of line\n"
msgstr "\\copy: �b������R���~\n"
#: copy.c:310
#, c-format
msgid "\\copy: %s"
msgstr ""
#: copy.c:314
#, c-format
msgid "\\copy: unexpected response (%d)\n"
msgstr "\\copy: �N�~�^��(%d)\n"
#: help.c:70
#, c-format
msgid "could not get current user name: %s\n"
msgstr "�L�k���o�ثe���ϥΪ̦W��: %s\n"
#: help.c:79
msgid "This is psql, the PostgreSQL interactive terminal.\n"
msgstr "�o�O psql�APostgreSQL �����ʱ���O�C\n"
#: help.c:80
msgid "Usage:"
msgstr "�Ϊk:"
#: help.c:81
msgid " psql [options] [dbname [username]]\n"
msgstr " psql [�ﶵ] [��Ʈw�W�� [�ϥΪ̦W��]]\n"
#: help.c:82
msgid "Options:"
msgstr "�ﶵ:"
#: help.c:83
msgid " -a Echo all input from script"
msgstr " -a ��ܩҦ��Ӧ۸}������J"
#: help.c:84
msgid " -A Unaligned table output mode (-P format=unaligned)"
msgstr " -A �D����������X�Ҧ�(-P format=unaligned)"
#: help.c:85
msgid " -c COMMAND Run only single command (SQL or internal) and exit"
msgstr " -c �R�O �u����@���R�O(SQL �Ϊ̤���)�M��h�X"
#: help.c:91
#, c-format
msgid " -d DBNAME Specify database name to connect to (default: %s)\n"
msgstr " -d �ƾڮw�W ���w�n�s������Ʈw�W(�w�]: %s)\n"
#: help.c:93
msgid " -e Echo commands sent to server"
msgstr " -e ��ܵo�e�����A�����R�O"
#: help.c:94
msgid " -E Display queries that internal commands generate"
msgstr " -E ��ܤ����R�O���ͪ��d��"
#: help.c:95
msgid " -f FILENAME Execute commands from file, then exit"
msgstr " -f ���W ����Ӧ��ɮת��R�O�A�M��h�X"
#: help.c:96
#, c-format
msgid ""
" -F STRING Set field separator (default: \"%s\") (-P fieldsep=)\n"
msgstr ""
" -F �r�� �]�w�����j�Ÿ� (�w�]: \"%s\") (-P fieldsep=)\n"
#: help.c:101
#, c-format
msgid " -h HOSTNAME Specify database server host (default: %s)\n"
msgstr " -h �D���W ���w��Ʈw���A���D�� (�w�]: %s)\n"
#: help.c:102
msgid "local socket"
msgstr ""
#: help.c:104
msgid " -H HTML table output mode (-P format=html)"
msgstr " -H HTML �����X�Ҧ� (-P format=html)"
#: help.c:105
msgid " -l List available databases, then exit"
msgstr " -l �C�X�Ҧ��i�θ�Ʈw�A�M��h�X"
#: help.c:106
msgid " -n Disable enhanced command line editing (readline)"
msgstr " -n �����W�j���R�O�C�s��\�� (readline)"
#: help.c:107
msgid " -o FILENAME Send query results to file (or |pipe)"
msgstr " -o ���W �N�d�ߵ��G�ǰe���ɮ�(�Ϊ� | �D)"
#: help.c:111
#, c-format
msgid " -p PORT Specify database server port (default: %s)\n"
msgstr " -p PORT ���w��Ʈw���A���� (�w�]: %s)\n"
#: help.c:114
msgid ""
" -P VAR[=ARG] Set printing option 'VAR' to 'ARG' (see \\pset command)"
msgstr ""
" -P VAR[=ARG] �⥴�L�ﶵ 'VAR' �]�m�� 'ARG' (�� \\pset �R�O)"
#: help.c:115
msgid " -q Run quietly (no messages, only query output)"
msgstr " -q �w�R���� (�S���T���A�u���d�߿�X)"
#: help.c:116
msgid ""
" -R STRING Set record separator (default: newline) (-P recordsep=)"
msgstr ""
" -R �r�� �]�w�O�����j�Ÿ� (�w�]: �s��) (-P recordsep=)"
#: help.c:117
msgid " -s Single step mode (confirm each query)"
msgstr " -s ��B�Ҧ� (�T�{�C�Ӭd��)"
#: help.c:118
msgid " -S Single line mode (end of line terminates SQL command)"
msgstr " -S ���Ҧ� (�@�浲���P�ɤ]���ܵ� SQL �R�O����)"
#: help.c:119
msgid " -t Print rows only (-P tuples_only)"
msgstr " -t �u�C�L�� (-P tuples_onle)"
#: help.c:120
msgid ""
" -T TEXT Set HTML table tag attributes (width, border) (-P "
"tableattr=)"
msgstr ""
" -T �奻 �]�w HTML ����аO�ݩ� (width, border) (-P "
"tableattr=)"
#: help.c:126
#, c-format
msgid " -U NAME Specify database user name (default: %s)\n"
msgstr " -U �ϥΪ̦W�� ���w��Ʈw�ϥΪ� (�w�]: %s)\n"
#: help.c:128
msgid " -v NAME=VALUE Set psql variable 'NAME' to 'VALUE'"
msgstr " -v �W��=�ƭ� �]�w psql �ܼ� '�W��' �� '�ƭ�'"
#: help.c:129
msgid " -V Show version information and exit"
msgstr " -V ��ܪ�����T�M��h�X"
#: help.c:130
msgid " -W Prompt for password (should happen automatically)"
msgstr " -W ���ܿ�J�K�X (���Ӧ۰ʸ߰�)"
#: help.c:131
msgid " -x Turn on expanded table output (-P expanded)"
msgstr " -x ���}�X�i�����X (-P expended)"
#: help.c:132
msgid " -X Do not read startup file (~/.psqlrc)"
msgstr " -X ���nŪ���Ұ��ɮ� (~/.psqlrc)"
#: help.c:135
msgid ""
"\n"
"For more information, type \"\\?\" (for internal commands) or \"\\help\"\n"
"(for SQL commands) from within psql, or consult the psql section in\n"
"the PostgreSQL documentation.\n"
"\n"
"Report bugs to <pgsql-bugs@postgresql.org>."
msgstr ""
"\n"
"�b psql ����J \"\\?\" (���R�O) �� \"\\help\"\n (�� SQL �R�O)�A"
"�Ϊ̰Ѧ� PostgreSQL ���̪� psql ���`�A�H���o��h������T�C\n"
"\n"
"�V <pgsql-bugs@postgresql.org> �׳�����."
#: help.c:194
msgid " \\a toggle between unaligned and aligned output mode\n"
msgstr " \\a �b�D����M�������X�Ҧ���������\n"
#: help.c:195
#, c-format
msgid ""
" \\c[onnect] [DBNAME|- [USER]]\n"
" connect to new database (currently \"%s\")\n"
msgstr ""
" \\c[onnect] [��Ʈw�W��|- [�ϥΪ̦W��]]\n"
" �s����s����Ʈw (�ثe�O \"%s\")\n"
#: help.c:198
msgid " \\C TITLE set table title\n"
msgstr " \\C ���D �]�w������D\n"
#: help.c:199
msgid " \\cd [DIRNAME] change the current working directory\n"
msgstr " \\cd [�ؿ��W] ���ܥثe���u�@�ؿ�\n"
#: help.c:200
msgid " \\copy ... perform SQL COPY with data stream to the client host\n"
msgstr " \\copy ... ���� SQL COPY�A��Ƭy���V�Ȥ�ݥD��\n"
#: help.c:201
msgid " \\copyright show PostgreSQL usage and distribution terms\n"
msgstr " \\copyright ��� PostgreSQL �Ϊk�M�o�����\n"
#: help.c:202
msgid " \\d TABLE describe table (or view, index, sequence)\n"
msgstr " \\d ��ƪ� �y�z��ƪ� (�η��[�B���ޡB�ǦC)\n"
#: help.c:203
msgid " \\d{t|i|s|v}... list tables/indexes/sequences/views\n"
msgstr " \\d{t|i|s|v}... �C�X��ƪ�/����/�ǦC/���[\n"
#: help.c:204
msgid ""
" \\d{p|S|l} list access privileges, system tables, or large objects\n"
msgstr ""
" \\d{p|S|l} �C�X�s���v���B�t�θ�ƪ��Τj������\n"
#: help.c:205
msgid " \\da list aggregate functions\n"
msgstr " \\da �C�X�E�����\n"
#: help.c:206
msgid " \\dd NAME show comment for table, type, function, or operator\n"
msgstr " \\dd �W�r ��ܸ�ƪ��B���O�B�禡�ιB��l���`��\n"
#: help.c:207
msgid " \\df list functions\n"
msgstr " \\df �C�X�禡\n"
#: help.c:208
msgid " \\do list operators\n"
msgstr " \\do �C�X�B��l\n"
#: help.c:209
msgid " \\dT list data types\n"
msgstr " \\dT �C�X��ƫ��O\n"
#: help.c:210
msgid ""
" \\e FILENAME edit the current query buffer or file with external editor\n"
msgstr ""
" \\e ���W �ϥΥ~���s�边�s��ثe���d�߽w�İϩ��ɮ�\n"
#: help.c:211
msgid " \\echo TEXT write text to standard output\n"
msgstr " \\echo TEXT �N��r�g�ܼзǿ�X\n"
#: help.c:212
msgid " \\encoding ENCODING set client encoding\n"
msgstr " \\encoding �s�X �]�w�Ȥ�ݽs�X\n"
#: help.c:213
msgid " \\f STRING set field separator\n"
msgstr " \\f �r�� �]�w�����j�Ÿ�\n"
#: help.c:214
msgid ""
" \\g FILENAME send SQL command to server (and write results to file or "
"|pipe)\n"
msgstr ""
" \\g �ɮצW�� �V���A���o�e SQL �R�O (�åB��G�g�J�ɮש� "
"|�D)\n"
#: help.c:215
msgid " \\h NAME help on syntax of SQL commands, * for all commands\n"
msgstr " \\h �W�� SQL �R�O���y�k�����A�� * �i�H�ݩҦ��R�O������\n"
#: help.c:216
#, c-format
msgid " \\H toggle HTML output mode (currently %s)\n"
msgstr " \\H �b HTML ��X�Ҧ��������� (�ثe�O %s)\n"
#: help.c:218
msgid " \\i FILENAME execute commands from file\n"
msgstr " \\i �ɮצW�� ����Ӧ��ɮת��R�O\n"
#: help.c:219
msgid " \\l list all databases\n"
msgstr " \\l �C�X�Ҧ���Ʈw\n"
#: help.c:220
msgid ""
" \\lo_export, \\lo_import, \\lo_list, \\lo_unlink\n"
" large object operations\n"
msgstr ""
" \\lo_export, \\lo_import, \\lo_list, \\lo_unlink\n"
" �j������ާ@\n"
#: help.c:222
msgid " \\o FILENAME send all query results to file or |pipe\n"
msgstr " \\o �ɮצW�� �N�d�ߵ��G�ǰe���ɮש� |�D\n"
#: help.c:223
msgid " \\p show the content of the current query buffer\n"
msgstr " \\p ��ܥثe�d�߽w�İϪ����e\n"
#: help.c:224
msgid ""
" \\pset VAR set table output option (VAR := {format|border|expanded|\n"
" fieldsep|null|recordsep|tuples_only|title|tableattr|pager})\n"
msgstr ""
" \\pset VAR �]�w��ƪ�����X�ﶵ (VAR := {foramt|border|expaned|\n"
" fieldsep|null|recordsep|tuples_only|title|tableattr|pager})\n"
#: help.c:226
msgid " \\q quit psql\n"
msgstr " \\q �h�X psql\n"
#: help.c:227
msgid " \\qecho TEXT write text to query output stream (see \\o)\n"
msgstr " \\qecho ��r �N��r�g�J�d�߿�X�y (�Ѩ� \\o)\n"
#: help.c:228
msgid " \\r reset (clear) the query buffer\n"
msgstr " \\r ���m (�M�z) �d�߽w�İ�\n"
#: help.c:229
msgid " \\s FILENAME print history or save it to file\n"
msgstr " \\s �ɮצW�� �C�L���v�O���ε۱N���x�s���ɮ�\n"
#: help.c:230
msgid " \\set NAME VALUE set internal variable\n"
msgstr " \\set �W�� �ƭ� �]�w�����ܼ�\n"
#: help.c:231
#, c-format
msgid " \\t show only rows (currently %s)\n"
msgstr " \\t �u��ܦ� (�ثe�O %s)\n"
#: help.c:233
msgid " \\T TEXT set HTML table tag attributes\n"
msgstr " \\T �奻 �]�w HTML ��������ݩ�\n"
#: help.c:234
msgid " \\unset NAME unset (delete) internal variable\n"
msgstr " \\unset �W�� �R�������ܼ�\n"
#: help.c:235
msgid " \\w FILENAME write current query buffer to file\n"
msgstr " \\w �ɮצW�� �N�ثe�d�߽w�İϼg�J�ɮ�\n"
#: help.c:236
#, c-format
msgid " \\x toggle expanded output (currently %s)\n"
msgstr " \\x �b�X�i��X�������� (�ثe�O %s)\n"
#: help.c:238
msgid " \\z list table access privileges\n"
msgstr " \\z �C�X��ƪ��s���v��\n"
#: help.c:239
msgid " \\! [COMMAND] execute command in shell or start interactive shell\n"
msgstr " \\! [�R�O] �b shell �̰���R�O�ε۶}�l�@�Ӥ��� shell\n"
#: help.c:266
msgid "Available help:"
msgstr "�i���:"
#: help.c:297
#, c-format
msgid ""
"Command: %s\n"
"Description: %s\n"
"Syntax:\n"
"%s\n"
"\n"
msgstr ""
"�R�O: %s\n"
"�y�z: %s\n"
"�y�k:\n"
"%s\n"
"\n"
#: help.c:308
#, c-format
msgid ""
"No help available for '%-.*s'.\n"
"Try \\h with no arguments to see available help.\n"
msgstr ""
"�٨S�� '%-.*s' �������C\n"
"�Τ��a�Ѽƪ� \\h ���o�i�λ����C\n"
#: input.c:178
#, c-format
msgid "could not save history to %s: %s\n"
msgstr "�L�k�N���v�O���x�s�� %s: %s\n"
#: large_obj.c:66
msgid "Warning: Your transaction in progress has been committed."
msgstr "ĵ�i: �z������w�g�T�{�C"
#: large_obj.c:68
msgid "Warning: Your transaction in progress has been rolled back."
msgstr "ĵ�i: �z������w�g�����C"
#: large_obj.c:95
msgid "\\lo_export: not connected to a database\n"
msgstr "\\lo_export: ���P��Ʈw�s��\n"
#: large_obj.c:162
msgid "\\lo_import: not connected to a database\n"
msgstr "\\lo_import: ���P��Ʈw�s��\n"
#: large_obj.c:276
msgid "\\lo_unlink: not connected to a database\n"
msgstr "\\lo_unlink: ���P��Ʈw�s��\n"
#: describe.c:57 describe.c:110 describe.c:169 describe.c:221 describe.c:269
#: describe.c:401 describe.c:530 describe.c:1034 large_obj.c:353
msgid "Description"
msgstr "�y�z"
#: large_obj.c:361
msgid "Large objects"
msgstr "�j������"
#: mainloop.c:242
#, c-format
msgid "Use \"\\q\" to leave %s.\n"
msgstr "�ϥ� \"\\q\" ���} %s.\n"
#: print.c:370
msgid "(No rows)\n"
msgstr "(�S����)\n"
#: print.c:1075
msgid "(1 row)"
msgstr "(1 ��)"
#: print.c:1077
#, c-format
msgid "(%d rows)"
msgstr "(%d ��)"
#: startup.c:141 startup.c:615
#, c-format
msgid "%s: out of memory\n"
msgstr "%s: �O����κ�\n"
#: startup.c:177
msgid "User name: "
msgstr "�ϥΪ̦W��:"
#: startup.c:286
#, c-format
msgid ""
"Welcome to %s, the PostgreSQL interactive terminal.\n"
"\n"
"Type: \\copyright for distribution terms\n"
" \\h for help with SQL commands\n"
" \\? for help on internal slash commands\n"
" \\g or terminate with semicolon to execute query\n"
" \\q to quit\n"
"\n"
msgstr ""
"�w��ϥ� %s, PostgreSQL �����ʱ���O�C\n"
"\n"
"��J: \\copyright ��ܵo�����\n"
" \\h ��� SQL �R�O������\n"
" \\? ��ܤ����ϱu�R�O������\n"
" \\g �Ϊ̥H������������d��\n"
" \\q �h�X\n"
"\n"
#: startup.c:461
#, c-format
msgid "%s: couldn't set printing parameter %s\n"
msgstr "%s: �L�k�]�w�C�L�Ѽ� %s\n"
#: startup.c:507
#, c-format
msgid "%s: could not delete variable %s\n"
msgstr "%s: �L�k�R���ܼ� %s\n"
#: startup.c:517
#, c-format
msgid "%s: could not set variable %s\n"
msgstr "%s: �L�k�]�w�ܼ� %s\n"
#: startup.c:548 startup.c:563
#, c-format
msgid "Try '%s --help' for more information.\n"
msgstr "�� '%s --help' ��o��h�T���C\n"
#: startup.c:556
#, c-format
msgid ""
"%s was compiled without support for long options.\n"
"Use --help for help on invocation options.\n"
msgstr ""
"%s �sĶ�ɥ��[�J���ﶵ�䴩�C\n"
"�� --help ��ܿﶵ�������C\n"
#: startup.c:581
#, c-format
msgid "%s: warning: extra option %s ignored\n"
msgstr "%s: ĵ�i: �����B�~���ﶵ %s\n"
#: startup.c:588
#, c-format
msgid "%s: Warning: The -u option is deprecated. Use -U.\n"
msgstr "%s: ĵ�i: -u �ﶵ�w�g�o��A�Х� -U�C\n"
#: startup.c:644
msgid "contains support for: "
msgstr "�ثe�䴩:"
#: startup.c:647
msgid "readline"
msgstr ""
#: startup.c:657
msgid "history"
msgstr "���v�O��"
#: startup.c:666
msgid "multibyte"
msgstr "�h�줸�զr��"
#: startup.c:674
msgid ""
"Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group\n"
"Portions Copyright (c) 1996, Regents of the University of California\n"
"Read the file COPYRIGHT or use the command \\copyright to see the\n"
"usage and distribution terms."
msgstr ""
"�������v (c) 1996-2001�APostgreSQL �}�o�p��\n"
"�������v (c) 1996�A�[�{�j�Ǹ���\n"
"�\Ū COPYRIGHT �Ψϥ� \\copyright �R�O�d��\n"
"�Ϊk�M�o����ڡC"
#: startup.c:699
#, c-format
msgid ""
"SSL connection (cipher: %s, bits: %i)\n"
"\n"
msgstr ""
"SSL �s�� (�[�K: %s, �줸: %i)\n"
"\n"
#: describe.c:56 describe.c:100 describe.c:158 describe.c:220 describe.c:260
#: describe.c:401 describe.c:1028
msgid "Name"
msgstr "�W��"
#: describe.c:56
msgid "(all types)"
msgstr "(�Ҧ����O)"
#: describe.c:57
msgid "Data type"
msgstr "��ƫ��O"
#: describe.c:73
msgid "List of aggregate functions"
msgstr "�E���禡�C��"
#: describe.c:100
msgid "Result data type"
msgstr "���G��ƫ��O"
#: describe.c:101
msgid "Argument data types"
msgstr "�ѼƸ�ƫ��O"
#: describe.c:109 describe.c:260 describe.c:1029
msgid "Owner"
msgstr "�Ҧ���"
#: describe.c:109
msgid "Language"
msgstr "�y��"
#: describe.c:110
msgid "Source code"
msgstr "��l�{��"
#: describe.c:135
msgid "List of functions"
msgstr "�禡�C��"
#: describe.c:166
msgid "Internal name"
msgstr "�����W��"
#: describe.c:166
msgid "Size"
msgstr "�j�p"
#: describe.c:193
msgid "List of data types"
msgstr "��ƫ��O�C��"
#: describe.c:220
msgid "Left arg type"
msgstr "���Ѽƫ��O"
#: describe.c:220
msgid "Right arg type"
msgstr "�k�Ѽƫ��O"
#: describe.c:221
msgid "Result type"
msgstr "���G���O"
#: describe.c:236
msgid "List of operators"
msgstr "�B��l�C��"
#: describe.c:264
msgid "Encoding"
msgstr "�s�X"
#: describe.c:279
msgid "List of databases"
msgstr "��Ʈw�C��"
#: describe.c:306
msgid "Table"
msgstr "��ƪ�"
#: describe.c:306
msgid "Access privileges"
msgstr "�s���v��"
#: describe.c:320
#, c-format
msgid "Access privileges for database \"%s\""
msgstr "��Ʈw \"%s\" ���s���v��"
#: describe.c:401
msgid "Object"
msgstr "����"
#: describe.c:402
msgid "aggregate"
msgstr "�E��"
#: describe.c:402
msgid "function"
msgstr "�禡"
#: describe.c:402
msgid "operator"
msgstr "�B��l"
#: describe.c:403
msgid "data type"
msgstr "��ƫ��O"
#: describe.c:403 describe.c:1028
msgid "table"
msgstr "��ƪ�"
#: describe.c:403 describe.c:1028
msgid "view"
msgstr "���["
#: describe.c:404 describe.c:1028
msgid "index"
msgstr "����"
#: describe.c:404 describe.c:1028
msgid "sequence"
msgstr "�ǦC"
#: describe.c:404
msgid "rule"
msgstr "�W�h"
#: describe.c:405
msgid "trigger"
msgstr "IJ�o"
#: describe.c:422
msgid "Object descriptions"
msgstr "����y�z"
#: describe.c:503
#, c-format
msgid "Did not find any relation named \"%s\".\n"
msgstr "�S��������W�٬� \"%s\" �����p�C\n"
#: describe.c:517
msgid "Column"
msgstr "�C"
#: describe.c:518 describe.c:1029
msgid "Type"
msgstr "���O"
#: describe.c:524
msgid "Modifiers"
msgstr "����"
#: describe.c:628
#, c-format
msgid "Table \"%s\""
msgstr "��ƪ� \"%s\""
#: describe.c:631
#, c-format
msgid "View \"%s\""
msgstr "���[ \"%s\""
#: describe.c:634
#, c-format
msgid "Sequence \"%s\""
msgstr "�ǦC \"%s\""
#: describe.c:637
#, c-format
msgid "Index \"%s\""
msgstr "���� \"%s\""
#: describe.c:640
#, c-format
msgid "Special relation \"%s\""
msgstr "�S�����p \"%s\""
#: describe.c:643
#, c-format
msgid "TOAST table \"%s\""
msgstr "TOAST ��ƪ� \"%s\""
#: describe.c:646
#, c-format
msgid "?%c? \"%s\""
msgstr ""
#: describe.c:676
msgid "unique "
msgstr "�ߤ@ "
#: describe.c:681
msgid " (primary key)"
msgstr " (�D��)"
#: describe.c:686
#, c-format
msgid "Index predicate: %s"
msgstr "���ޭz��: %s"
#: describe.c:701
#, c-format
msgid "View definition: %s"
msgstr "���[�w�q: %s"
#: describe.c:817
msgid "Indexes"
msgstr "����"
#: describe.c:832
msgid "Primary key"
msgstr "�D��"
#: describe.c:847
msgid "Unique keys"
msgstr "�ߤ@���"
#: describe.c:862
msgid "Check constraints"
msgstr "�ˬd����"
#: describe.c:865
#, c-format
msgid "%s: \"%s\" %s"
msgstr ""
#: describe.c:868
#, c-format
msgid "%*s \"%s\" %s"
msgstr ""
#: describe.c:876
msgid "Rules"
msgstr "�W�h"
#: describe.c:891
msgid "Triggers"
msgstr "IJ�o"
#: describe.c:962
msgid "User name"
msgstr "�ϥΪ̦W��"
#: describe.c:962
msgid "User ID"
msgstr "�ϥΪ� ID"
#: describe.c:963
msgid "superuser, create database"
msgstr "�W�ŨϥΪ̡A�إ߸�Ʈw"
#: describe.c:964
msgid "superuser"
msgstr "�W�ŨϥΪ�"
#: describe.c:964
msgid "create database"
msgstr "�إ߸�Ʈw"
#: describe.c:965
msgid "Attributes"
msgstr "�ݩ�"
#: describe.c:979
msgid "List of database users"
msgstr "��Ʈw�ϥΪ̦C��"
#: describe.c:1029
msgid "special"
msgstr "�S��"
#: describe.c:1072
msgid "No matching relations found.\n"
msgstr "�S�����ǰt�������C\n"
#: describe.c:1074
msgid "No relations found.\n"
msgstr "�S��������p�C\n"
#: describe.c:1079
msgid "List of relations"
msgstr "���p�C��"
|