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
|
# translation of libpq.po to Turkish
# Devrim GUNDUZ <devrim@CommandPrompt.com> 2004, 2005, 2006, 2007.
# Nicolai TUFAR <ntufar@gmail.com> 2004, 2005, 2006, 2007.
msgid ""
msgstr ""
"Project-Id-Version: libpq-tr\n"
"Report-Msgid-Bugs-To: pgsql-bugs@postgresql.org\n"
"POT-Creation-Date: 2009-05-04 05:18+0000\n"
"PO-Revision-Date: 2009-05-04 09:53+0200\n"
"Last-Translator: Devrim GÜNDÜZ <devrim@commandprompt.com>\n"
"Language-Team: Turkish <ceviri@postgresql.org.tr>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.9.1\n"
"X-Poedit-Basepath: /home/ntufar/pg/pgsql/src/interfaces/libpq\n"
"X-Poedit-SearchPath-0: /home/ntufar/pg/pgsql/src/interfaces/libpq\n"
#: fe-auth.c:242
#, c-format
msgid "could not set socket to blocking mode: %s\n"
msgstr "soket engelleme moduna ayarlanamadı: %s\n"
#: fe-auth.c:260
#: fe-auth.c:264
#, c-format
msgid "Kerberos 5 authentication rejected: %*s\n"
msgstr "Kerberos 5 yetkilendirmesi kabul edilmedi: %*s\n"
#: fe-auth.c:290
#, c-format
msgid "could not restore non-blocking mode on socket: %s\n"
msgstr "could not restore non-blocking mode on socket: %s\n"
#: fe-auth.c:403
msgid "GSSAPI continuation error"
msgstr "GSSAPI devam hatası"
#: fe-auth.c:432
msgid "duplicate GSS authentication request\n"
msgstr "çift GSS yetkilendirme isteği\n"
#: fe-auth.c:452
msgid "GSSAPI name import error"
msgstr "GSSAPI ad aktarma hatası"
#: fe-auth.c:538
msgid "SSPI continuation error"
msgstr "SSPI devam hatası"
#: fe-auth.c:549
#: fe-auth.c:622
#: fe-auth.c:656
#: fe-auth.c:753
#: fe-connect.c:1335
#: fe-connect.c:2616
#: fe-connect.c:2833
#: fe-connect.c:3199
#: fe-connect.c:3208
#: fe-connect.c:3345
#: fe-connect.c:3391
#: fe-connect.c:3409
#: fe-exec.c:3109
#: fe-lobj.c:696
#: fe-protocol2.c:1027
#: fe-protocol3.c:1421
msgid "out of memory\n"
msgstr "yetersiz bellek\n"
#: fe-auth.c:637
msgid "could not acquire SSPI credentials"
msgstr "SSPI kimlik bilgileri alınamadı: %m"
#: fe-auth.c:650
msgid "host name must be specified\n"
msgstr "sunucu adı belirtilmelidir\n"
#: fe-auth.c:729
msgid "SCM_CRED authentication method not supported\n"
msgstr "SCM_CRED yetkilendirme yöntemi desteklenmiyor.\n"
#: fe-auth.c:803
msgid "Kerberos 4 authentication not supported\n"
msgstr "Kerberos 4 yetkilendirmesi desteklenmiyor\n"
#: fe-auth.c:819
msgid "Kerberos 5 authentication not supported\n"
msgstr "Kerberos 5 yetkilendirmesi desteklenmiyor\n"
#: fe-auth.c:886
msgid "GSSAPI authentication not supported\n"
msgstr "GSSAPI yetkilendirmesi desteklenmiyor\n"
#: fe-auth.c:910
msgid "SSPI authentication not supported\n"
msgstr "SSPI yetkilendirmesi desteklenmiyor\n"
#: fe-auth.c:917
msgid "Crypt authentication not supported\n"
msgstr "Crypt yetkilendirmesi desteklenmiyor\n"
#: fe-auth.c:944
#, c-format
msgid "authentication method %u not supported\n"
msgstr "%u yetkilendirme sistemi desteklenmiyor\n"
#: fe-connect.c:524
#, c-format
msgid "invalid sslmode value: \"%s\"\n"
msgstr "geçersiz sslmode değeri: \"%s\"\n"
#: fe-connect.c:545
#, c-format
msgid "sslmode value \"%s\" invalid when SSL support is not compiled in\n"
msgstr "\"%s\" ssl modu, SSL desteği derlenmeyince geçersizdir.\n"
#: fe-connect.c:728
#, c-format
msgid "could not set socket to TCP no delay mode: %s\n"
msgstr "could not set socket to TCP no delay mode: %s\n"
#: fe-connect.c:758
#, c-format
msgid ""
"could not connect to server: %s\n"
"\tIs the server running locally and accepting\n"
"\tconnections on Unix domain socket \"%s\"?\n"
msgstr ""
"sunucuya bağlanılamadı: %s\n"
"\tSunucu yerelde çalışıyor ve Unix domain\n"
"\tsoketleri üzerinden bağlantılara izin veriyor mu? \"%s\"?\n"
#: fe-connect.c:768
#, c-format
msgid ""
"could not connect to server: %s\n"
"\tIs the server running on host \"%s\" and accepting\n"
"\tTCP/IP connections on port %s?\n"
msgstr ""
"sunucuya bağlanılamadı: %s\n"
"\tSunucu \"%s\" sunucunda çalışıyor ve\n"
"\t\"%s\" portundan bağlantılara izin veriyor mu?\n"
#: fe-connect.c:858
#, c-format
msgid "could not translate host name \"%s\" to address: %s\n"
msgstr "\"%s\" makine adı bir adrese çevirilemedi: %s\n"
#: fe-connect.c:862
#, c-format
msgid "could not translate Unix-domain socket path \"%s\" to address: %s\n"
msgstr "\"%s\" Unix domain soket yolu adrese çevirilemedi: %s\n"
#: fe-connect.c:1065
msgid "invalid connection state, probably indicative of memory corruption\n"
msgstr "Geçersiz bağlantı durumu, hafızanın zarar görmüş olmasının işareti olabilir\n"
#: fe-connect.c:1108
#, c-format
msgid "could not create socket: %s\n"
msgstr "soket yaratılamadı: %s\n"
#: fe-connect.c:1131
#, c-format
msgid "could not set socket to non-blocking mode: %s\n"
msgstr "could not set socket to non-blocking mode: %s\n"
#: fe-connect.c:1143
#, c-format
msgid "could not set socket to close-on-exec mode: %s\n"
msgstr "soket close-on-exec moduna ayarlanamadı: %s\n"
#: fe-connect.c:1230
#, c-format
msgid "could not get socket error status: %s\n"
msgstr "soket hata durumu alınamadı: %s\n"
#: fe-connect.c:1268
#, c-format
msgid "could not get client address from socket: %s\n"
msgstr "soketten istemci adresi alınamadı: %s\n"
#: fe-connect.c:1312
#, c-format
msgid "could not send SSL negotiation packet: %s\n"
msgstr "could not send SSL negotiation packet: %s\n"
#: fe-connect.c:1348
#, c-format
msgid "could not send startup packet: %s\n"
msgstr "başlangıç paketi gönderilemedi: %s\n"
#: fe-connect.c:1414
#: fe-connect.c:1432
msgid "server does not support SSL, but SSL was required\n"
msgstr "sunucu SSL desteklemiyor, ama SSL gerekli idi\n"
#: fe-connect.c:1448
#, c-format
msgid "received invalid response to SSL negotiation: %c\n"
msgstr "ssl görüşmesine geçersiz yanıt alındı: %c\n"
#: fe-connect.c:1524
#: fe-connect.c:1557
#, c-format
msgid "expected authentication request from server, but received %c\n"
msgstr "sunucudan yetkilendirme isteği beklendi ancak %c alındı\n"
#: fe-connect.c:1728
#, c-format
msgid "out of memory allocating GSSAPI buffer (%i)"
msgstr "GSSAPI tamponu ayrılırken yetersiz bellek hatası (%i)"
#: fe-connect.c:1813
msgid "unexpected message from server during startup\n"
msgstr "başlangıç sırasında sunucudan beklenmeyen bir mesaj alındı\n"
#: fe-connect.c:1881
#, c-format
msgid "invalid connection state %c, probably indicative of memory corruption\n"
msgstr "%c - geçersiz bağlantı durumu, bellek zarar görmüş olabilir\n"
#: fe-connect.c:2224
#: fe-connect.c:2284
#, c-format
msgid "PGEventProc \"%s\" failed during PGEVT_CONNRESET event\n"
msgstr "PGEventProc \"%s\" işlemi PGEVT_CONNRESET işlemi sırasında başarısız oldu\n"
#: fe-connect.c:2629
#, c-format
msgid "invalid LDAP URL \"%s\": scheme must be ldap://\n"
msgstr "geçersiz LDAP URL \"%s\": şema, ldap:// ile başlamalıdir\n"
#: fe-connect.c:2644
#, c-format
msgid "invalid LDAP URL \"%s\": missing distinguished name\n"
msgstr "geçersiz LDAP URL \"%s\": distinguished name eksik\n"
#: fe-connect.c:2655
#: fe-connect.c:2708
#, c-format
msgid "invalid LDAP URL \"%s\": must have exactly one attribute\n"
msgstr "geçersiz LDAP URL \"%s\": tam bir attribute içermelidir\n"
#: fe-connect.c:2665
#: fe-connect.c:2722
#, c-format
msgid "invalid LDAP URL \"%s\": must have search scope (base/one/sub)\n"
msgstr "geçersiz LDAP URL \"%s\": arama kapsamı içermelidir (base/one/sub)\n"
#: fe-connect.c:2676
#, c-format
msgid "invalid LDAP URL \"%s\": no filter\n"
msgstr "geçersiz LDAP URL \"%s\": filtere eksik\n"
#: fe-connect.c:2697
#, c-format
msgid "invalid LDAP URL \"%s\": invalid port number\n"
msgstr "geçersiz LDAP URL \"%s\": geçersiz port numarası\n"
#: fe-connect.c:2731
msgid "could not create LDAP structure\n"
msgstr "LDAP yapısı oluşturma hatası\n"
#: fe-connect.c:2773
#, c-format
msgid "lookup on LDAP server failed: %s\n"
msgstr "LDAP sonucunda sorgulama hatası: %s\n"
#: fe-connect.c:2784
msgid "more than one entry found on LDAP lookup\n"
msgstr "LDAP sorgusu sonucunda birden fazla giriş bulundu\n"
#: fe-connect.c:2785
#: fe-connect.c:2797
msgid "no entry found on LDAP lookup\n"
msgstr "LDAP sorgusu sonucunda hiçbir giriş bulunamadı\n"
#: fe-connect.c:2808
#: fe-connect.c:2821
msgid "attribute has no values on LDAP lookup\n"
msgstr "LDAP sorgusu sonucunda bulunan attribute, hiçbir değer içermiyor\n"
#: fe-connect.c:2872
#: fe-connect.c:2890
#: fe-connect.c:3247
#, c-format
msgid "missing \"=\" after \"%s\" in connection info string\n"
msgstr "bağlantı bilgi katarında \"%s\" bilgisinden sonra \"=\" işareti eksik\n"
#: fe-connect.c:2953
#: fe-connect.c:3329
#, c-format
msgid "invalid connection option \"%s\"\n"
msgstr "geçersiz bağlantı seçeneği \"%s\"\n"
#: fe-connect.c:2966
#: fe-connect.c:3296
msgid "unterminated quoted string in connection info string\n"
msgstr "bağlantı bilgi katarında sonlandırılmamış tırnaklı katar\n"
#: fe-connect.c:3009
#, c-format
msgid "ERROR: service file \"%s\" not found\n"
msgstr "HATA: \"%s\" servis dosyası bulunamadı\n"
#: fe-connect.c:3022
#, c-format
msgid "ERROR: line %d too long in service file \"%s\"\n"
msgstr "HATA: \"%2$s\" servis dosyasında %1$d no'lu satır çok uzun \n"
#: fe-connect.c:3094
#: fe-connect.c:3121
#, c-format
msgid "ERROR: syntax error in service file \"%s\", line %d\n"
msgstr "ERROR: \"%s\" servis dosyasında yazım hatası, satır no %d\n"
#: fe-connect.c:3577
msgid "connection pointer is NULL\n"
msgstr "bağlantı belirteci NULL'dur\n"
#: fe-connect.c:3860
#, c-format
msgid "WARNING: password file \"%s\" is not a plain file\n"
msgstr "UYARI: \"%s\" password dosyası düz metin dosyası değildir\n"
#: fe-connect.c:3869
#, c-format
msgid "WARNING: password file \"%s\" has group or world access; permissions should be u=rw (0600) or less\n"
msgstr "UYARI: \"%s\" şifre dosyası herkes ya da grup tarafından erişilebilir durumda; dosyanın izinleri u=rw (0600) ya da daha az olmalı\n"
#: fe-exec.c:826
msgid "NOTICE"
msgstr "BİLGİ"
#: fe-exec.c:1013
#: fe-exec.c:1070
#: fe-exec.c:1110
msgid "command string is a null pointer\n"
msgstr "komut katarı null belirteçtir\n"
#: fe-exec.c:1103
#: fe-exec.c:1198
msgid "statement name is a null pointer\n"
msgstr "durum adı null belirteçtir\n"
#: fe-exec.c:1118
#: fe-exec.c:1272
#: fe-exec.c:1927
#: fe-exec.c:2124
msgid "function requires at least protocol version 3.0\n"
msgstr "fonksiyon en az 3.0 prokolüne gereksinim duyuyor.\n"
#: fe-exec.c:1229
msgid "no connection to the server\n"
msgstr "sunucuya bağlantı yok\n"
#: fe-exec.c:1236
msgid "another command is already in progress\n"
msgstr "şu anda işlenen başka bir komut var\n"
#: fe-exec.c:1348
msgid "length must be given for binary parameter\n"
msgstr "binary parametresinin uzunluğu belirtilmelidir\n"
#: fe-exec.c:1595
#, c-format
msgid "unexpected asyncStatus: %d\n"
msgstr "beklenmeyen asyncStatus: %d\n"
#: fe-exec.c:1615
#, c-format
msgid "PGEventProc \"%s\" failed during PGEVT_RESULTCREATE event\n"
msgstr "PGEventProc \"%s\" işlemi PGEVT_RESULTCREATE işlemi sırasında başarısız oldu\n"
#: fe-exec.c:1745
msgid "COPY terminated by new PQexec"
msgstr "COPY, yeni PQexec tarafından sonlandırıldı"
#: fe-exec.c:1753
msgid "COPY IN state must be terminated first\n"
msgstr "Öncelikle COPY IN durumu sonlandırılmalıdır\n"
#: fe-exec.c:1773
msgid "COPY OUT state must be terminated first\n"
msgstr "Öncelikle COPY OUT durumu sonlandırılmalıdır\n"
#: fe-exec.c:2015
#: fe-exec.c:2081
#: fe-exec.c:2166
#: fe-protocol2.c:1172
#: fe-protocol3.c:1557
msgid "no COPY in progress\n"
msgstr "çalışan COPY süreci yok\n"
#: fe-exec.c:2358
msgid "connection in wrong state\n"
msgstr "bağlantı yanlış durumda\n"
#: fe-exec.c:2389
msgid "invalid ExecStatusType code"
msgstr "geçersiz ExecStatusType kodu"
#: fe-exec.c:2453
#: fe-exec.c:2476
#, c-format
msgid "column number %d is out of range 0..%d"
msgstr "%d kolon numarası, 0..%d sınırının dışında"
#: fe-exec.c:2469
#, c-format
msgid "row number %d is out of range 0..%d"
msgstr "%d satır numarası, 0..%d sınırının dışında"
#: fe-exec.c:2491
#, c-format
msgid "parameter number %d is out of range 0..%d"
msgstr "%d parametre sıra dışı: 0..%d"
#: fe-exec.c:2778
#, c-format
msgid "could not interpret result from server: %s"
msgstr "sunucudan gelen yanıt yorumlanamadı: %s"
#: fe-exec.c:3017
msgid "incomplete multibyte character\n"
msgstr "tamamlanmamış çoklu bayt karakteri\n"
#: fe-lobj.c:152
msgid "cannot determine OID of function lo_truncate\n"
msgstr "lo_truncate fonksiyonunun OID'i belirlenemiyor\n"
#: fe-lobj.c:380
msgid "cannot determine OID of function lo_create\n"
msgstr "lo_create fonksiyonunun OID'i belirlenemiyor\n"
#: fe-lobj.c:525
#: fe-lobj.c:624
#, c-format
msgid "could not open file \"%s\": %s\n"
msgstr "\"%s\" dosyası açılamadı: %s\n"
#: fe-lobj.c:575
#, c-format
msgid "could not read from file \"%s\": %s\n"
msgstr "\"%s\" dosyasından okuma hatası: %s\n"
#: fe-lobj.c:639
#: fe-lobj.c:663
#, c-format
msgid "could not write to file \"%s\": %s\n"
msgstr "\"%s\" dosyasına yazılamadı: %s\n"
#: fe-lobj.c:744
msgid "query to initialize large object functions did not return data\n"
msgstr "large object fonksiyonlarını ilklendirecek sorgu veri döndürmedi\n"
#: fe-lobj.c:785
msgid "cannot determine OID of function lo_open\n"
msgstr "lo_open fonksiyonunun OID'i belirlenemiyor\n"
#: fe-lobj.c:792
msgid "cannot determine OID of function lo_close\n"
msgstr "lo_close fonksiyonunun OID'i belirlenemiyor\n"
#: fe-lobj.c:799
msgid "cannot determine OID of function lo_creat\n"
msgstr "lo_create fonksiyonunun OID'i belirlenemiyor\n"
#: fe-lobj.c:806
msgid "cannot determine OID of function lo_unlink\n"
msgstr "lo_unlink fonksiyonunun OID'i belirlenemiyor\n"
#: fe-lobj.c:813
msgid "cannot determine OID of function lo_lseek\n"
msgstr "lo_lseek fonksiyonunun OID'i belirlenemiyor\n"
#: fe-lobj.c:820
msgid "cannot determine OID of function lo_tell\n"
msgstr "lo_tell fonksiyonunun OID'i belirlenemiyor\n"
#: fe-lobj.c:827
msgid "cannot determine OID of function loread\n"
msgstr "loread fonksiyonunun OID'i belirlenemiyor\n"
#: fe-lobj.c:834
msgid "cannot determine OID of function lowrite\n"
msgstr "lowrite fonksiyonunun OID'i belirlenemiyor\n"
#: fe-misc.c:241
#, c-format
msgid "integer of size %lu not supported by pqGetInt"
msgstr "%lu büyüklüğündeki tamsayılar pqGetInt tarafından desteklenmez."
#: fe-misc.c:277
#, c-format
msgid "integer of size %lu not supported by pqPutInt"
msgstr "%lu büyüklüğündeki tamsayılar pqPutInt tarafından desteklenmez."
#: fe-misc.c:557
#: fe-misc.c:759
msgid "connection not open\n"
msgstr "bağlantı açık değil\n"
#: fe-misc.c:622
#: fe-misc.c:712
#, c-format
msgid "could not receive data from server: %s\n"
msgstr "Sunucudan veri alınamadı: %s\n"
#: fe-misc.c:729
#: fe-misc.c:806
msgid ""
"server closed the connection unexpectedly\n"
"\tThis probably means the server terminated abnormally\n"
"\tbefore or while processing the request.\n"
msgstr ""
"sunucu bağlantıyı beklenmedik şekilde kapattı\n"
"\tBu ileti sunucunun isteği işlemeden hemen önce ya da \n"
"\tisteği işlerken kapatıldığı anlamına gelir.\n"
#: fe-misc.c:823
#, c-format
msgid "could not send data to server: %s\n"
msgstr "Sunucuya veri gönderilemedi: %s\n"
#: fe-misc.c:942
msgid "timeout expired\n"
msgstr "zamanaşımı süresi sona derdi\n"
#: fe-misc.c:987
msgid "socket not open\n"
msgstr "soket açık değil\n"
#: fe-misc.c:1010
#, c-format
msgid "select() failed: %s\n"
msgstr "select() başarısız oldu: %s\n"
#: fe-protocol2.c:89
#, c-format
msgid "invalid setenv state %c, probably indicative of memory corruption\n"
msgstr "Geçersiz setenv durumu %c, belleğin zarar görmesinin bir işareti olabilir\n"
#: fe-protocol2.c:330
#, c-format
msgid "invalid state %c, probably indicative of memory corruption\n"
msgstr "Geçersiz %c durumu, belleğin zarar görmesinin bir işareti olabilir\n"
#: fe-protocol2.c:419
#: fe-protocol3.c:186
#, c-format
msgid "message type 0x%02x arrived from server while idle"
msgstr "Sunucu boş durumdayken sunucudan 0x%02x ileti tipi geldi"
#: fe-protocol2.c:462
#, c-format
msgid "unexpected character %c following empty query response (\"I\" message)"
msgstr "Boş sorgu yanıtını takip eden geçersiz karakter:%c (\"I\" ileti)"
#: fe-protocol2.c:516
msgid "server sent data (\"D\" message) without prior row description (\"T\" message)"
msgstr "Sunucu öncelikli satır tanımı olmadan veri (\"D\" ileti) gönderdi (\"T\" ileti)"
#: fe-protocol2.c:532
msgid "server sent binary data (\"B\" message) without prior row description (\"T\" message)"
msgstr "Sunucu öncelikli satır tanımı olmadan ikili veri (\"D\" ileti) gönderdi (\"T\" ileti)"
#: fe-protocol2.c:547
#: fe-protocol3.c:382
#, c-format
msgid "unexpected response from server; first received character was \"%c\"\n"
msgstr "sunucudan beklenmeyen bir yanıt alındı; alınan ilk karakter\"%c\" idi\n"
#: fe-protocol2.c:768
#: fe-protocol3.c:701
msgid "out of memory for query result\n"
msgstr "Sorgu sonucu için yetersiz bellek\n"
#: fe-protocol2.c:1215
#: fe-protocol3.c:1625
#, c-format
msgid "%s"
msgstr "%s"
#: fe-protocol2.c:1227
msgid "lost synchronization with server, resetting connection"
msgstr "sunucu ile eşzamanlama kayboldu, bağlantı yeniden açılıyor"
#: fe-protocol2.c:1361
#: fe-protocol2.c:1393
#: fe-protocol3.c:1828
#, c-format
msgid "protocol error: id=0x%x\n"
msgstr "protokol hatası: id=0x%x\n"
#: fe-protocol3.c:344
msgid "server sent data (\"D\" message) without prior row description (\"T\" message)\n"
msgstr "Sunucu öncelikli satır tanımı olmadan veri (\"D\" ileti) gönderdi (\"T\" ileti)\n"
#: fe-protocol3.c:403
#, c-format
msgid "message contents do not agree with length in message type \"%c\"\n"
msgstr "İleti içeriği,\"%c\" ileti tipinin içindeki uzunlukla aynı değil\n"
#: fe-protocol3.c:424
#, c-format
msgid "lost synchronization with server: got message type \"%c\", length %d\n"
msgstr "sunucu ile eşzamanlılık kayboldu: \"%c\" ileti tipi alındı, uzunluğu %d\n"
#: fe-protocol3.c:646
msgid "unexpected field count in \"D\" message\n"
msgstr "\"D\" iletisinde beklenmeyen alan sayısı\n"
#. translator: %s represents a digit string
#: fe-protocol3.c:788
#: fe-protocol3.c:807
#, c-format
msgid " at character %s"
msgstr "%s. karakterde"
#: fe-protocol3.c:820
#, c-format
msgid "DETAIL: %s\n"
msgstr "AYRINTI: %s\n"
#: fe-protocol3.c:823
#, c-format
msgid "HINT: %s\n"
msgstr "İPUCU: %s\n"
#: fe-protocol3.c:826
#, c-format
msgid "QUERY: %s\n"
msgstr "SORGU: %s\n"
#: fe-protocol3.c:829
#, c-format
msgid "CONTEXT: %s\n"
msgstr "BAĞLAM: %s\n"
#: fe-protocol3.c:841
msgid "LOCATION: "
msgstr "YER: "
#: fe-protocol3.c:843
#, c-format
msgid "%s, "
msgstr "%s, "
#: fe-protocol3.c:845
#, c-format
msgid "%s:%s"
msgstr "%s:%s"
#: fe-protocol3.c:1069
#, c-format
msgid "LINE %d: "
msgstr "SATIR %d: "
#: fe-protocol3.c:1453
msgid "PQgetline: not doing text COPY OUT\n"
msgstr "PQgetline: COPY OUT metnini yapmıyor\n"
#: fe-secure.c:244
#, c-format
msgid "could not establish SSL connection: %s\n"
msgstr "SSL bağlantısı sağlanamadı: %s\n"
#: fe-secure.c:320
#: fe-secure.c:404
#: fe-secure.c:1115
#, c-format
msgid "SSL SYSCALL error: %s\n"
msgstr "SSL SYSCALL hatası: %s\n"
#: fe-secure.c:326
#: fe-secure.c:410
#: fe-secure.c:1119
msgid "SSL SYSCALL error: EOF detected\n"
msgstr "SSL SYSCALL hatası: EOF bulundu\n"
#: fe-secure.c:338
#: fe-secure.c:421
#: fe-secure.c:1138
#, c-format
msgid "SSL error: %s\n"
msgstr "SSL hatası: %s\n"
#: fe-secure.c:348
#: fe-secure.c:431
#: fe-secure.c:1148
#, c-format
msgid "unrecognized SSL error code: %d\n"
msgstr "tanımlanamayan SSL hata kodu: %d\n"
#: fe-secure.c:532
msgid "verified SSL connections are only supported when connecting to a host name"
msgstr "Onaylanmış SSL bağlantıları sadece bir sunucu adına bağlanıldığı zaman geçerlidir"
#: fe-secure.c:551
#, c-format
msgid "server common name \"%s\" does not match host name \"%s\""
msgstr "Sunucu ortak adı olan \"%s\", \"%s\" olan host adı ile eşleşmiyor"
#: fe-secure.c:593
msgid "could not get home directory to locate client certificate files"
msgstr "İstemci sertifika dosyalarının olduğu ev dizini bulunamadı"
#: fe-secure.c:617
#: fe-secure.c:631
#, c-format
msgid "could not open certificate file \"%s\": %s\n"
msgstr "\"%s\" sertifikası açılamadı: %s\n"
#: fe-secure.c:642
#, c-format
msgid "could not read certificate file \"%s\": %s\n"
msgstr "\"%s\" sertifikası okunamadı: %s\n"
#: fe-secure.c:681
#, c-format
msgid "could not load SSL engine \"%s\": %s\n"
msgstr "\"%s\" SSL motoru yüklenemedi: %s\n"
#: fe-secure.c:696
#, c-format
msgid "could not read private SSL key \"%s\" from engine \"%s\": %s\n"
msgstr "\"%2$s\" motorundan \"%1$s\" SSL özel anahtarı okunamadı: %3$s\n"
#: fe-secure.c:727
#, c-format
msgid "certificate present, but not private key file \"%s\"\n"
msgstr "Sertifika mevcut ancak özel anahtar mevcut değil \"%s\"\n"
#: fe-secure.c:736
#, c-format
msgid "private key file \"%s\" has group or world access; permissions should be u=rw (0600) or less\n"
msgstr "\"%s\" özel anahtar dosyası herkes ya da grup tarafından erişilebilir durumda; dosyanın izinleri u=rw (0600) ya da daha az olmalı\n"
#: fe-secure.c:746
#, c-format
msgid "could not open private key file \"%s\": %s\n"
msgstr "\"%s\" özel anahtar dosyası açılamadı: %s\n"
#: fe-secure.c:757
#, c-format
msgid "private key file \"%s\" changed during execution\n"
msgstr "\"%s\" özel anahtar dosyası çalışma anında açılamadı\n"
#: fe-secure.c:768
#, c-format
msgid "could not read private key file \"%s\": %s\n"
msgstr "\"%s\" özel anahtar dosyası okunamadı: %s\n"
#: fe-secure.c:786
#, c-format
msgid "certificate does not match private key file \"%s\": %s\n"
msgstr "Sertifika, \"%s\" özel anahtar dosyası ile uyuşmuyor: %s\n"
#: fe-secure.c:917
#, c-format
msgid "could not create SSL context: %s\n"
msgstr "SSL içeriği yaratılamadı: %s\n"
#: fe-secure.c:1005
msgid "could not get home directory to locate root certificate file"
msgstr "kök sertifikasının olduğu ev dizini bulunamadı"
#: fe-secure.c:1029
#, c-format
msgid "could not read root certificate file \"%s\": %s\n"
msgstr "\"%s\"kök sertifika dosyası okunamadı: %s\n"
#: fe-secure.c:1054
#, c-format
msgid "SSL library does not support CRL certificates (file \"%s\")\n"
msgstr "Kurulu SSL kütüphanesi CRL sertifikalarını desteklemiyor (dosya adı \"%s\")\n"
#: fe-secure.c:1070
#, c-format
msgid ""
"root certificate file \"%s\" does not exist\n"
"Either provide the file or change sslmode to disable server certificate verification.\n"
msgstr ""
"\"%s\" kök sertifika dosyası mevcut değil\n"
"Ya bu dosyayı oluşturun ya da sslmode ayarını sunucu sertifika onaylamasını kapatmak için değiştirin.\n"
#: fe-secure.c:1167
#, c-format
msgid "certificate could not be obtained: %s\n"
msgstr "sertifika elde edilemedi: %s\n"
#: fe-secure.c:1241
msgid "no SSL error reported"
msgstr "SSL hatası raporlanmadı"
#: fe-secure.c:1250
#, c-format
msgid "SSL error code %lu"
msgstr "SSL hata kodu: %lu"
#~ msgid "invalid sslverify value: \"%s\"\n"
#~ msgstr "geçersiz sslverify değeri: \"%s\"\n"
#~ msgid "root certificate file \"%s\" does not exist"
#~ msgstr "kök sertifika dosyası \"%s\" mevcut değildir"
#~ msgid "error querying socket: %s\n"
#~ msgstr "soketi sorgularken hata oluştu: %s\n"
#~ msgid "could not get information about host \"%s\": %s\n"
#~ msgstr "\"%s\" sunucusu hakkında bilgi alınamadı: %s\n"
#~ msgid "unsupported protocol\n"
#~ msgstr "desteklenmeyen protokol\n"
#~ msgid "server common name \"%s\" does not resolve to %ld.%ld.%ld.%ld\n"
#~ msgstr ""
#~ "Sunucu ortak adı olan \"%s\" %ld.%ld.%ld.%ld adresine çözülemiyor\n"
#~ msgid "could not get user information\n"
#~ msgstr "kullanıcı bilgisi alınamadı\n"
#~ msgid "invalid value of PGSSLKEY environment variable\n"
#~ msgstr "PGSSLKEY ortam değişkeni için geçersiz değer\n"
#~ msgid "private key file \"%s\" has wrong permissions\n"
#~ msgstr "\"%s\" özel anahtarı yanlış izinlere sahip\n"
#~ msgid "certificate could not be validated: %s\n"
#~ msgstr "sertifika doğrulanamadı: %s\n"
|