aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/schemas/oracle_schema.sql
blob: 9c25af2512f97a0b9526d3a27c0823e6cb80dade (plain)
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
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
/*

 $Id$

*/

/*
  This first section is optional, however its probably the best method
  of running phpBB on Oracle. If you already have a tablespace and user created
  for phpBB you can leave this section commented out!

  The first set of statements create a phpBB tablespace and a phpBB user,
  make sure you change the password of the phpBB user before you run this script!!
*/

/*
CREATE TABLESPACE "PHPBB"
	LOGGING
	DATAFILE 'E:\ORACLE\ORADATA\LOCAL\PHPBB.ora'
	SIZE 10M
	AUTOEXTEND ON NEXT 10M
	MAXSIZE 100M;

CREATE USER "PHPBB"
	PROFILE "DEFAULT"
	IDENTIFIED BY "phpbb_password"
	DEFAULT TABLESPACE "PHPBB"
	QUOTA UNLIMITED ON "PHPBB"
	ACCOUNT UNLOCK;

GRANT ANALYZE ANY TO "PHPBB";
GRANT CREATE SEQUENCE TO "PHPBB";
GRANT CREATE SESSION TO "PHPBB";
GRANT CREATE TABLE TO "PHPBB";
GRANT CREATE TRIGGER TO "PHPBB";
GRANT CREATE VIEW TO "PHPBB";
GRANT "CONNECT" TO "PHPBB";

COMMIT;
DISCONNECT;

CONNECT phpbb/phpbb_password;
*/
/*
	Table: 'phpbb_attachments'
*/
CREATE TABLE phpbb_attachments (
	attach_id number(8) NOT NULL,
	post_msg_id number(8) DEFAULT '0' NOT NULL,
	topic_id number(8) DEFAULT '0' NOT NULL,
	in_message number(1) DEFAULT '0' NOT NULL,
	poster_id number(8) DEFAULT '0' NOT NULL,
	is_orphan number(1) DEFAULT '1' NOT NULL,
	physical_filename varchar2(255) DEFAULT '' ,
	real_filename varchar2(255) DEFAULT '' ,
	download_count number(8) DEFAULT '0' NOT NULL,
	attach_comment clob DEFAULT '' ,
	extension varchar2(100) DEFAULT '' ,
	mimetype varchar2(100) DEFAULT '' ,
	filesize number(20) DEFAULT '0' NOT NULL,
	filetime number(11) DEFAULT '0' NOT NULL,
	thumbnail number(1) DEFAULT '0' NOT NULL,
	CONSTRAINT pk_phpbb_attachments PRIMARY KEY (attach_id)
)
/

CREATE INDEX phpbb_attachments_filetime ON phpbb_attachments (filetime)
/
CREATE INDEX phpbb_attachments_post_msg_id ON phpbb_attachments (post_msg_id)
/
CREATE INDEX phpbb_attachments_topic_id ON phpbb_attachments (topic_id)
/
CREATE INDEX phpbb_attachments_poster_id ON phpbb_attachments (poster_id)
/
CREATE INDEX phpbb_attachments_is_orphan ON phpbb_attachments (is_orphan)
/

CREATE SEQUENCE phpbb_attachments_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_attachments
BEFORE INSERT ON phpbb_attachments
FOR EACH ROW WHEN (
	new.attach_id IS NULL OR new.attach_id = 0
)
BEGIN
	SELECT phpbb_attachments_seq.nextval
	INTO :new.attach_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_acl_groups'
*/
CREATE TABLE phpbb_acl_groups (
	group_id number(8) DEFAULT '0' NOT NULL,
	forum_id number(8) DEFAULT '0' NOT NULL,
	auth_option_id number(8) DEFAULT '0' NOT NULL,
	auth_role_id number(8) DEFAULT '0' NOT NULL,
	auth_setting number(2) DEFAULT '0' NOT NULL
)
/

CREATE INDEX phpbb_acl_groups_group_id ON phpbb_acl_groups (group_id)
/
CREATE INDEX phpbb_acl_groups_auth_opt_id ON phpbb_acl_groups (auth_option_id)
/
CREATE INDEX phpbb_acl_groups_auth_role_id ON phpbb_acl_groups (auth_role_id)
/

/*
	Table: 'phpbb_acl_options'
*/
CREATE TABLE phpbb_acl_options (
	auth_option_id number(8) NOT NULL,
	auth_option varchar2(50) DEFAULT '' ,
	is_global number(1) DEFAULT '0' NOT NULL,
	is_local number(1) DEFAULT '0' NOT NULL,
	founder_only number(1) DEFAULT '0' NOT NULL,
	CONSTRAINT pk_phpbb_acl_options PRIMARY KEY (auth_option_id),
	CONSTRAINT u_phpbb_auth_option UNIQUE (auth_option)
)
/


CREATE SEQUENCE phpbb_acl_options_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_acl_options
BEFORE INSERT ON phpbb_acl_options
FOR EACH ROW WHEN (
	new.auth_option_id IS NULL OR new.auth_option_id = 0
)
BEGIN
	SELECT phpbb_acl_options_seq.nextval
	INTO :new.auth_option_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_acl_roles'
*/
CREATE TABLE phpbb_acl_roles (
	role_id number(8) NOT NULL,
	role_name varchar2(765) DEFAULT '' ,
	role_description clob DEFAULT '' ,
	role_type varchar2(10) DEFAULT '' ,
	role_order number(4) DEFAULT '0' NOT NULL,
	CONSTRAINT pk_phpbb_acl_roles PRIMARY KEY (role_id)
)
/

CREATE INDEX phpbb_acl_roles_role_type ON phpbb_acl_roles (role_type)
/
CREATE INDEX phpbb_acl_roles_role_order ON phpbb_acl_roles (role_order)
/

CREATE SEQUENCE phpbb_acl_roles_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_acl_roles
BEFORE INSERT ON phpbb_acl_roles
FOR EACH ROW WHEN (
	new.role_id IS NULL OR new.role_id = 0
)
BEGIN
	SELECT phpbb_acl_roles_seq.nextval
	INTO :new.role_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_acl_roles_data'
*/
CREATE TABLE phpbb_acl_roles_data (
	role_id number(8) DEFAULT '0' NOT NULL,
	auth_option_id number(8) DEFAULT '0' NOT NULL,
	auth_setting number(2) DEFAULT '0' NOT NULL,
	CONSTRAINT pk_phpbb_acl_roles_data PRIMARY KEY (role_id, auth_option_id)
)
/

CREATE INDEX phpbb_acl_roles_data_ath_op_id ON phpbb_acl_roles_data (auth_option_id)
/

/*
	Table: 'phpbb_acl_users'
*/
CREATE TABLE phpbb_acl_users (
	user_id number(8) DEFAULT '0' NOT NULL,
	forum_id number(8) DEFAULT '0' NOT NULL,
	auth_option_id number(8) DEFAULT '0' NOT NULL,
	auth_role_id number(8) DEFAULT '0' NOT NULL,
	auth_setting number(2) DEFAULT '0' NOT NULL
)
/

CREATE INDEX phpbb_acl_users_user_id ON phpbb_acl_users (user_id)
/
CREATE INDEX phpbb_acl_users_auth_option_id ON phpbb_acl_users (auth_option_id)
/
CREATE INDEX phpbb_acl_users_auth_role_id ON phpbb_acl_users (auth_role_id)
/

/*
	Table: 'phpbb_banlist'
*/
CREATE TABLE phpbb_banlist (
	ban_id number(8) NOT NULL,
	ban_userid number(8) DEFAULT '0' NOT NULL,
	ban_ip varchar2(40) DEFAULT '' ,
	ban_email varchar2(300) DEFAULT '' ,
	ban_start number(11) DEFAULT '0' NOT NULL,
	ban_end number(11) DEFAULT '0' NOT NULL,
	ban_exclude number(1) DEFAULT '0' NOT NULL,
	ban_reason varchar2(765) DEFAULT '' ,
	ban_give_reason varchar2(765) DEFAULT '' ,
	CONSTRAINT pk_phpbb_banlist PRIMARY KEY (ban_id)
)
/

CREATE INDEX phpbb_banlist_ban_end ON phpbb_banlist (ban_end)
/
CREATE INDEX phpbb_banlist_ban_user ON phpbb_banlist (ban_userid, ban_exclude)
/
CREATE INDEX phpbb_banlist_ban_email ON phpbb_banlist (ban_email, ban_exclude)
/
CREATE INDEX phpbb_banlist_ban_ip ON phpbb_banlist (ban_ip, ban_exclude)
/

CREATE SEQUENCE phpbb_banlist_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_banlist
BEFORE INSERT ON phpbb_banlist
FOR EACH ROW WHEN (
	new.ban_id IS NULL OR new.ban_id = 0
)
BEGIN
	SELECT phpbb_banlist_seq.nextval
	INTO :new.ban_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_bbcodes'
*/
CREATE TABLE phpbb_bbcodes (
	bbcode_id number(4) DEFAULT '0' NOT NULL,
	bbcode_tag varchar2(16) DEFAULT '' ,
	bbcode_helpline varchar2(765) DEFAULT '' ,
	display_on_posting number(1) DEFAULT '0' NOT NULL,
	bbcode_match clob DEFAULT '' ,
	bbcode_tpl clob DEFAULT '' ,
	first_pass_match clob DEFAULT '' ,
	first_pass_replace clob DEFAULT '' ,
	second_pass_match clob DEFAULT '' ,
	second_pass_replace clob DEFAULT '' ,
	CONSTRAINT pk_phpbb_bbcodes PRIMARY KEY (bbcode_id)
)
/

CREATE INDEX phpbb_bbcodes_display_on_post ON phpbb_bbcodes (display_on_posting)
/

/*
	Table: 'phpbb_bookmarks'
*/
CREATE TABLE phpbb_bookmarks (
	topic_id number(8) DEFAULT '0' NOT NULL,
	user_id number(8) DEFAULT '0' NOT NULL,
	CONSTRAINT pk_phpbb_bookmarks PRIMARY KEY (topic_id, user_id)
)
/


/*
	Table: 'phpbb_bots'
*/
CREATE TABLE phpbb_bots (
	bot_id number(8) NOT NULL,
	bot_active number(1) DEFAULT '1' NOT NULL,
	bot_name varchar2(765) DEFAULT '' ,
	user_id number(8) DEFAULT '0' NOT NULL,
	bot_agent varchar2(255) DEFAULT '' ,
	bot_ip varchar2(255) DEFAULT '' ,
	CONSTRAINT pk_phpbb_bots PRIMARY KEY (bot_id)
)
/

CREATE INDEX phpbb_bots_bot_active ON phpbb_bots (bot_active)
/

CREATE SEQUENCE phpbb_bots_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_bots
BEFORE INSERT ON phpbb_bots
FOR EACH ROW WHEN (
	new.bot_id IS NULL OR new.bot_id = 0
)
BEGIN
	SELECT phpbb_bots_seq.nextval
	INTO :new.bot_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_config'
*/
CREATE TABLE phpbb_config (
	config_name varchar2(255) DEFAULT '' ,
	config_value varchar2(765) DEFAULT '' ,
	is_dynamic number(1) DEFAULT '0' NOT NULL,
	CONSTRAINT pk_phpbb_config PRIMARY KEY (config_name)
)
/

CREATE INDEX phpbb_config_is_dynamic ON phpbb_config (is_dynamic)
/

/*
	Table: 'phpbb_confirm'
*/
CREATE TABLE phpbb_confirm (
	confirm_id char(32) DEFAULT '' ,
	session_id char(32) DEFAULT '' ,
	confirm_type number(3) DEFAULT '0' NOT NULL,
	code varchar2(8) DEFAULT '' ,
	seed number(10) DEFAULT '0' NOT NULL,
	attempts number(8) DEFAULT '0' NOT NULL,
	CONSTRAINT pk_phpbb_confirm PRIMARY KEY (session_id, confirm_id)
)
/

CREATE INDEX phpbb_confirm_confirm_type ON phpbb_confirm (confirm_type)
/

/*
	Table: 'phpbb_disallow'
*/
CREATE TABLE phpbb_disallow (
	disallow_id number(8) NOT NULL,
	disallow_username varchar2(765) DEFAULT '' ,
	CONSTRAINT pk_phpbb_disallow PRIMARY KEY (disallow_id)
)
/


CREATE SEQUENCE phpbb_disallow_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_disallow
BEFORE INSERT ON phpbb_disallow
FOR EACH ROW WHEN (
	new.disallow_id IS NULL OR new.disallow_id = 0
)
BEGIN
	SELECT phpbb_disallow_seq.nextval
	INTO :new.disallow_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_drafts'
*/
CREATE TABLE phpbb_drafts (
	draft_id number(8) NOT NULL,
	user_id number(8) DEFAULT '0' NOT NULL,
	topic_id number(8) DEFAULT '0' NOT NULL,
	forum_id number(8) DEFAULT '0' NOT NULL,
	save_time number(11) DEFAULT '0' NOT NULL,
	draft_subject varchar2(765) DEFAULT '' ,
	draft_message clob DEFAULT '' ,
	CONSTRAINT pk_phpbb_drafts PRIMARY KEY (draft_id)
)
/

CREATE INDEX phpbb_drafts_save_time ON phpbb_drafts (save_time)
/

CREATE SEQUENCE phpbb_drafts_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_drafts
BEFORE INSERT ON phpbb_drafts
FOR EACH ROW WHEN (
	new.draft_id IS NULL OR new.draft_id = 0
)
BEGIN
	SELECT phpbb_drafts_seq.nextval
	INTO :new.draft_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_extensions'
*/
CREATE TABLE phpbb_extensions (
	extension_id number(8) NOT NULL,
	group_id number(8) DEFAULT '0' NOT NULL,
	extension varchar2(100) DEFAULT '' ,
	CONSTRAINT pk_phpbb_extensions PRIMARY KEY (extension_id)
)
/


CREATE SEQUENCE phpbb_extensions_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_extensions
BEFORE INSERT ON phpbb_extensions
FOR EACH ROW WHEN (
	new.extension_id IS NULL OR new.extension_id = 0
)
BEGIN
	SELECT phpbb_extensions_seq.nextval
	INTO :new.extension_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_extension_groups'
*/
CREATE TABLE phpbb_extension_groups (
	group_id number(8) NOT NULL,
	group_name varchar2(765) DEFAULT '' ,
	cat_id number(2) DEFAULT '0' NOT NULL,
	allow_group number(1) DEFAULT '0' NOT NULL,
	download_mode number(1) DEFAULT '1' NOT NULL,
	upload_icon varchar2(255) DEFAULT '' ,
	max_filesize number(20) DEFAULT '0' NOT NULL,
	allowed_forums clob DEFAULT '' ,
	allow_in_pm number(1) DEFAULT '0' NOT NULL,
	CONSTRAINT pk_phpbb_extension_groups PRIMARY KEY (group_id)
)
/


CREATE SEQUENCE phpbb_extension_groups_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_extension_groups
BEFORE INSERT ON phpbb_extension_groups
FOR EACH ROW WHEN (
	new.group_id IS NULL OR new.group_id = 0
)
BEGIN
	SELECT phpbb_extension_groups_seq.nextval
	INTO :new.group_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_forums'
*/
CREATE TABLE phpbb_forums (
	forum_id number(8) NOT NULL,
	parent_id number(8) DEFAULT '0' NOT NULL,
	left_id number(8) DEFAULT '0' NOT NULL,
	right_id number(8) DEFAULT '0' NOT NULL,
	forum_parents clob DEFAULT '' ,
	forum_name varchar2(765) DEFAULT '' ,
	forum_desc clob DEFAULT '' ,
	forum_desc_bitfield varchar2(255) DEFAULT '' ,
	forum_desc_options number(11) DEFAULT '7' NOT NULL,
	forum_desc_uid varchar2(8) DEFAULT '' ,
	forum_link varchar2(765) DEFAULT '' ,
	forum_password varchar2(120) DEFAULT '' ,
	forum_style number(8) DEFAULT '0' NOT NULL,
	forum_image varchar2(255) DEFAULT '' ,
	forum_rules clob DEFAULT '' ,
	forum_rules_link varchar2(765) DEFAULT '' ,
	forum_rules_bitfield varchar2(255) DEFAULT '' ,
	forum_rules_options number(11) DEFAULT '7' NOT NULL,
	forum_rules_uid varchar2(8) DEFAULT '' ,
	forum_topics_per_page number(4) DEFAULT '0' NOT NULL,
	forum_type number(4) DEFAULT '0' NOT NULL,
	forum_status number(4) DEFAULT '0' NOT NULL,
	forum_posts number(8) DEFAULT '0' NOT NULL,
	forum_topics number(8) DEFAULT '0' NOT NULL,
	forum_topics_real number(8) DEFAULT '0' NOT NULL,
	forum_last_post_id number(8) DEFAULT '0' NOT NULL,
	forum_last_poster_id number(8) DEFAULT '0' NOT NULL,
	forum_last_post_subject varchar2(765) DEFAULT '' ,
	forum_last_post_time number(11) DEFAULT '0' NOT NULL,
	forum_last_poster_name varchar2(765) DEFAULT '' ,
	forum_last_poster_colour varchar2(6) DEFAULT '' ,
	forum_flags number(4) DEFAULT '32' NOT NULL,
	forum_options number(20) DEFAULT '0' NOT NULL,
	display_subforum_list number(1) DEFAULT '1' NOT NULL,
	display_on_index number(1) DEFAULT '1' NOT NULL,
	enable_indexing number(1) DEFAULT '1' NOT NULL,
	enable_icons number(1) DEFAULT '1' NOT NULL,
	enable_prune number(1) DEFAULT '0' NOT NULL,
	prune_next number(11) DEFAULT '0' NOT NULL,
	prune_days number(8) DEFAULT '0' NOT NULL,
	prune_viewed number(8) DEFAULT '0' NOT NULL,
	prune_freq number(8) DEFAULT '0' NOT NULL,
	CONSTRAINT pk_phpbb_forums PRIMARY KEY (forum_id)
)
/

CREATE INDEX phpbb_forums_left_right_id ON phpbb_forums (left_id, right_id)
/
CREATE INDEX phpbb_forums_forum_lastpost_id ON phpbb_forums (forum_last_post_id)
/

CREATE SEQUENCE phpbb_forums_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_forums
BEFORE INSERT ON phpbb_forums
FOR EACH ROW WHEN (
	new.forum_id IS NULL OR new.forum_id = 0
)
BEGIN
	SELECT phpbb_forums_seq.nextval
	INTO :new.forum_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_forums_access'
*/
CREATE TABLE phpbb_forums_access (
	forum_id number(8) DEFAULT '0' NOT NULL,
	user_id number(8) DEFAULT '0' NOT NULL,
	session_id char(32) DEFAULT '' ,
	CONSTRAINT pk_phpbb_forums_access PRIMARY KEY (forum_id, user_id, session_id)
)
/


/*
	Table: 'phpbb_forums_track'
*/
CREATE TABLE phpbb_forums_track (
	user_id number(8) DEFAULT '0' NOT NULL,
	forum_id number(8) DEFAULT '0' NOT NULL,
	mark_time number(11) DEFAULT '0' NOT NULL,
	CONSTRAINT pk_phpbb_forums_track PRIMARY KEY (user_id, forum_id)
)
/


/*
	Table: 'phpbb_forums_watch'
*/
CREATE TABLE phpbb_forums_watch (
	forum_id number(8) DEFAULT '0' NOT NULL,
	user_id number(8) DEFAULT '0' NOT NULL,
	notify_status number(1) DEFAULT '0' NOT NULL
)
/

CREATE INDEX phpbb_forums_watch_forum_id ON phpbb_forums_watch (forum_id)
/
CREATE INDEX phpbb_forums_watch_user_id ON phpbb_forums_watch (user_id)
/
CREATE INDEX phpbb_forums_watch_notify_stat ON phpbb_forums_watch (notify_status)
/

/*
	Table: 'phpbb_groups'
*/
CREATE TABLE phpbb_groups (
	group_id number(8) NOT NULL,
	group_type number(4) DEFAULT '1' NOT NULL,
	group_founder_manage number(1) DEFAULT '0' NOT NULL,
	group_skip_auth number(1) DEFAULT '0' NOT NULL,
	group_name varchar2(255) DEFAULT '' ,
	group_desc clob DEFAULT '' ,
	group_desc_bitfield varchar2(255) DEFAULT '' ,
	group_desc_options number(11) DEFAULT '7' NOT NULL,
	group_desc_uid varchar2(8) DEFAULT '' ,
	group_display number(1) DEFAULT '0' NOT NULL,
	group_avatar varchar2(255) DEFAULT '' ,
	group_avatar_type number(2) DEFAULT '0' NOT NULL,
	group_avatar_width number(4) DEFAULT '0' NOT NULL,
	group_avatar_height number(4) DEFAULT '0' NOT NULL,
	group_rank number(8) DEFAULT '0' NOT NULL,
	group_colour varchar2(6) DEFAULT '' ,
	group_sig_chars number(8) DEFAULT '0' NOT NULL,
	group_receive_pm number(1) DEFAULT '0' NOT NULL,
	group_message_limit number(8) DEFAULT '0' NOT NULL,
	group_max_recipients number(8) DEFAULT '0' NOT NULL,
	group_legend number(1) DEFAULT '1' NOT NULL,
	CONSTRAINT pk_phpbb_groups PRIMARY KEY (group_id)
)
/

CREATE INDEX phpbb_groups_group_legend_name ON phpbb_groups (group_legend, group_name)
/

CREATE SEQUENCE phpbb_groups_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_groups
BEFORE INSERT ON phpbb_groups
FOR EACH ROW WHEN (
	new.group_id IS NULL OR new.group_id = 0
)
BEGIN
	SELECT phpbb_groups_seq.nextval
	INTO :new.group_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_icons'
*/
CREATE TABLE phpbb_icons (
	icons_id number(8) NOT NULL,
	icons_url varchar2(255) DEFAULT '' ,
	icons_width number(4) DEFAULT '0' NOT NULL,
	icons_height number(4) DEFAULT '0' NOT NULL,
	icons_order number(8) DEFAULT '0' NOT NULL,
	display_on_posting number(1) DEFAULT '1' NOT NULL,
	CONSTRAINT pk_phpbb_icons PRIMARY KEY (icons_id)
)
/

CREATE INDEX phpbb_icons_display_on_posting ON phpbb_icons (display_on_posting)
/

CREATE SEQUENCE phpbb_icons_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_icons
BEFORE INSERT ON phpbb_icons
FOR EACH ROW WHEN (
	new.icons_id IS NULL OR new.icons_id = 0
)
BEGIN
	SELECT phpbb_icons_seq.nextval
	INTO :new.icons_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_lang'
*/
CREATE TABLE phpbb_lang (
	lang_id number(4) NOT NULL,
	lang_iso varchar2(30) DEFAULT '' ,
	lang_dir varchar2(30) DEFAULT '' ,
	lang_english_name varchar2(300) DEFAULT '' ,
	lang_local_name varchar2(765) DEFAULT '' ,
	lang_author varchar2(765) DEFAULT '' ,
	CONSTRAINT pk_phpbb_lang PRIMARY KEY (lang_id)
)
/

CREATE INDEX phpbb_lang_lang_iso ON phpbb_lang (lang_iso)
/

CREATE SEQUENCE phpbb_lang_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_lang
BEFORE INSERT ON phpbb_lang
FOR EACH ROW WHEN (
	new.lang_id IS NULL OR new.lang_id = 0
)
BEGIN
	SELECT phpbb_lang_seq.nextval
	INTO :new.lang_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_log'
*/
CREATE TABLE phpbb_log (
	log_id number(8) NOT NULL,
	log_type number(4) DEFAULT '0' NOT NULL,
	user_id number(8) DEFAULT '0' NOT NULL,
	forum_id number(8) DEFAULT '0' NOT NULL,
	topic_id number(8) DEFAULT '0' NOT NULL,
	reportee_id number(8) DEFAULT '0' NOT NULL,
	log_ip varchar2(40) DEFAULT '' ,
	log_time number(11) DEFAULT '0' NOT NULL,
	log_operation clob DEFAULT '' ,
	log_data clob DEFAULT '' ,
	CONSTRAINT pk_phpbb_log PRIMARY KEY (log_id)
)
/

CREATE INDEX phpbb_log_log_type ON phpbb_log (log_type)
/
CREATE INDEX phpbb_log_forum_id ON phpbb_log (forum_id)
/
CREATE INDEX phpbb_log_topic_id ON phpbb_log (topic_id)
/
CREATE INDEX phpbb_log_reportee_id ON phpbb_log (reportee_id)
/
CREATE INDEX phpbb_log_user_id ON phpbb_log (user_id)
/

CREATE SEQUENCE phpbb_log_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_log
BEFORE INSERT ON phpbb_log
FOR EACH ROW WHEN (
	new.log_id IS NULL OR new.log_id = 0
)
BEGIN
	SELECT phpbb_log_seq.nextval
	INTO :new.log_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_moderator_cache'
*/
CREATE TABLE phpbb_moderator_cache (
	forum_id number(8) DEFAULT '0' NOT NULL,
	user_id number(8) DEFAULT '0' NOT NULL,
	username varchar2(765) DEFAULT '' ,
	group_id number(8) DEFAULT '0' NOT NULL,
	group_name varchar2(765) DEFAULT '' ,
	display_on_index number(1) DEFAULT '1' NOT NULL
)
/

CREATE INDEX phpbb_moderator_cache_disp_idx ON phpbb_moderator_cache (display_on_index)
/
CREATE INDEX phpbb_moderator_cache_forum_id ON phpbb_moderator_cache (forum_id)
/

/*
	Table: 'phpbb_modules'
*/
CREATE TABLE phpbb_modules (
	module_id number(8) NOT NULL,
	module_enabled number(1) DEFAULT '1' NOT NULL,
	module_display number(1) DEFAULT '1' NOT NULL,
	module_basename varchar2(255) DEFAULT '' ,
	module_class varchar2(10) DEFAULT '' ,
	parent_id number(8) DEFAULT '0' NOT NULL,
	left_id number(8) DEFAULT '0' NOT NULL,
	right_id number(8) DEFAULT '0' NOT NULL,
	module_langname varchar2(255) DEFAULT '' ,
	module_mode varchar2(255) DEFAULT '' ,
	module_auth varchar2(255) DEFAULT '' ,
	CONSTRAINT pk_phpbb_modules PRIMARY KEY (module_id)
)
/

CREATE INDEX phpbb_modules_left_right_id ON phpbb_modules (left_id, right_id)
/
CREATE INDEX phpbb_modules_module_enabled ON phpbb_modules (module_enabled)
/
CREATE INDEX phpbb_modules_class_left_id ON phpbb_modules (module_class, left_id)
/

CREATE SEQUENCE phpbb_modules_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_modules
BEFORE INSERT ON phpbb_modules
FOR EACH ROW WHEN (
	new.module_id IS NULL OR new.module_id = 0
)
BEGIN
	SELECT phpbb_modules_seq.nextval
	INTO :new.module_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_poll_options'
*/
CREATE TABLE phpbb_poll_options (
	poll_option_id number(4) DEFAULT '0' NOT NULL,
	topic_id number(8) DEFAULT '0' NOT NULL,
	poll_option_text clob DEFAULT '' ,
	poll_option_total number(8) DEFAULT '0' NOT NULL
)
/

CREATE INDEX phpbb_poll_options_poll_opt_id ON phpbb_poll_options (poll_option_id)
/
CREATE INDEX phpbb_poll_options_topic_id ON phpbb_poll_options (topic_id)
/

/*
	Table: 'phpbb_poll_votes'
*/
CREATE TABLE phpbb_poll_votes (
	topic_id number(8) DEFAULT '0' NOT NULL,
	poll_option_id number(4) DEFAULT '0' NOT NULL,
	vote_user_id number(8) DEFAULT '0' NOT NULL,
	vote_user_ip varchar2(40) DEFAULT '' 
)
/

