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
|
# Italian message translation file for pg_basebackup
# Copyright (C) 2012 PostgreSQL Global Development Group
# This file is distributed under the same license as the PostgreSQL package.
# Daniele Varrazzo <daniele.varrazzo@gmail.com>, 2012.
#
msgid ""
msgstr ""
"Project-Id-Version: pg_basebackup (PostgreSQL) 9.4\n"
"Report-Msgid-Bugs-To: pgsql-bugs@postgresql.org\n"
"POT-Creation-Date: 2016-04-11 22:49+0000\n"
"PO-Revision-Date: 2016-04-17 03:34+0100\n"
"Last-Translator: Daniele Varrazzo <daniele.varrazzo@gmail.com>\n"
"Language-Team: Gruppo traduzioni ITPUG <traduzioni@itpug.org>\n"
"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Poedit 1.5.4\n"
#: ../../common/fe_memutils.c:33 ../../common/fe_memutils.c:60
#: ../../common/fe_memutils.c:83
#, c-format
msgid "out of memory\n"
msgstr "memoria esaurita\n"
#: ../../common/fe_memutils.c:77
#, c-format
msgid "cannot duplicate null pointer (internal error)\n"
msgstr "impossibile duplicare il puntatore nullo (errore interno)\n"
#: pg_basebackup.c:154
#, c-format
msgid "%s: directory name too long\n"
msgstr "%s: nome directory troppo lungo\n"
#: pg_basebackup.c:164
#, c-format
msgid "%s: multiple \"=\" signs in tablespace mapping\n"
msgstr "%s: più di un segno \"=\" nella mappatura dei tablespace\n"
#: pg_basebackup.c:177
#, c-format
msgid "%s: invalid tablespace mapping format \"%s\", must be \"OLDDIR=NEWDIR\"\n"
msgstr "%s: formato di mappatura dei tablespace \"%s\" non valido, deve essere \"VECCHIADIR=NUOVADIR\"\n"
#: pg_basebackup.c:190
#, c-format
msgid "%s: old directory is not an absolute path in tablespace mapping: %s\n"
msgstr "%s: la vecchia directory non è un percorso assoluto nella mappatura dei tablespace: %s\n"
#: pg_basebackup.c:197
#, c-format
msgid "%s: new directory is not an absolute path in tablespace mapping: %s\n"
msgstr "%s: la nuova directory non è un percorso assoluto nella mappatura dei tablespace: %s\n"
#: pg_basebackup.c:228
#, c-format
msgid ""
"%s takes a base backup of a running PostgreSQL server.\n"
"\n"
msgstr ""
"%s crea un backup di base di un server PostgreSQL in esecuzione.\n"
"\n"
#: pg_basebackup.c:230 pg_receivexlog.c:60 pg_recvlogical.c:68
#, c-format
msgid "Usage:\n"
msgstr "Utilizzo:\n"
#: pg_basebackup.c:231 pg_receivexlog.c:61 pg_recvlogical.c:69
#, c-format
msgid " %s [OPTION]...\n"
msgstr " %s [OPZIONE]...\n"
#: pg_basebackup.c:232
#, c-format
msgid ""
"\n"
"Options controlling the output:\n"
msgstr ""
"\n"
"Opzioni di controllo del'output:\n"
#: pg_basebackup.c:233
#, c-format
msgid " -D, --pgdata=DIRECTORY receive base backup into directory\n"
msgstr " -D, --pgdata=DIRECTORY directory in cui ricevere il backup di base\n"
#: pg_basebackup.c:234
#, c-format
msgid " -F, --format=p|t output format (plain (default), tar)\n"
msgstr " -F, --format=p|t formato di output (plain (default), tar)\n"
#: pg_basebackup.c:235
#, c-format
msgid ""
" -r, --max-rate=RATE maximum transfer rate to transfer data directory\n"
" (in kB/s, or use suffix \"k\" or \"M\")\n"
msgstr ""
" -r, --max-rate=RATE transfer rate massimo per trasferire la directory dei dati\n"
" (in kB/s, oppure usa i suffissi \"k\" o \"M\")\n"
#: pg_basebackup.c:237
#, c-format
msgid ""
" -R, --write-recovery-conf\n"
" write recovery.conf after backup\n"
msgstr ""
" -R, --write-recovery-conf\n"
" scrivi recovery.conf dopo il backup\n"
#: pg_basebackup.c:239
#, c-format
msgid ""
" -T, --tablespace-mapping=OLDDIR=NEWDIR\n"
" relocate tablespace in OLDDIR to NEWDIR\n"
msgstr ""
" -T, --tablespace-mapping=VECCHIADIR=NUOVADIR\n"
" sposta il tablespace da VECCHIADIR a NUOVADIR\n"
#: pg_basebackup.c:241
#, c-format
msgid " -x, --xlog include required WAL files in backup (fetch mode)\n"
msgstr ""
" -x, --xlog includi i file WAL necessari nel backup\n"
" (modalità fetch)\n"
#: pg_basebackup.c:242
#, c-format
msgid ""
" -X, --xlog-method=fetch|stream\n"
" include required WAL files with specified method\n"
msgstr ""
" -X, --xlog-method=fetch|stream\n"
" includi i file WAL richiesti col metodo specificato\n"
#: pg_basebackup.c:244
#, c-format
msgid " --xlogdir=XLOGDIR location for the transaction log directory\n"
msgstr " --xlogdir=XLOGDIR posizione per la directory del log delle transazioni\n"
#: pg_basebackup.c:245
#, c-format
msgid " -z, --gzip compress tar output\n"
msgstr " -z, --gzip comprimi l'output tar\n"
#: pg_basebackup.c:246
#, c-format
msgid " -Z, --compress=0-9 compress tar output with given compression level\n"
msgstr " -Z, --compress=0-9 comprimi l'output tar a questo livello di compressione\n"
#: pg_basebackup.c:247
#, c-format
msgid ""
"\n"
"General options:\n"
msgstr ""
"\n"
"Opzioni generali:\n"
#: pg_basebackup.c:248
#, c-format
msgid ""
" -c, --checkpoint=fast|spread\n"
" set fast or spread checkpointing\n"
msgstr ""
" -c, --checkpoint=fast|spread\n"
" imposta punti di controllo più veloci o più radi\n"
#: pg_basebackup.c:250
#, c-format
msgid " -l, --label=LABEL set backup label\n"
msgstr " -l, --label=LABEL imposta l'etichetta del backup\n"
#: pg_basebackup.c:251
#, c-format
msgid " -P, --progress show progress information\n"
msgstr " -P, --progress mostra informazioni sull'esecuzione\n"
#: pg_basebackup.c:252 pg_receivexlog.c:68 pg_recvlogical.c:87
#, c-format
msgid " -v, --verbose output verbose messages\n"
msgstr " -v, --verbose messaggi di output più numerosi\n"
#: pg_basebackup.c:253 pg_receivexlog.c:69 pg_recvlogical.c:88
#, c-format
msgid " -V, --version output version information, then exit\n"
msgstr " -V, --version mostra informazioni sulla versione ed esci\n"
#: pg_basebackup.c:254 pg_receivexlog.c:70 pg_recvlogical.c:89
#, c-format
msgid " -?, --help show this help, then exit\n"
msgstr " -?, --help mostra questo aiuto ed esci\n"
#: pg_basebackup.c:255 pg_receivexlog.c:71 pg_recvlogical.c:90
#, c-format
msgid ""
"\n"
"Connection options:\n"
msgstr ""
"\n"
"Opzioni di connessione:\n"
#: pg_basebackup.c:256 pg_receivexlog.c:72
#, c-format
msgid " -d, --dbname=CONNSTR connection string\n"
msgstr " -d, --dbname=CONNSTR stringa di connessione\n"
#: pg_basebackup.c:257 pg_receivexlog.c:73 pg_recvlogical.c:92
#, c-format
msgid " -h, --host=HOSTNAME database server host or socket directory\n"
msgstr " -h, --host=HOSTNAME host del server database o directory del socket\n"
#: pg_basebackup.c:258 pg_receivexlog.c:74 pg_recvlogical.c:93
#, c-format
msgid " -p, --port=PORT database server port number\n"
msgstr " -p, --port=PORT numero di porta del server database\n"
#: pg_basebackup.c:259
#, c-format
msgid ""
" -s, --status-interval=INTERVAL\n"
" time between status packets sent to server (in seconds)\n"
msgstr ""
" -s, --status-interval=INTERVAL\n"
" intervallo tra i pacchetti di stato inviati al server\n"
" (in secondi)\n"
#: pg_basebackup.c:261 pg_receivexlog.c:75 pg_recvlogical.c:94
#, c-format
msgid " -U, --username=NAME connect as specified database user\n"
msgstr " -U, --username=NAME connettiti al database col nome utente specificato\n"
#: pg_basebackup.c:262 pg_receivexlog.c:76 pg_recvlogical.c:95
#, c-format
msgid " -w, --no-password never prompt for password\n"
msgstr " -w, --no-password non chiedere mai la password\n"
#: pg_basebackup.c:263 pg_receivexlog.c:77 pg_recvlogical.c:96
#, c-format
msgid " -W, --password force password prompt (should happen automatically)\n"
msgstr ""
" -W, --password forza la richiesta della password\n"
" (dovrebbe essere automatico)\n"
#: pg_basebackup.c:264 pg_receivexlog.c:78 pg_recvlogical.c:97
#, c-format
msgid ""
"\n"
"Report bugs to <pgsql-bugs@postgresql.org>.\n"
msgstr ""
"\n"
"Puoi segnalare eventuali bug a <pgsql-bugs@postgresql.org>.\n"
#: pg_basebackup.c:307
#, c-format
msgid "%s: could not read from ready pipe: %s\n"
msgstr "%s: lettura dalla pipe pronta fallita: %s\n"
#: pg_basebackup.c:315 pg_basebackup.c:408 pg_basebackup.c:1880
#: pg_receivexlog.c:301 pg_recvlogical.c:950
#, c-format
msgid "%s: could not parse transaction log location \"%s\"\n"
msgstr "%s: interpretazione della posizione del log delle transazioni \"%s\" fallita\n"
#: pg_basebackup.c:421
#, c-format
msgid "%s: could not create pipe for background process: %s\n"
msgstr "%s: creazione della pipe per il processo in background fallita: %s\n"
#: pg_basebackup.c:446 pg_basebackup.c:501 pg_basebackup.c:1249
#, c-format
msgid "%s: could not create directory \"%s\": %s\n"
msgstr "%s: creazione della directory \"%s\" fallita: %s\n"
#: pg_basebackup.c:464
#, c-format
msgid "%s: could not create background process: %s\n"
msgstr "%s: creazione del processo in background fallita: %s\n"
#: pg_basebackup.c:476
#, c-format
msgid "%s: could not create background thread: %s\n"
msgstr "%s: creazione del thread in background fallita: %s\n"
#: pg_basebackup.c:520
#, c-format
msgid "%s: directory \"%s\" exists but is not empty\n"
msgstr "%s: la directory \"%s\" esiste ma non è vuota\n"
#: pg_basebackup.c:528
#, c-format
msgid "%s: could not access directory \"%s\": %s\n"
msgstr "%s: accesso alla directory \"%s\" fallito: %s\n"
#: pg_basebackup.c:590
#, c-format
msgid "%*s/%s kB (100%%), %d/%d tablespace %*s"
msgid_plural "%*s/%s kB (100%%), %d/%d tablespaces %*s"
msgstr[0] "%*s/%s kB (100%%), %d/%d tablespace %*s"
msgstr[1] "%*s/%s kB (100%%), %d/%d tablespace %*s"
#: pg_basebackup.c:602
#, c-format
msgid "%*s/%s kB (%d%%), %d/%d tablespace (%s%-*.*s)"
msgid_plural "%*s/%s kB (%d%%), %d/%d tablespaces (%s%-*.*s)"
msgstr[0] "%*s/%s kB (%d%%), %d/%d tablespace (%s%-*.*s)"
msgstr[1] "%*s/%s kB (%d%%), %d/%d tablespace (%s%-*.*s)"
#: pg_basebackup.c:618
#, c-format
msgid "%*s/%s kB (%d%%), %d/%d tablespace"
msgid_plural "%*s/%s kB (%d%%), %d/%d tablespaces"
msgstr[0] "%*s/%s kB (%d%%), %d/%d tablespace"
msgstr[1] "%*s/%s kB (%d%%), %d/%d tablespace"
#: pg_basebackup.c:640
#, c-format
msgid "%s: transfer rate \"%s\" is not a valid value\n"
msgstr "%s: il transfer rate \"%s\" non è un valore valido\n"
#: pg_basebackup.c:647
#, c-format
msgid "%s: invalid transfer rate \"%s\": %s\n"
msgstr "%s: transfer rate non valido \"%s\": %s\n"
#: pg_basebackup.c:657
#, c-format
msgid "%s: transfer rate must be greater than zero\n"
msgstr "%s: il transfer rate deve essere maggiore di zero\n"
#: pg_basebackup.c:691
#, c-format
msgid "%s: invalid --max-rate unit: \"%s\"\n"
msgstr "%s: unità --max-rate non valida: \"%s\"\n"
#: pg_basebackup.c:700
#, c-format
msgid "%s: transfer rate \"%s\" exceeds integer range\n"
msgstr "%s: il transfer rate \"%s\" eccede l'intervallo degli interi\n"
#: pg_basebackup.c:712
#, c-format
msgid "%s: transfer rate \"%s\" is out of range\n"
msgstr "%s: il transfer rate \"%s\" è fuori dall'intervallo consentito\n"
#: pg_basebackup.c:736
#, c-format
msgid "%s: could not write to compressed file \"%s\": %s\n"
msgstr "%s: scrittura nel file compresso \"%s\" fallita: %s\n"
#: pg_basebackup.c:746 pg_basebackup.c:1343 pg_basebackup.c:1561
#, c-format
msgid "%s: could not write to file \"%s\": %s\n"
msgstr "%s: scrittura nel file \"%s\" fallita: %s\n"
#: pg_basebackup.c:801 pg_basebackup.c:822 pg_basebackup.c:850
#, c-format
msgid "%s: could not set compression level %d: %s\n"
msgstr "%s: impostazione del livello di compressione %d fallito: %s\n"
#: pg_basebackup.c:871
#, c-format
msgid "%s: could not create compressed file \"%s\": %s\n"
msgstr "%s: creazione del file compresso \"%s\" fallita: %s\n"
#: pg_basebackup.c:882 pg_basebackup.c:1303 pg_basebackup.c:1554
#, c-format
msgid "%s: could not create file \"%s\": %s\n"
msgstr "%s: creazione del file \"%s\" fallita: %s\n"
#: pg_basebackup.c:894 pg_basebackup.c:1158
#, c-format
msgid "%s: could not get COPY data stream: %s"
msgstr "%s: non è stato possibile ottenere lo stream di dati COPY: %s"
#: pg_basebackup.c:951
#, c-format
msgid "%s: could not close compressed file \"%s\": %s\n"
msgstr "%s: chiusura del file compresso \"%s\" fallita: %s\n"
#: pg_basebackup.c:964 pg_recvlogical.c:567 receivelog.c:193 receivelog.c:342
#: receivelog.c:731
#, c-format
msgid "%s: could not close file \"%s\": %s\n"
msgstr "%s: chiusura del file \"%s\" fallita: %s\n"
#: pg_basebackup.c:975 pg_basebackup.c:1187 pg_recvlogical.c:433
#: receivelog.c:947
#, c-format
msgid "%s: could not read COPY data: %s"
msgstr "%s: lettura dei dati COPY fallita: %s"
#: pg_basebackup.c:1201
#, c-format
msgid "%s: invalid tar block header size: %d\n"
msgstr "%s: dimensione del blocco di intestazione del file tar non valida: %d\n"
#: pg_basebackup.c:1257
#, c-format
msgid "%s: could not set permissions on directory \"%s\": %s\n"
msgstr "%s: impostazione dei permessi sulla directory \"%s\" fallita: %s\n"
#: pg_basebackup.c:1281
#, c-format
msgid "%s: could not create symbolic link from \"%s\" to \"%s\": %s\n"
msgstr "%s: creazione del link simbolico da \"%s\" a \"%s\" fallita: %s\n"
#: pg_basebackup.c:1290
#, c-format
msgid "%s: unrecognized link indicator \"%c\"\n"
msgstr "%s: indicatore di link sconosciuto \"%c\"\n"
#: pg_basebackup.c:1310
#, c-format
msgid "%s: could not set permissions on file \"%s\": %s\n"
msgstr "%s: impostazione dei permessi sul file \"%s\" fallita: %s\n"
#: pg_basebackup.c:1369
#, c-format
msgid "%s: COPY stream ended before last file was finished\n"
msgstr "%s: lo stream COPY è terminato prima che l'ultimo file fosse finito\n"
#: pg_basebackup.c:1455 pg_basebackup.c:1475 pg_basebackup.c:1482
#: pg_basebackup.c:1529
#, c-format
msgid "%s: out of memory\n"
msgstr "%s: memoria esaurita\n"
#: pg_basebackup.c:1606
#, c-format
msgid "%s: incompatible server version %s\n"
msgstr "%s: versione del server incompatibile %s\n"
#: pg_basebackup.c:1633 pg_basebackup.c:1667 pg_receivexlog.c:286
#: pg_recvlogical.c:259 pg_recvlogical.c:866 pg_recvlogical.c:899
#: pg_recvlogical.c:934 receivelog.c:526 receivelog.c:577 receivelog.c:618
#, c-format
msgid "%s: could not send replication command \"%s\": %s"
msgstr "%s: invio del comando di replica \"%s\" fallito: %s"
#: pg_basebackup.c:1640 pg_receivexlog.c:293 pg_recvlogical.c:874
#: receivelog.c:534
#, c-format
msgid "%s: could not identify system: got %d rows and %d fields, expected %d rows and %d or more fields\n"
msgstr "%s: identificazione del sistema fallita: ricevute %d righe e %d campi, attese %d righe e %d campi o più\n"
#: pg_basebackup.c:1678
#, c-format
msgid "%s: could not initiate base backup: %s"
msgstr "%s: avvio del backup di base fallito: %s"
#: pg_basebackup.c:1685
#, c-format
msgid "%s: server returned unexpected response to BASE_BACKUP command; got %d rows and %d fields, expected %d rows and %d fields\n"
msgstr "%s: il server ha restituito una risposta imprevista al comando BASE_BACKUP; ricevute %d righe e %d campi, attese %d righe e %d campi\n"
#: pg_basebackup.c:1705
#, c-format
msgid "transaction log start point: %s on timeline %u\n"
msgstr "punto di avvio log delle transazioni: %s sulla timeline %u\n"
#: pg_basebackup.c:1714
#, c-format
msgid "%s: could not get backup header: %s"
msgstr "%s: non è stato possibile ottenere l'intestazione del backup: %s"
#: pg_basebackup.c:1720
#, c-format
msgid "%s: no data returned from server\n"
msgstr "%s: nessun dato restituito dal server\n"
#: pg_basebackup.c:1752
#, c-format
msgid "%s: can only write single tablespace to stdout, database has %d\n"
msgstr "%s: è possibile scrivere solo un singolo tablespace su stdout, il database ne ha %d\n"
#: pg_basebackup.c:1764
#, c-format
msgid "%s: starting background WAL receiver\n"
msgstr "%s: avvio del ricevitore dei WAL in background\n"
#: pg_basebackup.c:1795
#, c-format
msgid "%s: could not get transaction log end position from server: %s"
msgstr "%s: non è stato possibile ottenere la posizione finale del log delle transazioni dal server: %s"
#: pg_basebackup.c:1802
#, c-format
msgid "%s: no transaction log end position returned from server\n"
msgstr "%s: nessuna posizione finale del log delle transazioni restituita dal server\n"
#: pg_basebackup.c:1814
#, c-format
msgid "%s: final receive failed: %s"
msgstr "%s: ricezione finale fallita: %s"
#: pg_basebackup.c:1832
#, c-format
msgid "%s: waiting for background process to finish streaming ...\n"
msgstr "%s: in attesa che il processo in background finisca lo streaming ...\n"
#: pg_basebackup.c:1838
#, c-format
msgid "%s: could not send command to background pipe: %s\n"
msgstr "%s invio del comando alla pipe di background fallita: %s\n"
#: pg_basebackup.c:1847
#, c-format
msgid "%s: could not wait for child process: %s\n"
msgstr "%s: errore nell'attesa del processo figlio: %s\n"
#: pg_basebackup.c:1853
#, c-format
msgid "%s: child %d died, expected %d\n"
msgstr "%s: il processo figlio %d interrotto, atteso %d\n"
#: pg_basebackup.c:1859
#, c-format
msgid "%s: child process did not exit normally\n"
msgstr "%s: il processo figlio non è terminato normalmente\n"
#: pg_basebackup.c:1865
#, c-format
msgid "%s: child process exited with error %d\n"
msgstr "%s: il processo figlio è terminato con errore %d\n"
#: pg_basebackup.c:1892
#, c-format
msgid "%s: could not wait for child thread: %s\n"
msgstr "%s: errore nell'attesa del thread figlio: %s\n"
#: pg_basebackup.c:1899
#, c-format
msgid "%s: could not get child thread exit status: %s\n"
msgstr "%s: non è stato possibile ottenere il codice di uscita del thread figlio: %s\n"
#: pg_basebackup.c:1905
#, c-format
msgid "%s: child thread exited with error %u\n"
msgstr "%s: il thread figlio è terminato con errore %u\n"
#: pg_basebackup.c:1994
#, c-format
msgid "%s: invalid output format \"%s\", must be \"plain\" or \"tar\"\n"
msgstr "%s: formato di output \"%s\" non valido, deve essere \"plain\" oppure \"tar\"\n"
#: pg_basebackup.c:2012 pg_basebackup.c:2024
#, c-format
msgid "%s: cannot specify both --xlog and --xlog-method\n"
msgstr "%s: non è possibile specificare sia --xlog che --xlog-method\n"
#: pg_basebackup.c:2039
#, c-format
msgid "%s: invalid xlog-method option \"%s\", must be \"fetch\" or \"stream\"\n"
msgstr "%s: opzione xlog-method \"%s\" non valida, deve essere \"fetch\" oppure \"stream\"\n"
#: pg_basebackup.c:2061
#, c-format
msgid "%s: invalid compression level \"%s\"\n"
msgstr "%s: livello di compressione non valido \"%s\"\n"
#: pg_basebackup.c:2073
#, c-format
msgid "%s: invalid checkpoint argument \"%s\", must be \"fast\" or \"spread\"\n"
msgstr "%s: argomento di checkpoint \"%s\" non valido, deve essere \"fast\" oppure \"spread\"\n"
#: pg_basebackup.c:2100 pg_receivexlog.c:429 pg_recvlogical.c:749
#, c-format
msgid "%s: invalid status interval \"%s\"\n"
msgstr "%s: intervallo di status \"%s\" non valido\n"
#: pg_basebackup.c:2116 pg_basebackup.c:2130 pg_basebackup.c:2141
#: pg_basebackup.c:2154 pg_basebackup.c:2164 pg_basebackup.c:2176
#: pg_basebackup.c:2187 pg_receivexlog.c:448 pg_receivexlog.c:462
#: pg_receivexlog.c:473 pg_recvlogical.c:773 pg_recvlogical.c:787
#: pg_recvlogical.c:798 pg_recvlogical.c:806 pg_recvlogical.c:814
#: pg_recvlogical.c:822 pg_recvlogical.c:830 pg_recvlogical.c:838
#, c-format
msgid "Try \"%s --help\" for more information.\n"
msgstr "Prova \"%s --help\" per maggiori informazioni.\n"
#: pg_basebackup.c:2128 pg_receivexlog.c:460 pg_recvlogical.c:785
#, c-format
msgid "%s: too many command-line arguments (first is \"%s\")\n"
msgstr "%s: troppi argomenti nella riga di comando (il primo è \"%s\")\n"
#: pg_basebackup.c:2140 pg_receivexlog.c:472
#, c-format
msgid "%s: no target directory specified\n"
msgstr "%s: nessuna directory di destinazione specificata\n"
#: pg_basebackup.c:2152
#, c-format
msgid "%s: only tar mode backups can be compressed\n"
msgstr "%s: solo i backup in modalità tar possono essere compressi\n"
#: pg_basebackup.c:2162
#, c-format
msgid "%s: WAL streaming can only be used in plain mode\n"
msgstr "%s: lo streaming WAL può essere usato solo in modalità plain\n"
#: pg_basebackup.c:2174
#, c-format
msgid "%s: transaction log directory location can only be specified in plain mode\n"
msgstr "%s: la posizione della directory del log delle transazioni può essere specificata solo in modalità plain\n"
#: pg_basebackup.c:2185
#, c-format
msgid "%s: transaction log directory location must be an absolute path\n"
msgstr "%s: la posizione della directory del log delle transazioni deve essere un percorso assoluto\n"
#: pg_basebackup.c:2197
#, c-format
msgid "%s: this build does not support compression\n"
msgstr "%s: questo binario compilato non supporta la compressione\n"
#: pg_basebackup.c:2224
#, c-format
msgid "%s: could not create symbolic link \"%s\": %s\n"
msgstr "%s: creazione del link simbolico \"%s\" fallita: %s\n"
#: pg_basebackup.c:2229
#, c-format
msgid "%s: symlinks are not supported on this platform\n"
msgstr "%s: questa piattaforma non supporta i link simbolici\n"
#: pg_receivexlog.c:58
#, c-format
msgid ""
"%s receives PostgreSQL streaming transaction logs.\n"
"\n"
msgstr ""
"%s riceve lo stream del log delle transazioni di PostgreSQL.\n"
"\n"
#: pg_receivexlog.c:62 pg_recvlogical.c:74
#, c-format
msgid ""
"\n"
"Options:\n"
msgstr ""
"\n"
"Opzioni:\n"
#: pg_receivexlog.c:63
#, c-format
msgid " -D, --directory=DIR receive transaction log files into this directory\n"
msgstr " -D, --directory=DIR ricevi i file di log delle transazioni in questa directory\n"
#: pg_receivexlog.c:64 pg_recvlogical.c:79
#, c-format
msgid " -n, --no-loop do not loop on connection lost\n"
msgstr " -n, --no-loop non ri-eseguire se la connessione è persa\n"
#: pg_receivexlog.c:65 pg_recvlogical.c:84
#, c-format
msgid ""
" -s, --status-interval=SECS\n"
" time between status packets sent to server (default: %d)\n"
msgstr ""
" -s, --status-interval=SEC\n"
" tempo tra gli invii dei pacchetti di stato al server\n"
" (default: %d)\n"
#: pg_receivexlog.c:67
#, c-format
msgid " -S, --slot=SLOTNAME replication slot to use\n"
msgstr " -S, --slot=NOMESLOT slot di replicazione da usare\n"
#: pg_receivexlog.c:89
#, c-format
msgid "%s: finished segment at %X/%X (timeline %u)\n"
msgstr "%s: terminato segmento a %X/%X (timeline %u)\n"
#: pg_receivexlog.c:102
#, c-format
msgid "%s: switched to timeline %u at %X/%X\n"
msgstr "%s: passato alla timeline %u a %X/%X\n"
#: pg_receivexlog.c:111
#, c-format
msgid "%s: received interrupt signal, exiting\n"
msgstr "%s: ricevuto segnale di interruzione, in uscita\n"
#: pg_receivexlog.c:137
#, c-format
msgid "%s: could not open directory \"%s\": %s\n"
msgstr "%s: apertura della directory \"%s\" fallita: %s\n"
#: pg_receivexlog.c:187 pg_recvlogical.c:341
#, c-format
msgid "%s: could not stat file \"%s\": %s\n"
msgstr "%s: non è stato possibile ottenere informazioni sul file \"%s\": %s\n"
#: pg_receivexlog.c:195
#, c-format
msgid "%s: segment file \"%s\" has incorrect size %d, skipping\n"
msgstr "%s: il file di segmento \"%s\" ha la dimensione non corretta %d, saltato\n"
#: pg_receivexlog.c:214
#, c-format
msgid "%s: could not read directory \"%s\": %s\n"
msgstr "%s: lettura della directory \"%s\" fallita: %s\n"
#: pg_receivexlog.c:221
#, c-format
msgid "%s: could not close directory \"%s\": %s\n"
msgstr "%s: chiusura della directory \"%s\" fallita: %s\n"
#: pg_receivexlog.c:328
#, c-format
msgid "%s: starting log streaming at %X/%X (timeline %u)\n"
msgstr "%s: avvio dello streaming dei log a %X/%X (timeline %u)\n"
#: pg_receivexlog.c:410 pg_recvlogical.c:696
#, c-format
msgid "%s: invalid port number \"%s\"\n"
msgstr "%s: numero di porta non valido \"%s\"\n"
#: pg_receivexlog.c:495 pg_recvlogical.c:977
#, c-format
msgid "%s: disconnected\n"
msgstr "%s: disconnesso\n"
#. translator: check source for value for %d
#: pg_receivexlog.c:502 pg_recvlogical.c:984
#, c-format
msgid "%s: disconnected; waiting %d seconds to try again\n"
msgstr "%s: disconnesso; aspetterò %d secondi prima di riprovare\n"
#: pg_recvlogical.c:66
#, c-format
msgid ""
"%s receives PostgreSQL logical change streams.\n"
"\n"
msgstr ""
"%s riceve stream di modifiche logiche PostgreSQL.\n"
"\n"
#: pg_recvlogical.c:70
#, c-format
msgid ""
"\n"
"Action to be performed:\n"
msgstr ""
"\n"
"Azioni da effettuare:\n"
#: pg_recvlogical.c:71
#, c-format
msgid " --create-slot create a new replication slot (for the slot's name see --slot)\n"
msgstr " --create-slot crea un nuovo slot di replica (per il nome vedi --slot)\n"
#: pg_recvlogical.c:72
#, c-format
msgid " --drop-slot drop the replication slot (for the slot's name see --slot)\n"
msgstr " --drop-slot elimina lo slot di replica (per il nome vedi --slot)\n"
#: pg_recvlogical.c:73
#, c-format
msgid " --start start streaming in a replication slot (for the slot's name see --slot)\n"
msgstr " --start avvia lo streaming in uno slot di replica (per il nome vedi --slot)\n"
#: pg_recvlogical.c:75
#, c-format
msgid " -f, --file=FILE receive log into this file, - for stdout\n"
msgstr " -f, --file=FILE riceve i log in questo file, - per stdout\n"
#: pg_recvlogical.c:76
#, c-format
msgid ""
" -F --fsync-interval=SECS\n"
" time between fsyncs to the output file (default: %d)\n"
msgstr ""
" -F --fsync-interval=SEC\n"
" tempo tra i sync del file di output (default: %d)\n"
#: pg_recvlogical.c:78
#, c-format
msgid " -I, --startpos=LSN where in an existing slot should the streaming start\n"
msgstr " -I, --startpos=LSN dove deve partire lo streaming in uno slot esistente\n"
#: pg_recvlogical.c:80
#, c-format
msgid ""
" -o, --option=NAME[=VALUE]\n"
" pass option NAME with optional value VALUE to the\n"
" output plugin\n"
msgstr ""
" -o, --option=NOME[=VALORE]\n"
" passa l'opzione NOME col valore opzionale VALORE\n"
" al plugin di output\n"
#: pg_recvlogical.c:83
#, c-format
msgid " -P, --plugin=PLUGIN use output plugin PLUGIN (default: %s)\n"
msgstr " -P, --plugin=PLUGIN usa il plugin di output PLUGIN (default: %s)\n"
#: pg_recvlogical.c:86
#, c-format
msgid " -S, --slot=SLOTNAME name of the logical replication slot\n"
msgstr " -S, --slot=NOMESLOT nome dello slot di replica logica\n"
#: pg_recvlogical.c:91
#, c-format
msgid " -d, --dbname=DBNAME database to connect to\n"
msgstr " -d, --dbname=NOMEDB database a cui connettersi\n"
#: pg_recvlogical.c:124
#, c-format
msgid "%s: confirming write up to %X/%X, flush to %X/%X (slot %s)\n"
msgstr "%s: scritture confermate fino a %X/%X, flush a %X/%X (slot %s)\n"
#: pg_recvlogical.c:149 receivelog.c:395
#, c-format
msgid "%s: could not send feedback packet: %s"
msgstr "%s: invio del pacchetto di feedback fallito: %s"
#: pg_recvlogical.c:188
#, c-format
msgid "%s: could not fsync log file \"%s\": %s\n"
msgstr "%s: fsync del file di log \"%s\" fallito: %s\n"
#: pg_recvlogical.c:227
#, c-format
msgid "%s: starting log streaming at %X/%X (slot %s)\n"
msgstr "%s: inizio dello streaming dei log a %X/%X (slot %s)\n"
#: pg_recvlogical.c:269
#, c-format
msgid "%s: streaming initiated\n"
msgstr "%s: streaming iniziato\n"
#: pg_recvlogical.c:334
#, c-format
msgid "%s: could not open log file \"%s\": %s\n"
msgstr "%s: apertura del file di log \"%s\" fallita: %s\n"
#: pg_recvlogical.c:410 receivelog.c:894
#, c-format
msgid "%s: select() failed: %s\n"
msgstr "%s: select() fallita: %s\n"
#: pg_recvlogical.c:419 receivelog.c:902
#, c-format
msgid "%s: could not receive data from WAL stream: %s"
msgstr "%s: ricezione dati dallo stream WAL fallita: %s"
#: pg_recvlogical.c:460 pg_recvlogical.c:499 receivelog.c:969
#: receivelog.c:1023
#, c-format
msgid "%s: streaming header too small: %d\n"
msgstr "%s: intestazione dello streaming troppo piccola: %d\n"
#: pg_recvlogical.c:482 receivelog.c:1129
#, c-format
msgid "%s: unrecognized streaming header: \"%c\"\n"
msgstr "%s: intestazione dello streaming sconosciuta: \"%c\"\n"
#: pg_recvlogical.c:528 pg_recvlogical.c:542
#, c-format
msgid "%s: could not write %u bytes to log file \"%s\": %s\n"
msgstr "%s: scrittura di %u byte nel file di log \"%s\" fallita: %s\n"
#: pg_recvlogical.c:553 receivelog.c:684 receivelog.c:722
#, c-format
msgid "%s: unexpected termination of replication stream: %s"
msgstr "%s: terminazione inaspettata dello stream di replica: %s"
#: pg_recvlogical.c:675
#, c-format
msgid "%s: invalid fsync interval \"%s\"\n"
msgstr "%s: intervallo di fsync \"%s\" non valido\n"
#: pg_recvlogical.c:716
#, c-format
msgid "%s: could not parse start position \"%s\"\n"
msgstr "%s: interpretazione della posizione di inizio \"%s\" fallita\n"
#: pg_recvlogical.c:797
#, c-format
msgid "%s: no slot specified\n"
msgstr "%s: slot non specificato\n"
#: pg_recvlogical.c:805
#, c-format
msgid "%s: no target file specified\n"
msgstr "%s: file di destinazione non specificato\n"
#: pg_recvlogical.c:813
#, c-format
msgid "%s: no database specified\n"
msgstr "%s: database non specificato\n"
#: pg_recvlogical.c:821
#, c-format
msgid "%s: at least one action needs to be specified\n"
msgstr "%s: occorre specificare almeno una azione\n"
#: pg_recvlogical.c:829
#, c-format
msgid "%s: cannot use --create-slot or --start together with --drop-slot\n"
msgstr "%s: --create-slot o --start non possono essere usate con --drop-slot\n"
#: pg_recvlogical.c:837
#, c-format
msgid "%s: cannot use --create-slot or --drop-slot together with --startpos\n"
msgstr "%s: --create-slot o --drop-slot non possono essere usate con --startpos\n"
#: pg_recvlogical.c:891
#, c-format
msgid "%s: dropping replication slot \"%s\"\n"
msgstr "%s: eliminazione dello slot di replica \"%s\"\n"
#: pg_recvlogical.c:907
#, c-format
msgid "%s: could not drop replication slot \"%s\": got %d rows and %d fields, expected %d rows and %d fields\n"
msgstr "%s: eliminazione dello slot di replica \"%s\" fallita: ricevute %d righe e %d campi, attesi %d righe e %d campi\n"
#: pg_recvlogical.c:925
#, c-format
msgid "%s: creating replication slot \"%s\"\n"
msgstr "%s: creazione dello slot di replica \"%s\"\n"
#: pg_recvlogical.c:942
#, c-format
msgid "%s: could not create replication slot \"%s\": got %d rows and %d fields, expected %d rows and %d fields\n"
msgstr "%s: creazione dello slot di replica \"%s\" fallita: ricevute %d righe e %d campi, attesi %d righe e %d campi\n"
#: receivelog.c:55
#, c-format
msgid "%s: could not create archive status file \"%s\": %s\n"
msgstr "%s: creazione del file di stato dell'archivio \"%s\" fallita: %s\n"
#: receivelog.c:62 receivelog.c:186 receivelog.c:335 receivelog.c:990
#, c-format
msgid "%s: could not fsync file \"%s\": %s\n"
msgstr "%s: fsync del file \"%s\" fallito: %s\n"
#: receivelog.c:101
#, c-format
msgid "%s: could not open transaction log file \"%s\": %s\n"
msgstr "%s: apertura del file di log delle transazioni \"%s\" fallita: %s\n"
#: receivelog.c:113
#, c-format
msgid "%s: could not stat transaction log file \"%s\": %s\n"
msgstr "%s: non è stato possibile ottenere informazioni sul file di log delle transazioni \"%s\": %s\n"
#: receivelog.c:127
#, c-format
msgid "%s: transaction log file \"%s\" has %d bytes, should be 0 or %d\n"
msgstr "%s: il file di log delle transazioni \"%s\" ha %d byte, dovrebbero essere 0 or %d\n"
#: receivelog.c:140
#, c-format
msgid "%s: could not pad transaction log file \"%s\": %s\n"
msgstr "%s: correzione della lunghezza del file di log delle transazioni \"%s\" fallita: %s\n"
#: receivelog.c:153
#, c-format
msgid "%s: could not seek to beginning of transaction log file \"%s\": %s\n"
msgstr "%s: spostamento all'inizio del file di log delle transazioni \"%s\" fallito: %s\n"
#: receivelog.c:179
#, c-format
msgid "%s: could not determine seek position in file \"%s\": %s\n"
msgstr "%s: determinazione della posizione dove muoversi nel file \"%s\" fallita: %s\n"
#: receivelog.c:212
#, c-format
msgid "%s: could not rename file \"%s\": %s\n"
msgstr "%s: non è stato possibile rinominare il file \"%s\": %s\n"
#: receivelog.c:219
#, c-format
msgid "%s: not renaming \"%s%s\", segment is not complete\n"
msgstr "%s: \"%s%s\" non rinominato, il segmento non è completo\n"
#: receivelog.c:265
#, c-format
msgid "%s: could not open timeline history file \"%s\": %s\n"
msgstr "%s: apertura del file della storia della timeline \"%s\" fallita: %s\n"
#: receivelog.c:293
#, c-format
msgid "%s: server reported unexpected history file name for timeline %u: %s\n"
msgstr "%s: il server ha riportato un nome di file della storia imprevisto per la timeline %u: %s\n"
#: receivelog.c:310
#, c-format
msgid "%s: could not create timeline history file \"%s\": %s\n"
msgstr "%s: creazione del file di storia della timeline \"%s\" fallita: %s\n"
#: receivelog.c:327
#, c-format
msgid "%s: could not write timeline history file \"%s\": %s\n"
msgstr "%s: scrittura del file di storia della timeline \"%s\" fallita: %s\n"
#: receivelog.c:352
#, c-format
msgid "%s: could not rename file \"%s\" to \"%s\": %s\n"
msgstr "%s: non è stato possibile rinominare il file di storia della timeline \"%s\" in \"%s\": %s\n"
#: receivelog.c:429
#, c-format
msgid "%s: incompatible server version %s; client does not support streaming from server versions older than %s\n"
msgstr "%s: server di versione %s non compatibile; il client non supporta lo streaming da server di versione precedente a %s\n"
#: receivelog.c:439
#, c-format
msgid "%s: incompatible server version %s; client does not support streaming from server versions newer than %s\n"
msgstr "%s: server di versione %s non compatibile; il client non supporta lo streaming da server di versione successiva a %s\n"
#: receivelog.c:542
#, c-format
msgid "%s: system identifier does not match between base backup and streaming connection\n"
msgstr "%s: l'identificativo di sistema non combacia tra il backup di base e la connessione in streaming\n"
#: receivelog.c:550
#, c-format
msgid "%s: starting timeline %u is not present in the server\n"
msgstr "%s: la timeline di inizio %u non è presente nel server\n"
#: receivelog.c:590
#, c-format
msgid "%s: unexpected response to TIMELINE_HISTORY command: got %d rows and %d fields, expected %d rows and %d fields\n"
msgstr "%s: risposta inattesa al comando TIMELINE_HISTORY: ricevute %d righe e %d campi, attese %d righe e %d campi\n"
#: receivelog.c:665
#, c-format
msgid "%s: server reported unexpected next timeline %u, following timeline %u\n"
msgstr "%s: il server ha riportato la timeline successiva imprevista %u, a seguito della timeline %u\n"
#: receivelog.c:672
#, c-format
msgid "%s: server stopped streaming timeline %u at %X/%X, but reported next timeline %u to begin at %X/%X\n"
msgstr "%s: il server ha interrotto lo streaming della timeline %u a %X/%X, ma ha riportato l'inizio della timeline successiva %u a %X/%X\n"
#: receivelog.c:713
#, c-format
msgid "%s: replication stream was terminated before stop point\n"
msgstr "%s: lo stream di replica è terminato prima del punto di arresto\n"
#: receivelog.c:762
#, c-format
msgid "%s: unexpected result set after end-of-timeline: got %d rows and %d fields, expected %d rows and %d fields\n"
msgstr "%s: risultato imprevisto dopo la fine della timeline: ricevute %d righe e %d campi, attese %d righe e %d campi\n"
#: receivelog.c:772
#, c-format
msgid "%s: could not parse next timeline's starting point \"%s\"\n"
msgstr "%s: interpretazione del punto d'inizio della nuova timeline \"%s\" fallita\n"
#: receivelog.c:827 receivelog.c:930 receivelog.c:1116
#, c-format
msgid "%s: could not send copy-end packet: %s"
msgstr "%s: invio del pacchetto di fine copia fallito: %s"
#: receivelog.c:1042
#, c-format
msgid "%s: received transaction log record for offset %u with no file open\n"
msgstr "%s: ricevuti record di log delle transazioni per offset %u senza alcun file aperto\n"
#: receivelog.c:1054
#, c-format
msgid "%s: got WAL data offset %08x, expected %08x\n"
msgstr "%s: ricevuto offset dati WAL %08x, atteso %08x\n"
#: receivelog.c:1091
#, c-format
msgid "%s: could not write %u bytes to WAL file \"%s\": %s\n"
msgstr "%s: scrittura di %u byte nel file WAL \"%s\" fallita: %s\n"
#: streamutil.c:142
msgid "Password: "
msgstr "Password: "
#: streamutil.c:166
#, c-format
msgid "%s: could not connect to server\n"
msgstr "%s: connessione al server fallita\n"
#: streamutil.c:184
#, c-format
msgid "%s: could not connect to server: %s\n"
msgstr "%s: connessione al server fallita: %s\n"
#: streamutil.c:208
#, c-format
msgid "%s: could not determine server setting for integer_datetimes\n"
msgstr "%s: non è stato possibile determinare l'impostazione integer_datetimes del server\n"
#: streamutil.c:221
#, c-format
msgid "%s: integer_datetimes compile flag does not match server\n"
msgstr "%s: l'opzione di compilazione integer_datetimes non combacia con quella del server\n"
|