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
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
|
# Swedish message translation file for pg_dump
# Peter Eisentraut <[email protected]>, 2001.
#
# $Header: /cvsroot/pgsql/src/bin/pg_dump/po/sv.po,v 1.1 2002/08/21 20:42:26 petere Exp $
#
# Use these quotes: "%s"
#
msgid ""
msgstr ""
"Project-Id-Version: PostgreSQL 7.2\n"
"POT-Creation-Date: 2001-12-10 15:08+0100\n"
"PO-Revision-Date: 2001-12-12 22:35+0100\n"
"Last-Translator: Peter Eisentraut <[email protected]>\n"
"Language-Team: Swedish <[email protected]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
#: pg_dump.c:136
#, c-format
msgid ""
"%s dumps a database as a text file or to other formats.\n"
"\n"
msgstr "%s skriver ut en databas som en textfil eller i andra formaten.\n\n"
#: pg_dump.c:137
msgid "Usage:"
msgstr "Anv�ndning:"
#: pg_dump.c:138
#, c-format
msgid ""
" %s [options] dbname\n"
"\n"
msgstr " %s [flaggor] dbnamn\n\n"
#: pg_dump.c:139
msgid "Options:"
msgstr "Flaggor:"
#: pg_dump.c:143
msgid ""
" -a, --data-only dump only the data, not the schema\n"
" -b, --blobs include large objects in dump\n"
" -c, --clean clean (drop) schema prior to create\n"
" -C, --create include commands to create database in dump\n"
" -d, --inserts dump data as INSERT, rather than COPY, commands\n"
" -D, --column-inserts dump data as INSERT commands with column names\n"
" -f, --file=FILENAME output file name\n"
" -F, --format {c|t|p} output file format (custom, tar, plain text)\n"
" -h, --host=HOSTNAME database server host name\n"
" -i, --ignore-version proceed even when server version mismatches\n"
" pg_dump version\n"
" -n, --no-quotes suppress most quotes around identifiers\n"
" -N, --quotes enable most quotes around identifiers\n"
" -o, --oids include oids in dump\n"
" -O, --no-owner do not output \\connect commands in plain\n"
" text format\n"
" -p, --port=PORT database server port number\n"
" -R, --no-reconnect disable ALL reconnections to the database in\n"
" plain text format\n"
" -s, --schema-only dump only the schema, no data\n"
" -S, --superuser=NAME specify the superuser user name to use in\n"
" plain text format\n"
" -t, --table=TABLE dump this table only (* for all)\n"
" -U, --username=NAME connect as specified database user\n"
" -v, --verbose verbose mode\n"
" -W, --password force password prompt (should happen "
"automatically)\n"
" -x, --no-privileges do not dump privileges (grant/revoke)\n"
" -X use-set-session-authorization, --use-set-session-authorization\n"
" output SET SESSION AUTHORIZATION commands rather\n"
" than \\connect commands\n"
" -Z, --compress {0-9} compression level for compressed formats\n"
msgstr ""
#: pg_dump.c:177
msgid ""
" -a dump only the data, not the schema\n"
" -b include large objects in dump\n"
" -c clean (drop) schema prior to create\n"
" -C include commands to create database in dump\n"
" -d dump data as INSERT, rather than COPY, commands\n"
" -D dump data as INSERT commands with column names\n"
" -f FILENAME output file name\n"
" -F {c|t|p} output file format (custom, tar, plain text)\n"
" -h HOSTNAME database server host name\n"
" -i proceed even when server version mismatches\n"
" pg_dump version\n"
" -n suppress most quotes around identifiers\n"
" -N enable most quotes around identifiers\n"
" -o include oids in dump\n"
" -O do not output \\connect commands in plain\n"
" text format\n"
" -p PORT database server port number\n"
" -R disable ALL reconnections to the database in\n"
" plain text format\n"
" -s dump only the schema, no data\n"
" -S NAME specify the superuser user name to use in\n"
" plain text format\n"
" -t TABLE dump this table only (* for all)\n"
" -U NAME connect as specified database user\n"
" -v verbose mode\n"
" -W force password prompt (should happen "
"automatically)\n"
" -x do not dump privileges (grant/revoke)\n"
" -X use-set-session-authorization\n"
" output SET SESSION AUTHORIZATION commands rather\n"
" than \\connect commands\n"
" -Z {0-9} compression level for compressed formats\n"
msgstr ""
#: pg_dump.c:210
msgid ""
"If no database name is not supplied, then the PGDATABASE environment\n"
"variable value is used.\n"
"\n"
"Report bugs to <[email protected]>."
msgstr ""
#: pg_backup_archiver.c:1298 pg_dump.c:221
msgid "*** aborted because of error\n"
msgstr "*** avbryten p� grund av fel\n"
#: pg_dump.c:249
#, c-format
msgid "dumping out the contents of table %s\n"
msgstr "skriver ut inneh�llet av tabellen %s\n"
#: pg_dump.c:280
#, c-format
msgid "SQL command to dump the contents of table \"%s\" failed\n"
msgstr "SQL-kommando f�r att skriva ut inneh�llet av tabellen \"%s\" misslyckades\n"
#: pg_dump.c:282 pg_dump.c:378 pg_dump.c:409 pg_dump.c:423 pg_dump.c:494
#: pg_dump.c:1159
#, c-format
msgid "Error message from server: %s"
msgstr "Felmeddelandet fr�n servern: %s"
#: pg_dump.c:283 pg_dump.c:294 pg_dump.c:379 pg_dump.c:410 pg_dump.c:1160
#, c-format
msgid "The command was: %s\n"
msgstr "Kommandot var: %s\n"
#: pg_dump.c:290
#, c-format
msgid "SQL command to dump the contents of table \"%s\" executed abnormally.\n"
msgstr ""
#: pg_dump.c:292
#, c-format
msgid "The server returned status %d when %d was expected.\n"
msgstr ""
#: pg_dump.c:377
#, c-format
msgid ""
"SQL command to dump the contents of table \"%s\" failed: PQendcopy() "
"failed.\n"
msgstr "SQL-kommando f�r att skriva ut inneh�llet av tabellen \"%s\" misslyckades: PQendcopy() misslyckades.\n"
#: pg_dump.c:408 pg_dump.c:422 pg_dump.c:493
msgid "dumpClasses(): SQL command failed\n"
msgstr "dumpClasses(): SQL-kommando misslyckades\n"
#: pg_dump.c:424
msgid "The command was: FETCH 100 FROM _pg_dump_cursor\n"
msgstr "Kommandot var: FETCH 100 FROM _pg_dump_cursor\n"
#: pg_dump.c:495
msgid "The command was: CLOSE _pg_dump_cursor\n"
msgstr "Kommandot var: CLOSE _pg_dump_cursor\n"
#: pg_dump.c:561
#, c-format
msgid "preparing to dump the contents of all %d tables/sequences\n"
msgstr ""
#: pg_dump.c:563
msgid "preparing to dump the contents of only one table/sequence\n"
msgstr ""
#: pg_dump.c:580
#, c-format
msgid "preparing to dump the contents of table %s\n"
msgstr ""
#: pg_backup_db.c:167 pg_dump.c:629
#, c-format
msgid "unable to parse version string \"%s\"\n"
msgstr ""
#: pg_dump.c:874 pg_restore.c:263
msgid "User name: "
msgstr "Anv�ndarnamn: "
#: pg_dump.c:906 pg_restore.c:288
#, c-format
msgid "%s: invalid -X option -- %s\n"
msgstr "%s: ogiltig \"-X\"-flagga -- %s\n"
#: pg_dump.c:908 pg_dump.c:930 pg_restore.c:290 pg_restore.c:302
#, c-format
msgid "Try '%s --help' for more information.\n"
msgstr "Fors�k med \"%s --help\" f�r mer information.\n"
#: pg_dump.c:919
#, c-format
msgid ""
"%s was compiled without support for long options.\n"
"Use --help for help on invocation options.\n"
msgstr ""
"%s har inte blivit kompilerat med st�d f�r l�nga flaggor.\n"
"Anv�nda --help f�r hj�lp om flaggor.\n"
#: pg_dump.c:938
#, c-format
msgid ""
"%s: too many command line options (first is '%s')\n"
"Try '%s --help' for more information.\n"
msgstr ""
"%s: f�r m�nga flaggor (f�rsta �r \"%s\")\n"
"Fors�k med \"%s --help\" f�r mer information.\n"
#: pg_backup_db.c:407 pg_dump.c:951
msgid "no database name specified\n"
msgstr "inget databasnamn angivet\n"
#: pg_dump.c:957
msgid ""
"The options \"schema only\" (-s) and \"data only\" (-a) cannot be used "
"together.\n"
msgstr ""
#: pg_dump.c:963
msgid "Large object output is not supported for a single table.\n"
msgstr ""
#: pg_dump.c:964
msgid "Use all tables or a full dump instead.\n"
msgstr ""
#: pg_dump.c:970
msgid "INSERT (-d, -D) and OID (-o) options cannot be used together.\n"
msgstr "Flaggorna INSERT (-d, -D) och OID (-o) kan inte anv�ndas tillsammans.\n"
#: pg_dump.c:971
msgid "(The INSERT command cannot set oids.)\n"
msgstr ""
#: pg_dump.c:977
msgid "large object output is not supported for plain text dump files.\n"
msgstr ""
#: pg_dump.c:978
msgid "(Use a different output format.)\n"
msgstr ""
#: pg_dump.c:1008
#, c-format
msgid "invalid output format '%s' specified\n"
msgstr "ogiltigt utdataformat \"%s\"\n"
#: pg_dump.c:1014
#, c-format
msgid "could not open output file %s for writing\n"
msgstr "kan inte �ppna utfil %s f�r skrivning\n"
#: pg_dump.c:1037
#, c-format
msgid "BEGIN command failed: %s"
msgstr "BEGIN-kommandot misslyckades: %s"
#: pg_dump.c:1043
#, c-format
msgid "could not set transaction isolation level to serializable: %s"
msgstr ""
#: pg_dump.c:1062
#, c-format
msgid "last built-in oid is %u\n"
msgstr ""
#: pg_dump.c:1147
msgid "saving database definition\n"
msgstr "sparar databasdefinition\n"
#: pg_dump.c:1158
msgid "SQL command failed\n"
msgstr "SQL-kommando misslyckades\n"
#: pg_dump.c:1168
#, c-format
msgid "missing pg_database entry for database \"%s\"\n"
msgstr "pg_database-post f�r databas \"%s\" saknas\n"
#: pg_dump.c:1174
#, c-format
msgid ""
"query returned more than one (%d) pg_database entry for database \"%s\"\n"
msgstr "fr�ga har givit mer �n en (%d) pg_database-post som resultat f�r databas \"%s\"\n"
#: pg_dump.c:1220
msgid "saving large objects\n"
msgstr ""
#: pg_dump.c:1231
#, c-format
msgid "dumpBlobs(): cursor declaration failed: %s"
msgstr ""
#: pg_dump.c:1246
#, c-format
msgid "dumpBlobs(): fetch from cursor failed: %s"
msgstr ""
#: pg_dump.c:1259
#, c-format
msgid "dumpBlobs(): could not open large object: %s"
msgstr ""
#: pg_dump.c:1272
#, c-format
msgid "dumpBlobs(): error reading large object: %s"
msgstr ""
#: pg_dump.c:1363
#, c-format
msgid "query to obtain list of data types failed: %s"
msgstr ""
#: pg_dump.c:1415
#, c-format
msgid "WARNING: owner of data type %s appears to be invalid\n"
msgstr ""
#: pg_dump.c:1494
#, c-format
msgid "query to obtain list of operators failed: %s"
msgstr ""
#: pg_dump.c:1536
#, c-format
msgid "WARNING: owner of operator \"%s\" appears to be invalid\n"
msgstr ""
#: pg_dump.c:1860
#, c-format
msgid "query to obtain list of aggregate functions failed: %s"
msgstr ""
#: pg_dump.c:1891
#, c-format
msgid "WARNING: owner of aggregate function \"%s\" appears to be invalid\n"
msgstr ""
#: pg_dump.c:1965
#, c-format
msgid "query to obtain list of functions failed: %s"
msgstr ""
#: pg_dump.c:2008
#, c-format
msgid "WARNING: owner of function \"%s\" appears to be invalid\n"
msgstr ""
#: pg_dump.c:2013
#, c-format
msgid ""
"failed sanity check: function %s has more than %d (namely %d) arguments\n"
msgstr ""
#: pg_dump.c:2123
#, c-format
msgid "query to obtain list of tables failed: %s"
msgstr ""
#: pg_dump.c:2155
#, c-format
msgid "WARNING: owner of table \"%s\" appears to be invalid\n"
msgstr ""
#: pg_dump.c:2179
#, c-format
msgid "query to obtain definition of view \"%s\" failed: %s"
msgstr ""
#: pg_dump.c:2187
#, c-format
msgid "query to obtain definition of view \"%s\" returned no data\n"
msgstr ""
#: pg_dump.c:2190
#, c-format
msgid ""
"query to obtain definition of view \"%s\" returned more than one definition\n"
msgstr ""
#: pg_dump.c:2197
#, c-format
msgid "query to obtain definition of view \"%s\" returned NULL oid\n"
msgstr ""
#: pg_dump.c:2207
#, c-format
msgid "definition of view \"%s\" appears to be empty (length zero)\n"
msgstr ""
#: pg_dump.c:2232
#, c-format
msgid "finding CHECK constraints for table %s\n"
msgstr ""
#: pg_dump.c:2253
#, c-format
msgid "query to obtain check constraints failed: %s"
msgstr ""
#: pg_dump.c:2259
#, c-format
msgid "expected %d check constraints on table \"%s\" but found %d\n"
msgstr ""
#: pg_dump.c:2261
msgid "(The system catalogs might be corrupted.)\n"
msgstr ""
#: pg_dump.c:2305
#, c-format
msgid "query to obtain primary key of table \"%s\" failed: %s"
msgstr ""
#: pg_dump.c:2312
#, c-format
msgid ""
"query to obtain primary key of table \"%s\" produced more than one result\n"
msgstr ""
#: pg_dump.c:2344
#, c-format
msgid "query to obtain name of primary key of table \"%s\" failed: %s"
msgstr ""
#: pg_dump.c:2352
#, c-format
msgid ""
"query to obtain name of primary key of table \"%s\" did not return exactly "
"one result\n"
msgstr ""
#: pg_backup_archiver.c:654 pg_backup_archiver.c:1064
#: pg_backup_archiver.c:1183 pg_backup_archiver.c:1472
#: pg_backup_archiver.c:1612 pg_backup_archiver.c:1641 pg_backup_custom.c:149
#: pg_backup_custom.c:154 pg_backup_custom.c:169 pg_backup_custom.c:562
#: pg_backup_db.c:336 pg_backup_db.c:430 pg_backup_tar.c:984 pg_dump.c:2361
msgid "out of memory\n"
msgstr "minnet slut\n"
#: pg_dump.c:2388
#, c-format
msgid "finding triggers for table %s\n"
msgstr ""
#: pg_dump.c:2404
#, c-format
msgid "query to obtain list of triggers failed: %s"
msgstr ""
#: pg_dump.c:2410
#, c-format
msgid "expected %d triggers on table \"%s\" but found %d\n"
msgstr ""
#: pg_dump.c:2490
#, c-format
msgid "query to obtain procedure name for trigger \"%s\" failed: %s"
msgstr ""
#: pg_dump.c:2499
#, c-format
msgid ""
"query to obtain procedure name for trigger \"%s\" did not return exactly one "
"result\n"
msgstr ""
#: pg_dump.c:2563
#, c-format
msgid ""
"query produced NULL referenced table name for foreign key trigger \"%s\" on "
"table \"%s\" (oid of table: %s)\n"
msgstr ""
#: pg_dump.c:2593
#, c-format
msgid "bad argument string (%s) for trigger \"%s\" on table \"%s\"\n"
msgstr ""
#: pg_dump.c:2681
#, c-format
msgid "query to obtain inheritance relationships failed: %s"
msgstr ""
#: pg_dump.c:2746
#, c-format
msgid "finding the columns and types for table %s\n"
msgstr ""
#: pg_dump.c:2785
#, c-format
msgid "query to get table columns failed: %s"
msgstr ""
#: pg_dump.c:2815
#, c-format
msgid "query produced NULL name for data type of column %d of table %s\n"
msgstr ""
#: pg_dump.c:2836
#, c-format
msgid "finding DEFAULT expression for column %s\n"
msgstr ""
#: pg_dump.c:2847
#, c-format
msgid "query to get column default value failed: %s"
msgstr ""
#: pg_dump.c:2856
#, c-format
msgid ""
"query to get default value for column \"%s\" returned %d rows; expected 1\n"
msgstr ""
#: pg_dump.c:2927
#, c-format
msgid "query to obtain list of indexes failed: %s"
msgstr ""
#: pg_dump.c:3016
#, c-format
msgid "query to get comment on oid %s failed: %s"
msgstr "fr�gan f�r att h�mta kommentaren f�r OID %s misslyckades: %s"
#: pg_dump.c:3071
#, c-format
msgid "query to get database oid failed: %s"
msgstr "fr�gan f�r att h�mta databasens OID misslyckades: %s"
#: pg_dump.c:3184
#, c-format
msgid "notice: array type %s - type for elements (oid %s) is not dumped\n"
msgstr ""
#: pg_dump.c:3268
#, c-format
msgid "query to obtain list of procedural languages failed: %s"
msgstr ""
#: pg_dump.c:3296
#, c-format
msgid "handler procedure for procedural language %s not found\n"
msgstr ""
#: pg_dump.c:3389
#, c-format
msgid "query to get name of procedural language failed: %s"
msgstr ""
#: pg_dump.c:3396
#, c-format
msgid "procedural language for function %s not found\n"
msgstr ""
#: pg_dump.c:3438 pg_dump.c:3462
#, c-format
msgid "WARNING: function \"%s\" not dumped\n"
msgstr "VARNING: funktion \"%s\" har inte skrivits ut\n"
#: pg_dump.c:3441
#, c-format
msgid "reason: data type name of argument %d (oid %s) not found\n"
msgstr ""
#: pg_dump.c:3465
#, c-format
msgid "reason: name of return data type (oid %s) not found\n"
msgstr ""
#: pg_dump.c:3574 pg_dump.c:3590 pg_dump.c:3604 pg_dump.c:3618 pg_dump.c:3638
#: pg_dump.c:3652
#, c-format
msgid "WARNING: operator \"%s\" (oid %s) not dumped\n"
msgstr "VARNING: operat�r \"%s\" (OID %s) har inte skrivits ut\n"
#: pg_dump.c:3576
#, c-format
msgid "reason: oprleft (oid %s) not found\n"
msgstr "orsak: oprleft (OID %s) har inte funnets\n"
#: pg_dump.c:3592
#, c-format
msgid "reason: oprright (oid %s) not found\n"
msgstr "orsak: oprright (OID %s) har inte funnets\n"
#: pg_dump.c:3606
#, c-format
msgid "reason: oprcom (oid %s) not found\n"
msgstr "orsak: oprcom (OID %s) har inte funnets\n"
#: pg_dump.c:3620
#, c-format
msgid "reason: oprnegate (oid %s) not found\n"
msgstr "orsak: oprnegate (OID %s) har inte funnets\n"
#: pg_dump.c:3640
#, c-format
msgid "reason: oprlsortop (oid %s) not found\n"
msgstr "orsak: oprlsortop (OID %s) har inte funnets\n"
#: pg_dump.c:3654
#, c-format
msgid "reason: oprrsortop (oid %s) not found\n"
msgstr "orsak: oprrsortop (OID %s) har inte funnets\n"
#: pg_dump.c:3735
#, c-format
msgid ""
"WARNING: aggregate function %s could not be dumped correctly for this "
"database version; ignored\n"
msgstr ""
#: pg_dump.c:3750 pg_dump.c:3768
#, c-format
msgid "WARNING: aggregate function \"%s\" (oid %s) not dumped\n"
msgstr ""
#: pg_dump.c:3752
#, c-format
msgid "reason: aggbasetype (oid %s) not found\n"
msgstr ""
#: pg_dump.c:3770
#, c-format
msgid "reason: aggtranstype (oid %s) not found\n"
msgstr ""
#: pg_dump.c:3947
#, c-format
msgid "could not parse ACL list ('%s') for relation %s\n"
msgstr ""
#: pg_dump.c:4197
#, c-format
msgid ""
"dumpTables(): failed sanity check, could not find index (%s) for primary key "
"constraint\n"
msgstr ""
#: pg_dump.c:4329
#, c-format
msgid "getAttrName(): invalid column number %d for table %s\n"
msgstr ""
#: pg_dump.c:4359
#, c-format
msgid "dumpIndexes(): failed sanity check, table %s was not found\n"
msgstr ""
#: pg_dump.c:4505
#, c-format
msgid "could not create pgdump_oid table: %s"
msgstr "kan inte skapa tabellen pgdump_oid: %s"
#: pg_dump.c:4513
#, c-format
msgid "could not insert into pgdump_oid table: %s"
msgstr ""
#: pg_dump.c:4519
msgid "inserted invalid oid\n"
msgstr ""
#: pg_dump.c:4527
#, c-format
msgid "could not drop pgdump_oid table: %s"
msgstr "kan inte ta bort tabellen pgdump_oid: %s"
#: pg_dump.c:4532
#, c-format
msgid "maximum system oid is %u\n"
msgstr ""
#: pg_dump.c:4566
#, c-format
msgid "error in finding the last system oid: %s"
msgstr ""
#: pg_dump.c:4572
msgid "missing pg_database entry for this database\n"
msgstr "pg_database-posten f�r denna databas saknas\n"
#: pg_dump.c:4577
msgid "found more than one pg_database entry for this database\n"
msgstr "det finns mer �n en pg_database-post f�r denna databas\n"
#: pg_dump.c:4605
#, c-format
msgid "error in finding the template1 database: %s"
msgstr ""
#: pg_dump.c:4611
msgid "could not find template1 database entry in the pg_database table\n"
msgstr "kan inte hitta pg_database-posten f�r databas template1\n"
#: pg_dump.c:4616
msgid "found more than one template1 database entry in the pg_database table\n"
msgstr "det finns mer �n en pg_database-post f�r databas template1\n"
#: pg_dump.c:4646
#, c-format
msgid "query to get data of sequence \"%s\" failed: %s"
msgstr ""
#: pg_dump.c:4652
#, c-format
msgid "query to get data of sequence \"%s\" returned %d rows (expected 1)\n"
msgstr ""
#: pg_dump.c:4659
#, c-format
msgid "query to get data of sequence \"%s\" returned name \"%s\"\n"
msgstr ""
#: pg_dump.c:4738
msgid "dumping out triggers\n"
msgstr ""
#: pg_dump.c:4773
msgid "dumping out rules\n"
msgstr ""
#: pg_dump.c:4805
#, c-format
msgid "query to get rules associated with table \"%s\" failed: %s"
msgstr ""
#: common.c:116
#, c-format
msgid "failed sanity check, operator with oid %s not found\n"
msgstr ""
#: common.c:168
#, c-format
msgid "failed sanity check, parent oid %s of table %s (oid %s) not found\n"
msgstr ""
#: common.c:173
#, c-format
msgid "failed sanity check, parent oid %s of table (oid %s) not found\n"
msgstr ""
#: common.c:216
msgid "parseNumericArray: too many numbers\n"
msgstr "parseNumericArray: f�r m�nga nummer\n"
#: common.c:231
msgid "parseNumericArray: bogus number\n"
msgstr "parseNumericArray: felaktigt nummer\n"
#: common.c:295
msgid "reading user-defined types\n"
msgstr ""
#: common.c:299
msgid "reading user-defined functions\n"
msgstr ""
#: common.c:303
msgid "reading user-defined aggregate functions\n"
msgstr ""
#: common.c:307
msgid "reading user-defined operators\n"
msgstr ""
#: common.c:311
msgid "reading user-defined tables\n"
msgstr ""
#: common.c:315
msgid "reading index information\n"
msgstr ""
#: common.c:319
msgid "reading table inheritance information\n"
msgstr ""
#: common.c:323
msgid "finding the column names and types for each table\n"
msgstr ""
#: common.c:327
msgid "flagging inherited columns in subtables\n"
msgstr ""
#: common.c:333
msgid "dumping out database comment\n"
msgstr ""
#: common.c:340
msgid "dumping out user-defined types\n"
msgstr ""
#: common.c:345
msgid "dumping out tables\n"
msgstr ""
#: common.c:353
msgid "dumping out indexes\n"
msgstr ""
#: common.c:360
msgid "dumping out user-defined procedural languages\n"
msgstr ""
#: common.c:367
msgid "dumping out user-defined functions\n"
msgstr ""
#: common.c:374
msgid "dumping out user-defined aggregate functions\n"
msgstr ""
#: common.c:381
msgid "dumping out user-defined operators\n"
msgstr ""
#: common.c:467
#, c-format
msgid "failed sanity check, table \"%s\" not found by flagInhAttrs\n"
msgstr ""
#: pg_backup_archiver.c:106
msgid "archiver"
msgstr ""
#: pg_backup_archiver.c:161
msgid "could not close the output file in CloseArchive\n"
msgstr ""
#: pg_backup_archiver.c:187
msgid "-C and -R are incompatible options\n"
msgstr ""
#: pg_backup_archiver.c:190
msgid "-C and -c are incompatible options\n"
msgstr ""
#: pg_backup_archiver.c:197
msgid "connecting to database for restore\n"
msgstr ""
#: pg_backup_archiver.c:199
msgid "direct database connections are not supported in pre-1.3 archives\n"
msgstr ""
#: pg_backup_archiver.c:246
msgid "implied data-only restore\n"
msgstr ""
#: pg_backup_archiver.c:251
msgid ""
"WARNING:\n"
" Data restoration may fail because existing triggers cannot be disabled\n"
" (no superuser user name specified). This is only a problem when\n"
" restoring into a database with already existing triggers.\n"
msgstr ""
#: pg_backup_archiver.c:276
#, c-format
msgid "dropping %s %s\n"
msgstr "tar bort %s %s\n"
#: pg_backup_archiver.c:300 pg_backup_archiver.c:302
#, c-format
msgid "warning from original dump file: %s\n"
msgstr ""
#: pg_backup_archiver.c:312
#, c-format
msgid "creating %s %s\n"
msgstr "skapar %s %s\n"
#: pg_backup_archiver.c:319
#, c-format
msgid "connecting to new database %s as user %s\n"
msgstr ""
#: pg_backup_archiver.c:344
msgid ""
"unable to restore from compressed archive (not configured for compression "
"support)\n"
msgstr ""
#: pg_backup_archiver.c:363
msgid "WARNING: skipping large object restoration\n"
msgstr ""
#: pg_backup_archiver.c:377
#, c-format
msgid "restoring data for table %s\n"
msgstr ""
#: pg_backup_archiver.c:402
#, c-format
msgid "executing %s %s\n"
msgstr "k�r %s %s\n"
#: pg_backup_archiver.c:426
#, c-format
msgid "checking whether we loaded %s\n"
msgstr ""
#: pg_backup_archiver.c:432
#, c-format
msgid "fixing up large object cross-reference for %s\n"
msgstr ""
#: pg_backup_archiver.c:437
#, c-format
msgid "ignoring large object cross-references for %s %s\n"
msgstr ""
#: pg_backup_archiver.c:527
msgid "disabling triggers\n"
msgstr ""
#: pg_backup_archiver.c:586
msgid "enabling triggers\n"
msgstr ""
#: pg_backup_archiver.c:629
msgid ""
"WriteData cannot be called outside the context of a DataDumper routine\n"
msgstr ""
#: pg_backup_archiver.c:749
msgid "large object output not supported in chosen format\n"
msgstr ""
#: pg_backup_archiver.c:789 pg_backup_archiver.c:856
msgid "committing large object transactions\n"
msgstr ""
#: pg_backup_archiver.c:796
#, c-format
msgid "restored %d large objects\n"
msgstr ""
#: pg_backup_archiver.c:813
msgid "cannot restore large objects without a database connection\n"
msgstr ""
#: pg_backup_archiver.c:824
msgid "starting large object transactions\n"
msgstr ""
#: pg_backup_archiver.c:832
msgid "could not create large object\n"
msgstr ""
#: pg_backup_archiver.c:834
#, c-format
msgid "restoring large object with oid %u as %u\n"
msgstr ""
#: pg_backup_archiver.c:840
msgid "could not open large object\n"
msgstr ""
#: pg_backup_archiver.c:980
msgid "could not open TOC file\n"
msgstr ""
#: pg_backup_archiver.c:1001
#, c-format
msgid "WARNING: line ignored: %s\n"
msgstr "VARNING: rad ignorerad: %s\n"
#: pg_backup_archiver.c:1008
#, c-format
msgid "could not find entry for id %d\n"
msgstr ""
#: pg_backup_archiver.c:1017 pg_backup_files.c:158 pg_backup_files.c:443
#, c-format
msgid "could not close TOC file: %s\n"
msgstr ""
#: pg_backup_archiver.c:1132 pg_backup_files.c:132
#, c-format
msgid "could not open output file: %s\n"
msgstr ""
#: pg_backup_archiver.c:1148
#, c-format
msgid "could not close output file: %s\n"
msgstr ""
#: pg_backup_archiver.c:1229
#, c-format
msgid "wrote %d bytes of large object data (result = %d)\n"
msgstr ""
#: pg_backup_archiver.c:1232
#, c-format
msgid "could not write to large object (result: %d, expected: %d)\n"
msgstr ""
#: pg_backup_archiver.c:1241
msgid "could not write to compressed archive\n"
msgstr ""
#: pg_backup_archiver.c:1249
msgid "could not write to custom output routine\n"
msgstr ""
#: pg_backup_archiver.c:1264
#, c-format
msgid "could not write to output file (%d != %d)\n"
msgstr "kan inte skriva till utfilen: (%d != %d)\n"
#: pg_backup_archiver.c:1490
msgid "attempting to ascertain archive format\n"
msgstr ""
#: pg_backup_archiver.c:1510 pg_backup_files.c:150
#, c-format
msgid "could not open input file: %s\n"
msgstr "kan inte �ppna infil: %s\n"
#: pg_backup_archiver.c:1517
#, c-format
msgid "could not read input file: %s\n"
msgstr "kan inte l�sa infilen: %s\n"
#: pg_backup_archiver.c:1519
#, c-format
msgid "input file is too short (read %d, expected 5)\n"
msgstr ""
#: pg_backup_archiver.c:1563
msgid "input file does not appear to be a valid archive (too short?)\n"
msgstr ""
#: pg_backup_archiver.c:1566
msgid "input file does not appear to be a valid archive\n"
msgstr ""
#: pg_backup_archiver.c:1584
#, c-format
msgid "read %d bytes into lookahead buffer\n"
msgstr ""
#: pg_backup_archiver.c:1590
#, c-format
msgid "could not close the input file after reading header: %s\n"
msgstr ""
#: pg_backup_archiver.c:1607
#, c-format
msgid "allocating AH for %s, format %d\n"
msgstr ""
#: pg_backup_archiver.c:1657
#, c-format
msgid "archive format is %d\n"
msgstr ""
#: pg_backup_archiver.c:1685
#, c-format
msgid "unrecognized file format '%d'\n"
msgstr ""
#: pg_backup_archiver.c:1797
msgid "entry id out of range - perhaps a corrupt TOC\n"
msgstr ""
#: pg_backup_archiver.c:1829
#, c-format
msgid "read dependency for %s -> %s\n"
msgstr ""
#: pg_backup_archiver.c:1848
#, c-format
msgid "read TOC entry %d (id %d) for %s %s\n"
msgstr ""
#: pg_backup_archiver.c:1972
#, c-format
msgid "could not set session user to %s: %s"
msgstr ""
#: pg_backup_archiver.c:2054
msgid ""
"WARNING: requested compression not available in this installation - archive "
"will be uncompressed\n"
msgstr ""
#: pg_backup_archiver.c:2087
msgid "did not find magic string in file header\n"
msgstr ""
#: pg_backup_archiver.c:2101
#, c-format
msgid "unsupported version (%d.%d) in file header\n"
msgstr ""
#: pg_backup_archiver.c:2106
#, c-format
msgid "sanity check on integer size (%d) failed\n"
msgstr ""
#: pg_backup_archiver.c:2109
msgid ""
"WARNING: archive was made on a machine with larger integers, some operations "
"may fail\n"
msgstr ""
#: pg_backup_archiver.c:2114
#, c-format
msgid "expected format (%d) differs from format found in file (%d)\n"
msgstr ""
#: pg_backup_archiver.c:2130
msgid ""
"WARNING: archive is compressed, but this installation does not support "
"compression - no data will be available\n"
msgstr ""
#: pg_backup_archiver.c:2148
msgid "WARNING: invalid creation date in header\n"
msgstr ""
#: pg_backup_custom.c:105
msgid "custom archiver"
msgstr ""
#: pg_backup_custom.c:183 pg_backup_custom.c:196
#, c-format
msgid "could not open archive file %s: %s\n"
msgstr "kan inte �ppna arkivfilen %s: %s\n"
#: pg_backup_custom.c:389
msgid "invalid OID for large object\n"
msgstr ""
#: pg_backup_custom.c:449
msgid ""
"Dumping a specific TOC data block out of order is not supported without id "
"on this input stream (fseek required)\n"
msgstr ""
#: pg_backup_custom.c:468
#, c-format
msgid "unrecognized data block type (%d) while searching archive\n"
msgstr ""
#: pg_backup_custom.c:484
#, c-format
msgid "error during file seek: %s\n"
msgstr "fel vid s�kning: %s\n"
#: pg_backup_custom.c:492
#, c-format
msgid "found unexpected block ID (%d) when reading data - expected %d\n"
msgstr ""
#: pg_backup_custom.c:506
msgid "large objects cannot be loaded without a database connection\n"
msgstr ""
#: pg_backup_custom.c:513
#, c-format
msgid "unrecognized data block type %d while restoring archive\n"
msgstr ""
#: pg_backup_custom.c:549 pg_backup_custom.c:907
#, c-format
msgid "could not initialize compression library: %s\n"
msgstr ""
#: pg_backup_custom.c:570 pg_backup_custom.c:696
#, c-format
msgid "could not read data block - expected %d, got %d\n"
msgstr ""
#: pg_backup_custom.c:588 pg_backup_custom.c:620
#, c-format
msgid "unable to uncompress data: %s\n"
msgstr ""
#: pg_backup_custom.c:626
#, c-format
msgid "could not close compression library: %s\n"
msgstr ""
#: pg_backup_custom.c:724
#, c-format
msgid "could not write byte: %s\n"
msgstr ""
#: pg_backup_custom.c:767 pg_backup_files.c:418
#, c-format
msgid "write error in _WriteBuf (%d != %d)\n"
msgstr "fel vid skrivning i _WriteBuf (%d != %d)\n"
#: pg_backup_custom.c:837
#, c-format
msgid "could not close archive file: %s\n"
msgstr "kan inte st�nga arkivfilen: %s\n"
#: pg_backup_custom.c:860
msgid "WARNING: ftell mismatch with expected position -- ftell ignored\n"
msgstr ""
#: pg_backup_custom.c:939
#, c-format
msgid "could not compress data: %s\n"
msgstr ""
#: pg_backup_custom.c:959
msgid "could not write compressed chunk\n"
msgstr ""
#: pg_backup_custom.c:973
msgid "could not write uncompressed chunk\n"
msgstr ""
#: pg_backup_custom.c:1022
#, c-format
msgid "could not close compression stream: %s\n"
msgstr ""
#: pg_backup_db.c:40
msgid "archiver (db)"
msgstr ""
#: pg_backup_db.c:191
#, c-format
msgid "could not get version from server: %s"
msgstr ""
#: pg_backup_db.c:203
#, c-format
msgid "server version: %s; %s version: %s\n"
msgstr ""
#: pg_backup_db.c:206
msgid "proceeding despite version mismatch\n"
msgstr ""
#: pg_backup_db.c:208
msgid ""
"aborting because of version mismatch (Use the -i option to proceed "
"anyway.)\n"
msgstr ""
#: pg_backup_db.c:229
#, c-format
msgid "null result checking superuser status of %s\n"
msgstr ""
#: pg_backup_db.c:232
#, c-format
msgid "could not check superuser status of %s: %s"
msgstr ""
#: pg_backup_db.c:330
#, c-format
msgid "connecting to database %s as user %s\n"
msgstr ""
#: pg_backup_db.c:334 pg_backup_db.c:367 pg_backup_db.c:428 pg_backup_db.c:457
msgid "Password: "
msgstr ""
#: pg_backup_db.c:346
msgid "failed to reconnect to database\n"
msgstr ""
#: pg_backup_db.c:370
#, c-format
msgid "could not reconnect to database: %s"
msgstr ""
#: pg_backup_db.c:404
msgid "already connected to a database\n"
msgstr ""
#: pg_backup_db.c:447
msgid "failed to connect to database\n"
msgstr ""
#: pg_backup_db.c:466
#, c-format
msgid "connection to database \"%s\" failed: %s"
msgstr ""
#: pg_backup_db.c:488
#, c-format
msgid "%s"
msgstr "%s"
#: pg_backup_db.c:516
#, c-format
msgid "%s: no result from server\n"
msgstr ""
#: pg_backup_db.c:523
msgid "COPY command executed in non-primary connection\n"
msgstr ""
#: pg_backup_db.c:528
#, c-format
msgid "%s: %s"
msgstr "%s: %s"
#: pg_backup_db.c:611
msgid "error returned by PQputline\n"
msgstr ""
#: pg_backup_db.c:623
msgid "error returned by PQendcopy\n"
msgstr ""
#: pg_backup_db.c:671
msgid "could not execute query"
msgstr ""
#: pg_backup_db.c:763
#, c-format
msgid "could not find oid columns of table \"%s\": %s"
msgstr ""
#: pg_backup_db.c:769
#, c-format
msgid "no OID type columns in table %s\n"
msgstr ""
#: pg_backup_db.c:776
#, c-format
msgid "fixing large object cross-references for %s.%s\n"
msgstr ""
#: pg_backup_db.c:791
#, c-format
msgid "SQL: %s\n"
msgstr "SQL: %s\n"
#: pg_backup_db.c:796
#, c-format
msgid "could not update column \"%s\" of table \"%s\": %s"
msgstr ""
#: pg_backup_db.c:801
#, c-format
msgid "error while updating column \"%s\" of table \"%s\": %s"
msgstr ""
#: pg_backup_db.c:823
msgid "creating table for large object cross-references\n"
msgstr ""
#: pg_backup_db.c:827
msgid "could not create large object cross-reference table"
msgstr ""
#: pg_backup_db.c:832
msgid "could not create index on large object cross-reference table"
msgstr ""
#: pg_backup_db.c:844
msgid "could not create large object cross-reference entry"
msgstr ""
#: pg_backup_db.c:856
msgid "could not start database transaction"
msgstr ""
#: pg_backup_db.c:870
msgid "could not start transaction for large object cross-references"
msgstr ""
#: pg_backup_db.c:883
msgid "could not commit database transaction"
msgstr ""
#: pg_backup_db.c:896
msgid "could not commit transaction for large object cross-references"
msgstr ""
#: pg_backup_files.c:77
msgid "file archiver"
msgstr ""
#: pg_backup_files.c:122
msgid ""
"WARNING:\n"
" This format is for demonstration purposes; it is not intended for\n"
" normal use. Files will be written in the current working directory.\n"
msgstr ""
#: pg_backup_files.c:248
msgid "could not open data file for output\n"
msgstr ""
#: pg_backup_files.c:269
msgid "could not close data file\n"
msgstr "kan inte st�nga datafil\n"
#: pg_backup_files.c:293
msgid "could not open data file for input\n"
msgstr "kan inte �ppna datafil f�r l�sning\n"
#: pg_backup_files.c:302
msgid "could not close data file after reading\n"
msgstr "kan inte st�nga datafil efter l�sning\n"
#: pg_backup_files.c:366
#, c-format
msgid "could not open large object TOC for input: %s\n"
msgstr ""
#: pg_backup_files.c:379 pg_backup_files.c:550
#, c-format
msgid "could not close large object TOC file: %s\n"
msgstr ""
#: pg_backup_files.c:391
msgid "could not write byte\n"
msgstr ""
#: pg_backup_files.c:477
#, c-format
msgid "could not open large object TOC for output: %s\n"
msgstr ""
#: pg_backup_files.c:498 pg_backup_tar.c:906
#, c-format
msgid "invalid OID for large object (%u)\n"
msgstr ""
#: pg_backup_files.c:517
msgid "could not open large object file\n"
msgstr ""
#: pg_backup_files.c:532
msgid "could not close large object file\n"
msgstr ""
#: pg_backup_null.c:66
msgid "this format cannot be read\n"
msgstr "detta format kan inte l�sas\n"
#: pg_backup_tar.c:103
msgid "tar archiver"
msgstr ""
#: pg_backup_tar.c:174
#, c-format
msgid "could not open TOC file for output: %s\n"
msgstr ""
#: pg_backup_tar.c:199
msgid "compression not supported by tar output format\n"
msgstr ""
#: pg_backup_tar.c:211
#, c-format
msgid "could not open TOC file for input: %s\n"
msgstr ""
#: pg_backup_tar.c:333
#, c-format
msgid "could not find file %s in archive\n"
msgstr ""
#: pg_backup_tar.c:344
msgid "compression support is disabled in this format\n"
msgstr ""
#: pg_backup_tar.c:360
#, c-format
msgid "could not generate temporary file name: %s\n"
msgstr ""
#: pg_backup_tar.c:369
msgid "could not gzdopen temporary file\n"
msgstr ""
#: pg_backup_tar.c:399
msgid "could not close tar member\n"
msgstr ""
#: pg_backup_tar.c:499
msgid "neither th nor fh specified in tarReadRaw() (internal error)\n"
msgstr ""
#: pg_backup_tar.c:503
#, c-format
msgid "requested %d bytes, got %d from lookahead and %d from file\n"
msgstr ""
#: pg_backup_tar.c:542
#, c-format
msgid "could not write to tar member (wrote %d, attempted %d)\n"
msgstr ""
#: pg_backup_tar.c:630
#, c-format
msgid "bad COPY statement - could not find \"copy\" in string \"%s\"\n"
msgstr ""
#: pg_backup_tar.c:648
#, c-format
msgid ""
"bad COPY statement - could not find \"from stdin\" in string \"%s\" starting "
"at position %d\n"
msgstr ""
#: pg_backup_tar.c:711
#, c-format
msgid "restoring large object OID %u\n"
msgstr ""
#: pg_backup_tar.c:849
msgid "could not write null block at end of tar archive\n"
msgstr ""
#: pg_backup_tar.c:1044
#, c-format
msgid "write error appending to tar archive (wrote %d, attempted %d)\n"
msgstr ""
#: pg_backup_tar.c:1049
#, c-format
msgid "could not close tar member: %s\n"
msgstr ""
#: pg_backup_tar.c:1052
#, c-format
msgid "actual file length (%d) does not match expected (%d)\n"
msgstr ""
#: pg_backup_tar.c:1059
msgid "could not output padding at end of tar member\n"
msgstr ""
#: pg_backup_tar.c:1083
#, c-format
msgid "moving from position %d (%x) to next member at file position %d (%x)\n"
msgstr ""
#: pg_backup_tar.c:1091
#, c-format
msgid "now at file position %d (%x)\n"
msgstr ""
#: pg_backup_tar.c:1099 pg_backup_tar.c:1126
#, c-format
msgid "could not find header for file %s in tar archive\n"
msgstr ""
#: pg_backup_tar.c:1110
#, c-format
msgid "skipping tar member %s\n"
msgstr ""
#: pg_backup_tar.c:1114
#, c-format
msgid ""
"dumping data out of order is not supported in this archive format: %s is "
"required, but comes before %s in the archive file.\n"
msgstr ""
#: pg_backup_tar.c:1155
#, c-format
msgid "mismatch in actual vs. predicted file position (%d vs. %d)\n"
msgstr ""
#: pg_backup_tar.c:1168
#, c-format
msgid "incomplete tar header found (%d bytes)\n"
msgstr ""
#: pg_backup_tar.c:1197
#, c-format
msgid "TOC Entry %s at %d (length %d, checksum %d)\n"
msgstr ""
#: pg_backup_tar.c:1201
#, c-format
msgid ""
"corrupt tar header found in %s (expected %d (%o), computed %d (%o)) file "
"position %ld (%lx)\n"
msgstr ""
#: pg_backup_tar.c:1278
msgid "unable to write tar header\n"
msgstr ""
#: pg_restore.c:383
#, c-format
msgid ""
"%s restores a PostgreSQL database from an archive created by pg_dump.\n"
"\n"
"Usage:\n"
" %s [options] [file]\n"
"\n"
"Options:\n"
msgstr ""
#: pg_restore.c:389
msgid ""
" -a, --data-only restore only the data, no schema\n"
" -c, --clean clean (drop) schema prior to create\n"
" -C, --create issue commands to create the database\n"
" -d, --dbname=NAME output database name\n"
" -f, --file=FILENAME output file name\n"
" -F, --format={c|t} specify backup file format\n"
" -h, --host=HOSTNAME server host name\n"
" -i, --index=NAME restore named index\n"
" -l, --list print summarized TOC of the archive\n"
" -L, --use-list=FILENAME use specified table of contents for ordering\n"
" output from this file\n"
" -N, --orig-order restore in original dump order\n"
" -o, --oid-order restore in OID order\n"
" -O, --no-owner do not reconnect to database to match\n"
" object owner\n"
" -p, --port=PORT server port number\n"
" -P, --function=NAME restore named function\n"
" -r, --rearrange rearrange output to put indexes etc. at end\n"
" -R, --no-reconnect disallow ALL reconnections to the database\n"
" -s, --schema-only restore only the schema, no data\n"
" -S, --superuser=NAME specify the superuser user name to use for\n"
" disabling triggers\n"
" -t, --table=NAME restore named table\n"
" -T, --trigger=NAME restore named trigger\n"
" -U, --username=NAME connect as specified database user\n"
" -v, --verbose verbose mode\n"
" -W, --password force password prompt (should happen "
"automatically)\n"
" -x, --no-privileges skip restoration of access privileges (grant/"
"revoke)\n"
" -X use-set-session-authorization, --use-set-session-authorization\n"
" use SET SESSION AUTHORIZATION commands instead\n"
" of reconnecting, if possible\n"
msgstr ""
#: pg_restore.c:425
msgid ""
" -a restore only the data, no schema\n"
" -c clean (drop) schema prior to create\n"
" -C issue commands to create the database\n"
" -d NAME output database name\n"
" -f FILENAME output file name\n"
" -F {c|t} specify backup file format\n"
" -h HOSTNAME server host name\n"
" -i NAME restore named index\n"
" -l print summarized TOC of the archive\n"
" -L FILENAME use specified table of contents for ordering\n"
" output from this file\n"
" -N restore in original dump order\n"
" -o restore in OID order\n"
" -O do not reconnect to database to match\n"
" object owner\n"
" -p PORT server port number\n"
" -P NAME restore named function\n"
" -r rearrange output to put indexes etc. at end\n"
" -R disallow ALL reconnections to the database\n"
" -s restore only the schema, no data\n"
" -S NAME specify the superuser user name to use for\n"
" disabling triggers\n"
" -t NAME restore named table\n"
" -T NAME restore named trigger\n"
" -U NAME connect as specified database user\n"
" -v verbose mode\n"
" -W force password prompt (should happen "
"automatically)\n"
" -x skip restoration of access privileges (grant/"
"revoke)\n"
" -X use-set-session-authorization\n"
" use SET SESSION AUTHORIZATION commands instead\n"
" of reconnecting, if possible\n"
msgstr ""
#: pg_restore.c:458
msgid "If no input file name is supplied, then standard input is used.\n"
msgstr ""
#: pg_restore.c:459
msgid "Report bugs to <[email protected]>."
msgstr ""
|