CREATE INDEX phpbb_poll_votes_topic_id ON phpbb_poll_votes (topic_id)
/
CREATE INDEX phpbb_poll_votes_vote_user_id ON phpbb_poll_votes (vote_user_id)
/
CREATE INDEX phpbb_poll_votes_vote_user_ip ON phpbb_poll_votes (vote_user_ip)
/

/*
	Table: 'phpbb_posts'
*/
CREATE TABLE phpbb_posts (
	post_id number(8) NOT NULL,
	topic_id number(8) DEFAULT '0' NOT NULL,
	forum_id number(8) DEFAULT '0' NOT NULL,
	poster_id number(8) DEFAULT '0' NOT NULL,
	icon_id number(8) DEFAULT '0' NOT NULL,
	poster_ip varchar2(40) DEFAULT '' ,
	post_time number(11) DEFAULT '0' NOT NULL,
	post_approved number(1) DEFAULT '1' NOT NULL,
	post_reported number(1) DEFAULT '0' NOT NULL,
	enable_bbcode number(1) DEFAULT '1' NOT NULL,
	enable_smilies number(1) DEFAULT '1' NOT NULL,
	enable_magic_url number(1) DEFAULT '1' NOT NULL,
	enable_sig number(1) DEFAULT '1' NOT NULL,
	post_username varchar2(765) DEFAULT '' ,
	post_subject varchar2(765) DEFAULT '' ,
	post_text clob DEFAULT '' ,
	post_checksum varchar2(32) DEFAULT '' ,
	post_attachment number(1) DEFAULT '0' NOT NULL,
	bbcode_bitfield varchar2(255) DEFAULT '' ,
	bbcode_uid varchar2(8) DEFAULT '' ,
	post_postcount number(1) DEFAULT '1' NOT NULL,
	post_edit_time number(11) DEFAULT '0' NOT NULL,
	post_edit_reason varchar2(765) DEFAULT '' ,
	post_edit_user number(8) DEFAULT '0' NOT NULL,
	post_edit_count number(4) DEFAULT '0' NOT NULL,
	post_edit_locked number(1) DEFAULT '0' NOT NULL,
	CONSTRAINT pk_phpbb_posts PRIMARY KEY (post_id)
)
/

CREATE INDEX phpbb_posts_forum_id ON phpbb_posts (forum_id)
/
CREATE INDEX phpbb_posts_topic_id ON phpbb_posts (topic_id)
/
CREATE INDEX phpbb_posts_poster_ip ON phpbb_posts (poster_ip)
/
CREATE INDEX phpbb_posts_poster_id ON phpbb_posts (poster_id)
/
CREATE INDEX phpbb_posts_post_approved ON phpbb_posts (post_approved)
/
CREATE INDEX phpbb_posts_post_username ON phpbb_posts (post_username)
/
CREATE INDEX phpbb_posts_tid_post_time ON phpbb_posts (topic_id, post_time)
/

CREATE SEQUENCE phpbb_posts_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_posts
BEFORE INSERT ON phpbb_posts
FOR EACH ROW WHEN (
	new.post_id IS NULL OR new.post_id = 0
)
BEGIN
	SELECT phpbb_posts_seq.nextval
	INTO :new.post_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_privmsgs'
*/
CREATE TABLE phpbb_privmsgs (
	msg_id number(8) NOT NULL,
	root_level number(8) DEFAULT '0' NOT NULL,
	author_id number(8) DEFAULT '0' NOT NULL,
	icon_id number(8) DEFAULT '0' NOT NULL,
	author_ip varchar2(40) DEFAULT '' ,
	message_time number(11) DEFAULT '0' NOT NULL,
	enable_bbcode number(1) DEFAULT '1' NOT NULL,
	enable_smilies number(1) DEFAULT '1' NOT NULL,
	enable_magic_url number(1) DEFAULT '1' NOT NULL,
	enable_sig number(1) DEFAULT '1' NOT NULL,
	message_subject varchar2(765) DEFAULT '' ,
	message_text clob DEFAULT '' ,
	message_edit_reason varchar2(765) DEFAULT '' ,
	message_edit_user number(8) DEFAULT '0' NOT NULL,
	message_attachment number(1) DEFAULT '0' NOT NULL,
	bbcode_bitfield varchar2(255) DEFAULT '' ,
	bbcode_uid varchar2(8) DEFAULT '' ,
	message_edit_time number(11) DEFAULT '0' NOT NULL,
	message_edit_count number(4) DEFAULT '0' NOT NULL,
	to_address clob DEFAULT '' ,
	bcc_address clob DEFAULT '' ,
	message_reported number(1) DEFAULT '0' NOT NULL,
	CONSTRAINT pk_phpbb_privmsgs PRIMARY KEY (msg_id)
)
/

CREATE INDEX phpbb_privmsgs_author_ip ON phpbb_privmsgs (author_ip)
/
CREATE INDEX phpbb_privmsgs_message_time ON phpbb_privmsgs (message_time)
/
CREATE INDEX phpbb_privmsgs_author_id ON phpbb_privmsgs (author_id)
/
CREATE INDEX phpbb_privmsgs_root_level ON phpbb_privmsgs (root_level)
/

CREATE SEQUENCE phpbb_privmsgs_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_privmsgs
BEFORE INSERT ON phpbb_privmsgs
FOR EACH ROW WHEN (
	new.msg_id IS NULL OR new.msg_id = 0
)
BEGIN
	SELECT phpbb_privmsgs_seq.nextval
	INTO :new.msg_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_privmsgs_folder'
*/
CREATE TABLE phpbb_privmsgs_folder (
	folder_id number(8) NOT NULL,
	user_id number(8) DEFAULT '0' NOT NULL,
	folder_name varchar2(765) DEFAULT '' ,
	pm_count number(8) DEFAULT '0' NOT NULL,
	CONSTRAINT pk_phpbb_privmsgs_folder PRIMARY KEY (folder_id)
)
/

CREATE INDEX phpbb_privmsgs_folder_user_id ON phpbb_privmsgs_folder (user_id)
/

CREATE SEQUENCE phpbb_privmsgs_folder_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_privmsgs_folder
BEFORE INSERT ON phpbb_privmsgs_folder
FOR EACH ROW WHEN (
	new.folder_id IS NULL OR new.folder_id = 0
)
BEGIN
	SELECT phpbb_privmsgs_folder_seq.nextval
	INTO :new.folder_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_privmsgs_rules'
*/
CREATE TABLE phpbb_privmsgs_rules (
	rule_id number(8) NOT NULL,
	user_id number(8) DEFAULT '0' NOT NULL,
	rule_check number(8) DEFAULT '0' NOT NULL,
	rule_connection number(8) DEFAULT '0' NOT NULL,
	rule_string varchar2(765) DEFAULT '' ,
	rule_user_id number(8) DEFAULT '0' NOT NULL,
	rule_group_id number(8) DEFAULT '0' NOT NULL,
	rule_action number(8) DEFAULT '0' NOT NULL,
	rule_folder_id number(11) DEFAULT '0' NOT NULL,
	CONSTRAINT pk_phpbb_privmsgs_rules PRIMARY KEY (rule_id)
)
/

CREATE INDEX phpbb_privmsgs_rules_user_id ON phpbb_privmsgs_rules (user_id)
/

CREATE SEQUENCE phpbb_privmsgs_rules_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_privmsgs_rules
BEFORE INSERT ON phpbb_privmsgs_rules
FOR EACH ROW WHEN (
	new.rule_id IS NULL OR new.rule_id = 0
)
BEGIN
	SELECT phpbb_privmsgs_rules_seq.nextval
	INTO :new.rule_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_privmsgs_to'
*/
CREATE TABLE phpbb_privmsgs_to (
	msg_id number(8) DEFAULT '0' NOT NULL,
	user_id number(8) DEFAULT '0' NOT NULL,
	author_id number(8) DEFAULT '0' NOT NULL,
	pm_deleted number(1) DEFAULT '0' NOT NULL,
	pm_new number(1) DEFAULT '1' NOT NULL,
	pm_unread number(1) DEFAULT '1' NOT NULL,
	pm_replied number(1) DEFAULT '0' NOT NULL,
	pm_marked number(1) DEFAULT '0' NOT NULL,
	pm_forwarded number(1) DEFAULT '0' NOT NULL,
	folder_id number(11) DEFAULT '0' NOT NULL
)
/

CREATE INDEX phpbb_privmsgs_to_msg_id ON phpbb_privmsgs_to (msg_id)
/
CREATE INDEX phpbb_privmsgs_to_author_id ON phpbb_privmsgs_to (author_id)
/
CREATE INDEX phpbb_privmsgs_to_usr_flder_id ON phpbb_privmsgs_to (user_id, folder_id)
/

/*
	Table: 'phpbb_profile_fields'
*/
CREATE TABLE phpbb_profile_fields (
	field_id number(8) NOT NULL,
	field_name varchar2(765) DEFAULT '' ,
	field_type number(4) DEFAULT '0' NOT NULL,
	field_ident varchar2(20) DEFAULT '' ,
	field_length varchar2(20) DEFAULT '' ,
	field_minlen varchar2(255) DEFAULT '' ,
	field_maxlen varchar2(255) DEFAULT '' ,
	field_novalue varchar2(765) DEFAULT '' ,
	field_default_value varchar2(765) DEFAULT '' ,
	field_validation varchar2(60) DEFAULT '' ,
	field_required number(1) DEFAULT '0' NOT NULL,
	field_show_on_reg number(1) DEFAULT '0' NOT NULL,
	field_show_on_vt number(1) DEFAULT '0' NOT NULL,
	field_show_profile number(1) DEFAULT '0' NOT NULL,
	field_hide number(1) DEFAULT '0' NOT NULL,
	field_no_view number(1) DEFAULT '0' NOT NULL,
	field_active number(1) DEFAULT '0' NOT NULL,
	field_order number(8) DEFAULT '0' NOT NULL,
	CONSTRAINT pk_phpbb_profile_fields PRIMARY KEY (field_id)
)
/

CREATE INDEX phpbb_profile_fields_fld_type ON phpbb_profile_fields (field_type)
/
CREATE INDEX phpbb_profile_fields_fld_ordr ON phpbb_profile_fields (field_order)
/

CREATE SEQUENCE phpbb_profile_fields_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_profile_fields
BEFORE INSERT ON phpbb_profile_fields
FOR EACH ROW WHEN (
	new.field_id IS NULL OR new.field_id = 0
)
BEGIN
	SELECT phpbb_profile_fields_seq.nextval
	INTO :new.field_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_profile_fields_data'
*/
CREATE TABLE phpbb_profile_fields_data (
	user_id number(8) DEFAULT '0' NOT NULL,
	CONSTRAINT pk_phpbb_profile_fields_data PRIMARY KEY (user_id)
)
/


/*
	Table: 'phpbb_profile_fields_lang'
*/
CREATE TABLE phpbb_profile_fields_lang (
	field_id number(8) DEFAULT '0' NOT NULL,
	lang_id number(8) DEFAULT '0' NOT NULL,
	option_id number(8) DEFAULT '0' NOT NULL,
	field_type number(4) DEFAULT '0' NOT NULL,
	lang_value varchar2(765) DEFAULT '' ,
	CONSTRAINT pk_phpbb_profile_fields_lang PRIMARY KEY (field_id, lang_id, option_id)
)
/


/*
	Table: 'phpbb_profile_lang'
*/
CREATE TABLE phpbb_profile_lang (
	field_id number(8) DEFAULT '0' NOT NULL,
	lang_id number(8) DEFAULT '0' NOT NULL,
	lang_name varchar2(765) DEFAULT '' ,
	lang_explain clob DEFAULT '' ,
	lang_default_value varchar2(765) DEFAULT '' ,
	CONSTRAINT pk_phpbb_profile_lang PRIMARY KEY (field_id, lang_id)
)
/


/*
	Table: 'phpbb_ranks'
*/
CREATE TABLE phpbb_ranks (
	rank_id number(8) NOT NULL,
	rank_title varchar2(765) DEFAULT '' ,
	rank_min number(8) DEFAULT '0' NOT NULL,
	rank_special number(1) DEFAULT '0' NOT NULL,
	rank_image varchar2(255) DEFAULT '' ,
	CONSTRAINT pk_phpbb_ranks PRIMARY KEY (rank_id)
)
/


CREATE SEQUENCE phpbb_ranks_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_ranks
BEFORE INSERT ON phpbb_ranks
FOR EACH ROW WHEN (
	new.rank_id IS NULL OR new.rank_id = 0
)
BEGIN
	SELECT phpbb_ranks_seq.nextval
	INTO :new.rank_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_reports'
*/
CREATE TABLE phpbb_reports (
	report_id number(8) NOT NULL,
	reason_id number(4) DEFAULT '0' NOT NULL,
	post_id number(8) DEFAULT '0' NOT NULL,
	pm_id number(8) DEFAULT '0' NOT NULL,
	user_id number(8) DEFAULT '0' NOT NULL,
	user_notify number(1) DEFAULT '0' NOT NULL,
	report_closed number(1) DEFAULT '0' NOT NULL,
	report_time number(11) DEFAULT '0' NOT NULL,
	report_text clob DEFAULT '' ,
	CONSTRAINT pk_phpbb_reports PRIMARY KEY (report_id)
)
/

CREATE INDEX phpbb_reports_post_id ON phpbb_reports (post_id)
/
CREATE INDEX phpbb_reports_pm_id ON phpbb_reports (pm_id)
/

CREATE SEQUENCE phpbb_reports_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_reports
BEFORE INSERT ON phpbb_reports
FOR EACH ROW WHEN (
	new.report_id IS NULL OR new.report_id = 0
)
BEGIN
	SELECT phpbb_reports_seq.nextval
	INTO :new.report_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_reports_reasons'
*/
CREATE TABLE phpbb_reports_reasons (
	reason_id number(4) NOT NULL,
	reason_title varchar2(765) DEFAULT '' ,
	reason_description clob DEFAULT '' ,
	reason_order number(4) DEFAULT '0' NOT NULL,
	CONSTRAINT pk_phpbb_reports_reasons PRIMARY KEY (reason_id)
)
/


CREATE SEQUENCE phpbb_reports_reasons_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_reports_reasons
BEFORE INSERT ON phpbb_reports_reasons
FOR EACH ROW WHEN (
	new.reason_id IS NULL OR new.reason_id = 0
)
BEGIN
	SELECT phpbb_reports_reasons_seq.nextval
	INTO :new.reason_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_search_results'
*/
CREATE TABLE phpbb_search_results (
	search_key varchar2(32) DEFAULT '' ,
	search_time number(11) DEFAULT '0' NOT NULL,
	search_keywords clob DEFAULT '' ,
	search_authors clob DEFAULT '' ,
	CONSTRAINT pk_phpbb_search_results PRIMARY KEY (search_key)
)
/


/*
	Table: 'phpbb_search_wordlist'
*/
CREATE TABLE phpbb_search_wordlist (
	word_id number(8) NOT NULL,
	word_text varchar2(765) DEFAULT '' ,
	word_common number(1) DEFAULT '0' NOT NULL,
	word_count number(8) DEFAULT '0' NOT NULL,
	CONSTRAINT pk_phpbb_search_wordlist PRIMARY KEY (word_id),
	CONSTRAINT u_phpbb_wrd_txt UNIQUE (word_text)
)
/

CREATE INDEX phpbb_search_wordlist_wrd_cnt ON phpbb_search_wordlist (word_count)
/

CREATE SEQUENCE phpbb_search_wordlist_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_search_wordlist
BEFORE INSERT ON phpbb_search_wordlist
FOR EACH ROW WHEN (
	new.word_id IS NULL OR new.word_id = 0
)
BEGIN
	SELECT phpbb_search_wordlist_seq.nextval
	INTO :new.word_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_search_wordmatch'
*/
CREATE TABLE phpbb_search_wordmatch (
	post_id number(8) DEFAULT '0' NOT NULL,
	word_id number(8) DEFAULT '0' NOT NULL,
	title_match number(1) DEFAULT '0' NOT NULL,
	CONSTRAINT u_phpbb_unq_mtch UNIQUE (word_id, post_id, title_match)
)
/

CREATE INDEX phpbb_search_wordmatch_word_id ON phpbb_search_wordmatch (word_id)
/
CREATE INDEX phpbb_search_wordmatch_post_id ON phpbb_search_wordmatch (post_id)
/

/*
	Table: 'phpbb_sessions'
*/
CREATE TABLE phpbb_sessions (
	session_id char(32) DEFAULT '' ,
	session_user_id number(8) DEFAULT '0' NOT NULL,
	session_forum_id number(8) DEFAULT '0' NOT NULL,
	session_last_visit number(11) DEFAULT '0' NOT NULL,
	session_start number(11) DEFAULT '0' NOT NULL,
	session_time number(11) DEFAULT '0' NOT NULL,
	session_ip varchar2(40) DEFAULT '' ,
	session_browser varchar2(150) DEFAULT '' ,
	session_forwarded_for varchar2(255) DEFAULT '' ,
	session_page varchar2(765) DEFAULT '' ,
	session_viewonline number(1) DEFAULT '1' NOT NULL,
	session_autologin number(1) DEFAULT '0' NOT NULL,
	session_admin number(1) DEFAULT '0' NOT NULL,
	CONSTRAINT pk_phpbb_sessions PRIMARY KEY (session_id)
)
/

CREATE INDEX phpbb_sessions_session_time ON phpbb_sessions (session_time)
/
CREATE INDEX phpbb_sessions_session_user_id ON phpbb_sessions (session_user_id)
/
CREATE INDEX phpbb_sessions_session_fid ON phpbb_sessions (session_forum_id)
/

/*
	Table: 'phpbb_sessions_keys'
*/
CREATE TABLE phpbb_sessions_keys (
	key_id char(32) DEFAULT '' ,
	user_id number(8) DEFAULT '0' NOT NULL,
	last_ip varchar2(40) DEFAULT '' ,
	last_login number(11) DEFAULT '0' NOT NULL,
	CONSTRAINT pk_phpbb_sessions_keys PRIMARY KEY (key_id, user_id)
)
/

CREATE INDEX phpbb_sessions_keys_last_login ON phpbb_sessions_keys (last_login)
/

/*
	Table: 'phpbb_sitelist'
*/
CREATE TABLE phpbb_sitelist (
	site_id number(8) NOT NULL,
	site_ip varchar2(40) DEFAULT '' ,
	site_hostname varchar2(255) DEFAULT '' ,
	ip_exclude number(1) DEFAULT '0' NOT NULL,
	CONSTRAINT pk_phpbb_sitelist PRIMARY KEY (site_id)
)
/


CREATE SEQUENCE phpbb_sitelist_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_sitelist
BEFORE INSERT ON phpbb_sitelist
FOR EACH ROW WHEN (
	new.site_id IS NULL OR new.site_id = 0
)
BEGIN
	SELECT phpbb_sitelist_seq.nextval
	INTO :new.site_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_smilies'
*/
CREATE TABLE phpbb_smilies (
	smiley_id number(8) NOT NULL,
	code varchar2(150) DEFAULT '' ,
	emotion varchar2(150) DEFAULT '' ,
	smiley_url varchar2(50) DEFAULT '' ,
	smiley_width number(4) DEFAULT '0' NOT NULL,
	smiley_height number(4) DEFAULT '0' NOT NULL,
	smiley_order number(8) DEFAULT '0' NOT NULL,
	display_on_posting number(1) DEFAULT '1' NOT NULL,
	CONSTRAINT pk_phpbb_smilies PRIMARY KEY (smiley_id)
)
/

CREATE INDEX phpbb_smilies_display_on_post ON phpbb_smilies (display_on_posting)
/

CREATE SEQUENCE phpbb_smilies_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_smilies
BEFORE INSERT ON phpbb_smilies
FOR EACH ROW WHEN (
	new.smiley_id IS NULL OR new.smiley_id = 0
)
BEGIN
	SELECT phpbb_smilies_seq.nextval
	INTO :new.smiley_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_styles'
*/
CREATE TABLE phpbb_styles (
	style_id number(8) NOT NULL,
	style_name varchar2(765) DEFAULT '' ,
	style_copyright varchar2(765) DEFAULT '' ,
	style_active number(1) DEFAULT '1' NOT NULL,
	template_id number(8) DEFAULT '0' NOT NULL,
	theme_id number(8) DEFAULT '0' NOT NULL,
	imageset_id number(8) DEFAULT '0' NOT NULL,
	CONSTRAINT pk_phpbb_styles PRIMARY KEY (style_id),
	CONSTRAINT u_phpbb_style_name UNIQUE (style_name)
)
/

CREATE INDEX phpbb_styles_template_id ON phpbb_styles (template_id)
/
CREATE INDEX phpbb_styles_theme_id ON phpbb_styles (theme_id)
/
CREATE INDEX phpbb_styles_imageset_id ON phpbb_styles (imageset_id)
/

CREATE SEQUENCE phpbb_styles_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_styles
BEFORE INSERT ON phpbb_styles
FOR EACH ROW WHEN (
	new.style_id IS NULL OR new.style_id = 0
)
BEGIN
	SELECT phpbb_styles_seq.nextval
	INTO :new.style_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_styles_template'
*/
CREATE TABLE phpbb_styles_template (
	template_id number(8) NOT NULL,
	template_name varchar2(765) DEFAULT '' ,
	template_copyright varchar2(765) DEFAULT '' ,
	template_path varchar2(100) DEFAULT '' ,
	bbcode_bitfield varchar2(255) DEFAULT 'kNg=' NOT NULL,
	template_storedb number(1) DEFAULT '0' NOT NULL,
	template_inherits_id number(4) DEFAULT '0' NOT NULL,
	template_inherit_path varchar2(255) DEFAULT '' ,
	CONSTRAINT pk_phpbb_styles_template PRIMARY KEY (template_id),
	CONSTRAINT u_phpbb_tmplte_nm UNIQUE (template_name)
)
/


CREATE SEQUENCE phpbb_styles_template_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_styles_template
BEFORE INSERT ON phpbb_styles_template
FOR EACH ROW WHEN (
	new.template_id IS NULL OR new.template_id = 0
)
BEGIN
	SELECT phpbb_styles_template_seq.nextval
	INTO :new.template_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_styles_template_data'
*/
CREATE TABLE phpbb_styles_template_data (
	template_id number(8) DEFAULT '0' NOT NULL,
	template_filename varchar2(100) DEFAULT '' ,
	template_included clob DEFAULT '' ,
	template_mtime number(11) DEFAULT '0' NOT NULL,
	template_data clob DEFAULT '' 
)
/

CREATE INDEX phpbb_styles_template_data_tid ON phpbb_styles_template_data (template_id)
/
CREATE INDEX phpbb_styles_template_data_tfn ON phpbb_styles_template_data (template_filename)
/

/*
	Table: 'phpbb_styles_theme'
*/
CREATE TABLE phpbb_styles_theme (
	theme_id number(8) NOT NULL,
	theme_name varchar2(765) DEFAULT '' ,
	theme_copyright varchar2(765) DEFAULT '' ,
	theme_path varchar2(100) DEFAULT '' ,
	theme_storedb number(1) DEFAULT '0' NOT NULL,
	theme_mtime number(11) DEFAULT '0' NOT NULL,
	theme_data clob DEFAULT '' ,
	CONSTRAINT pk_phpbb_styles_theme PRIMARY KEY (theme_id),
	CONSTRAINT u_phpbb_theme_name UNIQUE (theme_name)
)
/


CREATE SEQUENCE phpbb_styles_theme_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_styles_theme
BEFORE INSERT ON phpbb_styles_theme
FOR EACH ROW WHEN (
	new.theme_id IS NULL OR new.theme_id = 0
)
BEGIN
	SELECT phpbb_styles_theme_seq.nextval
	INTO :new.theme_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_styles_imageset'
*/
CREATE TABLE phpbb_styles_imageset (
	imageset_id number(8) NOT NULL,
	imageset_name varchar2(765) DEFAULT '' ,
	imageset_copyright varchar2(765) DEFAULT '' ,
	imageset_path varchar2(100) DEFAULT '' ,
	CONSTRAINT pk_phpbb_styles_imageset PRIMARY KEY (imageset_id),
	CONSTRAINT u_phpbb_imgset_nm UNIQUE (imageset_name)
)
/


CREATE SEQUENCE phpbb_styles_imageset_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_styles_imageset
BEFORE INSERT ON phpbb_styles_imageset
FOR EACH ROW WHEN (
	new.imageset_id IS NULL OR new.imageset_id = 0
)
BEGIN
	SELECT phpbb_styles_imageset_seq.nextval
	INTO :new.imageset_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_styles_imageset_data'
*/
CREATE TABLE phpbb_styles_imageset_data (
	image_id number(8) NOT NULL,
	image_name varchar2(200) DEFAULT '' ,
	image_filename varchar2(200) DEFAULT '' ,
	image_lang varchar2(30) DEFAULT '' ,
	image_height number(4) DEFAULT '0' NOT NULL,
	image_width number(4) DEFAULT '0' NOT NULL,
	imageset_id number(8) DEFAULT '0' NOT NULL,
	CONSTRAINT pk_phpbb_styles_imageset_data PRIMARY KEY (image_id)
)
/

CREATE INDEX phpbb_styles_imageset_data_i_d ON phpbb_styles_imageset_data (imageset_id)
/

CREATE SEQUENCE phpbb_styles_imageset_data_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_styles_imageset_data
BEFORE INSERT ON phpbb_styles_imageset_data
FOR EACH ROW WHEN (
	new.image_id IS NULL OR new.image_id = 0
)
BEGIN
	SELECT phpbb_styles_imageset_data_seq.nextval
	INTO :new.image_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_topics'
*/
CREATE TABLE phpbb_topics (
	topic_id number(8) NOT NULL,
	forum_id number(8) DEFAULT '0' NOT NULL,
	icon_id number(8) DEFAULT '0' NOT NULL,
	topic_attachment number(1) DEFAULT '0' NOT NULL,
	topic_approved number(1) DEFAULT '1' NOT NULL,
	topic_reported number(1) DEFAULT '0' NOT NULL,
	topic_title varchar2(765) DEFAULT '' ,
	topic_poster number(8) DEFAULT '0' NOT NULL,
	topic_time number(11) DEFAULT '0' NOT NULL,
	topic_time_limit number(11) DEFAULT '0' NOT NULL,
	topic_views number(8) DEFAULT '0' NOT NULL,
	topic_replies number(8) DEFAULT '0' NOT NULL,
	topic_replies_real number(8) DEFAULT '0' NOT NULL,
	topic_status number(3) DEFAULT '0' NOT NULL,
	topic_type number(3) DEFAULT '0' NOT NULL,
	topic_first_post_id number(8) DEFAULT '0' NOT NULL,
	topic_first_poster_name varchar2(765) DEFAULT '' ,
	topic_first_poster_colour varchar2(6) DEFAULT '' ,
	topic_last_post_id number(8) DEFAULT '0' NOT NULL,
	topic_last_poster_id number(8) DEFAULT '0' NOT NULL,
	topic_last_poster_name varchar2(765) DEFAULT '' ,
	topic_last_poster_colour varchar2(6) DEFAULT '' ,
	topic_last_post_subject varchar2(765) DEFAULT '' ,
	topic_last_post_time number(11) DEFAULT '0' NOT NULL,
	topic_last_view_time number(11) DEFAULT '0' NOT NULL,
	topic_moved_id number(8) DEFAULT '0' NOT NULL,
	topic_bumped number(1) DEFAULT '0' NOT NULL,
	topic_bumper number(8) DEFAULT '0' NOT NULL,
	poll_title varchar2(765) DEFAULT '' ,
	poll_start number(11) DEFAULT '0' NOT NULL,
	poll_length number(11) DEFAULT '0' NOT NULL,
	poll_max_options number(4) DEFAULT '1' NOT NULL,
	poll_last_vote number(11) DEFAULT '0' NOT NULL,
	poll_vote_change number(1) DEFAULT '0' NOT NULL,
	CONSTRAINT pk_phpbb_topics PRIMARY KEY (topic_id)
)
/

