aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/log/log_interface.php
blob: 86286e6f88c49a24d4069a79a131f69d36b55b19 (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
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/

namespace phpbb\log;

/**
* The interface for the log-system.
*/
interface log_interface
{
	/**
	* This function returns the state of the log system.
	*
	* @param	string	$type	The log type we want to check. Empty to get
	*							global log status.
	*
	* @return	bool	True if log for the type is enabled
	*/
	public function is_enabled($type = '');

	/**
	* Disable log
	*
	* This function allows disabling the log system or parts of it, for this
	* page call. When add() is called and the type is disabled, the log will
	* not be added to the database.
	*
	* @param	mixed	$type	The log type we want to disable. Empty to
	*						disable all logs. Can also be an array of types.
	*
	* @return	null
	*/
	public function disable($type = '');

	/**
	* Enable log
	*
	* This function allows re-enabling the log system.
	*
	* @param	mixed	$type	The log type we want to enable. Empty to
	*						enable all logs. Can also be an array of types.
	*
	* @return	null
	*/
	public function enable($type = '');

	/**
	* Adds a log entry to the database
	*
	* @param	string		$mode				The mode defines which log_type is used and from which log the entry is retrieved
	* @param	int			$user_id			User ID of the user
	* @param	string		$log_ip				IP address of the user
	* @param	string		$log_operation		Name of the operation
	* @param	int|bool	$log_time			Timestamp when the log entry was added. If false, time() will be used
	* @param	array		$additional_data	More arguments can be added, depending on the log_type
	*
	* @return	int|bool		Returns the log_id, if the entry was added to the database, false otherwise.
	*/
	public function add($mode, $user_id, $log_ip, $log_operation, $log_time = false, $additional_data = array());

	/**
	* Delete entries in the logs
	*
	* @param 	string	$mode		The mode defines which log_type is used and from which log the entries are deleted
	* @param 	array	$conditions	An array of conditions, 3 different  forms are accepted
	* 								1) <key> => <value> transformed into 'AND <key> = <value>' (value should be an integer)
	*								2) <key> => array(<operator>, <value>) transformed into 'AND <key> <operator> <value>' (values can't be an array)
	*								3) <key> => array('IN' => array(<values>)) transformed into 'AND <key> IN <values>'
	*								A special field, keywords, can also be defined. In this case only the log entries that have the keywords in log_operation or log_data will be deleted.
	*/
	public function delete($mode, $conditions = array());

	/**
	* Grab the logs from the database
	*
	* @param	string	$mode			The mode defines which log_type is used and ifrom which log the entry is retrieved
	* @param	bool	$count_logs		Shall we count all matching log entries?
	* @param	int		$limit			Limit the number of entries that are returned
	* @param	int		$offset			Offset when fetching the log entries, f.e. when paginating
	* @param	mixed	$forum_id		Restrict the log entries to the given forum_id (can also be an array of forum_ids)
	* @param	int		$topic_id		Restrict the log entries to the given topic_id
	* @param	int		$user_id		Restrict the log entries to the given user_id
	* @param	int		$log_time		Only get log entries newer than the given timestamp
	* @param	string	$sort_by		SQL order option, e.g. 'l.log_time DESC'
	* @param	string	$keywords		Will only return log entries that have the keywords in log_operation or log_data
	*
	* @return	array			The result array with the logs
	*/
	public function get_logs($mode, $count_logs = true, $limit = 0, $offset = 0, $forum_id = 0, $topic_id = 0, $user_id = 0, $log_time = 0, $sort_by = 'l.log_time DESC', $keywords = '');

	/**
	* Get total log count
	*
	* @return	int			Returns the number of matching logs from the last call to get_logs()
	*/
	public function get_log_count();

	/**
	* Get offset of the last valid page
	*
	* @return	int			Returns the offset of the last valid page from the last call to get_logs()
	*/
	public function get_valid_offset();
}
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
# Cirilicni prevod drakbootdisk.po fajla.
# Copyright (C) 1997-2003 MandrakeSERBIA.
# Tomislav Jankovic <tomaja@net.yu>, 2000.
#
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-03-13 13:20+CET\n"
"PO-Revision-Date: 2004-09-15 13:33+0200\n"
"Last-Translator: Toma Jankovic <tomaja@net.yu>\n"
"Language-Team: Serbian <i18n@mandrake.co.yu>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: KBabel 0.9.6\n"

#: ../src/msec/config.py:46
msgid "Modified system files"
msgstr ""

#: ../src/msec/config.py:47
#, fuzzy
msgid "No changes in system files"
msgstr "уколико је подешено на да, пријавите фајлове без власника."

#: ../src/msec/config.py:60
msgid "Disabled"
msgstr ""

#: ../src/msec/config.py:211 ../src/msec/config.py:423
msgid "Unable to load configuration file %s: %s"
msgstr ""

#: ../src/msec/config.py:225 ../src/msec/config.py:334
#: ../src/msec/config.py:445
#, fuzzy
msgid "Bad config option: %s"
msgstr "Подешавање звука"

#: ../src/msec/config.py:260 ../src/msec/config.py:373
#: ../src/msec/config.py:471
msgid "Unable to save %s: %s"
msgstr ""

#: ../src/msec/config.py:319
msgid "loading exceptions file %s: %s"
msgstr ""

#: ../src/msec/config.py:320
#, fuzzy
msgid "No exceptions loaded"
msgstr "Опције"

#: ../src/msec/help.py:14
#, fuzzy
msgid ""
"Allow local users to connect to X server. Accepted arguments: yes (all "
"connections are allowed), local (only local connection), no (no connection)."
msgstr ""
"Аргументи: (arg, listen_tcp=None)\n"
"\n"
"Дозвољава/Недозвољава X конекцију. Први аргумент одређије шта је урађено\n"
"са стране клијента: ALL (све конекције су дозвољене), LOCAL (само\n"
"лпкалне конекције) и NONE (без конекције)."

#: ../src/msec/help.py:16
#, fuzzy
msgid "Enable checking for files/directories writable by everybody."
msgstr ""
"уколико је подешено на да, означите фајлове/диреторијуме уписивим за све "
"кориснике."

#: ../src/msec/help.py:18
#, fuzzy
msgid "Enable IP spoofing protection."
msgstr ""
"Аргументи: (arg, alert=1)\n"
"\n"
"Омогући/Онемогући IP spoofing заштиту."

#: ../src/msec/help.py:20
#, fuzzy
msgid "Enable name resolution spoofing protection."
msgstr ""
"Аргументи: (arg, alert=1)\n"
"\n"
"Омогући/Онемогући IP spoofing заштиту."

#: ../src/msec/help.py:22
msgid ""
"Defines the base security level, on top of which the current configuration "
"is based."
msgstr ""

#: ../src/msec/help.py:24
#, fuzzy
msgid "Accept broadcasted ICMP echo."
msgstr ""
"Аргументи: (arg)\n"
"\n"
" Прихвати/Одбиј преносиви icmp echo."

#: ../src/msec/help.py:26
msgid ""
"Enable verification for changes in the installed RPM packages. This will "
"notify you when new packages are installed or removed."
msgstr ""

#: ../src/msec/help.py:28
msgid "Enable periodic permission checking for files specified in msec policy."
msgstr ""

#: ../src/msec/help.py:30
msgid "Ignore changes in process IDs when checking for open network ports."
msgstr ""

#: ../src/msec/help.py:32
msgid "Allow X server to accept connections from network on tcp port 6000."
msgstr ""

#: ../src/msec/help.py:34
msgid "Enable checking for known rootkits using chkrootkit."
msgstr ""

#: ../src/msec/help.py:36
msgid ""
"Enable msec to enforce file permissions to the values specified in the msec "
"security policy."
msgstr ""

#: ../src/msec/help.py:38
msgid ""
"Enable sectools checks. This check will run all sectool checks for a "
"security level configuration. The security level to be used during this test "
"is determined by the CHECK_SECTOOL_LEVELS variable."
msgstr ""

#: ../src/msec/help.py:40
#, fuzzy
msgid "Set shell commands history size. A value of -1 means unlimited."
msgstr ""
"Аргументи: (size)\n"
"\n"
"Подесите shell величину историје за команде. Вредност -1 значи да нема "
"линита."

#: ../src/msec/help.py:42
#, fuzzy
msgid "Allow system reboot and shutdown to local users."
msgstr ""
"Аргументи: (arg)\n"
"\n"
"Дозволи/Не дозволи рестартовање од стране конзлолног корисника."

#: ../src/msec/help.py:44
#, fuzzy
msgid "Enable checking for changes in firewall settings."
msgstr "уколико је подешено на да, пријавите фајлове без власника."

#: ../src/msec/help.py:46
#, fuzzy
msgid "Enable checking for additions/removals of suid root files."
msgstr ""
"уколико је подешено на да, означите додавање/уклањање за suid root фајлове."

#: ../src/msec/help.py:48
msgid "Enables logging of periodic checks to system log."
msgstr ""

#: ../src/msec/help.py:50
#, fuzzy
msgid ""
"Enable crontab and at for users. Put allowed users in /etc/cron.allow and /"
"etc/at.allow (see man at(1) and crontab(1))."
msgstr ""
"Аргументи: (arg)\n"
"\n"
"Омогући/Онемогући crontab и at за кориснике. Поставите кориснике са "
"дозволама у /etc/cron.allow и /etc/at.allow\n"
"(прочитајте man at(1) и crontab(1))."

#: ../src/msec/help.py:52
#, fuzzy
msgid "Accept bogus IPv4 error messages."
msgstr ""
"Аргументи: (arg)\n"
"\n"
"Прихвати/Одбиј IPv4 поруке о грешкама."

#: ../src/msec/help.py:54
msgid ""
"Enable password-related checks, such as empty passwords and strange super-"
"user accounts."
msgstr ""

#: ../src/msec/help.py:56
#, fuzzy
msgid ""
"Set the password history length to prevent password reuse. This is not "
"supported by pam_tcb."
msgstr ""
"Аргументи: (arg)\n"
"\n"
"Подесите историју памћења лозинки да би спречили поновну употребу лозинке."

#: ../src/msec/help.py:58
msgid "Enable checksum verification for suid files."
msgstr ""

#: ../src/msec/help.py:60
msgid ""
"Use secure location for temporary files. If this parameter is set to 'yes', "
"user home directory will be used for temporary files. Otherwise, /tmp will "
"be used."
msgstr ""

#: ../src/msec/help.py:62
#, fuzzy
msgid "User email to receive security notifications."
msgstr "Само моменат, подешавам сигурносне опције..."

#: ../src/msec/help.py:64
#, fuzzy
msgid "Set the user umask."
msgstr ""
"Аргументи: (umask)\n"
"\n"
"Подешавање корисничког umask."

#: ../src/msec/help.py:66
msgid "Allow only users in wheel group to su to root."
msgstr ""

#: ../src/msec/help.py:68
#, fuzzy
msgid "Enable checking for empty passwords in /etc/shadow (man shadow(5))."
msgstr "уколико је подешено на да, прверите празну лозинку у /etc/shadow."

#: ../src/msec/help.py:70
#, fuzzy
msgid "Allow autologin."
msgstr ""
"Аргументи: (arg)\n"
"\n"
"Дозволи/Не дозволи аутологовање."

#: ../src/msec/help.py:72
#, fuzzy
msgid "Enable checking for changes in system users."
msgstr "уколико је подешено на да, пријавите фајлове без власника."

#: ../src/msec/help.py:74
#, fuzzy
msgid "Enable checking for unowned files."
msgstr "уколико је подешено на да, пријавите фајлове без власника."

#: ../src/msec/help.py:76
msgid "Log syslog messages on console terminal 12."
msgstr ""

#: ../src/msec/help.py:78
msgid "Allow display managers (kdm and gdm) to display list of local users."
msgstr ""

#: ../src/msec/help.py:80
msgid "Send mail reports even if no changes were detected."
msgstr ""

#: ../src/msec/help.py:82
msgid ""
"Enforce MSEC file directory permissions on system startup. If this parameter "
"is set to 'enforce', system permissions will be enforced automatically, "
"according to system security settings."
msgstr ""

#: ../src/msec/help.py:84
msgid "Include current directory into user PATH by default"
msgstr ""

#: ../src/msec/help.py:86
msgid ""
"Enable permission checking on users' files that should not be owned by "
"someone else, or writable."
msgstr ""

#: ../src/msec/help.py:88
msgid ""
"Creates the symlink /etc/security/msec/server to point to /etc/security/msec/"
"server.SERVER_LEVEL. The /etc/security/msec/server is used by chkconfig --"
"add to decide to add a service if it is present in the file during the "
"installation of packages. By default, two presets are provided: local (which "
"only enables local services) and remote (which also enables some remote "
"services considered safe). Note that the allowed services must be placed "
"manually into the server.SERVER_LEVEL files when necessary."
msgstr ""

#: ../src/msec/help.py:90
msgid ""
"Use password to authenticate users. Take EXTREME care when disabling "
"passwords, as it will leave the machine vulnerable."
msgstr ""

#: ../src/msec/help.py:92
#, fuzzy
msgid "Enable checking for changes in system groups."
msgstr "уколико је подешено на да, пријавите фајлове без власника."

#: ../src/msec/help.py:94
msgid ""
"Allow remote root login via sshd. If yes, login is allowed. If without-"
"password, only public-key authentication logins are allowed. See sshd_config"
"(5) man page for more information."
msgstr ""

#: ../src/msec/help.py:96
msgid "Show security notifications in system tray using libnotify."
msgstr ""

#: ../src/msec/help.py:98
msgid "Enable checking for open network ports."
msgstr ""

#: ../src/msec/help.py:100
#, fuzzy
msgid "Allow direct root login on terminal."
msgstr ""
"Аргументи: (arg)\n"
"\n"
"Дозволи/Не дозволи диектно root логовање."

#: ../src/msec/help.py:102
msgid "Run security checks when machine is running on battery power."
msgstr ""

#: ../src/msec/help.py:104
msgid "Enable checking for dangerous options in users' .rhosts/.shosts files."
msgstr ""

#: ../src/msec/help.py:106
msgid ""
"Set umask option for mounting vfat and ntfs partitions. If umask is '-1', "
"default system umask is used."
msgstr ""

#: ../src/msec/help.py:108
#, fuzzy
msgid "Enable logging of strange network packets."
msgstr ""
"Аргументи: (arg)\n"
"\n"
"Омогући/Онемогући пријављивање IPv4 strange пакета."

#: ../src/msec/help.py:110
msgid ""
"Define the default retention period for logs, in weeks. Some countries "
"require that the log files should be kept for 12 months, other do not have "
"such strict requirements. This variable defines the number of past log files "
"that should be kept by logrotate on the system."
msgstr ""

#: ../src/msec/help.py:112
msgid "Ask for root password when going to single user level (man sulogin(8))."
msgstr ""

#: ../src/msec/help.py:114
msgid "Allow root access without password for the members of the wheel group."
msgstr ""

#: ../src/msec/help.py:116
msgid "Fix owner and group of unowned files to use nobody/nogroup."
msgstr ""

#: ../src/msec/help.py:118
#, fuzzy
msgid "Send security check results by email."
msgstr "уколико кажете да, пошаљите резултат провере mail-ом."

#: ../src/msec/help.py:120
msgid ""
"Allow to export display when passing from the root account to the other "
"users. See pam_xauth(8) for more details."
msgstr ""

#: ../src/msec/help.py:122
msgid ""
"Defines the sectool level to use during the periodic security check. You may "
"use the sectool-gui application to select individual tests for each level. "
"If this variable is not defined, the default level defined in sectool "
"configuration will be used."
msgstr ""

#: ../src/msec/help.py:124
#, fuzzy
msgid "Set the shell timeout. A value of zero means no timeout."
msgstr ""
"Аргументи: (val)\n"
"\n"
"Подесите shell паузу. Вредност zero - нула значи да нема паузе."

#: ../src/msec/help.py:126
#, fuzzy
msgid "Enable daily security checks."
msgstr "уколико је подешено на да, покрените дневне сигурносне провере."

#: ../src/msec/help.py:128
#, fuzzy
msgid "Accept ICMP echo."
msgstr ""
"Аргументи: (arg)\n"
"\n"
" Прихвати/Одбиј icmp echo."

#: ../src/msec/help.py:130
#, fuzzy
msgid ""
"Set the password minimum length and minimum number of digit and minimum "
"number of capitalized letters, using length,ndigits,nupper format."
msgstr ""
"Аргументи: (length, ndigits=0, nupper=0)\n"
"\n"
"Подесите најмању дужину лозинке и најмањи број бројева и минималан број "
"великих слова."

#: ../src/msec/help.py:132
#, fuzzy
msgid ""
"Allow full access to network services controlled by tcp_wrapper (see hosts."
"deny(5)). If yes, all services are allowed. If local, only connections to "
"local services are authorized. If no, the services must be authorized "
"manually in /etc/hosts.allow (see hosts.allow(5))."
msgstr ""
"Аргументи: (arg)\n"
"\n"
"Ауторизује све сервисе које контролише tcp_wrappers (see hosts.deny(5)) ако "
"је \\fIarg\\fP = ALL. Само локални\n"
"if \\fIarg\\fP = LOCAL and none if \\fIarg\\fP = NONE. За ауторизацију вама "
"потребних сервиса , користите /etc/hosts.allow\n"
"(see hosts.allow(5))."

#: ../src/msec/help.py:134
msgid ""
"Enable verification of integrity of installed RPM packages. This will notify "
"you if checksums of the installed files were changed, showing separate "
"results for binary and configuration files."
msgstr ""

#: ../src/msec/help.py:136
msgid ""
"Patterns to exclude from disk checks. This parameter is parsed as a regex "
"(7), so you may use complex expressions."
msgstr ""

#: ../src/msec/help.py:138
msgid ""
"Allow users in wheel group to use sudo. If this option is set to 'yes', the "
"users in wheel group are allowed to use sudo and run commands as root by "
"using their passwords. If this option to set to 'without-password', the "
"users can use sudo without being asked for their password. WARNING: using "
"sudo without any password makes your system very vulnerable, and you should "
"only use this setting if you know what you are doing!"
msgstr ""

#: ../src/msec/help.py:140
#, fuzzy
msgid "Set the root umask."
msgstr ""
"Аргументи: (umask)\n"
"\n"
"Подесите root umask."

#: ../src/msec/help.py:142
msgid "Perform hourly security check for changes in system configuration."
msgstr ""

#: ../src/msec/help.py:144
msgid "Enforce MSEC settings on system startup"
msgstr ""

#: ../src/msec/help.py:146
msgid "Enable periodic security check results to terminal."
msgstr ""

#: ../src/msec/help.py:148
#, fuzzy
msgid "Enable checking for additions/removals of sgid files."
msgstr "уколико је подешено на да, означите додавање/уклањање sgid фајлова."

#: ../src/msec/help.py:150
#, fuzzy
msgid "Activate ethernet cards promiscuity check."
msgstr ""
"Аргументи: (arg)\n"
"\n"
"Активирај/Деактивирај проверу промискуитета мрежних картица."

#: ../src/msec/libmsec.py:266
msgid "%s modified so launched command: %s"
msgstr ""

#: ../src/msec/libmsec.py:275
msgid "%s modified so should have run command: %s"
msgstr ""

#: ../src/msec/libmsec.py:377 ../src/msec/libmsec.py:409
#, fuzzy
msgid "deleted %s"
msgstr "Обриши"

#: ../src/msec/libmsec.py:395
#, fuzzy
msgid "touched file %s"
msgstr "Нема таквог фајла"

#: ../src/msec/libmsec.py:415
#, fuzzy
msgid "made symbolic link from %s to %s"
msgstr "Мењам ext2 на ext3"

#: ../src/msec/libmsec.py:418
msgid "moved file %s to %s"
msgstr ""

#: ../src/msec/libmsec.py:468 ../src/msec/libmsec.py:484
msgid "set variable %s to %s in %s"
msgstr ""

#: ../src/msec/libmsec.py:686
msgid "Error loading plugin '%s' from %s: %s"
msgstr ""

#: ../src/msec/libmsec.py:703
msgid "Invalid callback: %s"
msgstr ""

#: ../src/msec/libmsec.py:712
msgid "Plugin %s not found"
msgstr ""

#: ../src/msec/libmsec.py:719
msgid "Not supported function '%s' in '%s'"
msgstr ""

#: ../src/msec/libmsec.py:726 ../src/msec/libmsec.py:856
msgid "In check-only mode, nothing is written back to disk."
msgstr ""

#: ../src/msec/libmsec.py:753
msgid "Invalid parameter for %s: '%s'. Valid parameters: '%s'."
msgstr ""

#: ../src/msec/libmsec.py:786
#, fuzzy
msgid "user name %s not found"
msgstr "Корисничко име већ је предугачко"

#: ../src/msec/libmsec.py:798
msgid "user name not found for id %d"
msgstr ""

#: ../src/msec/libmsec.py:810
msgid "group name %s not found"
msgstr ""

#: ../src/msec/libmsec.py:822
msgid "group name not found for id %d"
msgstr ""

#: ../src/msec/libmsec.py:832
msgid "Unable to check /proc/mounts. Assuming all file systems are local."
msgstr ""

#: ../src/msec/libmsec.py:871
#, fuzzy
msgid "Forcing ownership of %s to %s"
msgstr "Мењам ext2 на ext3"

#: ../src/msec/libmsec.py:875
#, fuzzy
msgid "Error changing user on %s: %s"
msgstr "Грешка при демонтирању %s: %s"

#: ../src/msec/libmsec.py:877
msgid "Wrong owner of %s: should be %s"
msgstr ""

#: ../src/msec/libmsec.py:880
#, fuzzy
msgid "Enforcing group on %s to %s"
msgstr "Мењам ext2 на ext3"

#: ../src/msec/libmsec.py:884
#, fuzzy
msgid "Error changing group on %s: %s"
msgstr "Грешка при демонтирању %s: %s"

#: ../src/msec/libmsec.py:886
msgid "Wrong group of %s: should be %s"
msgstr ""

#: ../src/msec/libmsec.py:891
msgid "Enforcing permissions on %s to %o"
msgstr ""

#: ../src/msec/libmsec.py:895
msgid "Error changing permissions on %s: %s"
msgstr ""

#: ../src/msec/libmsec.py:897
msgid "Wrong permissions of %s: should be %o"
msgstr ""

#: ../src/msec/libmsec.py:914
msgid "bad permissions for '%s': '%s'"
msgstr ""

#: ../src/msec/libmsec.py:939
msgid "Non local file: \"%s\". Nothing changed."
msgstr ""

#: ../src/msec/libmsec.py:981
#, fuzzy
msgid "Checking paths: %s"
msgstr "Проверавам %s"

#: ../src/msec/msec.py:87 ../src/msec/msecperms.py:96
#, fuzzy
msgid "Invalid security level '%s'."
msgstr "Сигурносни ниво"

#: ../src/msec/msec.py:114 ../src/msec/msecperms.py:121
msgid "Msec: Mandriva Security Center (%s)\n"
msgstr ""

#: ../src/msec/msec.py:115 ../src/msec/msecperms.py:122
msgid "Error: This application must be executed by root!"
msgstr ""

#: ../src/msec/msec.py:116 ../src/msec/msecperms.py:123
msgid "Run with --help to get help."
msgstr ""

#: ../src/msec/msec.py:142
msgid "Level '%s' not found, aborting."
msgstr ""

#: ../src/msec/msec.py:144
#, fuzzy
msgid "Switching to '%s' level."
msgstr "Мењам ext2 на ext3"

#: ../src/msec/msec.py:151
msgid "No custom file permissions for level '%s'."
msgstr ""

#: ../src/msec/msec.py:152
#, fuzzy
msgid "Saving file permissions to '%s' level."
msgstr "Мењам ext2 на ext3"

#: ../src/msec/msec.py:192 ../src/msec/msecperms.py:160
msgid "Unable to save config!"
msgstr ""

#: ../src/msec/msec.py:194
msgid "Unable to save file system permissions!"
msgstr ""

#: ../src/msec/msecgui.py:53
msgid ""
"<big><b>Choose security level</b></big>\n"
"This application allows you to configure your system security. If you wish\n"
"to activate it, choose the appropriate security level: "
msgstr ""

#: ../src/msec/msecgui.py:59
msgid ""
"This profile configures a reasonably safe set of security features. It is "
"the suggested level for Desktop. If unsure which profile to use, use this "
"one."
msgstr ""

#: ../src/msec/msecgui.py:60
msgid ""
"This profile is focused on netbooks, laptops or low-end devices, which are "
"only accessed by local users and run on batteries."
msgstr ""

#: ../src/msec/msecgui.py:62
msgid ""
"This profile is configured to provide maximum security, even at the cost of "
"limiting the remote access to the system. This level is suggested for "
"security-concerned systems and servers. "
msgstr ""

#: ../src/msec/msecgui.py:64
msgid ""
"This profile is targeted on local network servers, which do not receive "
"accesses from unauthorized Internet users."
msgstr ""

#: ../src/msec/msecgui.py:66
msgid ""
"This profile is provided for servers which are intended to be accessed by "
"unauthorized Internet users."
msgstr ""

#: ../src/msec/msecgui.py:67
msgid ""
"This profile is intended for the users who do not rely on msec to change "
"system settings, and use it for periodic checks only. It configures all "
"periodic checks to run once a day."
msgstr ""

#: ../src/msec/msecgui.py:68
msgid ""
"This profile is similar to the 'audit_daily' profile, but it runs all checks "
"weekly."
msgstr ""

#: ../src/msec/msecgui.py:75
#, fuzzy
msgid "Custom security level."
msgstr "Сигурност"

#: ../src/msec/msecgui.py:78
msgid ""
"<big><b>System security options</b></big>\n"
"These options control the local security configuration, such as the login "
"restrictions,\n"
"password configurations, integration with other security tools, and default "
"file creation\n"
"permissions.  "
msgstr ""

#: ../src/msec/msecgui.py:83
msgid ""
"<big><b>Network security options</b></big>\n"
"These options define the network security against remote threats, "
"unauthorized accesses,\n"
"and breakin attempts.  "
msgstr ""

#: ../src/msec/msecgui.py:87
msgid ""
"<big><b>Periodic security checks</b></big>\n"
"These options configure the security checks that should be executed "
"periodically.  "
msgstr ""

#: ../src/msec/msecgui.py:90
msgid ""
"<big><b>Exceptions</b></big>\n"
"Here you can configure the allowed exceptions for msec periodic security\n"
"checks. For each supported test, you may add as many exceptions as you want\n"
"for each check. Note that each exception is parsed as a regexp."
msgstr ""

#: ../src/msec/msecgui.py:95
msgid ""
"<big><b>File permissions</b></big>\n"
"These options allow to fine-tune system permissions for important files and "
"directories.\n"
"The following permissions are checked periodically, and any change to the "
"owner, group,\n"
"or current permission is reported. The permissions can be enforced, "
"automatically\n"
"changing them to the specified values when a change is detected.  "
msgstr ""

#: ../src/msec/msecgui.py:101
#, fuzzy
msgid "Save and apply new configuration?"
msgstr "Само моменат... примена конфигурације"

#: ../src/msec/msecgui.py:134
msgid "Unable to load configuration for level '%s'"
msgstr ""

#: ../src/msec/msecgui.py:140
msgid "Unable to load permissions for level '%s'"
msgstr ""

#: ../src/msec/msecgui.py:173
#, fuzzy
msgid "_File"
msgstr "Чиле"

#: ../src/msec/msecgui.py:175
#, fuzzy
msgid "_Save configuration"
msgstr "Подешавање звука"

#: ../src/msec/msecgui.py:180
#, fuzzy
msgid "_Quit"
msgstr "Крај"

#: ../src/msec/msecgui.py:182 ../src/msec/msecgui.py:184
#, fuzzy
msgid "_Help"
msgstr "Помоћ"

#: ../src/msec/msecgui.py:185
#, fuzzy
msgid "_About"
msgstr "О"

#: ../src/msec/msecgui.py:212
#, fuzzy
msgid "MSEC: System Security and Audit"
msgstr "Системска подешавања"

#: ../src/msec/msecgui.py:225
msgid "Overview"
msgstr ""

#: ../src/msec/msecgui.py:226
#, fuzzy
msgid "Security settings"
msgstr "Наведите опције"

#: ../src/msec/msecgui.py:235
#, fuzzy
msgid "Basic security"
msgstr "Сигурност"

#: ../src/msec/msecgui.py:236
#, fuzzy
msgid "System security"
msgstr "Сигурност"

#: ../src/msec/msecgui.py:237
#, fuzzy
msgid "Network security"
msgstr "Грешка на мрежи"

#: ../src/msec/msecgui.py:238
#, fuzzy
msgid "Periodic checks"
msgstr "Периодичне провере"

#: ../src/msec/msecgui.py:239
#, fuzzy
msgid "Exceptions"
msgstr "Опције"

#: ../src/msec/msecgui.py:240 ../src/msec/msecgui.py:1118
msgid "Permissions"
msgstr "Дозволе"

#: ../src/msec/msecgui.py:280
msgid "MSEC option changes"
msgstr ""

#: ../src/msec/msecgui.py:280
#, fuzzy
msgid "option"
msgstr "Опције"

#: ../src/msec/msecgui.py:281
#, fuzzy
msgid "System permissions changes"
msgstr "Сиситемске опције"

#: ../src/msec/msecgui.py:281
#, fuzzy
msgid "permission check"
msgstr "Дозволе"

#: ../src/msec/msecgui.py:291
msgid "changed %s <b>%s</b> (%s -> %s)"
msgstr ""

#: ../src/msec/msecgui.py:296
msgid "added %s <b>%s</b> (%s)"
msgstr ""

#: ../src/msec/msecgui.py:301
msgid "removed %s <b>%s</b>"
msgstr ""

#: ../src/msec/msecgui.py:305
#, fuzzy
msgid "no changes"
msgstr "Нема заједничког дељења"

#: ../src/msec/msecgui.py:318 ../src/msec/msecgui.py:325
#, fuzzy
msgid "Saving changes.."
msgstr "Укањам %s ..."

#: ../src/msec/msecgui.py:321
msgid "Ignore and quit"
msgstr ""

#: ../src/msec/msecgui.py:359
msgid "<b>%s:</b> <i>%s</i>\n"
msgstr ""

#: ../src/msec/msecgui.py:366
msgid "<b>MSEC test run results:</b> <i>%s</i>"
msgstr ""

#: ../src/msec/msecgui.py:374
msgid "Details"
msgstr "Детаљи"

#: ../src/msec/msecgui.py:380
msgid "MSEC messages (%s): %d"
msgstr ""

#: ../src/msec/msecgui.py:394
msgid "Details (%d changes).."
msgstr ""

#: ../src/msec/msecgui.py:447
msgid "No base msec level specified, using '%s'"
msgstr ""

#: ../src/msec/msecgui.py:450
msgid "Detected base msec level '%s'"
msgstr ""

#: ../src/msec/msecgui.py:478
#, fuzzy
msgid "Security Option"
msgstr "Наведите опције"

#: ../src/msec/msecgui.py:488 ../src/msec/msecgui.py:715
#, fuzzy
msgid "Description"
msgstr "Наведите опције"

#: ../src/msec/msecgui.py:493
#, fuzzy
msgid "Value"
msgstr "Палау"

#: ../src/msec/msecgui.py:503
msgid "Invalid option '%s'!"
msgstr ""

#: ../src/msec/msecgui.py:578
msgid "Firewall"
msgstr ""

#: ../src/msec/msecgui.py:587 ../src/msec/msecgui.py:622
msgid "Configure"
msgstr ""

#: ../src/msec/msecgui.py:599
#, fuzzy
msgid "Security"
msgstr "Периодичне провере"

#: ../src/msec/msecgui.py:605
msgid "Msec is disabled"
msgstr ""

#: ../src/msec/msecgui.py:608
msgid "Msec is enabled"
msgstr ""

#: ../src/msec/msecgui.py:609
#, fuzzy
msgid "Base security level: '%s'"
msgstr "Сигурносни ниво"

#: ../src/msec/msecgui.py:617
msgid "Custom settings: %d"
msgstr ""

#: ../src/msec/msecgui.py:634
msgid "Updates"
msgstr ""

#: ../src/msec/msecgui.py:643
msgid "Update now"
msgstr ""

#: ../src/msec/msecgui.py:675
#, fuzzy
msgid "Enable MSEC tool"
msgstr "Омогући стартање са CD-а?"

#: ../src/msec/msecgui.py:682
#, fuzzy
msgid "Select the base security level"
msgstr "Изаберите жељени сигурносни ниво"

#: ../src/msec/msecgui.py:705
msgid "Level name"
msgstr ""

#: ../src/msec/msecgui.py:761
#, fuzzy
msgid "Send security alerts by email to:"
msgstr "Сигурносни аларми:"

#: ../src/msec/msecgui.py:783
msgid "Display security alerts on desktop"
msgstr ""

#: ../src/msec/msecgui.py:967
#, fuzzy
msgid "Enable periodic security checks"
msgstr ""
"Аргументи: (arg)\n"
"\n"
"Омогући/Онемогући msec проверу сигурности на сваки час."

#: ../src/msec/msecgui.py:1029
#, fuzzy
msgid "Security check"
msgstr "Периодичне провере"

#: ../src/msec/msecgui.py:1035
#, fuzzy
msgid "Exception"
msgstr "Опције"

#: ../src/msec/msecgui.py:1056 ../src/msec/msecgui.py:1175
#, fuzzy
msgid "Add a rule"
msgstr "Додај корисника"

#: ../src/msec/msecgui.py:1061 ../src/msec/msecgui.py:1180
msgid "Delete"
msgstr "Обриши"

#: ../src/msec/msecgui.py:1100
msgid "Path"
msgstr "Путања"

#: ../src/msec/msecgui.py:1106
#, fuzzy
msgid "User"
msgstr "Корисников ID"

#: ../src/msec/msecgui.py:1112
#, fuzzy
msgid "Group"
msgstr "Групни ID"

#: ../src/msec/msecgui.py:1126
#, fuzzy
msgid "Enforce"
msgstr "Zанемари"

#: ../src/msec/msecgui.py:1279
msgid "Editing exception"
msgstr ""

#: ../src/msec/msecgui.py:1284
msgid "Adding new exception"
msgstr ""

#: ../src/msec/msecgui.py:1291
msgid ""
"Editing exception. Please select the correspondent msec check and exception "
"value\n"
msgstr ""

#: ../src/msec/msecgui.py:1298
msgid "Check: "
msgstr ""

#: ../src/msec/msecgui.py:1313
msgid "Exception: "
msgstr ""

#: ../src/msec/msecgui.py:1348
msgid "Changing permissions for %s"
msgstr ""

#: ../src/msec/msecgui.py:1355
msgid "Adding new permission check"
msgstr ""

#: ../src/msec/msecgui.py:1367
msgid ""
"Changing permissions on <b>%s</b>\n"
"Please specify new permissions, or use 'current' to keep current "
"permissions.\n"
msgstr ""

#: ../src/msec/msecgui.py:1367
msgid "new file"
msgstr ""

#: ../src/msec/msecgui.py:1375
#, fuzzy
msgid "File: "
msgstr "/_Фајл"

#: ../src/msec/msecgui.py:1383
#, fuzzy
msgid "User: "
msgstr "Корисников ID"

#: ../src/msec/msecgui.py:1391
#, fuzzy
msgid "Group: "
msgstr "Групни ID"

#: ../src/msec/msecgui.py:1399
#, fuzzy
msgid "Permissions: "
msgstr "Дозволе"

#: ../src/msec/msecgui.py:1456
msgid "Select new value for %s"
msgstr ""

#: ../src/msec/msecgui.py:1465
msgid ""
"<i>%s</i>\n"
"\n"
"\tCurrent value:\t\t\t<i>%s</i>\n"
"\t%sDefault level value:\t<i>%s</i>%s\n"
msgstr ""

#: ../src/msec/msecgui.py:1475
#, fuzzy
msgid "New value:"
msgstr "Нова Каледонија"

#: ../src/msec/plugins/msec.py:149
msgid "Allowing unrestricted chkconfig for packages"
msgstr ""

#: ../src/msec/plugins/msec.py:154
msgid "Restricting chkconfig for packages according to \"%s\" profile"
msgstr ""

#: ../src/msec/plugins/msec.py:164
#, fuzzy
msgid "Setting root umask to %s"
msgstr "Мењам ext2 на ext3"

#: ../src/msec/plugins/msec.py:174
#, fuzzy
msgid "Setting users umask to %s"
msgstr "Мењам ext2 на ext3"

#: ../src/msec/plugins/msec.py:195
msgid "Allowing users to connect X server from everywhere"
msgstr ""

#: ../src/msec/plugins/msec.py:198
msgid "Allowing users to connect X server from localhost"
msgstr ""

#: ../src/msec/plugins/msec.py:201
msgid "Restricting X server connection to the console user"
msgstr ""

#: ../src/msec/plugins/msec.py:204
msgid "invalid allow_x_connections arg: %s"
msgstr ""

#: ../src/msec/plugins/msec.py:227
#, fuzzy
msgid "Allowing the X server to listen to tcp connections"
msgstr "Winmodem конекција"

#: ../src/msec/plugins/msec.py:238
msgid "Forbidding the X server to listen to tcp connection"
msgstr ""

#: ../src/msec/plugins/msec.py:254
#, fuzzy
msgid "Invalid shell timeout \"%s\""
msgstr "Пауза при стартању кернела"

#: ../src/msec/plugins/msec.py:262
#, fuzzy
msgid "Setting shell timeout to %s"
msgstr "Пауза при стартању кернела"

#: ../src/msec/plugins/msec.py:270
msgid "Invalid shell history size \"%s\""
msgstr ""

#: ../src/msec/plugins/msec.py:281
msgid "Setting shell history size to %s"
msgstr ""

#: ../src/msec/plugins/msec.py:285
msgid "Removing limit on shell history size"
msgstr ""

#: ../src/msec/plugins/msec.py:294
#, fuzzy
msgid "Invalid file system umask \"%s\""
msgstr "Пауза при стартању кернела"

#: ../src/msec/plugins/msec.py:328
#, fuzzy
msgid "Allowing reboot and shutdown to the console user"
msgstr ""
"Аргументи: (arg)\n"
"\n"
"Дозволи/Не дозволи рестартовање од стране конзлолног корисника."

#: ../src/msec/plugins/msec.py:335
#, fuzzy
msgid "Allowing SysRq key to the console user"
msgstr ""
"Аргументи: (arg)\n"
"\n"
"Дозволи/Не дозволи рестартовање од стране конзлолног корисника."

#: ../src/msec/plugins/msec.py:338
msgid "Allowing Shutdown/Reboot in GDM"
msgstr ""

#: ../src/msec/plugins/msec.py:342
msgid "Allowing Shutdown/Reboot in KDM"
msgstr ""

#: ../src/msec/plugins/msec.py:345
msgid "Allowing Ctrl-Alt-Del from console"
msgstr ""

#: ../src/msec/plugins/msec.py:349
#, fuzzy
msgid "Forbidding reboot and shutdown to the console user"
msgstr ""
"Аргументи: (arg)\n"
"\n"
"Дозволи/Не дозволи рестартовање од стране конзлолног корисника."

#: ../src/msec/plugins/msec.py:357
#, fuzzy
msgid "Forbidding SysRq key to the console user"
msgstr ""
"Аргументи: (arg)\n"
"\n"
"Дозволи/Не дозволи рестартовање од стране конзлолног корисника."

#: ../src/msec/plugins/msec.py:360
msgid "Forbidding Shutdown/Reboot in GDM"
msgstr ""

#: ../src/msec/plugins/msec.py:364
msgid "Forbidding Shutdown/Reboot in KDM"
msgstr ""

#: ../src/msec/plugins/msec.py:367
msgid "Forbidding Ctrl-Alt-Del from console"
msgstr ""

#: ../src/msec/plugins/msec.py:381
msgid "Allowing list of users in KDM"
msgstr ""

#: ../src/msec/plugins/msec.py:385
msgid "Allowing list of users in GDM"
msgstr ""

#: ../src/msec/plugins/msec.py:390
msgid "Forbidding list of users in KDM"
msgstr ""

#: ../src/msec/plugins/msec.py:394
msgid "Forbidding list of users in GDM"
msgstr ""

#: ../src/msec/plugins/msec.py:405
#, fuzzy
msgid "Allowing autologin"
msgstr ""
"Аргументи: (arg)\n"
"\n"
"Дозволи/Не дозволи аутологовање."

#: ../src/msec/plugins/msec.py:408
#, fuzzy
msgid "Forbidding autologin"
msgstr ""
"Аргументи: (arg)\n"
"\n"
"Дозволи/Не дозволи аутологовање."

#: ../src/msec/plugins/msec.py:413
msgid "Activating password in boot loader"
msgstr ""

#: ../src/msec/plugins/msec.py:427
#, fuzzy
msgid "Removing password in boot loader"
msgstr "Без лозинке"

#: ../src/msec/plugins/msec.py:442
#, fuzzy
msgid "Enabling log on console"
msgstr "Прикажи лого у конзоли"

#: ../src/msec/plugins/msec.py:446
#, fuzzy
msgid "Disabling log on console"
msgstr "Прикажи лого у конзоли"

#: ../src/msec/plugins/msec.py:463
msgid "Authorizing all services"
msgstr ""

#: ../src/msec/plugins/msec.py:467
msgid "Disabling all services"
msgstr ""

#: ../src/msec/plugins/msec.py:471
#, fuzzy
msgid "Disabling non local services"
msgstr "Заједничко дељење локалних скенера"

#: ../src/msec/plugins/msec.py:483
#, fuzzy
msgid "Enabling sulogin in single user runlevel"
msgstr ""
"Аргументи: (arg)\n"
"\n"
" Омогући/Онемогући sulogin(8) у single user нивоу."

#: ../src/msec/plugins/msec.py:487
#, fuzzy
msgid "Disabling sulogin in single user runlevel"
msgstr ""
"Аргументи: (arg)\n"
"\n"
" Омогући/Онемогући sulogin(8) у single user нивоу."

#: ../src/msec/plugins/msec.py:498
#, fuzzy
msgid "Enabling msec periodic runs"
msgstr "Омогућавам swap партицију %s"

#: ../src/msec/plugins/msec.py:502
msgid "Disabling msec periodic runs"
msgstr ""

#: ../src/msec/plugins/msec.py:515
msgid "Enabling crontab and at"
msgstr ""

#: ../src/msec/plugins/msec.py:522
msgid "Disabling crontab and at"
msgstr ""

#: ../src/msec/plugins/msec.py:534
msgid "Allowing export display from root"
msgstr ""

#: ../src/msec/plugins/msec.py:538
msgid "Forbidding export display from root"
msgstr ""

#: ../src/msec/plugins/msec.py:564
#, fuzzy
msgid "Allowing direct root login"
msgstr ""
"Аргументи: (arg)\n"
"\n"
"Дозволи/Не дозволи диектно root логовање."

#: ../src/msec/plugins/msec.py:581
#, fuzzy
msgid "Forbidding direct root login"
msgstr ""
"Аргументи: (arg)\n"
"\n"
"Дозволи/Не дозволи диектно root логовање."

#: ../src/msec/plugins/msec.py:603
msgid "Using secure location for temporary files"
msgstr ""

#: ../src/msec/plugins/msec.py:605
msgid "Not using secure location for temporary files"
msgstr ""

#: ../src/msec/plugins/msec.py:625
msgid "Allowing including current directory in path"
msgstr ""

#: ../src/msec/plugins/msec.py:628
msgid "Not allowing including current directory in path"
msgstr ""

#: ../src/msec/plugins/network.py:134
#, fuzzy
msgid "Allowing remote root login"
msgstr ""
"Аргументи: (arg)\n"
"\n"
"Дозволи/Не дозволи удаљено root логовање."

#: ../src/msec/plugins/network.py:138
#, fuzzy
msgid "Forbidding remote root login"
msgstr ""
"Аргументи: (arg)\n"
"\n"
"Дозволи/Не дозволи удаљено root логовање."

#: ../src/msec/plugins/network.py:142
#, fuzzy
msgid "Allowing remote root login only by passphrase"
msgstr ""
"Аргументи: (arg)\n"
"\n"
"Дозволи/Не дозволи удаљено root логовање."

#: ../src/msec/plugins/network.py:175
#, fuzzy
msgid "Enabling name resolution spoofing protection"
msgstr ""
"Аргументи: (arg, alert=1)\n"
"\n"
"Омогући/Онемогући IP spoofing заштиту."

#: ../src/msec/plugins/network.py:180
#, fuzzy
msgid "Disabling name resolution spoofing protection"
msgstr ""
"Аргументи: (arg, alert=1)\n"
"\n"
"Омогући/Онемогући IP spoofing заштиту."

#: ../src/msec/plugins/pam.py:68
#, fuzzy
msgid "Using password to authenticate users"
msgstr ""
"Аргументи: (arg)\n"
"\n"
"Користи лозинку за аутентификацију корисника."

#: ../src/msec/plugins/pam.py:72
#, fuzzy
msgid "Don't use password to authenticate users"
msgstr ""
"Аргументи: (arg)\n"
"\n"
"Користи лозинку за аутентификацију корисника."

#: ../src/msec/plugins/pam.py:83
msgid "Password history not supported with pam_tcb."
msgstr ""

#: ../src/msec/plugins/pam.py:91
#, fuzzy
msgid "Invalid maximum password history length: \"%s\""
msgstr "Ова лозинка је превише проста"

#: ../src/msec/plugins/pam.py:106
#, fuzzy
msgid "Setting password history to %d."
msgstr "Ова лозинка је превише проста"

#: ../src/msec/plugins/pam.py:112
#, fuzzy
msgid "Disabling password history"
msgstr "Ова лозинка је превише проста"

#: ../src/msec/plugins/pam.py:124
msgid ""
"Invalid password length \"%s\". Use \"length,ndigits,nupper\" as parameter"
msgstr ""

#: ../src/msec/plugins/pam.py:145
msgid "Setting minimum password length %d"
msgstr ""

#: ../src/msec/plugins/pam.py:169
#, fuzzy
msgid "Allowing su only from wheel group members"
msgstr ""
"Аргументи: (arg)\n"
"\n"
" Омогућавање su само за корисније wheel групе или за сваког корисника."

#: ../src/msec/plugins/pam.py:173
msgid "no wheel group"
msgstr ""

#: ../src/msec/plugins/pam.py:177
msgid ""
"Security configuration is defined to allow only members of the wheel group "
"to su to root, but this group is empty. Please add the allowed users into "
"the wheel group."
msgstr ""

#: ../src/msec/plugins/pam.py:185
msgid "Allowing su for all"
msgstr ""

#: ../src/msec/plugins/pam.py:204
msgid "Allowing transparent root access for wheel group members"
msgstr ""

#: ../src/msec/plugins/pam.py:211
#, fuzzy
msgid "Disabling transparent root access for wheel group members"
msgstr ""
"Аргументи: (arg)\n"
"\n"
" Омогућавање su само за корисније wheel групе или за сваког корисника."

#~ msgid "Standard"
#~ msgstr "Стандардни"

#, fuzzy
#~ msgid "Secure"
#~ msgstr "Сигурност"

#, fuzzy
#~ msgid "System administrator email address:"
#~ msgstr "Унеси root лозинку"

#, fuzzy
#~ msgid "_Cancel"
#~ msgstr "Поништи"

#, fuzzy
#~ msgid "_Ignore"
#~ msgstr "Zанемари"

#, fuzzy
#~ msgid "_Save"
#~ msgstr "Сачувај"

#, fuzzy
#~ msgid "Do you want to save changes before closing?"
#~ msgstr "Да ли хоћете да сачувате измене у /etc/fstab?"

#, fuzzy
#~ msgid "Activating daily security check"
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ " Активирај/Деактивирај дневне сигурносне провере."

#, fuzzy
#~ msgid "Disabling daily security check"
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ " Активирај/Деактивирај дневне сигурносне провере."

#, fuzzy
#~ msgid "Activating periodic promiscuity check"
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ "Активирај/Деактивирај проверу промискуитета мрежних картица."

#, fuzzy
#~ msgid "Disabling periodic promiscuity check"
#~ msgstr ""
#~ "Аргументи: (arg)\n"
#~ "\n"
#~ "Активирај/Деактивирај проверу промискуитета мрежних картица."

#, fuzzy
#~ msgid "_Import configuration"
#~ msgstr "Подешавање звука"

#, fuzzy
#~ msgid "_Export configuration"
#~ msgstr "Подешавање звука"

#, fuzzy
#~ msgid "Save and apply current policy"