CREATE INDEX phpbb_topics_forum_id ON phpbb_topics (forum_id)
/
CREATE INDEX phpbb_topics_forum_id_type ON phpbb_topics (forum_id, topic_type)
/
CREATE INDEX phpbb_topics_last_post_time ON phpbb_topics (topic_last_post_time)
/
CREATE INDEX phpbb_topics_topic_approved ON phpbb_topics (topic_approved)
/
CREATE INDEX phpbb_topics_forum_appr_last ON phpbb_topics (forum_id, topic_approved, topic_last_post_id)
/
CREATE INDEX phpbb_topics_fid_time_moved ON phpbb_topics (forum_id, topic_last_post_time, topic_moved_id)
/

CREATE SEQUENCE phpbb_topics_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_topics
BEFORE INSERT ON phpbb_topics
FOR EACH ROW WHEN (
	new.topic_id IS NULL OR new.topic_id = 0
)
BEGIN
	SELECT phpbb_topics_seq.nextval
	INTO :new.topic_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_topics_track'
*/
CREATE TABLE phpbb_topics_track (
	user_id number(8) DEFAULT '0' NOT NULL,
	topic_id number(8) DEFAULT '0' NOT NULL,
	forum_id number(8) DEFAULT '0' NOT NULL,
	mark_time number(11) DEFAULT '0' NOT NULL,
	CONSTRAINT pk_phpbb_topics_track PRIMARY KEY (user_id, topic_id)
)
/

CREATE INDEX phpbb_topics_track_topic_id ON phpbb_topics_track (topic_id)
/
CREATE INDEX phpbb_topics_track_forum_id ON phpbb_topics_track (forum_id)
/

/*
	Table: 'phpbb_topics_posted'
*/
CREATE TABLE phpbb_topics_posted (
	user_id number(8) DEFAULT '0' NOT NULL,
	topic_id number(8) DEFAULT '0' NOT NULL,
	topic_posted number(1) DEFAULT '0' NOT NULL,
	CONSTRAINT pk_phpbb_topics_posted PRIMARY KEY (user_id, topic_id)
)
/


/*
	Table: 'phpbb_topics_watch'
*/
CREATE TABLE phpbb_topics_watch (
	topic_id number(8) DEFAULT '0' NOT NULL,
	user_id number(8) DEFAULT '0' NOT NULL,
	notify_status number(1) DEFAULT '0' NOT NULL
)
/

CREATE INDEX phpbb_topics_watch_topic_id ON phpbb_topics_watch (topic_id)
/
CREATE INDEX phpbb_topics_watch_user_id ON phpbb_topics_watch (user_id)
/
CREATE INDEX phpbb_topics_watch_notify_stat ON phpbb_topics_watch (notify_status)
/

/*
	Table: 'phpbb_user_group'
*/
CREATE TABLE phpbb_user_group (
	group_id number(8) DEFAULT '0' NOT NULL,
	user_id number(8) DEFAULT '0' NOT NULL,
	group_leader number(1) DEFAULT '0' NOT NULL,
	user_pending number(1) DEFAULT '1' NOT NULL
)
/

CREATE INDEX phpbb_user_group_group_id ON phpbb_user_group (group_id)
/
CREATE INDEX phpbb_user_group_user_id ON phpbb_user_group (user_id)
/
CREATE INDEX phpbb_user_group_group_leader ON phpbb_user_group (group_leader)
/

/*
	Table: 'phpbb_users'
*/
CREATE TABLE phpbb_users (
	user_id number(8) NOT NULL,
	user_type number(2) DEFAULT '0' NOT NULL,
	group_id number(8) DEFAULT '3' NOT NULL,
	user_permissions clob DEFAULT '' ,
	user_perm_from number(8) DEFAULT '0' NOT NULL,
	user_ip varchar2(40) DEFAULT '' ,
	user_regdate number(11) DEFAULT '0' NOT NULL,
	username varchar2(255) DEFAULT '' ,
	username_clean varchar2(255) DEFAULT '' ,
	user_password varchar2(120) DEFAULT '' ,
	user_passchg number(11) DEFAULT '0' NOT NULL,
	user_pass_convert number(1) DEFAULT '0' NOT NULL,
	user_email varchar2(300) DEFAULT '' ,
	user_email_hash number(20) DEFAULT '0' NOT NULL,
	user_birthday varchar2(10) DEFAULT '' ,
	user_lastvisit number(11) DEFAULT '0' NOT NULL,
	user_lastmark number(11) DEFAULT '0' NOT NULL,
	user_lastpost_time number(11) DEFAULT '0' NOT NULL,
	user_lastpage varchar2(600) DEFAULT '' ,
	user_last_confirm_key varchar2(10) DEFAULT '' ,
	user_last_search number(11) DEFAULT '0' NOT NULL,
	user_warnings number(4) DEFAULT '0' NOT NULL,
	user_last_warning number(11) DEFAULT '0' NOT NULL,
	user_login_attempts number(4) DEFAULT '0' NOT NULL,
	user_inactive_reason number(2) DEFAULT '0' NOT NULL,
	user_inactive_time number(11) DEFAULT '0' NOT NULL,
	user_posts number(8) DEFAULT '0' NOT NULL,
	user_lang varchar2(30) DEFAULT '' ,
	user_timezone number(5, 2) DEFAULT '0' NOT NULL,
	user_dst number(1) DEFAULT '0' NOT NULL,
	user_dateformat varchar2(90) DEFAULT 'd M Y H:i' NOT NULL,
	user_style number(8) DEFAULT '0' NOT NULL,
	user_rank number(8) DEFAULT '0' NOT NULL,
	user_colour varchar2(6) DEFAULT '' ,
	user_new_privmsg number(4) DEFAULT '0' NOT NULL,
	user_unread_privmsg number(4) DEFAULT '0' NOT NULL,
	user_last_privmsg number(11) DEFAULT '0' NOT NULL,
	user_message_rules number(1) DEFAULT '0' NOT NULL,
	user_full_folder number(11) DEFAULT '-3' NOT NULL,
	user_emailtime number(11) DEFAULT '0' NOT NULL,
	user_topic_show_days number(4) DEFAULT '0' NOT NULL,
	user_topic_sortby_type varchar2(1) DEFAULT 't' NOT NULL,
	user_topic_sortby_dir varchar2(1) DEFAULT 'd' NOT NULL,
	user_post_show_days number(4) DEFAULT '0' NOT NULL,
	user_post_sortby_type varchar2(1) DEFAULT 't' NOT NULL,
	user_post_sortby_dir varchar2(1) DEFAULT 'a' NOT NULL,
	user_notify number(1) DEFAULT '0' NOT NULL,
	user_notify_pm number(1) DEFAULT '1' NOT NULL,
	user_notify_type number(4) DEFAULT '0' NOT NULL,
	user_allow_pm number(1) DEFAULT '1' NOT NULL,
	user_allow_viewonline number(1) DEFAULT '1' NOT NULL,
	user_allow_viewemail number(1) DEFAULT '1' NOT NULL,
	user_allow_massemail number(1) DEFAULT '1' NOT NULL,
	user_options number(11) DEFAULT '230271' NOT NULL,
	user_avatar varchar2(255) DEFAULT '' ,
	user_avatar_type number(2) DEFAULT '0' NOT NULL,
	user_avatar_width number(4) DEFAULT '0' NOT NULL,
	user_avatar_height number(4) DEFAULT '0' NOT NULL,
	user_sig clob DEFAULT '' ,
	user_sig_bbcode_uid varchar2(8) DEFAULT '' ,
	user_sig_bbcode_bitfield varchar2(255) DEFAULT '' ,
	user_from varchar2(300) DEFAULT '' ,
	user_icq varchar2(15) DEFAULT '' ,
	user_aim varchar2(765) DEFAULT '' ,
	user_yim varchar2(765) DEFAULT '' ,
	user_msnm varchar2(765) DEFAULT '' ,
	user_jabber varchar2(765) DEFAULT '' ,
	user_website varchar2(600) DEFAULT '' ,
	user_occ clob DEFAULT '' ,
	user_interests clob DEFAULT '' ,
	user_actkey varchar2(32) DEFAULT '' ,
	user_newpasswd varchar2(120) DEFAULT '' ,
	user_form_salt varchar2(96) DEFAULT '' ,
	user_new number(1) DEFAULT '1' NOT NULL,
	user_reminded number(4) DEFAULT '0' NOT NULL,
	user_reminded_time number(11) DEFAULT '0' NOT NULL,
	CONSTRAINT pk_phpbb_users PRIMARY KEY (user_id),
	CONSTRAINT u_phpbb_username_clean UNIQUE (username_clean)
)
/

CREATE INDEX phpbb_users_user_birthday ON phpbb_users (user_birthday)
/
CREATE INDEX phpbb_users_user_email_hash ON phpbb_users (user_email_hash)
/
CREATE INDEX phpbb_users_user_type ON phpbb_users (user_type)
/

CREATE SEQUENCE phpbb_users_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_users
BEFORE INSERT ON phpbb_users
FOR EACH ROW WHEN (
	new.user_id IS NULL OR new.user_id = 0
)
BEGIN
	SELECT phpbb_users_seq.nextval
	INTO :new.user_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_warnings'
*/
CREATE TABLE phpbb_warnings (
	warning_id number(8) NOT NULL,
	user_id number(8) DEFAULT '0' NOT NULL,
	post_id number(8) DEFAULT '0' NOT NULL,
	log_id number(8) DEFAULT '0' NOT NULL,
	warning_time number(11) DEFAULT '0' NOT NULL,
	CONSTRAINT pk_phpbb_warnings PRIMARY KEY (warning_id)
)
/


CREATE SEQUENCE phpbb_warnings_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_warnings
BEFORE INSERT ON phpbb_warnings
FOR EACH ROW WHEN (
	new.warning_id IS NULL OR new.warning_id = 0
)
BEGIN
	SELECT phpbb_warnings_seq.nextval
	INTO :new.warning_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_words'
*/
CREATE TABLE phpbb_words (
	word_id number(8) NOT NULL,
	word varchar2(765) DEFAULT '' ,
	replacement varchar2(765) DEFAULT '' ,
	CONSTRAINT pk_phpbb_words PRIMARY KEY (word_id)
)
/


CREATE SEQUENCE phpbb_words_seq
/

CREATE OR REPLACE TRIGGER t_phpbb_words
BEFORE INSERT ON phpbb_words
FOR EACH ROW WHEN (
	new.word_id IS NULL OR new.word_id = 0
)
BEGIN
	SELECT phpbb_words_seq.nextval
	INTO :new.word_id
	FROM dual;
END;
/


/*
	Table: 'phpbb_zebra'
*/
CREATE TABLE phpbb_zebra (
	user_id number(8) DEFAULT '0' NOT NULL,
	zebra_id number(8) DEFAULT '0' NOT NULL,
	friend number(1) DEFAULT '0' NOT NULL,
	foe number(1) DEFAULT '0' NOT NULL,
	CONSTRAINT pk_phpbb_zebra PRIMARY KEY (user_id, zebra_id)
)
/


lass="hl str">"Allow all users" msgstr "Позволява на потребители" #: any.pm:1195 #, c-format msgid "Custom" msgstr "Клиентска" #: any.pm:1199 #, c-format msgid "" "Would you like to allow users to share some of their directories?\n" "Allowing this will permit users to simply click on \"Share\" in konqueror " "and nautilus.\n" "\n" "\"Custom\" permit a per-user granularity.\n" msgstr "" "Искате ли да позволите на потребители да поделят техните директории?\n" "Разрешаването на това ще позволи на потребителите просто да цъкнат на " "\"Поделя\" в konqueror или nautilus.\n" "\n" "\"Клиентска\" позволява за потребител настройка.\n" #: any.pm:1211 #, c-format msgid "" "NFS: the traditional Unix file sharing system, with less support on Mac and " "Windows." msgstr "" #: any.pm:1214 #, c-format msgid "" "SMB: a file sharing system used by Windows, Mac OS X and many modern Linux " "systems." msgstr "" #: any.pm:1222 #, c-format msgid "" "You can export using NFS or SMB. Please select which you would like to use." msgstr "" "Вие може да експортирате като използвате NFS или SMB. Моля, изберете какво " "искате да използвате." #: any.pm:1250 #, c-format msgid "Launch userdrake" msgstr "Стартира userdrake" #: any.pm:1252 #, c-format msgid "" "The per-user sharing uses the group \"fileshare\". \n" "You can use userdrake to add a user to this group." msgstr "" "Споделянето на потребителски директории използва група \"fileshare\".\n" "Може да използвате userdrake,за да добавите потребител към тази група." #: any.pm:1344 #, c-format msgid "Please log out and then use Ctrl-Alt-BackSpace" msgstr "Моля излезте от сесията и използвайте Ctrl-Alt-BackSpace" #: any.pm:1348 #, c-format msgid "You need to log out and back in again for changes to take effect" msgstr "" #: any.pm:1383 #, c-format msgid "Timezone" msgstr "Часова зона" #: any.pm:1383 #, c-format msgid "Which is your timezone?" msgstr "Коя е времевата ви зона ?" #: any.pm:1406 any.pm:1408 #, c-format msgid "Date, Clock & Time Zone Settings" msgstr "" #: any.pm:1409 #, c-format msgid "What is the best time?" msgstr "" #: any.pm:1413 #, fuzzy, c-format msgid "%s (hardware clock set to UTC)" msgstr "Хадруерният ви часовник е настроен по GMT" #: any.pm:1414 #, fuzzy, c-format msgid "%s (hardware clock set to local time)" msgstr "Хадруерният ви часовник е настроен по GMT" #: any.pm:1416 #, c-format msgid "NTP Server" msgstr "NTP сървър" #: any.pm:1417 #, c-format msgid "Automatic time synchronization (using NTP)" msgstr "Автоматична синхронизация на времето (използва NTP)" #: authentication.pm:25 #, c-format msgid "Local file" msgstr "Локален файл" #: authentication.pm:26 #, c-format msgid "LDAP" msgstr "LDAP" #: authentication.pm:27 #, c-format msgid "NIS" msgstr "NIS" #: authentication.pm:28 #, fuzzy, c-format msgid "Smart Card" msgstr "Ethernet карта" #: authentication.pm:29 authentication.pm:205 #, c-format msgid "Windows Domain" msgstr "Windows домейн" #: authentication.pm:30 #, c-format msgid "Kerberos 5" msgstr "" #: authentication.pm:64 #, fuzzy, c-format msgid "Local file:" msgstr "Локални файлове:" #: authentication.pm:64 #, c-format msgid "" "Use local for all authentication and information user tell in local file" msgstr "" #: authentication.pm:65 #, c-format msgid "LDAP:" msgstr "LDAP:" #: authentication.pm:65 #, c-format msgid "" "Tells your computer to use LDAP for some or all authentication. LDAP " "consolidates certain types of information within your organization." msgstr "" #: authentication.pm:66 #, c-format msgid "NIS:" msgstr "NIS:" #: authentication.pm:66 #, c-format msgid "" "Allows you to run a group of computers in the same Network Information " "Service domain with a common password and group file." msgstr "" #: authentication.pm:67 #, c-format msgid "Windows Domain:" msgstr "Windows домейн:" #: authentication.pm:67 #, c-format msgid "" "Winbind allows the system to retrieve information and authenticate users in " "a Windows domain." msgstr "" #: authentication.pm:68 #, c-format msgid "Kerberos 5 :" msgstr "" #: authentication.pm:68 #, c-format msgid "With Kerberos and Ldap for authentication in Active Directory Server " msgstr "" #: authentication.pm:96 authentication.pm:130 authentication.pm:149 #: authentication.pm:150 authentication.pm:176 authentication.pm:200 #: authentication.pm:878 #, c-format msgid " " msgstr "" #: authentication.pm:97 authentication.pm:131 authentication.pm:177 #: authentication.pm:201 #, fuzzy, c-format msgid "Welcome to the Authentication Wizard" msgstr "Изисква Идентификация за Домейн" #: authentication.pm:99 #, c-format msgid "" "You have selected LDAP authentication. Please review the configuration " "options below " msgstr "" #: authentication.pm:101 authentication.pm:156 #, c-format msgid "LDAP Server" msgstr "LDAP сървър" #: authentication.pm:102 authentication.pm:157 #, fuzzy, c-format msgid "Base dn" msgstr "LDAP Базов dn" #: authentication.pm:103 #, c-format msgid "Fetch base Dn " msgstr "" #: authentication.pm:105 authentication.pm:160 #, c-format msgid "Use encrypt connection with TLS " msgstr "" #: authentication.pm:106 authentication.pm:161 #, c-format msgid "Download CA Certificate " msgstr "" #: authentication.pm:108 authentication.pm:141 #, c-format msgid "Use Disconnect mode " msgstr "" #: authentication.pm:109 authentication.pm:162 #, c-format msgid "Use anonymous BIND " msgstr "" #: authentication.pm:110 authentication.pm:113 authentication.pm:115 #: authentication.pm:119 #, c-format msgid " " msgstr "" #: authentication.pm:111 authentication.pm:163 #, c-format msgid "Bind DN " msgstr "" #: authentication.pm:112 authentication.pm:164 #, fuzzy, c-format msgid "Bind Password " msgstr "Парола" #: authentication.pm:114 #, c-format msgid "Advanced path for group " msgstr "" #: authentication.pm:116 #, fuzzy, c-format msgid "Password base" msgstr "Парола" #: authentication.pm:117 #, fuzzy, c-format msgid "Group base" msgstr "Номер на група" #: authentication.pm:118 #, c-format msgid "Shadow base" msgstr "" #: authentication.pm:133 #, c-format msgid "" "You have selected Kerberos 5 authentication. Please review the configuration " "options below " msgstr "" #: authentication.pm:135 #, fuzzy, c-format msgid "Realm " msgstr "Истинско име" #: authentication.pm:137 #, fuzzy, c-format msgid "KDCs Servers" msgstr "LDAP сървър" #: authentication.pm:139 #, c-format msgid "Use DNS to resolve hosts for realms " msgstr "" #: authentication.pm:140 #, c-format msgid "Use DNS to resolve KDCs for realms " msgstr "" #: authentication.pm:145 #, fuzzy, c-format msgid "Use local file for users informations" msgstr "Използвайте libsafe за сървъри" #: authentication.pm:146 #, fuzzy, c-format msgid "Use Ldap for users informations" msgstr "Информацията за твърдия диск" #: authentication.pm:152 #, c-format msgid "" "You have selected Kerberos 5 for authentication, now you must choose the " "type of users information " msgstr "" #: authentication.pm:158 #, c-format msgid "Fecth base Dn " msgstr "" #: authentication.pm:179 #, c-format msgid "" "You have selected NIS authentication. Please review the configuration " "options below " msgstr "" #: authentication.pm:181 #, c-format msgid "NIS Domain" msgstr "NIS домейн" #: authentication.pm:182 #, c-format msgid "NIS Server" msgstr "NIS сървър" #: authentication.pm:203 #, c-format msgid "" "You have selected Windows Domain authentication. Please review the " "configuration options below " msgstr "" #: authentication.pm:207 #, fuzzy, c-format msgid "Domain Model " msgstr "Домейн" #: authentication.pm:209 #, c-format msgid "Active Directory Realm " msgstr "" #: authentication.pm:225 authentication.pm:241 #, c-format msgid "Authentication" msgstr "Идентификация" #: authentication.pm:227 #, fuzzy, c-format msgid "Authentication method" msgstr "идентификация" #. -PO: keep this short or else the buttons will not fit in the window #: authentication.pm:232 #, c-format msgid "No password" msgstr "Без парола" #: authentication.pm:253 #, c-format msgid "This password is too short (it must be at least %d characters long)" msgstr "Паролата е прекалено проста (трябва да бъде дълга поне %d символа)" #: authentication.pm:358 #, c-format msgid "Can not use broadcast with no NIS domain" msgstr "Не можете да използвате broadcast без NIS домейн" #: authentication.pm:873 #, c-format msgid "Select file" msgstr "Изберете файл" #: authentication.pm:879 #, fuzzy, c-format msgid "Domain Windows for authentication : " msgstr "Изисква Идентификация за Домейн" #: authentication.pm:881 #, c-format msgid "Domain Admin User Name" msgstr "Име на администратор на домейн" #: authentication.pm:882 #, c-format msgid "Domain Admin Password" msgstr "Парола за администратор на домейн" # NOTE: this message will be displayed at boot time; that is # only the ascii charset will be available on most machines # so use only 7bit for this message (and do transliteration or # leave it in English, as it is the best for your language) # #. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit) #: bootloader.pm:942 #, c-format msgid "" "Welcome to the operating system chooser!\n" "\n" "Choose an operating system from the list above or\n" "wait for default boot.\n" "\n" msgstr "" #: bootloader.pm:1110 #, c-format msgid "LILO with text menu" msgstr "LILO с текстово меню" #: bootloader.pm:1111 #, c-format msgid "GRUB with graphical menu" msgstr "" #: bootloader.pm:1112 #, c-format msgid "GRUB with text menu" msgstr "" #: bootloader.pm:1113 #, c-format msgid "Yaboot" msgstr "Yaboot" #: bootloader.pm:1114 #, c-format msgid "SILO" msgstr "SILO" #: bootloader.pm:1195 #, c-format msgid "not enough room in /boot" msgstr "няма достатъчно място за /boot" #: bootloader.pm:1843 #, c-format msgid "You can not install the bootloader on a %s partition\n" msgstr "Не можете да инсталирате bootloader на дяла %s\n" #: bootloader.pm:1964 #, c-format msgid "" "Your bootloader configuration must be updated because partition has been " "renumbered" msgstr "" #: bootloader.pm:1977 #, c-format msgid "" "The bootloader can not be installed correctly. You have to boot rescue and " "choose \"%s\"" msgstr "" #: bootloader.pm:1978 #, fuzzy, c-format msgid "Re-install Boot Loader" msgstr "Инсталиране на bootloader" #: common.pm:142 #, fuzzy, c-format msgid "B" msgstr "КБ" #: common.pm:142 #, c-format msgid "KB" msgstr "КБ" #: common.pm:142 #, c-format msgid "MB" msgstr "МБ" #: common.pm:142 #, c-format msgid "GB" msgstr "ГБ" #: common.pm:142 common.pm:151 #, c-format msgid "TB" msgstr "ТБ" #: common.pm:159 #, c-format msgid "%d minutes" msgstr "%d минути" #: common.pm:161 #, c-format msgid "1 minute" msgstr "1 минута" #: common.pm:163 #, c-format msgid "%d seconds" msgstr "%d секунди" #: common.pm:358 #, c-format msgid "command %s missing" msgstr "" #: diskdrake/dav.pm:17 #, c-format msgid "" "WebDAV is a protocol that allows you to mount a web server's directory\n" "locally, and treat it like a local filesystem (provided the web server is\n" "configured as a WebDAV server). If you would like to add WebDAV mount\n" "points, select \"New\"." msgstr "" #: diskdrake/dav.pm:25 #, c-format msgid "New" msgstr "Нов" #: diskdrake/dav.pm:61 diskdrake/interactive.pm:382 diskdrake/smbnfs_gtk.pm:75 #, c-format msgid "Unmount" msgstr "Демонтирай" #: diskdrake/dav.pm:62 diskdrake/interactive.pm:379 diskdrake/smbnfs_gtk.pm:76 #, c-format msgid "Mount" msgstr "Монтирай" #: diskdrake/dav.pm:63 #, c-format msgid "Server" msgstr "Сървър" #: diskdrake/dav.pm:64 diskdrake/interactive.pm:373 #: diskdrake/interactive.pm:613 diskdrake/interactive.pm:631 #: diskdrake/interactive.pm:635 diskdrake/removable.pm:23 #: diskdrake/smbnfs_gtk.pm:79 #, c-format msgid "Mount point" msgstr "Място на монтиране" #: diskdrake/dav.pm:65 diskdrake/interactive.pm:375 #: diskdrake/interactive.pm:989 diskdrake/removable.pm:24 #: diskdrake/smbnfs_gtk.pm:80 #, c-format msgid "Options" msgstr "Опции" #: diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:174 diskdrake/removable.pm:26 #: diskdrake/smbnfs_gtk.pm:82 interactive/http.pm:151 #, c-format msgid "Done" msgstr "Готово" #: diskdrake/dav.pm:75 diskdrake/hd_gtk.pm:120 diskdrake/hd_gtk.pm:272 #: diskdrake/interactive.pm:233 diskdrake/interactive.pm:246 #: diskdrake/interactive.pm:480 diskdrake/interactive.pm:485 #: diskdrake/interactive.pm:603 diskdrake/interactive.pm:861 #: diskdrake/interactive.pm:1035 diskdrake/interactive.pm:1048 #: diskdrake/interactive.pm:1051 diskdrake/interactive.pm:1300 #: diskdrake/smbnfs_gtk.pm:42 do_pkgs.pm:23 do_pkgs.pm:28 do_pkgs.pm:44 #: do_pkgs.pm:60 do_pkgs.pm:65 fsedit.pm:222 interactive/http.pm:117 #: interactive/http.pm:118 modules/interactive.pm:19 scanner.pm:94 #: scanner.pm:105 scanner.pm:112 scanner.pm:119 wizards.pm:95 wizards.pm:99 #: wizards.pm:121 #, c-format msgid "Error" msgstr "Грешка" #: diskdrake/dav.pm:83 #, c-format msgid "Please enter the WebDAV server URL" msgstr "Моля въведете WebDAV сървър URL" #: diskdrake/dav.pm:87 #, c-format msgid "The URL must begin with http:// or https://" msgstr "URL трябва да започва с http:// или https://" #: diskdrake/dav.pm:109 #, c-format msgid "Server: " msgstr "Сървър: " #: diskdrake/dav.pm:110 diskdrake/interactive.pm:453 #: diskdrake/interactive.pm:1180 diskdrake/interactive.pm:1260 #, c-format msgid "Mount point: " msgstr "Място на монтиране: " #: diskdrake/dav.pm:111 diskdrake/interactive.pm:1267 #, c-format msgid "Options: %s" msgstr "Опции: %s" #: diskdrake/hd_gtk.pm:54 diskdrake/interactive.pm:284 #: diskdrake/smbnfs_gtk.pm:22 fs/mount_point.pm:106 #: fs/partitioning_wizard.pm:51 fs/partitioning_wizard.pm:206 #: fs/partitioning_wizard.pm:211 fs/partitioning_wizard.pm:250 #: fs/partitioning_wizard.pm:269 fs/partitioning_wizard.pm:274 #, c-format msgid "Partitioning" msgstr "Разделяне на дялове" #: diskdrake/hd_gtk.pm:68 #, c-format msgid "Click on a partition, choose a filesystem type then choose an action" msgstr "" #: diskdrake/hd_gtk.pm:102 diskdrake/interactive.pm:1010 #: diskdrake/interactive.pm:1020 diskdrake/interactive.pm:1073 #, c-format msgid "Read carefully!" msgstr "Прочетете внимателно !" #: diskdrake/hd_gtk.pm:102 #, c-format msgid "Please make a backup of your data first" msgstr "Първо създайте backup на своите данни" #: diskdrake/hd_gtk.pm:103 diskdrake/interactive.pm:226 #, c-format msgid "Exit" msgstr "Излез" #: diskdrake/hd_gtk.pm:103 #, c-format msgid "Continue" msgstr "Нататък" #: diskdrake/hd_gtk.pm:170 interactive.pm:649 interactive/gtk.pm:781 #: interactive/gtk.pm:797 interactive/gtk.pm:815 ugtk2.pm:933 ugtk2.pm:934 #, c-format msgid "Help" msgstr "Помощ" #: diskdrake/hd_gtk.pm:208 #, c-format msgid "" "You have one big Microsoft Windows partition.\n" "I suggest you first resize that partition\n" "(click on it, then click on \"Resize\")" msgstr "" "Имате един голям FAT дял\n" "(по принцип се ползват от Microsoft Dos/Windows).\n" "Предлагам първо да промените големината на този дял\n" "(щракнете върху него, а след това щракнете върху \"Промени големината\")" #: diskdrake/hd_gtk.pm:210 #, c-format msgid "Please click on a partition" msgstr "Моля, цъкнете на дяла" #: diskdrake/hd_gtk.pm:224 diskdrake/smbnfs_gtk.pm:63 #, c-format msgid "Details" msgstr "Подробности" #: diskdrake/hd_gtk.pm:272 #, c-format msgid "No hard drives found" msgstr "Не е намерен твърд диск" #: diskdrake/hd_gtk.pm:299 #, c-format msgid "Unknown" msgstr "Неизвестен" #: diskdrake/hd_gtk.pm:361 #, fuzzy, c-format msgid "Ext3" msgstr "Излез" #: diskdrake/hd_gtk.pm:361 #, fuzzy, c-format msgid "XFS" msgstr "HFS" #: diskdrake/hd_gtk.pm:361 #, c-format msgid "Swap" msgstr "Swap" #: diskdrake/hd_gtk.pm:361 #, c-format msgid "SunOS" msgstr "SunOS" #: diskdrake/hd_gtk.pm:361 #, c-format msgid "HFS" msgstr "HFS" #: diskdrake/hd_gtk.pm:361 #, c-format msgid "Windows" msgstr "Windows" #: diskdrake/hd_gtk.pm:362 services.pm:158 #, c-format msgid "Other" msgstr "Друга" #: diskdrake/hd_gtk.pm:362 diskdrake/interactive.pm:1195 #, c-format msgid "Empty" msgstr "Празен" #: diskdrake/hd_gtk.pm:369 #, c-format msgid "Filesystem types:" msgstr "Видове файлова система:" #: diskdrake/hd_gtk.pm:390 diskdrake/interactive.pm:289 #: diskdrake/interactive.pm:361 diskdrake/interactive.pm:510 #: diskdrake/interactive.pm:694 diskdrake/interactive.pm:752 #: diskdrake/interactive.pm:841 diskdrake/interactive.pm:883 #: diskdrake/interactive.pm:884 diskdrake/interactive.pm:1118 #: diskdrake/interactive.pm:1156 diskdrake/interactive.pm:1299 do_pkgs.pm:19 #: do_pkgs.pm:39 do_pkgs.pm:57 harddrake/sound.pm:422 #, c-format msgid "Warning" msgstr "Предупреждение" #: diskdrake/hd_gtk.pm:390 #, fuzzy, c-format msgid "This partition is already empty" msgstr "Големината на дяла не може да бъде променена" #: diskdrake/hd_gtk.pm:399 #, c-format msgid "Use ``Unmount'' first" msgstr "Първо използвайте 'Демонтиране'" #: diskdrake/hd_gtk.pm:399 #, fuzzy, c-format msgid "Use ``%s'' instead (in expert mode)" msgstr "Вместо това използвайте ``%s''" #: diskdrake/hd_gtk.pm:399 diskdrake/interactive.pm:374 #: diskdrake/interactive.pm:548 diskdrake/interactive.pm:1026 #: diskdrake/removable.pm:25 diskdrake/removable.pm:48 #, c-format msgid "Type" msgstr "Вид" #: diskdrake/interactive.pm:197 #, c-format msgid "Choose another partition" msgstr "Изберете друг дял" #: diskdrake/interactive.pm:197 #, c-format msgid "Choose a partition" msgstr "Изберете дял" #: diskdrake/interactive.pm:259 #, c-format msgid "Toggle to normal mode" msgstr "Премини в Нормален режим" #: diskdrake/interactive.pm:259 #, c-format msgid "Toggle to expert mode" msgstr "Премини в Експертен режим" #: diskdrake/interactive.pm:267 diskdrake/interactive.pm:277 #: diskdrake/interactive.pm:1103 #, fuzzy, c-format msgid "Confirmation" msgstr "Настройка" #: diskdrake/interactive.pm:267 #, c-format msgid "Continue anyway?" msgstr "Продължение въпреки всичко ?" #: diskdrake/interactive.pm:272 #, c-format msgid "Quit without saving" msgstr "Изход без запис" #: diskdrake/interactive.pm:272 #, c-format msgid "Quit without writing the partition table?" msgstr "Изход, без да запис на таблицата на дяловете ?" #: diskdrake/interactive.pm:277 #, c-format msgid "Do you want to save /etc/fstab modifications" msgstr "Искате ли да запазите промените в /etc/fstab" #: diskdrake/interactive.pm:284 fs/partitioning_wizard.pm:250 #, c-format msgid "You need to reboot for the partition table modifications to take place" msgstr "Налага се ра рестартирате, преди модификациите да предизвикат ефект" #: diskdrake/interactive.pm:289 #, c-format msgid "" "You should format partition %s.\n" "Otherwise no entry for mount point %s will be written in fstab.\n" "Quit anyway?" msgstr "" #: diskdrake/interactive.pm:302 #, c-format msgid "Clear all" msgstr "Изчисти всичко" #: diskdrake/interactive.pm:303 #, c-format msgid "Auto allocate" msgstr "Автоматично създаване" #: diskdrake/interactive.pm:304 diskdrake/interactive.pm:352 #: interactive/curses.pm:512 #, c-format msgid "More" msgstr "Още" #: diskdrake/interactive.pm:309 #, c-format msgid "Hard drive information" msgstr "Информацията за твърдия диск" #: diskdrake/interactive.pm:341 #, c-format msgid "All primary partitions are used" msgstr "Всички първични дялове се използват" #: diskdrake/interactive.pm:342 #, c-format msgid "I can not add any more partitions" msgstr "Не мога да добавя повече дялове" #: diskdrake/interactive.pm:343 #, c-format msgid "" "To have more partitions, please delete one to be able to create an extended " "partition" msgstr "" "Ако искате още дялове, моля изтрийте един, за да можете да създадете един " "разширен дял" #: diskdrake/interactive.pm:354 #, c-format msgid "Reload partition table" msgstr "Презареди таблицата с дяловете" #: diskdrake/interactive.pm:361 #, c-format msgid "Detailed information" msgstr "Подробна информация" #: diskdrake/interactive.pm:377 diskdrake/interactive.pm:707 #, c-format msgid "Resize" msgstr "Промени големината" #: diskdrake/interactive.pm:378 #, c-format msgid "Format" msgstr "Форматирай" #: diskdrake/interactive.pm:380 diskdrake/interactive.pm:793 #, c-format msgid "Add to RAID" msgstr "Прибави към RAID" #: diskdrake/interactive.pm:381 diskdrake/interactive.pm:811 #, c-format msgid "Add to LVM" msgstr "Прибави към LVM" #: diskdrake/interactive.pm:383 #, c-format msgid "Delete" msgstr "Изтрий" #: diskdrake/interactive.pm:384 #, c-format msgid "Remove from RAID" msgstr "Премахни от RAID" #: diskdrake/interactive.pm:385 #, c-format msgid "Remove from LVM" msgstr "Премахни от LVM" #: diskdrake/interactive.pm:386 #, c-format msgid "Modify RAID" msgstr "Модифицирай RAID" #: diskdrake/interactive.pm:387 #, c-format msgid "Use for loopback" msgstr "Използвай за loopback" #: diskdrake/interactive.pm:398 #, c-format msgid "Create" msgstr "Създай" #: diskdrake/interactive.pm:442 diskdrake/interactive.pm:444 #, c-format msgid "Create a new partition" msgstr "Създай нов дял" #: diskdrake/interactive.pm:446 #, c-format msgid "Start sector: " msgstr "Начален сектор: " #: diskdrake/interactive.pm:449 diskdrake/interactive.pm:876 #, c-format msgid "Size in MB: " msgstr "Големина в MB: " #: diskdrake/interactive.pm:451 diskdrake/interactive.pm:877 #, c-format msgid "Filesystem type: " msgstr "Вид файлова система: " #: diskdrake/interactive.pm:457 #, c-format msgid "Preference: " msgstr "Предпочитание: " #: diskdrake/interactive.pm:460 #, c-format msgid "Logical volume name " msgstr "Име на logical volume" #: diskdrake/interactive.pm:480 #, c-format msgid "" "You can not create a new partition\n" "(since you reached the maximal number of primary partitions).\n" "First remove a primary partition and create an extended partition." msgstr "" #: diskdrake/interactive.pm:510 #, c-format msgid "Remove the loopback file?" msgstr "Да премахна ли loopback файла ?" #: diskdrake/interactive.pm:532 #, c-format msgid "" "After changing type of partition %s, all data on this partition will be lost" msgstr "" "След промяна на типа на дяла %s, всички данни върху него ще бъдат загубени" #: diskdrake/interactive.pm:545 #, c-format msgid "Change partition type" msgstr "Промяна типа на дяла" #: diskdrake/interactive.pm:547 diskdrake/removable.pm:47 #, c-format msgid "Which filesystem do you want?" msgstr "Коя файлова система искате ?" #: diskdrake/interactive.pm:554 #, fuzzy, c-format msgid "Switching from %s to %s" msgstr "Преход от ext2 към ext3" #: diskdrake/interactive.pm:580 diskdrake/interactive.pm:583 #, c-format msgid "Which volume label?" msgstr "" #: diskdrake/interactive.pm:584 #, fuzzy, c-format msgid "Label:" msgstr "Етикет" #: diskdrake/interactive.pm:598 #, c-format msgid "Where do you want to mount the loopback file %s?" msgstr "Къде искате да монтирате loopback-файла %s ?" #: diskdrake/interactive.pm:599 #, c-format msgid "Where do you want to mount device %s?" msgstr "Къде искате да монтирате устройство %s ?" #: diskdrake/interactive.pm:604 #, c-format msgid "" "Can not unset mount point as this partition is used for loop back.\n" "Remove the loopback first" msgstr "" "Не мога да махна точката на монтиране, тъй като дялът се използва за " "loopback.\n" "Първо махнете loopback" #: diskdrake/interactive.pm:634 #, c-format msgid "Where do you want to mount %s?" msgstr "Къде искате да монтирате устройство %s ?" #: diskdrake/interactive.pm:658 diskdrake/interactive.pm:741 #: fs/partitioning_wizard.pm:146 fs/partitioning_wizard.pm:178 #, c-format msgid "Resizing" msgstr "Промяна на големината" #: diskdrake/interactive.pm:658 #, c-format msgid "Computing FAT filesystem bounds" msgstr "Изчислявам границите на fat файловата система" #: diskdrake/interactive.pm:694 #, c-format msgid "This partition is not resizeable" msgstr "Големината на дяла не може да бъде променена" #: diskdrake/interactive.pm:699 #, c-format msgid "All data on this partition should be backed-up" msgstr "Всички данни на този дял трябва да бъдат архивирани" #: diskdrake/interactive.pm:701 #, c-format msgid "After resizing partition %s, all data on this partition will be lost" msgstr "" "След промяна големината на дяла %s, данните върху него ще бъдат загубени" #: diskdrake/interactive.pm:708 #, c-format msgid "Choose the new size" msgstr "Изберете нова големина" #: diskdrake/interactive.pm:709 #, c-format msgid "New size in MB: " msgstr "Нова големина в MB: " #: diskdrake/interactive.pm:710 #, c-format msgid "Minimum size: %s MB" msgstr "" #: diskdrake/interactive.pm:711 #, c-format msgid "Maximum size: %s MB" msgstr "" #: diskdrake/interactive.pm:752 fs/partitioning_wizard.pm:186 #, c-format msgid "" "To ensure data integrity after resizing the partition(s), \n" "filesystem checks will be run on your next boot into Microsoft Windows®" msgstr "" #: diskdrake/interactive.pm:793 #, c-format msgid "Choose an existing RAID to add to" msgstr "Изберете съществуващ RAID за прибавяне" #: diskdrake/interactive.pm:795 diskdrake/interactive.pm:813 #, c-format msgid "new" msgstr "нов" #: diskdrake/interactive.pm:811 #, c-format msgid "Choose an existing LVM to add to" msgstr "Изберете съществуващ LVM за прибавяне" #: diskdrake/interactive.pm:818 #, c-format msgid "LVM name?" msgstr "LVM име ?" #: diskdrake/interactive.pm:841 #, c-format msgid "" "Physical volume %s is still in use.\n" "Do you want to move used physical extents on this volume to other volumes?" msgstr "" #: diskdrake/interactive.pm:843 #, c-format msgid "Moving physical extents" msgstr "" #: diskdrake/interactive.pm:861 #, c-format msgid "This partition can not be used for loopback" msgstr "Този дял не може да бъде използван за loopback" #: diskdrake/interactive.pm:874 #, c-format msgid "Loopback" msgstr "Loopback" #: diskdrake/interactive.pm:875 #, c-format msgid "Loopback file name: " msgstr "Име на loopback файла: " #: diskdrake/interactive.pm:880 #, c-format msgid "Give a file name" msgstr "Дайте име на файл" #: diskdrake/interactive.pm:883 #, c-format msgid "File is already used by another loopback, choose another one" msgstr "Файлът вече се използва то друг loopback, изберете друг файл." #: diskdrake/interactive.pm:884 #, c-format msgid "File already exists. Use it?" msgstr "Файлът вече съшествува. Да го използвам ли ?" #: diskdrake/interactive.pm:916 diskdrake/interactive.pm:919 #, c-format msgid "Mount options" msgstr "Опции за mount:" #: diskdrake/interactive.pm:926 #, c-format msgid "Various" msgstr "Различни" #: diskdrake/interactive.pm:991 #, c-format msgid "device" msgstr "устройство" #: diskdrake/interactive.pm:992 #, c-format msgid "level" msgstr "ниво" #: diskdrake/interactive.pm:993 #, fuzzy, c-format msgid "chunk size in KiB" msgstr "големина на парчето" #: diskdrake/interactive.pm:1011 #, c-format msgid "Be careful: this operation is dangerous." msgstr "Внимание: тази операция е опасна" #: diskdrake/interactive.pm:1026 #, c-format msgid "What type of partitioning?" msgstr "Какъв тип разделяне на дялове ?" #: diskdrake/interactive.pm:1064 #, c-format msgid "You'll need to reboot before the modification can take place" msgstr "Трябва да рестартирате, преди промените да влязат в сила" #: diskdrake/interactive.pm:1073 #, c-format msgid "Partition table of drive %s is going to be written to disk!" msgstr "Таблицата на дяловете на устройство %s ще бъде записана върху диска !" #: diskdrake/interactive.pm:1098 #, c-format msgid "After formatting partition %s, all data on this partition will be lost" msgstr "След форматиране на дяла %s, всички данни върху него ще бъдат загубени" #: diskdrake/interactive.pm:1103 fs/partitioning.pm:48 #, c-format msgid "Check bad blocks?" msgstr "Проверка за лоши сектори ?" #: diskdrake/interactive.pm:1117 #, c-format msgid "Move files to the new partition" msgstr "Премести файловете на нов дял" #: diskdrake/interactive.pm:1117 #, c-format msgid "Hide files" msgstr "Скрий файловете" #: diskdrake/interactive.pm:1118 #, c-format msgid "" "Directory %s already contains data\n" "(%s)\n" "\n" "You can either choose to move the files into the partition that will be " "mounted there or leave them where they are (which results in hiding them by " "the contents of the mounted partition)" msgstr "" #: diskdrake/interactive.pm:1133 #, c-format msgid "Moving files to the new partition" msgstr "Премести файловете на нов дял" #: diskdrake/interactive.pm:1137 #, c-format msgid "Copying %s" msgstr "Копиране на %s" #: diskdrake/interactive.pm:1141 #, c-format msgid "Removing %s" msgstr "Изтриване на %s" #: diskdrake/interactive.pm:1155 #, c-format msgid "partition %s is now known as %s" msgstr "дял %s сега е известен като %s" #: diskdrake/interactive.pm:1156 #, c-format msgid "Partitions have been renumbered: " msgstr "" #: diskdrake/interactive.pm:1181 diskdrake/interactive.pm:1244 #, c-format msgid "Device: " msgstr "Устройство: " #: diskdrake/interactive.pm:1182 #, c-format msgid "Volume label: " msgstr "" #: diskdrake/interactive.pm:1183 #, c-format msgid "UUID: " msgstr "" #: diskdrake/interactive.pm:1184 #, c-format msgid "DOS drive letter: %s (just a guess)\n" msgstr "Буква на устройството под DOS: %s (просто предположение)\n" #: diskdrake/interactive.pm:1188 diskdrake/interactive.pm:1197 #: diskdrake/interactive.pm:1263 #, c-format msgid "Type: " msgstr "Вид: " #: diskdrake/interactive.pm:1192 diskdrake/interactive.pm:1248 #, c-format msgid "Name: " msgstr "Име: " #: diskdrake/interactive.pm:1199 #, c-format msgid "Start: sector %s\n" msgstr "Начало: сектор %s\n" #: diskdrake/interactive.pm:1200 #, c-format msgid "Size: %s" msgstr "Размер: %s" #: diskdrake/interactive.pm:1202 #, c-format msgid ", %s sectors" msgstr ", %s сектора" #: diskdrake/interactive.pm:1204 #, c-format msgid "Cylinder %d to %d\n" msgstr "От цилиндър %d до цилиндър %d\n" #: diskdrake/interactive.pm:1205 #, c-format msgid "Number of logical extents: %d\n" msgstr "" #: diskdrake/interactive.pm:1206 #, c-format msgid "Formatted\n" msgstr "Форматиран\n" #: diskdrake/interactive.pm:1207 #, c-format msgid "Not formatted\n" msgstr "Неформатиран\n" #: diskdrake/interactive.pm:1208 #, c-format msgid "Mounted\n" msgstr "Монтиран\n" #: diskdrake/interactive.pm:1209 #, c-format msgid "RAID %s\n" msgstr "RAID %s\n" #: diskdrake/interactive.pm:1214 #, c-format msgid "" "Loopback file(s):\n" " %s\n" msgstr "" "Loopback файл(ове):\n" " %s\n" #: diskdrake/interactive.pm:1215 #, c-format msgid "" "Partition booted by default\n" " (for MS-DOS boot, not for lilo)\n" msgstr "" "Дял, който се стартира по подразбиране\n" " (за MS-DOS boot, не за lilo)\n" #: diskdrake/interactive.pm:1217 #, c-format msgid "Level %s\n" msgstr "Ниво %s\n" #: diskdrake/interactive.pm:1218 #, fuzzy, c-format msgid "Chunk size %d KiB\n" msgstr "Размер на парчето %s\n" #: diskdrake/interactive.pm:1219 #, c-format msgid "RAID-disks %s\n" msgstr "RAID-дискове %s\n" #: diskdrake/interactive.pm:1221 #, c-format msgid "Loopback file name: %s" msgstr "Име на loopback файла: %s" #: diskdrake/interactive.pm:1224 #, c-format msgid "" "\n" "Chances are, this partition is\n" "a Driver partition. You should\n" "probably leave it alone.\n" msgstr "" "\n" "Вероятно е този дял да е\n" "Драйвер-дял, може би трябва\n" "трябва да го оставите.\n" #: diskdrake/interactive.pm:1227 #, c-format msgid "" "\n" "This special Bootstrap\n" "partition is for\n" "dual-booting your system.\n" msgstr "" "\n" "Тази специална стартираща\n" "ивица на дяла е за двойно\n" "стартиране на системата ви.\n" #: diskdrake/interactive.pm:1236 #, c-format msgid "Free space on %s (%s)" msgstr "" #: diskdrake/interactive.pm:1245 #, c-format msgid "Read-only" msgstr "Само за четене" #: diskdrake/interactive.pm:1246 #, c-format msgid "Size: %s\n" msgstr "Размер: %s\n" #: diskdrake/interactive.pm:1247 #, c-format msgid "Geometry: %s cylinders, %s heads, %s sectors\n" msgstr "Геометрия: %s цилиндри, %s глави, %s сектори\n" #: diskdrake/interactive.pm:1249 #, fuzzy, c-format msgid "Medium type: " msgstr "Вид файлова система: " #: diskdrake/interactive.pm:1250 #, c-format msgid "LVM-disks %s\n" msgstr "LVM-дискове %s\n" #: diskdrake/interactive.pm:1251 #, c-format msgid "Partition table type: %s\n" msgstr "Тип на таблицата с дялове: %s\n" #: diskdrake/interactive.pm:1252 #, c-format msgid "on channel %d id %d\n" msgstr "на канал %d id %d\n" #: diskdrake/interactive.pm:1295 #, c-format msgid "Filesystem encryption key" msgstr "Криптиращ ключ за файлова система" #: diskdrake/interactive.pm:1296 #, c-format msgid "Choose your filesystem encryption key" msgstr "Избор на криптиращ ключ за еашата файлова система" #: diskdrake/interactive.pm:1299 #, c-format msgid "This encryption key is too simple (must be at least %d characters long)" msgstr "" "Криптиращ ключ е прекалено прост (трябва да бъде дълга поне %d символа)" #: diskdrake/interactive.pm:1300 #, c-format msgid "The encryption keys do not match" msgstr "Ключовете за криптиране не съвпадат" #: diskdrake/interactive.pm:1303 #, c-format msgid "Encryption key" msgstr "Ключ за криптиране" #: diskdrake/interactive.pm:1304 #, c-format msgid "Encryption key (again)" msgstr "Ключ за криптиране (отново)" #: diskdrake/interactive.pm:1306 #, fuzzy, c-format msgid "Encryption algorithm" msgstr "идентификация" #: diskdrake/removable.pm:46 #, c-format msgid "Change type" msgstr "Промяни типа" #: diskdrake/smbnfs_gtk.pm:81 interactive.pm:129 interactive.pm:546 #: interactive/curses.pm:260 interactive/http.pm:104 interactive/http.pm:160 #: interactive/stdio.pm:39 interactive/stdio.pm:148 ugtk2.pm:415 ugtk2.pm:517 #: ugtk2.pm:526 ugtk2.pm:813 #, c-format msgid "Cancel" msgstr "Отказ" #: diskdrake/smbnfs_gtk.pm:164 #, c-format msgid "Can not login using username %s (bad password?)" msgstr "Не мога да вляза като използвам име %s (грешна парола?)" #: diskdrake/smbnfs_gtk.pm:168 diskdrake/smbnfs_gtk.pm:177 #, c-format msgid "Domain Authentication Required" msgstr "Изисква Идентификация за Домейн" #: diskdrake/smbnfs_gtk.pm:169 #, c-format msgid "Which username" msgstr "Кое потребителско име" #: diskdrake/smbnfs_gtk.pm:169 #, c-format msgid "Another one" msgstr "Друго" #: diskdrake/smbnfs_gtk.pm:178 #, c-format msgid "" "Please enter your username, password and domain name to access this host." msgstr "" "Моля, въведете вашето име, парола и име на домейн за достъп до този хост." #: diskdrake/smbnfs_gtk.pm:180 #, c-format msgid "Username" msgstr "Потребителско име" #: diskdrake/smbnfs_gtk.pm:182 #, c-format msgid "Domain" msgstr "Домейн" #: diskdrake/smbnfs_gtk.pm:206 #, c-format msgid "Search servers" msgstr "Търси сървъри" #: diskdrake/smbnfs_gtk.pm:211 #, c-format msgid "Search new servers" msgstr "Търси нови сървъри" #: do_pkgs.pm:19 do_pkgs.pm:57 #, c-format msgid "The package %s needs to be installed. Do you want to install it?" msgstr "" "Пакет %s трябва да бъде инсталиран\n" "Искате да го инсталирате?" #: do_pkgs.pm:23 do_pkgs.pm:44 do_pkgs.pm:60 #, fuzzy, c-format msgid "Could not install the %s package!" msgstr "Инсталиране на пакета %s" #: do_pkgs.pm:28 do_pkgs.pm:65 #, c-format msgid "Mandatory package %s is missing" msgstr "Задължителният пакет %s липсва" #: do_pkgs.pm:39 #, c-format msgid "The following packages need to be installed:\n" msgstr "Следните пакети ще трябва да се инсталират:\n" #: do_pkgs.pm:221 #, c-format msgid "Installing packages..." msgstr "Инсталиране на пакети ..." #: do_pkgs.pm:267 #, fuzzy, c-format msgid "Removing packages..." msgstr "Изтриване на %s ..." #: fs/any.pm:17 #, c-format msgid "" "An error occurred - no valid devices were found on which to create new " "filesystems. Please check your hardware for the cause of this problem" msgstr "" "Появи се грешка - не са открити валидни устройства, върху които да бъдат " "създадени нови файлови системи. Моля проверете твърдия си диск си за " "причината за този проблем" #: fs/any.pm:75 fs/partitioning_wizard.pm:59 #, c-format msgid "You must have a FAT partition mounted in /boot/efi" msgstr "Трябва да имате FAT дял монтиран в /boot/efi" #: fs/format.pm:63 fs/format.pm:70 #, c-format msgid "Formatting partition %s" msgstr "Форматиране на дял %s" #: fs/format.pm:67 #, c-format msgid "Creating and formatting file %s" msgstr "Създаване и форматиране на файл %s" #: fs/format.pm:122 #, c-format msgid "I do not know how to format %s in type %s" msgstr "не знам как да форматирам %s в тип %s" #: fs/format.pm:127 fs/format.pm:129 #, c-format msgid "%s formatting of %s failed" msgstr "%s форматиране от %s провалено" #: fs/loopback.pm:24 #, c-format msgid "Circular mounts %s\n" msgstr "\"Омагьосан кръг\" от монтирания: %s\n" #: fs/mount.pm:79 #, c-format msgid "Mounting partition %s" msgstr "Форматира дял %s" #: fs/mount.pm:80 #, c-format msgid "mounting partition %s in directory %s failed" msgstr "монтирането на дял %s в директория %s пропадна" #: fs/mount.pm:85 fs/mount.pm:102 #, c-format msgid "Checking %s" msgstr "Проверка на %s" #: fs/mount.pm:119 partition_table.pm:403 #, c-format msgid "error unmounting %s: %s" msgstr "грешка при демонтиране на %s: %s" #: fs/mount.pm:134 #, c-format msgid "Enabling swap partition %s" msgstr "Разрешава swap дял %s" #: fs/mount_options.pm:115 #, fuzzy, c-format msgid "Use an encrypted file system" msgstr "" "Вие не може да използвате криптирана файлова система за точка на монтиране %s" #: fs/mount_options.pm:117 #, c-format msgid "Flush write cache on file close" msgstr "" #: fs/mount_options.pm:119 #, c-format msgid "Enable group disk quota accounting and optionally enforce limits" msgstr "" #: fs/mount_options.pm:121 #, c-format msgid "" "Do not update inode access times on this file system\n" "(e.g, for faster access on the news spool to speed up news servers)." msgstr "" #: fs/mount_options.pm:124 #, c-format msgid "" "Update inode access times on this filesystem in a more efficient way\n" "(e.g, for faster access on the news spool to speed up news servers)." msgstr "" #: fs/mount_options.pm:127 #, c-format msgid "" "Can only be mounted explicitly (i.e.,\n" "the -a option will not cause the file system to be mounted)." msgstr "" #: fs/mount_options.pm:130 #, c-format msgid "Do not interpret character or block special devices on the file system." msgstr "" #: fs/mount_options.pm:132 #, c-format msgid "" "Do not allow execution of any binaries on the mounted\n" "file system. This option might be useful for a server that has file systems\n" "containing binaries for architectures other than its own." msgstr "" #: fs/mount_options.pm:136 #, c-format msgid "" "Do not allow set-user-identifier or set-group-identifier\n" "bits to take effect. (This seems safe, but is in fact rather unsafe if you\n" "have suidperl(1) installed.)" msgstr "" #: fs/mount_options.pm:140 #, c-format msgid "Mount the file system read-only." msgstr "" #: fs/mount_options.pm:142 #, c-format msgid "All I/O to the file system should be done synchronously." msgstr "" #: fs/mount_options.pm:144 #, c-format msgid "Allow every user to mount and umount the file system." msgstr "" #: fs/mount_options.pm:146 #, c-format msgid "Allow an ordinary user to mount the file system." msgstr "" #: fs/mount_options.pm:148 #, c-format msgid "Enable user disk quota accounting, and optionally enforce limits" msgstr "" #: fs/mount_options.pm:150 #, c-format msgid "Support \"user.\" extended attributes" msgstr "" #: fs/mount_options.pm:152 #, c-format msgid "Give write access to ordinary users" msgstr "" #: fs/mount_options.pm:154 #, c-format msgid "Give read-only access to ordinary users" msgstr "" #: fs/mount_point.pm:80 #, c-format msgid "Duplicate mount point %s" msgstr "Дублирай точката на монтиране %s" #: fs/mount_point.pm:95 #, c-format msgid "No partition available" msgstr "няма дялове на разположение" #: fs/mount_point.pm:98 #, c-format msgid "Scanning partitions to find mount points" msgstr "Претърсване на дяловете за намиране на точки на монтиране" #: fs/mount_point.pm:105 #, c-format msgid "Choose the mount points" msgstr "Изберете места за монтиране" #: fs/partitioning.pm:46 #, c-format msgid "Choose the partitions you want to format" msgstr "Изберете дяловете, които искате да форматирате" #: fs/partitioning.pm:75 #, c-format msgid "" "Failed to check filesystem %s. Do you want to repair the errors? (beware, " "you can lose data)" msgstr "" "Неуспешна проверка на файлва система %s. Искате ли да оправите грешките? " "(бъдете внимателни, може да загубите данни)" #: fs/partitioning.pm:78 #, c-format msgid "Not enough swap space to fulfill installation, please add some" msgstr "" "Няма достатъчно swap за приключване на инсталацията, моля добавете малко" #: fs/partitioning_wizard.pm:51 #, c-format msgid "" "You must have a root partition.\n" "For this, create a partition (or click on an existing one).\n" "Then choose action ``Mount point'' and set it to `/'" msgstr "" "Трябва да имате root-дял.\n" "Затова създайте дял (или цъкнете на съществуващ).\n" "Тогава изберете действие ``Място на монтиране'' и го сложете `/'" #: fs/partitioning_wizard.pm:56 #, c-format msgid "" "You do not have a swap partition.\n" "\n" "Continue anyway?" msgstr "" "Нямате swap-дял\n" "\n" "Да продължа ли все пак ?" #: fs/partitioning_wizard.pm:84 #, c-format msgid "Use free space" msgstr "Използвай свободното място" #: fs/partitioning_wizard.pm:86 #, c-format msgid "Not enough free space to allocate new partitions" msgstr "Няма достатъчно място за създаване на нов дял" #: fs/partitioning_wizard.pm:94 #, c-format msgid "Use existing partitions" msgstr "Изпозване на съществуващ дял" #: fs/partitioning_wizard.pm:96 #, c-format msgid "There is no existing partition to use" msgstr "Няма дял, който мога да използвам" #: fs/partitioning_wizard.pm:103 #, c-format msgid "Use the Microsoft Windows® partition for loopback" msgstr "Използвай за Microsoft Windows® дялът за loopback" #: fs/partitioning_wizard.pm:106 #, c-format msgid "Which partition do you want to use for Linux4Win?" msgstr "Кой дял искате да използвате за Linux4Win ?" #: fs/partitioning_wizard.pm:108 #, c-format msgid "Choose the sizes" msgstr "Изберете големините" #: fs/partitioning_wizard.pm:109 #, c-format msgid "Root partition size in MB: " msgstr "Големина на root-дяла в MB: " #: fs/partitioning_wizard.pm:110 #, c-format msgid "Swap partition size in MB: " msgstr "Големина на swap-дяла в MB: " #: fs/partitioning_wizard.pm:119 #, c-format msgid "There is no FAT partition to use as loopback (or not enough space left)" msgstr "" "Няма FAT дялове за използване като loopback (или няма достатъчно място на " "диска)" #: fs/partitioning_wizard.pm:127 #, fuzzy, c-format msgid "Use the free space on a Microsoft Windows® partition" msgstr "Използвай свободното място на Windows дяла" #: fs/partitioning_wizard.pm:129 #, c-format msgid "Which partition do you want to resize?" msgstr "Кой дял желаете да промените?" #: fs/partitioning_wizard.pm:143 #, c-format msgid "" "The FAT resizer is unable to handle your partition, \n" "the following error occurred: %s" msgstr "" "Не възможност за работа с вашия FAT дял, \n" "поради получената грешка: %s" #: fs/partitioning_wizard.pm:146 #, c-format msgid "Computing the size of the Microsoft Windows® partition" msgstr "Изчислява свободното място на Microsoft Windows® дял" #: fs/partitioning_wizard.pm:153 #, c-format msgid "" "Your Microsoft Windows® partition is too fragmented. Please reboot your " "computer under Microsoft Windows®, run the ``defrag'' utility, then restart " "the Mandriva Linux installation." msgstr "" "Вашият Microsoft Windows® дял е много фрагментиран, моля първо стартирайте " "''defrag''" #: fs/partitioning_wizard.pm:156 #, c-format msgid "" "WARNING!\n" "\n" "\n" "Your Microsoft Windows® partition will be now resized.\n" "\n" "\n" "Be careful: this operation is dangerous. If you have not already done so, " "you first need to exit the installation, run \"chkdsk c:\" from a Command " "Prompt under Microsoft Windows® (beware, running graphical program \"scandisk" "\" is not enough, be sure to use \"chkdsk\" in a Command Prompt!), " "optionally run defrag, then restart the installation. You should also backup " "your data.\n" "\n" "\n" "When sure, press %s." msgstr "" "ВНИМАНИЕ!\n" "\n" " DrakX трябва да прераздели Вашия Windows дял.\n" "\n" "\n" "Бъдете внимателни: тази операция е опасна. Ако още не сте го направили, " "трябва първо да пуснете scandisk (и евентуално да използвате defrag) под " "Windows върху този дял, тогава повторете инсталациаята. Би било добре да " "направите архив на данните си.\n" "\n" "\n" "Когато сте сигурни, натиснете %s." #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX #: fs/partitioning_wizard.pm:165 interactive.pm:545 interactive/curses.pm:263 #: ugtk2.pm:519 #, c-format msgid "Next" msgstr "Следващ" #: fs/partitioning_wizard.pm:168 #, fuzzy, c-format msgid "Partitionning" msgstr "Разделяне на дялове" #: fs/partitioning_wizard.pm:168 #, c-format msgid "Which size do you want to keep for Microsoft Windows® on partition %s?" msgstr "Колко искате да оставите за windows? дял %s?" #: fs/partitioning_wizard.pm:169 #, c-format msgid "Size" msgstr "Размер" #: fs/partitioning_wizard.pm:178 #, c-format msgid "Resizing Microsoft Windows® partition" msgstr "Изчислявам границите на Microsoft Windows® файловата система" #: fs/partitioning_wizard.pm:183 #, c-format msgid "FAT resizing failed: %s" msgstr "Неуспешно преразделяне на FAT: %s" #: fs/partitioning_wizard.pm:198 #, c-format msgid "There is no FAT partition to resize (or not enough space left)" msgstr "Няма FAT дялове за смяна на големината (или няма достаъчно място)" #: fs/partitioning_wizard.pm:203 #, c-format msgid "Remove Microsoft Windows®" msgstr "Премахни Microsoft Windows®" #: fs/partitioning_wizard.pm:203 #, fuzzy, c-format msgid "Erase and use entire disk" msgstr "Изтрий целия диск" #: fs/partitioning_wizard.pm:205 #, c-format msgid "You have more than one hard drive, which one do you install linux on?" msgstr "имате повече от един твърди дискове, кой да използвам за инсталацията?" #: fs/partitioning_wizard.pm:210 fsedit.pm:570 #, c-format msgid "ALL existing partitions and their data will be lost on drive %s" msgstr "ВСИЧКИ съществуващи дялове и данните върху тях на %s ще бъдат загубени" #: fs/partitioning_wizard.pm:220 #, c-format msgid "Custom disk partitioning" msgstr "Клиентско разделяне на диска" #: fs/partitioning_wizard.pm:226 #, c-format msgid "Use fdisk" msgstr "Използвай fdisk" #: fs/partitioning_wizard.pm:229 #, c-format msgid "" "You can now partition %s.\n" "When you are done, do not forget to save using `w'" msgstr "" "Сега можете да разделите %s.\n" "Когато сте готови, не забравяйте да запишете използвайки `w'" #: fs/partitioning_wizard.pm:269 #, c-format msgid "I can not find any room for installing" msgstr "Не мога да намеря никакво място за инсталация" #: fs/partitioning_wizard.pm:278 #, c-format msgid "The DrakX Partitioning wizard found the following solutions:" msgstr "Помощникът за разделине на дялове на DrakX намери следните решения:" #: fs/partitioning_wizard.pm:287 #, c-format msgid "Partitioning failed: %s" msgstr "Неуспешно разделяне на: %s" #: fs/type.pm:370 #, c-format msgid "You can not use JFS for partitions smaller than 16MB" msgstr "Не можете да използвате JFS за дял по-малък от 16 МБ" #: fs/type.pm:371 #, c-format msgid "You can not use ReiserFS for partitions smaller than 32MB" msgstr "Не можете да инсталиране ReiserFS на дял по-малък от 32 МБ" #: fsedit.pm:23 #, c-format msgid "simple" msgstr "прост" #: fsedit.pm:27 #, c-format msgid "with /usr" msgstr "с /usr" #: fsedit.pm:32 #, c-format msgid "server" msgstr "сървър" #: fsedit.pm:116 #, c-format msgid "BIOS software RAID detected on disks %s. Activate it?" msgstr "" #: fsedit.pm:223 #, c-format msgid "" "I can not read the partition table of device %s, it's too corrupted for me :" "(\n" "I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n" "The other solution is to not allow DrakX to modify the partition table.\n" "(the error is %s)\n" "\n" "Do you agree to lose all the partitions?\n" msgstr "" "Не мога да разчета таблицата на дяловете на устройство %s, прекалено е " "повредена за мен :(\n" "Мога да се опитам да изчистя лошите дялове (ВСИЧКИ ДАННИ ще бъдат " "загубени!).\n" "Друго решение е да забраните на DrakX поправя таблицата с дялове.\n" "(грешката е %s)\n" "\n" "Съгласни ли сте да загубите всички дялове?\n" #: fsedit.pm:397 #, c-format msgid "Mount points must begin with a leading /" msgstr "Точките на монтиране трябва да започват с /" #: fsedit.pm:398 #, c-format msgid "Mount points should contain only alphanumerical characters" msgstr "Точките за монтиране трябва да съдържат само букви и цифри" #: fsedit.pm:399 #, c-format msgid "There is already a partition with mount point %s\n" msgstr "Вече има дял монтиран на това място %s\n" #: fsedit.pm:403 #, c-format msgid "" "You've selected a software RAID partition as root (/).\n" "No bootloader is able to handle this without a /boot partition.\n" "Please be sure to add a /boot partition" msgstr "" "Маркирали сте софтуерен RAID дял като root (/).\n" "Няма зареждаща програма, която да може да се справи с него без /boot дял.\n" "Така че добавете /boot дял" #: fsedit.pm:409 #, fuzzy, c-format msgid "" "You can not use the LVM Logical Volume for mount point %s since it spans " "physical volumes" msgstr "Не можете да използвате LVM тип за място на монтиране %s" #: fsedit.pm:411 #, fuzzy, c-format msgid "" "You've selected the LVM Logical Volume as root (/).\n" "The bootloader is not able to handle this when the volume spans physical " "volumes.\n" "You should create a /boot partition first" msgstr "" "Маркирали сте софтуерен RAID дял като root (/).\n" "Няма зареждаща програма, която да може да се справи с него без /boot дял.\n" "Така че добавете /boot дял" #: fsedit.pm:415 fsedit.pm:417 #, c-format msgid "This directory should remain within the root filesystem" msgstr "Тази директория трябва да остане в рамките на root файловата система." #: fsedit.pm:419 fsedit.pm:421 #, c-format msgid "" "You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount " "point\n" msgstr "" "Нуждаете се от истинска файлова система (ext2, reiserfs,xfs, или jfs) за " "тази точка на монтиране\n" #: fsedit.pm:423 #, c-format msgid "You can not use an encrypted file system for mount point %s" msgstr "" "Вие не може да използвате криптирана файлова система за точка на монтиране %s" #: fsedit.pm:487 #, c-format msgid "Not enough free space for auto-allocating" msgstr "Няма достатъчно място за автоматично разпределяне" #: fsedit.pm:489 #, c-format msgid "Nothing to do" msgstr "Няма нищо за правене" #: harddrake/data.pm:64 #, c-format msgid "SATA controllers" msgstr "SATA контролери" #: harddrake/data.pm:73 #, c-format msgid "RAID controllers" msgstr "RAID контролери" #: harddrake/data.pm:83 #, c-format msgid "(E)IDE/ATA controllers" msgstr "(E)IDE/ATA контролери" #: harddrake/data.pm:93 #, fuzzy, c-format msgid "Card readers" msgstr "Модел на карта:" #: harddrake/data.pm:102 #, c-format msgid "Firewire controllers" msgstr "Firewire контролери" #: harddrake/data.pm:111 #, c-format msgid "PCMCIA controllers" msgstr "PCMCIA контролери" #: harddrake/data.pm:120 #, c-format msgid "SCSI controllers" msgstr "SCSI контролери" #: harddrake/data.pm:129 #, c-format msgid "USB controllers" msgstr "USB контролери" #: harddrake/data.pm:138 #, fuzzy, c-format msgid "USB ports" msgstr ", USB принтер" #: harddrake/data.pm:147 #, c-format msgid "SMBus controllers" msgstr "SMBus контролери" #: harddrake/data.pm:156 #, c-format msgid "Bridges and system controllers" msgstr "Бриджове и системни контролери" #: harddrake/data.pm:168 #, c-format msgid "Floppy" msgstr "Флопи" #: harddrake/data.pm:178 #, c-format msgid "Zip" msgstr "Zip устройство" #: harddrake/data.pm:194 #, c-format msgid "Hard Disk" msgstr "Диск" #: harddrake/data.pm:204 #, c-format msgid "USB Mass Storage Devices" msgstr "" #: harddrake/data.pm:213 #, c-format msgid "CDROM" msgstr "CDROM" #: harddrake/data.pm:223 #, c-format msgid "CD/DVD burners" msgstr "CD/DVD записващо" #: harddrake/data.pm:233 #, c-format msgid "DVD-ROM" msgstr "DVD-ROM" #: harddrake/data.pm:243 #, c-format msgid "Tape" msgstr "Лента" #: harddrake/data.pm:254 #, c-format msgid "AGP controllers" msgstr "AGP контролери" #: harddrake/data.pm:263 #, c-format msgid "Videocard" msgstr "Видео карта" #: harddrake/data.pm:272 #, c-format msgid "DVB card" msgstr "" #: harddrake/data.pm:280 #, c-format msgid "Tvcard" msgstr "TV карта" #: harddrake/data.pm:290 #, c-format msgid "Other MultiMedia devices" msgstr "Друга мултимедийни устройства" #: harddrake/data.pm:299 #, c-format msgid "Soundcard" msgstr "Звукова карта" #: harddrake/data.pm:312 #, c-format msgid "Webcam" msgstr "" #: harddrake/data.pm:326 #, c-format msgid "Processors" msgstr "Процесори" #: harddrake/data.pm:336 #, fuzzy, c-format msgid "ISDN adapters" msgstr "ISDN карта" #: harddrake/data.pm:347 #, c-format msgid "USB sound devices" msgstr "" #: harddrake/data.pm:356 #, c-format msgid "Radio cards" msgstr "" #: harddrake/data.pm:365 #, c-format msgid "ATM network cards" msgstr "" #: harddrake/data.pm:374 #, c-format msgid "WAN network cards" msgstr "" #: harddrake/data.pm:383 #, c-format msgid "Bluetooth devices" msgstr "" #: harddrake/data.pm:392 #, c-format msgid "Ethernetcard" msgstr "Ethernet карта" #: harddrake/data.pm:409 #, c-format msgid "Modem" msgstr "Модем" #: harddrake/data.pm:419 #, c-format msgid "ADSL adapters" msgstr "" #: harddrake/data.pm:431 #, c-format msgid "Memory" msgstr "Памет" #: harddrake/data.pm:440 #, c-format msgid "Printer" msgstr "Принтер" #. -PO: these are joysticks controllers: #: harddrake/data.pm:454 #, c-format msgid "Game port controllers" msgstr "" #: harddrake/data.pm:463 #, c-format msgid "Joystick" msgstr "Джойстик" #: harddrake/data.pm:473 #, c-format msgid "Keyboard" msgstr "Клавиатура" #: harddrake/data.pm:486 #, c-format msgid "Tablet and touchscreen" msgstr "" #: harddrake/data.pm:495 #, c-format msgid "Mouse" msgstr "Мишка" #: harddrake/data.pm:509 #, c-format msgid "Biometry" msgstr "" #: harddrake/data.pm:517 #, c-format msgid "UPS" msgstr "UPS" #: harddrake/data.pm:526 #, c-format msgid "Scanner" msgstr "Скенер" #: harddrake/data.pm:537 #, c-format msgid "Unknown/Others" msgstr "Неизвестни/Други" #: harddrake/data.pm:565 #, c-format msgid "cpu # " msgstr "cpu # " #: harddrake/sound.pm:285 #, c-format msgid "Please Wait... Applying the configuration" msgstr "Моля, почакайте ... Прилагане на настройките" #: harddrake/sound.pm:346 #, c-format msgid "Enable PulseAudio" msgstr "" #: harddrake/sound.pm:350 #, c-format msgid "Automatic routing from ALSA to PulseAudio" msgstr "" #: harddrake/sound.pm:355 #, c-format msgid "Enable 5.1 sound with Pulse Audio" msgstr "" #: harddrake/sound.pm:360 #, c-format msgid "Enable user switching for audio applications" msgstr "" #: harddrake/sound.pm:365 #, c-format msgid "Reset sound mixer to default values" msgstr "" #: harddrake/sound.pm:370 #, c-format msgid "Trouble shooting" msgstr "" #: harddrake/sound.pm:377 #, c-format msgid "No alternative driver" msgstr "Няма алтернативен драйвер" #: harddrake/sound.pm:378 #, c-format msgid "" "There's no known OSS/ALSA alternative driver for your sound card (%s) which " "currently uses \"%s\"" msgstr "" "Няма известнен OSS/ALSA алтернативен драйвер за вашата звукова карта (%s) " "която в момента използва \"%s\"" #: harddrake/sound.pm:385 #, c-format msgid "Sound configuration" msgstr "Настройка за звук" #: harddrake/sound.pm:387 #, c-format msgid "" "Here you can select an alternative driver (either OSS or ALSA) for your " "sound card (%s)." msgstr "" "Тук може да изберете алтернативен драйвер (OSS или ALSA) за вашата звукова " "карта (%s)." #. -PO: here the first %s is either "OSS" or "ALSA", #. -PO: the second %s is the name of the current driver #. -PO: and the third %s is the name of the default driver #: harddrake/sound.pm:392 #, c-format msgid "" "\n" "\n" "Your card currently use the %s\"%s\" driver (default driver for your card is " "\"%s\")" msgstr "" "\n" "\n" "Вашата карта в момента използва %s\"%s\" драйвер (подразбиращ драйвер за " "картата ви е \"%s\")" #: harddrake/sound.pm:394 #, c-format msgid "" "OSS (Open Sound System) was the first sound API. It's an OS independent " "sound API (it's available on most UNIX(tm) systems) but it's a very basic " "and limited API.\n" "What's more, OSS drivers all reinvent the wheel.\n" "\n" "ALSA (Advanced Linux Sound Architecture) is a modularized architecture " "which\n" "supports quite a large range of ISA, USB and PCI cards.\n" "\n" "It also provides a much higher API than OSS.\n" "\n" "To use alsa, one can either use:\n" "- the old compatibility OSS api\n" "- the new ALSA api that provides many enhanced features but requires using " "the ALSA library.\n" msgstr "" #: harddrake/sound.pm:408 harddrake/sound.pm:491 #, c-format msgid "Driver:" msgstr "Драйвер: " #: harddrake/sound.pm:422 #, c-format msgid "" "The old \"%s\" driver is blacklisted.\n" "\n" "It has been reported to oops the kernel on unloading.\n" "\n" "The new \"%s\" driver will only be used on next bootstrap." msgstr "" #: harddrake/sound.pm:430 #, c-format msgid "No open source driver" msgstr "" #: harddrake/sound.pm:431 #, c-format msgid "" "There's no free driver for your sound card (%s), but there's a proprietary " "driver at \"%s\"." msgstr "" "Няма свободен драйвер за вашата звукова карта (%s), но има собствени драйвер " "на \"%s\"." #: harddrake/sound.pm:434 #, c-format msgid "No known driver" msgstr "Няма известен драйвер" #: harddrake/sound.pm:435 #, c-format msgid "There's no known driver for your sound card (%s)" msgstr "Няма драйвер за вашата звукова карта (%s)" #: harddrake/sound.pm:450 #, c-format msgid "Sound trouble shooting" msgstr "Затруднения при звук" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX #: harddrake/sound.pm:453 #, c-format msgid "" "The classic bug sound tester is to run the following commands:\n" "\n" "\n" "- \"lspcidrake -v | fgrep -i AUDIO\" will tell you which driver your card " "uses\n" "by default\n" "\n" "- \"grep sound-slot /etc/modprobe.conf\" will tell you what driver it\n" "currently uses\n" "\n" "- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n" "loaded or not\n" "\n" "- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n" "tell you if sound and alsa services're configured to be run on\n" "initlevel 3\n" "\n" "- \"aumix -q\" will tell you if the sound volume is muted or not\n" "\n" "- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n" msgstr "" #: harddrake/sound.pm:480 #, c-format msgid "Let me pick any driver" msgstr "Нека избера драйвер" #: harddrake/sound.pm:483 #, c-format msgid "Choosing an arbitrary driver" msgstr "Избор на случаен драйвер" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX #: harddrake/sound.pm:486 #, c-format msgid "" "If you really think that you know which driver is the right one for your " "card\n" "you can pick one in the above list.\n" "\n" "The current driver for your \"%s\" sound card is \"%s\" " msgstr "" "Ако мислите , че знаете кой точно драйвер е за вашата карта\n" "вие може да го изберете от горният списък.\n" "\n" "Текущо използваният драйвер за вашата \"%s\" звукова карта е \"%s\" " #: harddrake/v4l.pm:12 #, c-format msgid "Auto-detect" msgstr "Автоматично засичане" #: harddrake/v4l.pm:97 harddrake/v4l.pm:285 harddrake/v4l.pm:337 #, c-format msgid "Unknown|Generic" msgstr "Неизвестен|Общ" #: harddrake/v4l.pm:130 #, c-format msgid "Unknown|CPH05X (bt878) [many vendors]" msgstr "Неизвестен|CPH05X (bt878) [много производители]" #: harddrake/v4l.pm:131 #, c-format msgid "Unknown|CPH06X (bt878) [many vendors]" msgstr "Неизвестен|CPH06X (bt878) [много производители]" #: harddrake/v4l.pm:475 #, c-format msgid "" "For most modern TV cards, the bttv module of the GNU/Linux kernel just auto-" "detect the rights parameters.\n" "If your card is misdetected, you can force the right tuner and card types " "here. Just select your tv card parameters if needed." msgstr "" #: harddrake/v4l.pm:478 #, c-format msgid "Card model:" msgstr "Модел на карта:" #: harddrake/v4l.pm:479 #, c-format msgid "Tuner type:" msgstr "Тип на тунер:" #: interactive.pm:128 interactive.pm:545 interactive/curses.pm:263 #: interactive/http.pm:103 interactive/http.pm:156 interactive/stdio.pm:39 #: interactive/stdio.pm:148 interactive/stdio.pm:149 ugtk2.pm:421 ugtk2.pm:519 #: ugtk2.pm:813 ugtk2.pm:836 #, c-format msgid "Ok" msgstr "Ok" #: interactive.pm:227 modules/interactive.pm:71 ugtk2.pm:812 wizards.pm:156 #, c-format msgid "Yes" msgstr "Да" #: interactive.pm:227 modules/interactive.pm:71 ugtk2.pm:812 wizards.pm:156 #, c-format msgid "No" msgstr "Не" #: interactive.pm:261 #, c-format msgid "Choose a file" msgstr "Изберете файл" #: interactive.pm:386 interactive/gtk.pm:436 #, c-format msgid "Add" msgstr "Добавя" #: interactive.pm:386 interactive/gtk.pm:436 #, c-format msgid "Modify" msgstr "Модифицира" #: interactive.pm:386 interactive/gtk.pm:436 #, c-format msgid "Remove" msgstr "Премахва" #: interactive.pm:545 interactive/curses.pm:263 ugtk2.pm:519 #, c-format msgid "Finish" msgstr "Завърши" #: interactive.pm:546 interactive/curses.pm:260 ugtk2.pm:517 #, c-format msgid "Previous" msgstr "Предишен" #: interactive/gtk.pm:564 #, c-format msgid "Beware, Caps Lock is enabled" msgstr "" #: interactive/stdio.pm:29 interactive/stdio.pm:154 #, c-format msgid "Bad choice, try again\n" msgstr "Лош избор, опитайте отново\n" #: interactive/stdio.pm:30 interactive/stdio.pm:155 #, c-format msgid "Your choice? (default %s) " msgstr "Вашият избор ? (по подразбиране е %s)" #: interactive/stdio.pm:54 #, c-format msgid "" "Entries you'll have to fill:\n" "%s" msgstr "" "Записите които вие ще трябва да запълните:\n" "%s" #: interactive/stdio.pm:70 #, c-format msgid "Your choice? (0/1, default `%s') " msgstr "Вашият избор ? (по подразбиране е `%s')" #: interactive/stdio.pm:97 #, c-format msgid "Button `%s': %s" msgstr "Бутон `%s': %s" #: interactive/stdio.pm:98 #, c-format msgid "Do you want to click on this button?" msgstr "Искате ли да цъкнете на този бутон?" #: interactive/stdio.pm:110 #, c-format msgid "Your choice? (default `%s'%s) " msgstr "Вашият избор ? (по подразбиране е `%s'%s) " #: interactive/stdio.pm:110 #, c-format msgid " enter `void' for void entry" msgstr "" #: interactive/stdio.pm:128 #, c-format msgid "=> There are many things to choose from (%s).\n" msgstr "=> Има много неща за избор от (%s).\n" #: interactive/stdio.pm:131 #, c-format msgid "" "Please choose the first number of the 10-range you wish to edit,\n" "or just hit Enter to proceed.\n" "Your choice? " msgstr "" #: interactive/stdio.pm:144 #, c-format msgid "" "=> Notice, a label changed:\n" "%s" msgstr "" "=> забележка, променен етикет:\n" "%s" #: interactive/stdio.pm:151 #, c-format msgid "Re-submit" msgstr "" #. -PO: the string "default:LTR" can be translated *ONLY* as "default:LTR" #. -PO: or as "default:RTL", depending if your language is written from #. -PO: left to right, or from right to left; any other string is wrong. #: lang.pm:193 #, c-format msgid "default:LTR" msgstr "default:LTR" #: lang.pm:210 #, c-format msgid "Andorra" msgstr "Андора" #: lang.pm:211 timezone.pm:226 #, c-format msgid "United Arab Emirates" msgstr "Обединени Арабски Емирства" #: lang.pm:212 #, c-format msgid "Afghanistan" msgstr "Афганистан" #: lang.pm:213 #, c-format msgid "Antigua and Barbuda" msgstr "Антигуа и Барбуда" #: lang.pm:214 #, c-format msgid "Anguilla" msgstr "Ангила" #: lang.pm:215 #, c-format msgid "Albania" msgstr "Албания" #: lang.pm:216 #, c-format msgid "Armenia" msgstr "Армения" #: lang.pm:217 #, c-format msgid "Netherlands Antilles" msgstr "Холандски Антили" #: lang.pm:218 #, c-format msgid "Angola" msgstr "Ангола" #: lang.pm:219 #, c-format msgid "Antarctica" msgstr "Антарктика" #: lang.pm:220 timezone.pm:271 #, c-format msgid "Argentina" msgstr "Аржентина" #: lang.pm:221 #, c-format msgid "American Samoa" msgstr "Американска Самоа" #: lang.pm:222 mirror.pm:12 timezone.pm:229 #, c-format msgid "Austria" msgstr "Австрия" #: lang.pm:223 mirror.pm:11 timezone.pm:267 #, c-format msgid "Australia" msgstr "Австралия" #: lang.pm:224 #, c-format msgid "Aruba" msgstr "Аруба" #: lang.pm:225 #, c-format msgid "Azerbaijan" msgstr "Азербайджан" #: lang.pm:226 #, c-format msgid "Bosnia and Herzegovina" msgstr "Босна и Херцеговина" #: lang.pm:227 #, c-format msgid "Barbados" msgstr "Барбадос" #: lang.pm:228 timezone.pm:211 #, c-format msgid "Bangladesh" msgstr "Бангладеш" #: lang.pm:229 mirror.pm:13 timezone.pm:231 #, c-format msgid "Belgium" msgstr "Белгия" #: lang.pm:230 #, c-format msgid "Burkina Faso" msgstr "Буркина Фасо" #: lang.pm:231 timezone.pm:232 #, c-format msgid "Bulgaria" msgstr "България" #: lang.pm:232 #, c-format msgid "Bahrain" msgstr "Бахрейн" #: lang.pm:233 #, c-format msgid "Burundi" msgstr "Бурунди" #: lang.pm:234 #, c-format msgid "Benin" msgstr "Бенин" #: lang.pm:235 #, c-format msgid "Bermuda" msgstr "Бермуда" #: lang.pm:236 #, c-format msgid "Brunei Darussalam" msgstr "Бруней" #: lang.pm:237 #, c-format msgid "Bolivia" msgstr "Боливия" #: lang.pm:238 mirror.pm:14 timezone.pm:272 #, c-format msgid "Brazil" msgstr "Бразилия" #: lang.pm:239 #, c-format msgid "Bahamas" msgstr "Бахами" #: lang.pm:240 #, c-format msgid "Bhutan" msgstr "Бутан" #: lang.pm:241 #, c-format msgid "Bouvet Island" msgstr "Остров Бувет" #: lang.pm:242 #, c-format msgid "Botswana" msgstr "Ботсвана" #: lang.pm:243 timezone.pm:230 #, c-format msgid "Belarus" msgstr "Беларус" #: lang.pm:244 #, c-format msgid "Belize" msgstr "Белиз" #: lang.pm:245 mirror.pm:15 timezone.pm:261 #, c-format msgid "Canada" msgstr "Канада" #: lang.pm:246 #, c-format msgid "Cocos (Keeling) Islands" msgstr "Кокосови Острови" #: lang.pm:247 #, c-format msgid "Congo (Kinshasa)" msgstr "Конго (Киншаса)" #: lang.pm:248 #, c-format msgid "Central African Republic" msgstr "Централноафриканска Република" #: lang.pm:249 #, c-format msgid "Congo (Brazzaville)" msgstr "Конго (Бразивил)" #: lang.pm:250 mirror.pm:39 timezone.pm:255 #, c-format msgid "Switzerland" msgstr "Швейцария" #: lang.pm:251 #, c-format msgid "Cote d'Ivoire" msgstr "Кот д'ивоар" #: lang.pm:252 #, c-format msgid "Cook Islands" msgstr "Острови Кук" #: lang.pm:253 timezone.pm:273 #, c-format msgid "Chile" msgstr "Чили" #: lang.pm:254 #, c-format msgid "Cameroon" msgstr "Камерун" #: lang.pm:255 timezone.pm:212 #, c-format msgid "China" msgstr "Китай" #: lang.pm:256 #, c-format msgid "Colombia" msgstr "Колумбия" #: lang.pm:257 mirror.pm:16 #, c-format msgid "Costa Rica" msgstr "Коста Рика" #: lang.pm:258 #, c-format msgid "Serbia & Montenegro" msgstr "Сърбия и Черна Гора" #: lang.pm:259 #, c-format msgid "Cuba" msgstr "Куба" #: lang.pm:260 #, c-format msgid "Cape Verde" msgstr "Капо Верде" #: lang.pm:261 #, c-format msgid "Christmas Island" msgstr "Коледни Острови" #: lang.pm:262 #, c-format msgid "Cyprus" msgstr "Кипър" #: lang.pm:263 mirror.pm:17 timezone.pm:233 #, c-format msgid "Czech Republic" msgstr "Чешка Република" #: lang.pm:264 mirror.pm:22 timezone.pm:238 #, c-format msgid "Germany" msgstr "Германия" #: lang.pm:265 #, c-format msgid "Djibouti" msgstr "Джибути" #: lang.pm:266 mirror.pm:18 timezone.pm:234 #, c-format msgid "Denmark" msgstr "Дания" #: lang.pm:267 #, c-format msgid "Dominica" msgstr "Доминика" #: lang.pm:268 #, c-format msgid "Dominican Republic" msgstr "Доминиканска Република" #: lang.pm:269 #, c-format msgid "Algeria" msgstr "Алжир" #: lang.pm:270 #, c-format msgid "Ecuador" msgstr "Еквадор" #: lang.pm:271 mirror.pm:19 timezone.pm:235 #, c-format msgid "Estonia" msgstr "Естония" #: lang.pm:272 #, c-format msgid "Egypt" msgstr "Египет" #: lang.pm:273 #, c-format msgid "Western Sahara" msgstr "Западна Сахара" #: lang.pm:274 #, c-format msgid "Eritrea" msgstr "Еритрея" #: lang.pm:275 mirror.pm:37 timezone.pm:253 #, c-format msgid "Spain" msgstr "Испания" #: lang.pm:276 #, c-format msgid "Ethiopia" msgstr "Етиопия" #: lang.pm:277 mirror.pm:20 timezone.pm:236 #, c-format msgid "Finland" msgstr "Финландия" #: lang.pm:278 #, c-format msgid "Fiji" msgstr "Фиджи" #: lang.pm:279 #, c-format msgid "Falkland Islands (Malvinas)" msgstr "Фолклендски Острови (Малвини)" #: lang.pm:280 #, c-format msgid "Micronesia" msgstr "Микронезия" #: lang.pm:281 #, c-format msgid "Faroe Islands" msgstr "Острови Фаро" #: lang.pm:282 mirror.pm:21 timezone.pm:237 #, c-format msgid "France" msgstr "Франция" #: lang.pm:283 #, c-format msgid "Gabon" msgstr "Габон" #: lang.pm:284 timezone.pm:257 #, c-format msgid "United Kingdom" msgstr "Англия" #: lang.pm:285 #, c-format msgid "Grenada" msgstr "Гренада" #: lang.pm:286 #, c-format msgid "Georgia" msgstr "Грузия" #: lang.pm:287 #, c-format msgid "French Guiana" msgstr "Френска Гвиана" #: lang.pm:288 #, c-format msgid "Ghana" msgstr "Гана" #: lang.pm:289 #, c-format msgid "Gibraltar" msgstr "Гибралтар" #: lang.pm:290 #, c-format msgid "Greenland" msgstr "Гренландия" #: lang.pm:291 #, c-format msgid "Gambia" msgstr "Гамбия" #: lang.pm:292 #, c-format msgid "Guinea" msgstr "Гвинея" #: lang.pm:293 #, c-format msgid "Guadeloupe" msgstr "Гваделупа" #: lang.pm:294 #, c-format msgid "Equatorial Guinea" msgstr "Екваториална Гвинея" #: lang.pm:295 mirror.pm:23 timezone.pm:239 #, c-format msgid "Greece" msgstr "Гърция" #: lang.pm:296 #, c-format msgid "South Georgia and the South Sandwich Islands" msgstr "Южни Сандвичеви Острови и Южна Джорджия" #: lang.pm:297 timezone.pm:262 #, c-format msgid "Guatemala" msgstr "Гватемала" #: lang.pm:298 #, c-format msgid "Guam" msgstr "Гуам" #: lang.pm:299 #, c-format msgid "Guinea-Bissau" msgstr "Гвинея-Бисау" #: lang.pm:300 #, c-format msgid "Guyana" msgstr "Гияна" #: lang.pm:301 #, fuzzy, c-format msgid "Hong Kong SAR (China)" msgstr "Хонг Конг" #: lang.pm:302 #, c-format msgid "Heard and McDonald Islands" msgstr "Хърд и МакДоналд Острови" #: lang.pm:303 #, c-format msgid "Honduras" msgstr "Хондурас" #: lang.pm:304 #, c-format msgid "Croatia" msgstr "Хърватия" #: lang.pm:305 #, c-format msgid "Haiti" msgstr "Хаити" #: lang.pm:306 mirror.pm:24 timezone.pm:240 #, c-format msgid "Hungary" msgstr "Унгария" #: lang.pm:307 timezone.pm:215 #, c-format msgid "Indonesia" msgstr "Индонезия" #: lang.pm:308 mirror.pm:25 timezone.pm:241 #, c-format msgid "Ireland" msgstr "Ирландия" #: lang.pm:309 mirror.pm:26 timezone.pm:217 #, c-format msgid "Israel" msgstr "Израел" #: lang.pm:310 timezone.pm:214 #, c-format msgid "India" msgstr "Индия" #: lang.pm:311 #, c-format msgid "British Indian Ocean Territory" msgstr "Английски територии в Индийския океан" #: lang.pm:312 #, c-format msgid "Iraq" msgstr "Ирак" #: lang.pm:313 timezone.pm:216 #, c-format msgid "Iran" msgstr "Иран" #: lang.pm:314 #, c-format msgid "Iceland" msgstr "Исландия" #: lang.pm:315 mirror.pm:27 timezone.pm:242 #, c-format msgid "Italy" msgstr "Италия" #: lang.pm:316 #, c-format msgid "Jamaica" msgstr "Ямайка" #: lang.pm:317 #, c-format msgid "Jordan" msgstr "Йордания" #: lang.pm:318 mirror.pm:28 timezone.pm:218 #, c-format msgid "Japan" msgstr "Япония" #: lang.pm:319 #, c-format msgid "Kenya" msgstr "Кения" #: lang.pm:320 #, c-format msgid "Kyrgyzstan" msgstr "Киргизтан" #: lang.pm:321 #, c-format msgid "Cambodia" msgstr "Камбоджа" #: lang.pm:322 #, c-format msgid "Kiribati" msgstr "Кирибати" #: lang.pm:323 #, c-format msgid "Comoros" msgstr "Комори" #: lang.pm:324 #, c-format msgid "Saint Kitts and Nevis" msgstr "Свети Китс и Невис" #: lang.pm:325 #, c-format msgid "Korea (North)" msgstr "Корея (Северна)" #: lang.pm:326 timezone.pm:219 #, c-format msgid "Korea" msgstr "Корея" #: lang.pm:327 #, c-format msgid "Kuwait" msgstr "Кувейт" #: lang.pm:328 #, c-format msgid "Cayman Islands" msgstr "Кайманови Острови" #: lang.pm:329 #, c-format msgid "Kazakhstan" msgstr "Казахстан" #: lang.pm:330 #, c-format msgid "Laos" msgstr "Лаос" #: lang.pm:331 #, c-format msgid "Lebanon" msgstr "Ливан" #: lang.pm:332 #, c-format msgid "Saint Lucia" msgstr "Санта Лучия" #: lang.pm:333 #, c-format msgid "Liechtenstein" msgstr "Лихтенщайн" #: lang.pm:334 #, c-format msgid "Sri Lanka" msgstr "Шри Ланка" #: lang.pm:335 #, c-format msgid "Liberia" msgstr "Либерия" #: lang.pm:336 #, c-format msgid "Lesotho" msgstr "Лесото" #: lang.pm:337 timezone.pm:243 #, c-format msgid "Lithuania" msgstr "Литва" #: lang.pm:338 timezone.pm:244 #, c-format msgid "Luxembourg" msgstr "Люксембург" #: lang.pm:339 #, c-format msgid "Latvia" msgstr "Латвия" #: lang.pm:340 #, c-format msgid "Libya" msgstr "Либия" #: lang.pm:341 #, c-format msgid "Morocco" msgstr "Мароко" #: lang.pm:342 #, c-format msgid "Monaco" msgstr "Монако" #: lang.pm:343 #, c-format msgid "Moldova" msgstr "Молдова" #: lang.pm:344 #, c-format msgid "Madagascar" msgstr "Мадагаскар" #: lang.pm:345 #, c-format msgid "Marshall Islands" msgstr "Маршалови Острови" #: lang.pm:346 #, c-format msgid "Macedonia" msgstr "Македония" #: lang.pm:347 #, c-format msgid "Mali" msgstr "Мали" #: lang.pm:348 #, c-format msgid "Myanmar" msgstr "Мианмар" #: lang.pm:349 #, c-format msgid "Mongolia" msgstr "Монголия" #: lang.pm:350 #, c-format msgid "Northern Mariana Islands" msgstr "Северни Марианови Острови" #: lang.pm:351 #, c-format msgid "Martinique" msgstr "Мартиника" #: lang.pm:352 #, c-format msgid "Mauritania" msgstr "Мавритания" #: lang.pm:353 #, c-format msgid "Montserrat" msgstr "Монсерат" #: lang.pm:354 #, c-format msgid "Malta" msgstr "Малта" #: lang.pm:355 #, c-format msgid "Mauritius" msgstr "Мавриций" #: lang.pm:356 #, c-format msgid "Maldives" msgstr "Малдиви" #: lang.pm:357 #, c-format msgid "Malawi" msgstr "Малави" #: lang.pm:358 timezone.pm:263 #, c-format msgid "Mexico" msgstr "Мексико" #: lang.pm:359 timezone.pm:220 #, c-format msgid "Malaysia" msgstr "Малайзия" #: lang.pm:360 #, c-format msgid "Mozambique" msgstr "Мозамбик" #: lang.pm:361 #, c-format msgid "Namibia" msgstr "Намибия" #: lang.pm:362 #, c-format msgid "New Caledonia" msgstr "Нова Каледония" #: lang.pm:363 #, c-format msgid "Niger" msgstr "Нигер" #: lang.pm:364 #, c-format msgid "Norfolk Island" msgstr "Норфолк Остров" #: lang.pm:365 #, c-format msgid "Nigeria" msgstr "Нигерия" #: lang.pm:366 #, c-format msgid "Nicaragua" msgstr "Никарагуа" #: lang.pm:367 mirror.pm:29 timezone.pm:245 #, c-format msgid "Netherlands" msgstr "Холандия" #: lang.pm:368 mirror.pm:31 timezone.pm:246 #, c-format msgid "Norway" msgstr "Норвегия" #: lang.pm:369 #, c-format msgid "Nepal" msgstr "Непал" #: lang.pm:370 #, c-format msgid "Nauru" msgstr "Науру" #: lang.pm:371 #, c-format msgid "Niue" msgstr "Нию" #: lang.pm:372 mirror.pm:30 timezone.pm:268 #, c-format msgid "New Zealand" msgstr "Нова Зеландия" #: lang.pm:373 #, c-format msgid "Oman" msgstr "Оман" #: lang.pm:374 #, c-format msgid "Panama" msgstr "Панама" #: lang.pm:375 #, c-format msgid "Peru" msgstr "Перу" #: lang.pm:376 #, c-format msgid "French Polynesia" msgstr "Френска Полинезия" #: lang.pm:377 #, c-format msgid "Papua New Guinea" msgstr "Папуа Нова Гвинея" #: lang.pm:378 timezone.pm:221 #, c-format msgid "Philippines" msgstr "Филипини" #: lang.pm:379 #, c-format msgid "Pakistan" msgstr "Пакистан" #: lang.pm:380 mirror.pm:32 timezone.pm:247 #, c-format msgid "Poland" msgstr "Полша" #: lang.pm:381 #, c-format msgid "Saint Pierre and Miquelon" msgstr "Свети Пиер и Микелон" #: lang.pm:382 #, c-format msgid "Pitcairn" msgstr "Питкеърн" #: lang.pm:383 #, c-format msgid "Puerto Rico" msgstr "Пуерто Рико" #: lang.pm:384 #, c-format msgid "Palestine" msgstr "Палестина" #: lang.pm:385 mirror.pm:33 timezone.pm:248 #, c-format msgid "Portugal" msgstr "Португалия" #: lang.pm:386 #, c-format msgid "Paraguay" msgstr "Парагвай" #: lang.pm:387 #, c-format msgid "Palau" msgstr "Палау" #: lang.pm:388 #, c-format msgid "Qatar" msgstr "Катар" #: lang.pm:389 #, c-format msgid "Reunion" msgstr "Риюниън" #: lang.pm:390 timezone.pm:249 #, c-format msgid "Romania" msgstr "Румъния" #: lang.pm:391 mirror.pm:34 #, c-format msgid "Russia" msgstr "Русия" #: lang.pm:392 #, c-format msgid "Rwanda" msgstr "Руанда" #: lang.pm:393 #, c-format msgid "Saudi Arabia" msgstr "Саудитска Арабия" #: lang.pm:394 #, c-format msgid "Solomon Islands" msgstr "Соломонови Острови" #: lang.pm:395 #, c-format msgid "Seychelles" msgstr "Сейшели" #: lang.pm:396 #, c-format msgid "Sudan" msgstr "Судан" #: lang.pm:397 mirror.pm:38 timezone.pm:254 #, c-format msgid "Sweden" msgstr "Швеция" #: lang.pm:398 timezone.pm:222 #, c-format msgid "Singapore" msgstr "Сингапур" #: lang.pm:399 #, c-format msgid "Saint Helena" msgstr "Света Елена" #: lang.pm:400 timezone.pm:252 #, c-format msgid "Slovenia" msgstr "Словения" #: lang.pm:401 #, c-format msgid "Svalbard and Jan Mayen Islands" msgstr "Свалбард и Ян Майен Острови" #: lang.pm:402 mirror.pm:35 timezone.pm:251 #, c-format msgid "Slovakia" msgstr "Словакия" #: lang.pm:403 #, c-format msgid "Sierra Leone" msgstr "Сиера Леоне" #: lang.pm:404 #, c-format msgid "San Marino" msgstr "Сан Марино" #: lang.pm:405 #, c-format msgid "Senegal" msgstr "Сенегал" #: lang.pm:406 #, c-format msgid "Somalia" msgstr "Сомалия" #: lang.pm:407 #, c-format msgid "Suriname" msgstr "Суринам" #: lang.pm:408 #, c-format msgid "Sao Tome and Principe" msgstr "Сао Томе и Принсипи" #: lang.pm:409 #, c-format msgid "El Salvador" msgstr "Ел Салвадор" #: lang.pm:410 #, c-format msgid "Syria" msgstr "Сирия" #: lang.pm:411 #, c-format msgid "Swaziland" msgstr "Свазиленд" #: lang.pm:412 #, c-format msgid "Turks and Caicos Islands" msgstr "Тюрк и Кайкос Острови" #: lang.pm:413 #, c-format msgid "Chad" msgstr "Чад" #: lang.pm:414 #, c-format msgid "French Southern Territories" msgstr "Франция Южни Територии" #: lang.pm:415 #, c-format msgid "Togo" msgstr "Того" #: lang.pm:416 mirror.pm:41 timezone.pm:224 #, c-format msgid "Thailand" msgstr "Тайланд" #: lang.pm:417 #, c-format msgid "Tajikistan" msgstr "Таджикистан" #: lang.pm:418 #, c-format msgid "Tokelau" msgstr "Токелау" #: lang.pm:419 #, c-format msgid "East Timor" msgstr "Източен Тимор" #: lang.pm:420 #, c-format msgid "Turkmenistan" msgstr "Туркменистан" #: lang.pm:421 #, c-format msgid "Tunisia" msgstr "Тунис" #: lang.pm:422 #, c-format msgid "Tonga" msgstr "Тонга" #: lang.pm:423 timezone.pm:225 #, c-format msgid "Turkey" msgstr "Турция" #: lang.pm:424 #, c-format msgid "Trinidad and Tobago" msgstr "Тринидад и Тобаго" #: lang.pm:425 #, c-format msgid "Tuvalu" msgstr "Тувалу" #: lang.pm:426 mirror.pm:40 timezone.pm:223 #, c-format msgid "Taiwan" msgstr "Тайван" #: lang.pm:427 timezone.pm:208 #, c-format msgid "Tanzania" msgstr "Танзания" #: lang.pm:428 timezone.pm:256 #, c-format msgid "Ukraine" msgstr "Украйна" #: lang.pm:429 #, c-format msgid "Uganda" msgstr "Уганда" #: lang.pm:430 #, c-format msgid "United States Minor Outlying Islands" msgstr "Малки Острови по крайбрежието на САЩ" #: lang.pm:431 mirror.pm:42 timezone.pm:264 #, c-format msgid "United States" msgstr "САЩ" #: lang.pm:432 #, c-format msgid "Uruguay" msgstr "Уругвай" #: lang.pm:433 #, c-format msgid "Uzbekistan" msgstr "Узбекистан" #: lang.pm:434 #, c-format msgid "Vatican" msgstr "Ватикана" #: lang.pm:435 #, c-format msgid "Saint Vincent and the Grenadines" msgstr "Свети Винсент и Гренадин" #: lang.pm:436 #, c-format msgid "Venezuela" msgstr "Венецуела" #: lang.pm:437 #, c-format msgid "Virgin Islands (British)" msgstr "Вирджински Острови (Британски)" #: lang.pm:438 #, c-format msgid "Virgin Islands (U.S.)" msgstr "Вирджински Острови (САЩ)" #: lang.pm:439 #, c-format msgid "Vietnam" msgstr "Виетнам" #: lang.pm:440 #, c-format msgid "Vanuatu" msgstr "Вануату" #: lang.pm:441 #, c-format msgid "Wallis and Futuna" msgstr "Уолис и Футуна Острови" #: lang.pm:442 #, c-format msgid "Samoa" msgstr "Самоа" #: lang.pm:443 #, c-format msgid "Yemen" msgstr "Йемен" #: lang.pm:444 #, c-format msgid "Mayotte" msgstr "Майот" #: lang.pm:445 mirror.pm:36 timezone.pm:207 #, c-format msgid "South Africa" msgstr "Южна Африка" #: lang.pm:446 #, c-format msgid "Zambia" msgstr "Замбия" #: lang.pm:447 #, c-format msgid "Zimbabwe" msgstr "Зимбабве" #: lang.pm:1208 #, c-format msgid "Welcome to %s" msgstr "Добре дошли в %s" #: lvm.pm:84 #, c-format msgid "Moving used physical extents to other physical volumes failed" msgstr "" #: lvm.pm:141 #, c-format msgid "Physical volume %s is still in use" msgstr "" #: lvm.pm:151 #, c-format msgid "Remove the logical volumes first\n" msgstr "Първо премахни логичните дялово\n" #: lvm.pm:184 #, c-format msgid "The bootloader can't handle /boot on multiple physical volumes" msgstr "" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX #: messages.pm:10 #, fuzzy, c-format msgid "" "Introduction\n" "\n" "The operating system and the different components available in the Mandriva " "Linux distribution \n" "shall be called the \"Software Products\" hereafter. The Software Products " "include, but are not \n" "restricted to, the set of programs, methods, rules and documentation related " "to the operating \n" "system and the different components of the Mandriva Linux distribution.\n" "\n" "\n" "1. License Agreement\n" "\n" "Please read this document carefully. This document is a license agreement " "between you and \n" "Mandriva S.A. which applies to the Software Products.\n" "By installing, duplicating or using the Software Products in any manner, you " "explicitly \n" "accept and fully agree to conform to the terms and conditions of this " "License. \n" "If you disagree with any portion of the License, you are not allowed to " "install, duplicate or use \n" "the Software Products. \n" "Any attempt to install, duplicate or use the Software Products in a manner " "which does not comply \n" "with the terms and conditions of this License is void and will terminate " "your rights under this \n" "License. Upon termination of the License, you must immediately destroy all " "copies of the \n" "Software Products.\n" "\n" "\n" "2. Limited Warranty\n" "\n" "The Software Products and attached documentation are provided \"as is\", " "with no warranty, to the \n" "extent permitted by law.\n" "Mandriva S.A. will, in no circumstances and to the extent permitted by law, " "be liable for any special,\n" "incidental, direct or indirect damages whatsoever (including without " "limitation damages for loss of \n" "business, interruption of business, financial loss, legal fees and penalties " "resulting from a court \n" "judgment, or any other consequential loss) arising out of the use or " "inability to use the Software \n" "Products, even if Mandriva S.A. has been advised of the possibility or " "occurrence of such \n" "damages.\n" "\n" "LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME " "COUNTRIES\n" "\n" "To the extent permitted by law, Mandriva S.A. or its distributors will, in " "no circumstances, be \n" "liable for any special, incidental, direct or indirect damages whatsoever " "(including without \n" "limitation damages for loss of business, interruption of business, financial " "loss, legal fees \n" "and penalties resulting from a court judgment, or any other consequential " "loss) arising out \n" "of the possession and use of software components or arising out of " "downloading software components \n" "from one of Mandriva Linux sites which are prohibited or restricted in some " "countries by local laws.\n" "This limited liability applies to, but is not restricted to, the strong " "cryptography components \n" "included in the Software Products.\n" "\n" "\n" "3. The GPL License and Related Licenses\n" "\n" "The Software Products consist of components created by different persons or " "entities. Most \n" "of these components are governed under the terms and conditions of the GNU " "General Public \n" "Licence, hereafter called \"GPL\", or of similar licenses. Most of these " "licenses allow you to use, \n" "duplicate, adapt or redistribute the components which they cover. Please " "read carefully the terms \n" "and conditions of the license agreement for each component before using any " "component. Any question \n" "on a component license should be addressed to the component author and not " "to Mandriva.\n" "The programs developed by Mandriva S.A. are governed by the GPL License. " "Documentation written \n" "by Mandriva S.A. is governed by a specific license. Please refer to the " "documentation for \n" "further details.\n" "\n" "\n" "4. Intellectual Property Rights\n" "\n" "All rights to the components of the Software Products belong to their " "respective authors and are \n" "protected by intellectual property and copyright laws applicable to software " "programs.\n" "Mandriva S.A. reserves its rights to modify or adapt the Software Products, " "as a whole or in \n" "parts, by all means and for all purposes.\n" "\"Mandriva\", \"Mandriva Linux\" and associated logos are trademarks of " "Mandriva S.A. \n" "\n" "\n" "5. Governing Laws \n" "\n" "If any portion of this agreement is held void, illegal or inapplicable by a " "court judgment, this \n" "portion is excluded from this contract. You remain bound by the other " "applicable sections of the \n" "agreement.\n" "The terms and conditions of this License are governed by the Laws of " "France.\n" "All disputes on the terms of this license will preferably be settled out of " "court. As a last \n" "resort, the dispute will be referred to the appropriate Courts of Law of " "Paris - France.\n" "For any question on this document, please contact Mandriva S.A. \n" msgstr "" "Въведение\n" "\n" "Операционната система и различните компоненти достъпни в Mandriva Linux " "дистрибуцията по-долу ще се\n" "наричат \"Софтуерен Продукти\". Софтуерните Продукти включват, но не се " "ограничават само до, набора\n" "програми, методи, правила и документация отнасяща се до операционната " "система и различните\n" "компоненти на Mandriva Linux дистрибуцията.\n" "\n" "\n" "1. Лицензионен договор\n" "\n" "Моля, прочетете внимателно този документ. Този документ е лицензионен " "договор между вас и\n" "Mandriva S.A., който се отнася до Софтуерния Продукт. Чрез инсталирането, " "копирането\n" "или използването на Софтуерния Продукт по какъвто и да е начин вие изрично " "приемате и\n" "напълно се съгласявате да спазвате сроковете и условията на този Лиценз.\n" "Ако не се съгласявате с някоя част на Лиценза, нямате право да инсталирате, " "копирате или\n" "използвате Софтуерния Продукт. Опитите да се инсталира, копира или използва " "Софтуерния Продукт\n" "несъобразно със сроковете и условията на този Лиценз се забраняват и такива " "прекратяват правата\n" "ви по този Лиценз. При прекратяване на Лиценза, трябва незабавно да " "унижтожите всички\n" "копия на Софтуерния лиценз.\n" "\n" "\n" "2. Ограничена гаранция\n" "\n" "Софтуерните Продукти и приложената документация се предоставят \"такива " "каквито са\", без гаранция,\n" "в рамките на разрешеното от закона.\n" "Mandriva S.A., при никакви обстоятелства и в рамките на закона, не е " "отговорна за каквито да e\n" "умишлени, случайни, преки или косвени щети (включително загуба на данни за " "работа, прекратяване на,\n" "работа, финансови загуби, законни данъци и наказания в резултат на съдебно " "решение или каквато и да е\n" "друга произлизащи от това загуби) произтичащи от употребата или от " "невъзможността да се употреби\n" "Софтуерния Продукт, даже ако Mandriva S.A. да е известила за възможността " "или случването на такава загуба.\n" "\n" "ОГРАНИЧЕНА ОТГОВОРНОСТ СВЪРЗАНА С ПРИТЕЖАВАНЕТО ИЛИ ИЗПОЛЗВАНЕТО НА ЗАБРАНЕН " "СОФТУЕР В НЯКОИ СТРАНИ\n" "\n" "В рамките на закона, Mandriva S.A. и нейните дистрибутори няма при никакви " "условия да бъдат\n" "отговорни за каквито и да било умишлени, случайни, преки или косвени щети " "(включително загуба на данни\n" "за работа, прекратяване на, работа, финансови загуби, законни данъци и " "наказания в резултат на\n" "съдебно решение или каквато и да е друга произлизащи от това загуби) " "произтичащи от притежаването\n" "и употребата на софтуерни компоненти и от изтеглянето на софтуерни " "компоненти от сайтовете на Mandriva Linux,\n" "които са забранени в някои страни от местното законодателство.\n" "Тази ограничена отговорност се отнася до, но не само за, мощните " "криптографски компоненти включени\n" "в Софтуерния Продукт.\n" "\n" "\n" "3. GPL Лиценза и придружаващи лицензи\n" "\n" "Софтуерният Продукт се състои от компоненти създадени от различни хора или " "организации. Повечето от\n" "тези компоненти се управляват от сроковете и условията на GNU Общия Публичен " "Лиценз, оттук нататък наричан\n" "\"GPL\", или подобни нему лицензи. Повечето от тези лицензи ви позволяват да " "използвате, копирате, или\n" "редистрибутирате компонентите, които те покриват. Моля, прочетете внимателно " "сроковете и условията на\n" "лицензионния договор на всеки компонент преди да го използвате. Всякакви " "въпроси относно лиценза\n" "на компонентите би трябвало да бъдат насочени към съответния им автор, а не " "към Mandriva.\n" "Програмите разработени от Mandriva S.A. се управляват от GPL Лиценза. " "Документацията написана\n" "от Mandriva S.A. се управлява от специален лиценз. Моля, погледнете " "документацията за\n" "повече информация.\n" "\n" "\n" "4. Права за Интелектуална Собственост\n" "\n" "Всички права към компонентите на Софтуерния Продукт принадлежат на " "съответните им автори и са\n" "защитени от законите за интелектуалната собственост и за копиране прилагани " "за софтуерните програми.\n" "Mandriva S.A. запазва правото си да модифицира и пригодява Софтуерния " "Продукт, като цяло или на\n" "части, по всякакъв начин и с всякакви цели.\n" "\"Mandriva\", \"Mandriva Linux\" и свързаните логота са запазена марка на " "Mandriva S.A.\n" "\n" "\n" "5. Управляващи Закони\n" "\n" "Ако някоя част от този договор се води забранена, нелегална или неприложима " "според решение на съд,\n" "тази част се изключва от договора. Вие оставате ограничени от останалите " "приложими секции на договора.\n" "Сроковете и условията на този Лиценз се управляват от Законите на Франция.\n" "Всички спорове по условията на този лиценз би било добре да се отнесат до " "съда. Като крайна мярка,\n" "споровете ще бъдат отнасяни до подходящия правни съдилища на Париж - " "Франция.\n" "За всякакви въпроси по този документ, моля, свържете се с Mandriva S.A.\n" "\n" "ЗАБЕЛЕЖКА: Това е български приблизителен превод на документа, което " "означава, че той\n" "вероятно не е достатъчно точен. Като по-достоверен източник ползвайте " "неговия оригинал на\n" "английски.\n" #: messages.pm:90 #, c-format msgid "" "Warning: Free Software may not necessarily be patent free, and some Free\n" "Software included may be covered by patents in your country. For example, " "the\n" "MP3 decoders included may require a licence for further usage (see\n" "http://www.mp3licensing.com for more details). If you are unsure if a " "patent\n" "may be applicable to you, check your local laws." msgstr "" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX #: messages.pm:98 #, c-format msgid "" "\n" "Warning\n" "\n" "Please read carefully the terms below. If you disagree with any\n" "portion, you are not allowed to install the next CD media. Press 'Refuse' \n" "to continue the installation without using these media.\n" "\n" "\n" "Some components contained in the next CD media are not governed\n" "by the GPL License or similar agreements. Each such component is then\n" "governed by the terms and conditions of its own specific license. \n" "Please read carefully and comply with such specific licenses before \n" "you use or redistribute the said components. \n" "Such licenses will in general prevent the transfer, duplication \n" "(except for backup purposes), redistribution, reverse engineering, \n" "de-assembly, de-compilation or modification of the component. \n" "Any breach of agreement will immediately terminate your rights under \n" "the specific license. Unless the specific license terms grant you such\n" "rights, you usually cannot install the programs on more than one\n" "system, or adapt it to be used on a network. In doubt, please contact \n" "directly the distributor or editor of the component. \n" "Transfer to third parties or copying of such components including the \n" "documentation is usually forbidden.\n" "\n" "\n" "All rights to the components of the next CD media belong to their \n" "respective authors and are protected by intellectual property and \n" "copyright laws applicable to software programs.\n" msgstr "" "\n" "Внимание\n" "\n" "Моля, прочетете условията по-долу. Ако не сте съгласни с някое от тях,\n" "не можете да продължите инсталацията на следващия CD носител. Натиснете\n" "'Откажи', за да продължите инсталацията без тези носители.\n" "\n" "\n" "Някои компоненти съдържащи се в следващия CD носител не са разпространяват\n" "под GPL Лиценза или подобен такъв. Всеки такъв компонент е под условията\n" "и положенията на специфичния му лиценз. Моля, прочетете внимателно и изцяло\n" "тези специфични лицензи преди да използвате или разпространявате " "споменатите\n" "компоненти.\n" "Такива лицензи по принцип предотвратява преноса, копирането (освен с цел\n" "съхранение), разпространяването, обратния инженеринг, деасемблирането\n" "декомпилацията или модификацията на компонентите.\n" "Всяко нарушаване на спогодбата незабавно преустановява правата ви по\n" "специфичния лиценз. Освен ако специфичния лиценз ви дава такива права,\n" "обикновено не можете да инсталирате програмите на повече от една система\n" "или да ги пригаждате за използване в мрежа. Ако не сте сигурни, моля\n" "свържете се с дистрибуция или редактора на компонена.\n" "Прехвърлянето на трети лица или копирането на всяка компонента, включително\n" "на документацията, обикновено са забранени.\n" "\n" "\n" "Всички права на компонентите от следващия CD носител принадлежат на\n" "съответните им автори и са защитени като интелектуална собственост от\n" "законите за авторски права приложими за софтуерните програми.\n" #. -PO: keep the double empty lines between sections, this is formatted a la LaTeX #: messages.pm:131 #, fuzzy, c-format msgid "" "Congratulations, installation is complete.\n" "Remove the boot media and press Enter to reboot.\n" "\n" "\n" "For information on fixes which are available for this release of Mandriva " "Linux,\n" "consult the Errata available from:\n" "\n" "\n" "%s\n" "\n" "\n" "Information on configuring your system is available in the post\n" "install chapter of the Official Mandriva Linux User's Guide." msgstr "" "Поздравления, инсталацията е преключена.\n" "Премахнете стартовото устройство и натисене Enter за да рестартирайте.\n" "\n" "\n" "За информация относно поправки, на тази версия на Mandriva Linux,\n" "се консултирайте с Errata, на адрес : \n" "\n" "\n" "%s\n" "\n" "\n" "Информация за настройване на системата ви можете да намерите в\n" "слединсталационната глава от Official Mandriva Linux User's Guide." #: modules/interactive.pm:19 #, fuzzy, c-format msgid "This driver has no configuration parameter!" msgstr "Настройка на CUPS принтер" #: modules/interactive.pm:22 #, c-format msgid "Module configuration" msgstr "Настройка на модул" #: modules/interactive.pm:22 #, c-format msgid "You can configure each parameter of the module here." msgstr "Вие може да конфигурирате всеки параметър на модулът тук." #: modules/interactive.pm:63 #, c-format msgid "Found %s interfaces" msgstr "Намерени са %s интерфейси" #: modules/interactive.pm:64 #, c-format msgid "Do you have another one?" msgstr "Имате ли друг(и) ?" #: modules/interactive.pm:65 #, c-format msgid "Do you have any %s interfaces?" msgstr "Имате ли някакъв %s интерфейс?" #: modules/interactive.pm:71 #, c-format msgid "See hardware info" msgstr "Виж хардуерната информация" #: modules/interactive.pm:82 #, fuzzy, c-format msgid "Installing driver for USB controller" msgstr "Инсталиране на драйвер за %s платка %s" #: modules/interactive.pm:83 #, fuzzy, c-format msgid "Installing driver for firewire controller %s" msgstr "Инсталиране на драйвер за %s платка %s" #: modules/interactive.pm:84 #, fuzzy, c-format msgid "Installing driver for hard drive controller %s" msgstr "Инсталиране на драйвер за %s платка %s" #: modules/interactive.pm:85 #, fuzzy, c-format msgid "Installing driver for ethernet controller %s" msgstr "Инсталиране на драйвер за %s платка %s" #. -PO: the first %s is the card type (scsi, network, sound,...) #. -PO: the second is the vendor+model name #: modules/interactive.pm:96 #, c-format msgid "Installing driver for %s card %s" msgstr "Инсталиране на драйвер за %s платка %s" #: modules/interactive.pm:110 #, c-format msgid "" "You may now provide options to module %s.\n" "Note that any address should be entered with the prefix 0x like '0x123'" msgstr "" #: modules/interactive.pm:116 #, c-format msgid "" "You may now provide options to module %s.\n" "Options are in format ``name=value name2=value2 ...''.\n" "For instance, ``io=0x300 irq=7''" msgstr "" "Сега можете да подадете опциите му до модула %s.\n" "Опциите са във формат ``име=стойност име2=стойност2 ...''.\n" "Например: ``io=0x300 irq=7''" #: modules/interactive.pm:118 #, c-format msgid "Module options:" msgstr "Опции на модула:" #. -PO: the %s is the driver type (scsi, network, sound,...) #: modules/interactive.pm:131 #, c-format msgid "Which %s driver should I try?" msgstr "Кой %s драйвер да пробвам ?" #: modules/interactive.pm:140 #, c-format msgid "" "In some cases, the %s driver needs to have extra information to work\n" "properly, although it normally works fine without them. Would you like to " "specify\n" "extra options for it or allow the driver to probe your machine for the\n" "information it needs? Occasionally, probing will hang a computer, but it " "should\n" "not cause any damage." msgstr "" "В някои случаи, %s драйверът се нуждае от допълнителна информация, за\n" "да работи коректно, въпреки че нормално работи и без нея. Желаете ли " "даподадете\n" "допълнителни опции за него или да разрешите на драйвера да потърси " "информацията\n" "от която се нуждае ? По принцип това може да забие компютъра ви, но няма да " "го повреди." #: modules/interactive.pm:144 #, c-format msgid "Autoprobe" msgstr "Автоматично засичане" #: modules/interactive.pm:144 #, c-format msgid "Specify options" msgstr "Задай опции" #: modules/interactive.pm:156 #, c-format msgid "" "Loading module %s failed.\n" "Do you want to try again with other parameters?" msgstr "" "Зареждането на модула %s не успя.\n" "Искате ли да опитате отново с други параметри ?" #: partition_table.pm:409 #, c-format msgid "mount failed: " msgstr "монтирането не успя: " #: partition_table.pm:518 #, c-format msgid "Extended partition not supported on this platform" msgstr "Разширени дялове не се поддържат на тази платформа" #: partition_table.pm:536 #, c-format msgid "" "You have a hole in your partition table but I can not use it.\n" "The only solution is to move your primary partitions to have the hole next " "to the extended partitions." msgstr "" "Имате празнина в таблицата с дяловете, но не мога да я използвам.\n" "Единственият начин е да преместите главните си дялове, за да имате празно " "място след extended-дяловете" #: partition_table/raw.pm:285 #, c-format msgid "" "Something bad is happening on your drive. \n" "A test to check the integrity of data has failed. \n" "It means writing anything on the disk will end up with random, corrupted " "data." msgstr "" "Нещо лошо става с устройството ви.\n" "Теста за целост на данните пропадна.\n" "Това значи, че писането на каквото и било по диска ще превръща\n" "произволно в боклук" #: pkgs.pm:228 pkgs.pm:231 pkgs.pm:240 #, c-format msgid "Unused packages removal" msgstr "" #: pkgs.pm:228 #, c-format msgid "Finding unused hardware packages..." msgstr "" #: pkgs.pm:231 #, c-format msgid "Finding unused localization packages..." msgstr "" #: pkgs.pm:241 #, c-format msgid "" "We have detected that some packages are not needed for your system " "configuration." msgstr "" #: pkgs.pm:242 #, c-format msgid "We will remove the following packages, unless you choose otherwise:" msgstr "" #: pkgs.pm:245 pkgs.pm:246 #, fuzzy, c-format msgid "Unused hardware support" msgstr "разрешава подръжка на радио" #: pkgs.pm:249 pkgs.pm:250 #, c-format msgid "Unused localization" msgstr "" #: raid.pm:42 #, fuzzy, c-format msgid "Can not add a partition to _formatted_ RAID %s" msgstr "Не мога да прибавя дял към _форматиран_ RAID md%d" #: raid.pm:157 #, c-format msgid "Not enough partitions for RAID level %d\n" msgstr "Няма достатъчно дялове за RAID ниво %d\n" #: scanner.pm:95 #, c-format msgid "Could not create directory /usr/share/sane/firmware!" msgstr "" #: scanner.pm:106 #, c-format msgid "Could not create link /usr/share/sane/%s!" msgstr "" #: scanner.pm:113 #, c-format msgid "Could not copy firmware file %s to /usr/share/sane/firmware!" msgstr "" #: scanner.pm:120 #, c-format msgid "Could not set permissions of firmware file %s!" msgstr "" #: scanner.pm:200 #, c-format msgid "Scannerdrake" msgstr "Скенердрейк" #: scanner.pm:201 #, c-format msgid "Could not install the packages needed to share your scanner(s)." msgstr "" #: scanner.pm:202 #, c-format msgid "Your scanner(s) will not be available for non-root users." msgstr "" #: security/help.pm:11 #, fuzzy, c-format msgid "Accept bogus IPv4 error messages." msgstr "Приема съобщения за IPv4 грешки." #: security/help.pm:13 #, fuzzy, c-format msgid "Accept broadcasted icmp echo." msgstr "Приема broadcast-нато icmp echo" #: security/help.pm:15 #, fuzzy, c-format msgid "Accept icmp echo." msgstr "Позволява/Забранява icmp echo." #: security/help.pm:17 #, fuzzy, c-format msgid "Allow autologin." msgstr "Позволява/Забранява автоматично влизане." #. -PO: here "ALL" is a value in a pull-down menu; translate it the same as "ALL" is #: security/help.pm:21 #, c-format msgid "" "If set to \"ALL\", /etc/issue and /etc/issue.net are allowed to exist.\n" "\n" "If set to \"None\", no issues are allowed.\n" "\n" "Else only /etc/issue is allowed." msgstr "" #: security/help.pm:27 #, fuzzy, c-format msgid "Allow reboot by the console user." msgstr "Позволява/Забранява престартиране от потребител на конзола." #: security/help.pm:29 #, fuzzy, c-format msgid "Allow remote root login." msgstr "Позволява отдалечено влизане на root." #: security/help.pm:31 #, fuzzy, c-format msgid "Allow direct root login." msgstr "Позволява/Забранява директно влизане на root." #: security/help.pm:33 #, c-format msgid "" "Allow the list of users on the system on display managers (kdm and gdm)." msgstr "" #: security/help.pm:35 #, c-format msgid "" "Allow to export display when\n" "passing from the root account to the other users.\n" "\n" "See pam_xauth(8) for more details.'" msgstr "" #: security/help.pm:40 #, c-format msgid "" "Allow X connections:\n" "\n" "- \"All\" (all connections are allowed),\n" "\n" "- \"Local\" (only connection from local machine),\n" "\n" "- \"None\" (no connection)." msgstr "" #: security/help.pm:48 #, c-format msgid "" "The argument specifies if clients are authorized to connect\n" "to the X server from the network on the tcp port 6000 or not." msgstr "" #. -PO: here "ALL", "Local" and "None" are values in a pull-down menu; translate them the same as they're #: security/help.pm:53 #, c-format msgid "" "Authorize:\n" "\n" "- all services controlled by tcp_wrappers (see hosts.deny(5) man page) if " "set to \"ALL\",\n" "\n" "- only local ones if set to \"Local\"\n" "\n" "- none if set to \"None\".\n" "\n" "To authorize the services you need, use /etc/hosts.allow (see hosts.allow" "(5))." msgstr "" #: security/help.pm:63 #, c-format msgid "" "If SERVER_LEVEL (or SECURE_LEVEL if absent)\n" "is greater than 3 in /etc/security/msec/security.conf, creates the\n" "symlink /etc/security/msec/server to point to\n" "/etc/security/msec/server.<SERVER_LEVEL>.\n" "\n" "The /etc/security/msec/server is used by chkconfig --add to decide to\n" "add a service if it is present in the file during the installation of\n" "packages." msgstr "" #: security/help.pm:72 #, c-format msgid "" "Enable crontab and at for users.\n" "\n" "Put allowed users in /etc/cron.allow and /etc/at.allow (see man at(1)\n" "and crontab(1))." msgstr "" #: security/help.pm:77 #, c-format msgid "Enable syslog reports to console 12" msgstr "" #: security/help.pm:79 #, c-format msgid "" "Enable name resolution spoofing protection. If\n" "\"%s\" is true, also reports to syslog." msgstr "" #: security/help.pm:80 #, c-format msgid "Security Alerts:" msgstr "Предупреждения за защита:" #: security/help.pm:82 #, fuzzy, c-format msgid "Enable IP spoofing protection." msgstr "Разрешава/Забранява защитата от IP spoofing." #: security/help.pm:84 #, c-format msgid "Enable libsafe if libsafe is found on the system." msgstr "" #: security/help.pm:86 #, c-format msgid "Enable the logging of IPv4 strange packets." msgstr "" #: security/help.pm:88 #, fuzzy, c-format msgid "Enable msec hourly security check." msgstr "Разрешава/Забранява ежечасова проверка на сигурността" #: security/help.pm:90 #, c-format msgid "" "Enable su only from members of the wheel group. If set to no, allows su from " "any user." msgstr "" #: security/help.pm:92 #, c-format msgid "Use password to authenticate users." msgstr "" #: security/help.pm:94 #, fuzzy, c-format msgid "Activate ethernet cards promiscuity check." msgstr "Разрешава/Забранява ежедневна проверка за защита" #: security/help.pm:96 #, fuzzy, c-format msgid "Activate daily security check." msgstr "Разрешава/Забранява ежедневна проверка за защита" #: security/help.pm:98 #, c-format msgid "Enable sulogin(8) in single user level." msgstr "" #: security/help.pm:100 #, c-format msgid "Add the name as an exception to the handling of password aging by msec." msgstr "" #: security/help.pm:102 #, c-format msgid "Set password aging to \"max\" days and delay to change to \"inactive\"." msgstr "" #: security/help.pm:104 #, c-format msgid "Set the password history length to prevent password reuse." msgstr "" #: security/help.pm:106 #, c-format msgid "" "Set the password minimum length and minimum number of digit and minimum " "number of capitalized letters." msgstr "" "Задава паролата минималната дължина на паролата, минимален брой цифри и " "минимален брой главни букви." #: security/help.pm:108 #, fuzzy, c-format msgid "Set the root's file mode creation mask." msgstr "Установяване на root umask." #: security/help.pm:109 #, c-format msgid "if set to yes, check open ports." msgstr "ако е зададено да, проверява отворените портове" #: security/help.pm:110 #, c-format msgid "" "if set to yes, check for:\n" "\n" "- empty passwords,\n" "\n" "- no password in /etc/shadow\n" "\n" "- for users with the 0 id other than root." msgstr "" "ако е включено,проверява :\n" "\n" "- за празни пароли,\n" "\n" "- дали няма пароли в /etc/shadow\n" "- за потребители различни от root" #: security/help.pm:117 #, c-format msgid "if set to yes, check permissions of files in the users' home." msgstr "" #: security/help.pm:118 #, c-format msgid "if set to yes, check if the network devices are in promiscuous mode." msgstr "" #: security/help.pm:119 #, c-format msgid "if set to yes, run the daily security checks." msgstr "" #: security/help.pm:120 #, c-format msgid "if set to yes, check additions/removals of sgid files." msgstr "" #: security/help.pm:121 #, c-format msgid "if set to yes, check empty password in /etc/shadow." msgstr "" #: security/help.pm:122 #, c-format msgid "if set to yes, verify checksum of the suid/sgid files." msgstr "" #: security/help.pm:123 #, c-format msgid "if set to yes, check additions/removals of suid root files." msgstr "ако е включено,проверява добавянето/премахването на suid root файлове" #: security/help.pm:124 #, c-format msgid "if set to yes, report unowned files." msgstr "" #: security/help.pm:125 #, c-format msgid "if set to yes, check files/directories writable by everybody." msgstr "" "ако е задаено да, проверява файловете/директориите достъпни за писане от " "всеки." #: security/help.pm:126 #, c-format msgid "if set to yes, run chkrootkit checks." msgstr "" #: security/help.pm:127 #, c-format msgid "" "if set, send the mail report to this email address else send it to root." msgstr "" #: security/help.pm:128 #, c-format msgid "if set to yes, report check result by mail." msgstr "ако е задаено да, изпраща по пощата съобщение за резултата." #: security/help.pm:129 #, c-format msgid "Do not send mails if there's nothing to warn about" msgstr "" #: security/help.pm:130 #, c-format msgid "if set to yes, run some checks against the rpm database." msgstr "" #: security/help.pm:131 #, c-format msgid "if set to yes, report check result to syslog." msgstr "" #: security/help.pm:132 #, c-format msgid "if set to yes, reports check result to tty." msgstr "ако е задаено да, изпраща резултата от проверката на tty." #: security/help.pm:134 #, c-format msgid "Set shell commands history size. A value of -1 means unlimited." msgstr "" #: security/help.pm:136 #, c-format msgid "Set the shell timeout. A value of zero means no timeout." msgstr "" #: security/help.pm:136 #, c-format msgid "Timeout unit is second" msgstr "" #: security/help.pm:138 #, fuzzy, c-format msgid "Set the user's file mode creation mask." msgstr "Установяване на потребителска umask" #: security/l10n.pm:11 #, c-format msgid "Accept bogus IPv4 error messages" msgstr "Приема съобщения за IPv4 грешки." #: security/l10n.pm:12 #, c-format msgid "Accept broadcasted icmp echo" msgstr "Приема broadcast-нато icmp echo" #: security/l10n.pm:13 #, c-format msgid "Accept icmp echo" msgstr "" #: security/l10n.pm:15 #, c-format msgid "/etc/issue* exist" msgstr "" #: security/l10n.pm:16 #, c-format msgid "Reboot by the console user" msgstr "" #: security/l10n.pm:17 #, c-format msgid "Allow remote root login" msgstr "Позволява отдалечено влизане на root." #: security/l10n.pm:18 #, c-format msgid "Direct root login" msgstr "" #: security/l10n.pm:19 #, c-format msgid "List users on display managers (kdm and gdm)" msgstr "" #: security/l10n.pm:20 #, c-format msgid "Export display when passing from root to the other users" msgstr "" #: security/l10n.pm:21 #, c-format msgid "Allow X Window connections" msgstr "Позволява X Window връзки" #: security/l10n.pm:22 #, c-format msgid "Authorize TCP connections to X Window" msgstr "" #: security/l10n.pm:23 #, c-format msgid "Authorize all services controlled by tcp_wrappers" msgstr "" #: security/l10n.pm:24 #, c-format msgid "Chkconfig obey msec rules" msgstr "Chkconfig спазва msec правилата" #: security/l10n.pm:25 #, c-format msgid "Enable \"crontab\" and \"at\" for users" msgstr "" #: security/l10n.pm:26 #, c-format msgid "Syslog reports to console 12" msgstr "" #: security/l10n.pm:27 #, c-format msgid "Name resolution spoofing protection" msgstr "" #: security/l10n.pm:28 #, c-format msgid "Enable IP spoofing protection" msgstr "" #: security/l10n.pm:29 #, c-format msgid "Enable libsafe if libsafe is found on the system" msgstr "" #: security/l10n.pm:30 #, c-format msgid "Enable the logging of IPv4 strange packets" msgstr "" #: security/l10n.pm:31 #, c-format msgid "Enable msec hourly security check" msgstr "" #: security/l10n.pm:32 #, c-format msgid "Enable su only from the wheel group members" msgstr "" #: security/l10n.pm:33 #, c-format msgid "Use password to authenticate users" msgstr "Използва парола за разпознаване на потребителите" #: security/l10n.pm:34 #, c-format msgid "Ethernet cards promiscuity check" msgstr "" #: security/l10n.pm:35 #, c-format msgid "Daily security check" msgstr "" #: security/l10n.pm:36 #, c-format msgid "Sulogin(8) in single user level" msgstr "" #: security/l10n.pm:37 #, c-format msgid "No password aging for" msgstr "Без остаряване на паролата за" #: security/l10n.pm:38 #, c-format msgid "Set password expiration and account inactivation delays" msgstr "" #: security/l10n.pm:39 #, c-format msgid "Password history length" msgstr "Дължина на \"историята\" на паролите" #: security/l10n.pm:40 #, c-format msgid "Password minimum length and number of digits and upcase letters" msgstr "" #: security/l10n.pm:41 #, c-format msgid "Root umask" msgstr "Root umask" #: security/l10n.pm:42 #, c-format msgid "Shell history size" msgstr "" #: security/l10n.pm:43 #, c-format msgid "Shell timeout" msgstr "Шел време за достъп" #: security/l10n.pm:44 #, c-format msgid "User umask" msgstr "Потребителска маска" #: security/l10n.pm:45 #, c-format msgid "Check open ports" msgstr "Проверява отворените портове" #: security/l10n.pm:46 #, c-format msgid "Check for unsecured accounts" msgstr "" #: security/l10n.pm:47 #, c-format msgid "Check permissions of files in the users' home" msgstr "" #: security/l10n.pm:48 #, c-format msgid "Check if the network devices are in promiscuous mode" msgstr "" #: security/l10n.pm:49 #, c-format msgid "Run the daily security checks" msgstr "Пуска ежедневна проверка за сигурност" #: security/l10n.pm:50 #, c-format msgid "Check additions/removals of sgid files" msgstr "" #: security/l10n.pm:51 #, c-format msgid "Check empty password in /etc/shadow" msgstr "" #: security/l10n.pm:52 #, c-format msgid "Verify checksum of the suid/sgid files" msgstr "" #: security/l10n.pm:53 #, c-format msgid "Check additions/removals of suid root files" msgstr "" #: security/l10n.pm:54 #, c-format msgid "Report unowned files" msgstr "" #: security/l10n.pm:55 #, c-format msgid "Check files/directories writable by everybody" msgstr "Проверява файловете/директориите достъпни за писане от всеки." #: security/l10n.pm:56 #, c-format msgid "Run chkrootkit checks" msgstr "" #: security/l10n.pm:57 #, c-format msgid "Do not send empty mail reports" msgstr "" #: security/l10n.pm:58 #, c-format msgid "If set, send the mail report to this email address else send it to root" msgstr "Ако е включено, праща отчет на този е-адрес,иначе праща на root." #: security/l10n.pm:59 #, c-format msgid "Report check result by mail" msgstr "изпраща съобщение за резултата по е-пощата." #: security/l10n.pm:60 #, c-format msgid "Run some checks against the rpm database" msgstr "" #: security/l10n.pm:61 #, c-format msgid "Report check result to syslog" msgstr "Изпраща резултатра от проверката към syslog" #: security/l10n.pm:62 #, c-format msgid "Reports check result to tty" msgstr "Изпраща резултата от проверката на tty." #: security/level.pm:10 #, c-format msgid "Welcome To Crackers" msgstr "Добре дошли при Cracker-ите" #: security/level.pm:11 #, c-format msgid "Poor" msgstr "Лошо" #: security/level.pm:12 #, c-format msgid "Standard" msgstr "Стандартна" #: security/level.pm:13 #, c-format msgid "High" msgstr "Високо" #: security/level.pm:14 #, c-format msgid "Higher" msgstr "По-високо" #: security/level.pm:15 #, c-format msgid "Paranoid" msgstr "Параноично" #: security/level.pm:41 #, c-format msgid "" "This level is to be used with care. It makes your system more easy to use,\n" "but very sensitive. It must not be used for a machine connected to others\n" "or to the Internet. There is no password access." msgstr "" "Това ниво се използва с внимание. Това кара системата ви по-лесна за\n" "употреба, но е по-чувствително: не трябва да бъде използвана на машини\n" "свързани с други или по Интернет. Няма достъп с пароли." #: security/level.pm:44 #, c-format msgid "" "Passwords are now enabled, but use as a networked computer is still not " "recommended." msgstr "" "Паролата сега е включена, но използването като мрежов компютър не е " "препоръчително." #: security/level.pm:45 #, c-format msgid "" "This is the standard security recommended for a computer that will be used " "to connect to the Internet as a client." msgstr "" "Това е стандартната сигурност препоръчителна за компютър, който ще бъде " "използван да се свързва към Интернет като клиент." #: security/level.pm:46 #, c-format msgid "" "There are already some restrictions, and more automatic checks are run every " "night." msgstr "" "Вече има някой ограничения, и повече автоматични проверки ще се изпълняват " "всяка вечер." #: security/level.pm:47 #, c-format msgid "" "With this security level, the use of this system as a server becomes " "possible.\n" "The security is now high enough to use the system as a server which can " "accept\n" "connections from many clients. Note: if your machine is only a client on the " "Internet, you should choose a lower level." msgstr "" "С това ниво на сигурност, ползването на системата като сървър става " "възможно.\n" "Сигурността сега е достатъчно голяма да се използва системата като\n" "сървър приемащ връзки от много клиенти. " #: security/level.pm:50 #, c-format msgid "" "This is similar to the previous level, but the system is entirely closed and " "security features are at their maximum." msgstr "" "Подобно на предишното ниво, но системата е напълно затворена.\n" "Нивото на сигурност е на максимума си." #: security/level.pm:55 #, c-format msgid "Security" msgstr "Сигурност" #: security/level.pm:55 #, c-format msgid "DrakSec Basic Options" msgstr "Основни опции на DrakSec " #: security/level.pm:58 #, c-format msgid "Please choose the desired security level" msgstr "Моля, изберете ниво на сигурност" #. -PO: this string is used to properly format "<security level>: <level description>" #: security/level.pm:62 #, c-format msgid "%s: %s" msgstr "" #: security/level.pm:66 #, c-format msgid "Use libsafe for servers" msgstr "Използвайте libsafe за сървъри" #: security/level.pm:67 #, c-format msgid "" "A library which defends against buffer overflow and format string attacks." msgstr "" "Библиотека, която осигурява защита от атаки с препълване на буфер и форматни " "стрингове." #: security/level.pm:68 #, c-format msgid "Security Administrator:" msgstr "Администратор по защита:" #: security/level.pm:69 #, c-format msgid "Login or email:" msgstr "" #: services.pm:19 #, c-format msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system" msgstr "Пусни ALSA (Advanced Linux Sound Architecture) звуковата система" #: services.pm:20 #, c-format msgid "Anacron is a periodic command scheduler." msgstr "Anacrton - периодично изпълняване на команди по разписание." #: services.pm:21 #, c-format msgid "" "apmd is used for monitoring battery status and logging it via syslog.\n" "It can also be used for shutting down the machine when the battery is low." msgstr "" "apmd се използва за наблюдение на батерията и записвайки статуса чрез\n" "syslog. Може също да се използва за спиране на машината, когато батерията е " "изтощена." #: services.pm:23 #, c-format msgid "" "Runs commands scheduled by the at command at the time specified when\n" "at was run, and runs batch commands when the load average is low enough." msgstr "" "Пуска команди по разписание във време определено от командата at и пуска\n" "набор от други, когато натовареността спадне достатъчно." #: services.pm:25 #, c-format msgid "" "cron is a standard UNIX program that runs user-specified programs\n" "at periodic scheduled times. vixie cron adds a number of features to the " "basic\n" "UNIX cron, including better security and more powerful configuration options." msgstr "" "cron е стандартна UNIX програма, която периодично пуска определени програми\n" "по разписание. vixie cron добавя множество преимущества над тези на простия\n" "UNIX cron, включително по-добра сигурност и мощни настройващи опции." #: services.pm:28 #, c-format msgid "" "Common UNIX Printing System (CUPS) is an advanced printer spooling system" msgstr "" #: services.pm:29 #, c-format msgid "Launches the graphical display manager" msgstr "" #: services.pm:30 #, c-format msgid "" "FAM is a file monitoring daemon. It is used to get reports when files " "change.\n" "It is used by GNOME and KDE" msgstr "" #: services.pm:32 #, c-format msgid "" "GPM adds mouse support to text-based Linux applications such the\n" "Midnight Commander. It also allows mouse-based console cut-and-paste " "operations,\n" "and includes support for pop-up menus on the console." msgstr "" "GPM добавя поддръжка на мишка в текстово-базираните Linux приложения като\n" "Midnight Commander. Също така позволява базираните на мишка конзоли\n" "режи-и-лепи операции, и включва поддръжка на изкачащи менюта на козолата." #: services.pm:35 #, c-format msgid "HAL is a daemon that collects and maintains information about hardware" msgstr "" #: services.pm:36 #, c-format msgid "" "HardDrake runs a hardware probe, and optionally configures\n" "new/changed hardware." msgstr "" "HardDrake прави проби на хардуера, и евентуално настройва\n" "нов/променен хардуер." #: services.pm:38 #, c-format msgid "" "Apache is a World Wide Web server. It is used to serve HTML files and CGI." msgstr "" "Apache е World Wide Web (WWW) сървър. Той служи да обработва на HTML " "файлове\n" "и CGI." #: services.pm:39 #, c-format msgid "" "The internet superserver daemon (commonly called inetd) starts a\n" "variety of other internet services as needed. It is responsible for " "starting\n" "many services, including telnet, ftp, rsh, and rlogin. Disabling inetd " "disables\n" "all of the services it is responsible for." msgstr "" "Internet superserver daemon (често наричан inetd) пуска различни други\n" "Интернет услуги. Той отговаря за пускането на много услуги от рода на\n" "telnet, ftp, rsh и rlogin. Изключването на inetd изключва всички услуги,\n" "за които отговаря." #: services.pm:43 #, c-format msgid "" "Launch packet filtering for Linux kernel 2.2 series, to set\n" "up a firewall to protect your machine from network attacks." msgstr "" "Включи филтрирането на пакети за Linux ядра серия 2.2, за\n" "настрока на защитната стена, s cel защитава на машината ви от\n" "мрежови атаки." #: services.pm:45 #, c-format msgid "" "This package loads the selected keyboard map as set in\n" "/etc/sysconfig/keyboard. This can be selected using the kbdconfig utility.\n" "You should leave this enabled for most machines." msgstr "" "Този пакет зарежда маркираната клавиатурна наредба в /etc/sysconfig/" "keyboard.\n" "Тя може да бъде избрана с инструмента kbdconfig. Трябва да оставите " "товавключено за повечето машини." #: services.pm:48 #, c-format msgid "" "Automatic regeneration of kernel header in /boot for\n" "/usr/include/linux/{autoconf,version}.h" msgstr "" "Автоматично регенериране на header-ите на ядрото, в /boot за\n" "/usr/include/linux/{autoconf,version}.h" #: services.pm:50 #, c-format msgid "Automatic detection and configuration of hardware at boot." msgstr "Автоматично засичане и настройка на хардуера при стартиране." #: services.pm:51 #, c-format msgid "" "Linuxconf will sometimes arrange to perform various tasks\n" "at boot-time to maintain the system configuration." msgstr "" "Linuxconf понякога урежда извършването на различни задачи\n" "при стартиране за поддръжка на системната настройка." #: services.pm:53 #, c-format msgid "" "lpd is the print daemon required for lpr to work properly. It is\n" "basically a server that arbitrates print jobs to printer(s)." msgstr "" "lpd е демона за печат необходим на lpr да работи нормално. Той просто е\n" "сървър, който определя работите за печат на принтер(а/ите)." #: services.pm:55 #, c-format msgid "" "Linux Virtual Server, used to build a high-performance and highly\n" "available server." msgstr "" "Linux Virtual Server се използва за изграждане на високопроизводителен\n" "и добре достъпен сървър." #: services.pm:57 #, c-format msgid "" "DBUS is a daemon which broadcasts notifications of system events and other " "messages" msgstr "" #: services.pm:58 #, c-format msgid "" "named (BIND) is a Domain Name Server (DNS) that is used to resolve host " "names to IP addresses." msgstr "" "named (BIND) е Domain Name Server (DNS), който се използва да превърне\n" "името на хоста до IP адрес." #: services.pm:59 #, c-format msgid "" "Mounts and unmounts all Network File System (NFS), SMB (Lan\n" "Manager/Windows), and NCP (NetWare) mount points." msgstr "" "Монтира и демонтира всякакви Network File System (NFS), SMB (LAN\n" "Manager/Windows), и NCP (NetWare)." #: services.pm:61 #, c-format msgid "" "Activates/Deactivates all network interfaces configured to start\n" "at boot time." msgstr "" "Активира/деактивира всички мрежови интерфейси, настроени да се пускат\n" "при стартиране на машината." #: services.pm:63 #, c-format msgid "" "NFS is a popular protocol for file sharing across TCP/IP networks.\n" "This service provides NFS server functionality, which is configured via the\n" "/etc/exports file." msgstr "" "NFS е популярен протокол за обмен на файлове по TCP/IP мрежи.\n" "Тази услуга осигурява функционалността на NFS сървъра, който се настройва\n" "чрез файла /etc/exports." #: services.pm:66 #, c-format msgid "" "NFS is a popular protocol for file sharing across TCP/IP\n" "networks. This service provides NFS file locking functionality." msgstr "" "NFS е популярен протокол за обмен на файлове по TCP/IP мрежи.\n" "Тази услуга осигурява функционалността на заключването на NFS файловете." #: services.pm:68 #, c-format msgid "Synchronizes system time using the Network Time Protocol (NTP)" msgstr "" #: services.pm:69 #, c-format msgid "" "Automatically switch on numlock key locker under console\n" "and Xorg at boot." msgstr "" "Автоматично включване на numlock клавиша под конзола и\n" "Xorg при стартиране." #: services.pm:71 #, c-format msgid "Support the OKI 4w and compatible winprinters." msgstr "Поддръжка на OKI 4w и съвместими win-принтери." #: services.pm:72 #, c-format msgid "" "PCMCIA support is usually to support things like ethernet and\n" "modems in laptops. It will not get started unless configured so it is safe " "to have\n" "it installed on machines that do not need it." msgstr "" "PCMCIA поддържката обикновенно поддържа неща като ethernet и модеми в\n" "laptop-и. Това няма да се стартира преди да бъде настроен, така че е\n" "по-добре да я имате инсталирана на машини, които не се нуждаят от нея." #: services.pm:75 #, c-format msgid "" "The portmapper manages RPC connections, which are used by\n" "protocols such as NFS and NIS. The portmap server must be running on " "machines\n" "which act as servers for protocols which make use of the RPC mechanism." msgstr "" "portmapper се справя с RPC връзки, които се използват от протоколи като\n" "NFS и NIS. portmap сървъра трябва да е пуснат на машини, които работят като\n" "сървър за протоколи, които се нуждаят да използват RPC механизъм." #: services.pm:78 #, c-format msgid "" "Postfix is a Mail Transport Agent, which is the program that moves mail from " "one machine to another." msgstr "" "Postfix е Main Transport Agent (MTA), който е програма която пренася\n" "поща от машина на машина." #: services.pm:79 #, c-format msgid "" "Saves and restores system entropy pool for higher quality random\n" "number generation." msgstr "" "Запазва и възстановята потока на системна ентропия за по-голямо качество\n" "на произволно генериране на числа." #: services.pm:81 #, c-format msgid "" "Assign raw devices to block devices (such as hard drive\n" "partitions), for the use of applications such as Oracle or DVD players" msgstr "" "Свържи чисти драйвери с блокови устройства (като дялове\n" "на твърдия диск), за употребата от приложения като Oracle или DVD плеъри" #: services.pm:83 #, c-format msgid "" "The routed daemon allows for automatic IP router table updated via\n" "the RIP protocol. While RIP is widely used on small networks, more complex\n" "routing protocols are needed for complex networks." msgstr "" "touted демона позволява таблица за IP рутиране автоматично обновявана чрез\n" "RIP протокола. Докато RIP е широко използвана за малки мрежи, за по-сложни\n" "протоколи за рутиране са нужни за сложни мрежи. " #: services.pm:86 #, c-format msgid "" "The rstat protocol allows users on a network to retrieve\n" "performance metrics for any machine on that network." msgstr "" "rstat протокола позволява на мрежовите потребители да извличат\n" "параметрите на възможностите за всяка машина на мрежата." #: services.pm:88 #, c-format msgid "" "The rusers protocol allows users on a network to identify who is\n" "logged in on other responding machines." msgstr "" "rusers протокола позволява на мрежовите потребители да проверяват кой е\n" "влязъл на друга отговарящата машина." #: services.pm:90 #, c-format msgid "" "The rwho protocol lets remote users get a list of all of the users\n" "logged into a machine running the rwho daemon (similar to finger)." msgstr "" "rwho протокола позволява на отдалечени потребители да се сдобият със списък\n" "на всички потребители влезли на машина с работещ rwho демон (подобен на " "finger)." #: services.pm:92 #, c-format msgid "" "SANE (Scanner Access Now Easy) enables to access scanners, video cameras, ..." msgstr "" #: services.pm:93 #, c-format msgid "" "The SMB/CIFS protocol enables to share access to files & printers and also " "integrates with a Windows Server domain" msgstr "" #: services.pm:94 #, c-format msgid "Launch the sound system on your machine" msgstr "Пуснкане звуковата система на машината ви" #: services.pm:95 #, c-format msgid "" "Secure Shell is a network protocol that allows data to be exchanged over a " "secure channel between two computers" msgstr "" #: services.pm:96 #, c-format msgid "" "Syslog is the facility by which many daemons use to log messages\n" "to various system log files. It is a good idea to always run syslog." msgstr "" "Syslog е програма която много демони използват да запазват съобщения в\n" "различни системни файлове (логове). Добре е постоянно да я имате работеща." #: services.pm:98 #, c-format msgid "Load the drivers for your usb devices." msgstr "Зареждане драйвери за вашите USB устройства." #: services.pm:99 #, c-format msgid "Starts the X Font Server." msgstr "" #: services.pm:100 #, c-format msgid "Starts other deamons on demand." msgstr "" #: services.pm:123 #, c-format msgid "Printing" msgstr "Печатане" #: services.pm:124 #, c-format msgid "Internet" msgstr "Интернет" #: services.pm:127 #, c-format msgid "File sharing" msgstr "Поделяне на файлове" #: services.pm:129 #, c-format msgid "System" msgstr "Система" #: services.pm:134 #, c-format msgid "Remote Administration" msgstr "Отдалечена администрация" #: services.pm:142 #, c-format msgid "Database Server" msgstr "Сървър Бази-данни" #: services.pm:153 services.pm:189 #, c-format msgid "Services" msgstr "Услуги" #: services.pm:153 #, c-format msgid "Choose which services should be automatically started at boot time" msgstr "Избира услугите, които трябва да се пуснат при пускане на машината" #: services.pm:171 #, c-format msgid "Services: %d activated for %d registered" msgstr "Услуги: %d активирани от %d регистрирани" #: services.pm:205 #, c-format msgid "running" msgstr "стартиране" #: services.pm:205 #, c-format msgid "stopped" msgstr "спряна" #: services.pm:210 #, c-format msgid "Services and daemons" msgstr "Услуиги и демони" #: services.pm:216 #, c-format msgid "" "No additional information\n" "about this service, sorry." msgstr "" "Няма допълнителна информация\n" "за тази услуга, съжелявам." #: services.pm:221 ugtk2.pm:923 #, c-format msgid "Info" msgstr "Информация" #: services.pm:224 #, c-format msgid "Start when requested" msgstr "" #: services.pm:224 #, c-format msgid "On boot" msgstr "При зареждане" #: services.pm:242 #, c-format msgid "Start" msgstr "Старт" #: services.pm:242 #, c-format msgid "Stop" msgstr "Стоп" #: standalone.pm:25 #, c-format msgid "" "This program is free software; you can redistribute it and/or modify\n" "it under the terms of the GNU General Public License as published by\n" "the Free Software Foundation; either version 2, or (at your option)\n" "any later version.\n" "\n" "This program is distributed in the hope that it will be useful,\n" "but WITHOUT ANY WARRANTY; without even the implied warranty of\n" "MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n" "GNU General Public License for more details.\n" "\n" "You should have received a copy of the GNU General Public License\n" "along with this program; if not, write to the Free Software\n" "Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, " "USA.\n" msgstr "" #: standalone.pm:44 #, c-format msgid "" "[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n" "Backup and Restore application\n" "\n" "--default : save default directories.\n" "--debug : show all debug messages.\n" "--show-conf : list of files or directories to backup.\n" "--config-info : explain configuration file options (for non-X " "users).\n" "--daemon : use daemon configuration. \n" "--help : show this message.\n" "--version : show version number.\n" msgstr "" #: standalone.pm:56 #, c-format msgid "" "[--boot] [--splash]\n" "OPTIONS:\n" " --boot - enable to configure boot loader\n" " --splash - enable to configure boot theme\n" "default mode: offer to configure autologin feature" msgstr "" #: standalone.pm:61 #, c-format msgid "" "[OPTIONS] [PROGRAM_NAME]\n" "\n" "OPTIONS:\n" " --help - print this help message.\n" " --report - program should be one of Mandriva Linux tools\n" " --incident - program should be one of Mandriva Linux tools" msgstr "" #: standalone.pm:67 #, c-format msgid "" "[--add]\n" " --add - \"add a network interface\" wizard\n" " --del - \"delete a network interface\" wizard\n" " --skip-wizard - manage connections\n" " --internet - configure internet\n" " --wizard - like --add" msgstr "" #: standalone.pm:73 #, c-format msgid "" "\n" "Font Importation and monitoring application\n" "\n" "OPTIONS:\n" "--windows_import : import from all available windows partitions.\n" "--xls_fonts : show all fonts that already exist from xls\n" "--install : accept any font file and any directory.\n" "--uninstall : uninstall any font or any directory of font.\n" "--replace : replace all font if already exist\n" "--application : 0 none application.\n" " : 1 all application available supported.\n" " : name_of_application like so for staroffice \n" " : and gs for ghostscript for only this one." msgstr "" #: standalone.pm:88 #, c-format msgid "" "[OPTIONS]...\n" "Mandriva Linux Terminal Server Configurator\n" "--enable : enable MTS\n" "--disable : disable MTS\n" "--start : start MTS\n" "--stop : stop MTS\n" "--adduser : add an existing system user to MTS (requires username)\n" "--deluser : delete an existing system user from MTS (requires " "username)\n" "--addclient : add a client machine to MTS (requires MAC address, IP, " "nbi image name)\n" "--delclient : delete a client machine from MTS (requires MAC address, " "IP, nbi image name)" msgstr "" #: standalone.pm:100 #, c-format msgid "[keyboard]" msgstr "[клавиатура]" #: standalone.pm:101 #, c-format msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]" msgstr "" #: standalone.pm:102 #, c-format msgid "" "[OPTIONS]\n" "Network & Internet connection and monitoring application\n" "\n" "--defaultintf interface : show this interface by default\n" "--connect : connect to internet if not already connected\n" "--disconnect : disconnect to internet if already connected\n" "--force : used with (dis)connect : force (dis)connection.\n" "--status : returns 1 if connected 0 otherwise, then exit.\n" "--quiet : do not be interactive. To be used with (dis)connect." msgstr "" #: standalone.pm:112 #, c-format msgid "" "[OPTION]...\n" " --no-confirmation do not ask first confirmation question in Mandriva " "Update mode\n" " --no-verify-rpm do not verify packages signatures\n" " --changelog-first display changelog before filelist in the " "description window\n" " --merge-all-rpmnew propose to merge all .rpmnew/.rpmsave files found" msgstr "" #: standalone.pm:117 #, c-format msgid "" "[--manual] [--device=dev] [--update-sane=sane_source_dir] [--update-" "usbtable] [--dynamic=dev]" msgstr "" #: standalone.pm:118 #, c-format msgid "" " [everything]\n" " XFdrake [--noauto] monitor\n" " XFdrake resolution" msgstr "" #: standalone.pm:154 #, c-format msgid "" "\n" "Usage: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--" "testing] [-v|--version] " msgstr "" "\n" "Използване: %s [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--" "testing] [-v|--version] " #: timezone.pm:161 timezone.pm:162 #, fuzzy, c-format msgid "All servers" msgstr "Добавяне на сървър" #: timezone.pm:196 #, c-format msgid "Global" msgstr "Общи" #: timezone.pm:199 #, fuzzy, c-format msgid "Africa" msgstr "Южна Африка" #: timezone.pm:200 #, fuzzy, c-format msgid "Asia" msgstr "Австрия" #: timezone.pm:201 #, c-format msgid "Europe" msgstr "" #: timezone.pm:202 #, fuzzy, c-format msgid "North America" msgstr "Южна Африка" #: timezone.pm:203 #, c-format msgid "Oceania" msgstr "Океания" #: timezone.pm:204 #, fuzzy, c-format msgid "South America" msgstr "Южна Африка" #: timezone.pm:213 #, c-format msgid "Hong Kong" msgstr "Хонг Конг" #: timezone.pm:250 #, c-format msgid "Russian Federation" msgstr "Руска Федерация" #: timezone.pm:258 #, c-format msgid "Yugoslavia" msgstr "Югославия" #: ugtk2.pm:813 #, c-format msgid "Is this correct?" msgstr "Всичко правилно ли е ?" #: ugtk2.pm:873 #, fuzzy, c-format msgid "No file chosen" msgstr "избор на файл" #: ugtk2.pm:875 #, fuzzy, c-format msgid "You have chosen a file, not a directory" msgstr "Трябва да изберете файл, а не директория.\n" #: ugtk2.pm:877 #, fuzzy, c-format msgid "You have chosen a directory, not a file" msgstr "Името \"/\" може да е само папка, а не ключ" #: ugtk2.pm:879 #, fuzzy, c-format msgid "No such directory" msgstr "Не е директория" #: ugtk2.pm:879 #, fuzzy, c-format msgid "No such file" msgstr "Не съществува файл \"%s\"\n" #: wizards.pm:95 #, c-format msgid "" "%s is not installed\n" "Click \"Next\" to install or \"Cancel\" to quit" msgstr "" "%s не е инсталирано\n" "Натиснете \"Нататък\",за да инсталирате или \"Отказ\" за изход" #: wizards.pm:99 #, c-format msgid "Installation failed" msgstr "Инсталацията провалена" #~ msgid "" #~ "If you plan to use aboot, be careful to leave a free space (2048 sectors " #~ "is enough)\n" #~ "at the beginning of the disk" #~ msgstr "" #~ "Ако смятате да използвате aboot, оставете свободно пространство (2048 " #~ "сектора\n" #~ "са достатъчни) в началото на диска" #~ msgid "Security level" #~ msgstr "Ниво на сигурност" #~ msgid "Expand Tree" #~ msgstr "Разшири дървото" #~ msgid "Collapse Tree" #~ msgstr "Изчисти дървото" #~ msgid "Toggle between flat and group sorted" #~ msgstr "Превключване между нормално и сортиране по групи" #~ msgid "Choose action" #~ msgstr "Изберете действие" #~ msgid "Authentication LDAP" #~ msgstr "LDAP ауторизация" #~ msgid "TLS" #~ msgstr "TLS" #~ msgid "SSL" #~ msgstr "SSL" #, fuzzy #~ msgid "Authentication Active Directory" #~ msgstr "идентификация" #, fuzzy #~ msgid "LDAP users database" #~ msgstr "Сървър, Бази-данни" #, fuzzy #~ msgid "Password for user" #~ msgstr "Изисква парола" #~ msgid "Authentication NIS" #~ msgstr "NIS идентификация" #~ msgid "Authentication Windows Domain" #~ msgstr "Идентификация на Windows Домейн" #~ msgid "Undo" #~ msgstr "Върни" #~ msgid "Save partition table" #~ msgstr "Запази таблицата с дяловете" #~ msgid "Restore partition table" #~ msgstr "Възстанови таблицата с дяловете" #~ msgid "" #~ "The backup partition table has not the same size\n" #~ "Still continue?" #~ msgstr "" #~ "Резервната таблица на дяловете не е със същата големина\n" #~ "Да продължа ли все пак ?" #~ msgid "Info: " #~ msgstr "Информация: " #, fuzzy #~ msgid "Unknown driver" #~ msgstr "Неизвестен драйвер" #~ msgid "Error reading file %s" #~ msgstr "Грешка при четенето на файла %s" #~ msgid "Restoring from file %s failed: %s" #~ msgstr "Възстановяването от файла %s не успя: %s" #~ msgid "Bad backup file" #~ msgstr "Лош backup-файл" #~ msgid "Error writing to file %s" #~ msgstr "Грешка при запис във файла %s" #~ msgid "Error: The \"%s\" driver for your sound card is unlisted" #~ msgstr "Грешка: \"%s\" драйвер за вашата карта е инсталиран" #~ msgid "Ext2" #~ msgstr "Ext2" #~ msgid "Journalised FS" #~ msgstr "Журнална FS" #~ msgid "Starts the X Font Server (this is mandatory for Xorg to run)." #~ msgstr "Стартира X Font Server (това е задължително, за да тръгне Xorg)." #~ msgid "Add user" #~ msgstr "Добави потребител" #~ msgid "Accept user" #~ msgstr "Приеми потребител" #~ msgid "Rescue partition table" #~ msgstr "Спасяване таблицата с дяловете" #~ msgid "Removable media automounting" #~ msgstr "Автоматично монтиране на сменяем носител" #~ msgid "Trying to rescue partition table" #~ msgstr "Опитвам се да спася таблицата на дяловете" #~ msgid "Accept/Refuse bogus IPv4 error messages." #~ msgstr "Позволява/Забранява съобщения за IPv4 грешки." #~ msgid "Accept/Refuse broadcasted icmp echo." #~ msgstr "Позволява/Забранява broadcasted icmp echo." #~ msgid "Allow/Forbid remote root login." #~ msgstr "Позволява/Забранява отдалечено влизане на root." #~ msgid "PLL setting:" #~ msgstr "PLL настройки:" #~ msgid "Radio support:" #~ msgstr "Подръжка на радио:" #~ msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]" #~ msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"