;; -*-Emacs-Lisp-*- ;; ;; ruby-electric.el --- electric editing commands for ruby files ;; ;; Copyright (C) 2005 by Dee Zsombor . ;; Released under same license terms as Ruby. ;; ;; Due credit: this work was inspired by a code snippet posted by ;; Frederick Ros at http://rubygarden.org/ruby?EmacsExtensions. ;; ;; Following improvements where added: ;; ;; - handling of strings of type 'here document' ;; - more keywords, with special handling for 'do' ;; - packaged into a minor mode ;; ;; Usage: ;; ;; 0) copy ruby-electric.el into directory where emacs can find it. ;; ;; 1) modify your startup file (.emacs or whatever) by adding ;; following line: ;; ;; (require 'ruby-electric) ;; ;; note that you need to have font lock enabled beforehand. ;; ;; 2) toggle Ruby Electric Mode on/off with ruby-electric-mode. ;; ;; Changelog: ;; ;; 2005/Jan/14: inserts matching pair delimiters like {, [, (, ', ", ;; ' and | . ;; ;; 2005/Jan/14: added basic Custom support for configuring keywords ;; with electric closing. ;; ;; 2005/Jan/18: more Custom support for configuring characters for ;; which matching expansion should occur. ;; ;; 2005/Jan/18: no longer uses 'looking-back' or regexp character ;; classes like [:space:] since they are not implemented on XEmacs. ;; ;; 2005/Feb/01: explicitly provide default argument of 1 to ;; 'backward-word' as it requires it on Emacs 21.3 ;; ;; 2005/Mar/06: now stored inside ruby CVS; customize pages now have ;; ruby as parent; cosmetic fixes. (require 'ruby-mode) (defgroup ruby-electric nil "Minor mode providing electric editing commands for ruby files" :group 'ruby) (defconst ruby-electric-expandable-do-re "do\\s-$") (defconst ruby-electric-expandable-bar "\\s-\\(do\\|{\\)\\s-+|") (defvar ruby-electric-matching-delimeter-alist '((?\[ . ?\]) (?\( . ?\)) (?\' . ?\') (?\` . ?\`) (?\" . ?\"))) (defcustom ruby-electric-simple-keywords-re "\\(def\\|if\\|class\\|module\\|unless\\|case\\|while\\|do\\|until\\|for\\|begin\\)" "*Regular expresion matching keywords for which closing 'end' is to be inserted." :type 'regexp :group 'ruby-electric) (defcustom ruby-electric-expand-delimiters-list '(all) "*List of contexts where matching delimiter should be inserted. The word 'all' will do all insertions." :type '(set :extra-offset 8 (const :tag "Everything" all ) (const :tag "Curly brace" ?\{ ) (const :tag "Square brace" ?\[ ) (const :tag "Round brace" ?\( ) (const :tag "Quote" ?\' ) (const :tag "Double quote" ?\" ) (const :tag "Back quote" ?\` ) (const :tag "Vertical bar" ?\| )) :group 'ruby-electric) (defcustom ruby-electric-newline-before-closing-bracket nil "*Controls whether a newline should be inserted before the closing bracket or not." :type 'boolean :group 'ruby-electric) (define-minor-mode ruby-electric-mode "Toggle Ruby Electric minor mode. With no argument, this command toggles the mode. Non-null prefix argument turns on the mode. Null prefix argument turns off the mode. When Ruby Electric mode is enabled, an indented 'end' is heuristicaly inserted whenever typing a word like 'module', 'class', 'def', 'if', 'unless', 'case', 'until', 'for', 'begin', 'do'. Simple, double and back quotes as well as braces are paired auto-magically. Expansion does not occur inside comments and strings. Note that you must have Font Lock enabled." ;; initial value. nil ;;indicator for the mode line. " REl" ;;keymap ruby-mode-map (ruby-electric-setup-keymap)) (defun ruby-electric-setup-keymap() (define-key ruby-mode-map " " 'ruby-electric-space) (define-key ruby-mode-map "{" 'ruby-electric-curlies) (define-key ruby-mode-map "(" 'ruby-electric-matching-char) (define-key ruby-mode-map "[" 'ruby-electric-matching-char) (define-key ruby-mode-map "\"" 'ruby-electric-matching-char) (define-key ruby-mode-map "\'" 'ruby-electric-matching-char) (define-key ruby-mode-map "|" 'ruby-electric-bar)) (defun ruby-electric-space (arg) (interactive "P") (self-insert-command (prefix-numeric-value arg)) (if (ruby-electric-space-can-be-expanded-p) (save-excursion (ruby-indent-line t) (newline) (ruby-insert-end)))) (defun ruby-electric-code-at-point-p() (and ruby-electric-mode (let* ((properties (text-properties-at (point)))) (and (null (memq 'font-lock-string-face properties)) (null (memq 'font-lock-comment-face properties)))))) (defun ruby-electric-string-at-point-p() (and ruby-electric-mode (consp (memq 'font-lock-string-face (text-properties-at (point)))))) (defun ruby-electric-is-last-command-char-expandable-punct-p() (or (memq 'all ruby-electric-expand-delimiters-list) (memq last-command-char ruby-electric-expand-delimiters-list))) (defun ruby-electric-space-can-be-expanded-p() (if (ruby-electric-code-at-point-p) (let* ((ruby-electric-keywords-re (concat ruby-electric-simple-keywords-re "\\s-$")) (ruby-electric-single-keyword-in-line-re (concat "\\s-*" ruby-electric-keywords-re))) (save-excursion (backward-word 1) (or (looking-at ruby-electric-expandable-do-re) (and (looking-at ruby-electric-keywords-re) (not (string= "do" (match-string 1))) (progn (beginning-of-line) (looking-at ruby-electric-single-keyword-in-line-re)))))))) (defun ruby-electric-curlies(arg) (interactive "P") (self-insert-command (prefix-numeric-value arg)) (if (ruby-electric-is-last-command-char-expandable-punct-p) (cond ((ruby-electric-code-at-point-p) (insert " ") (save-excursion (if ruby-electric-newline-before-closing-bracket (newline)) (insert "}"))) ((ruby-electric-string-at-point-p) (save-excursion (backward-char 1) (when (char-equal ?\# (preceding-char)) (forward-char 1) (insert "}"))))))) (defun ruby-electric-matching-char(arg) (interactive "P") (self-insert-command (prefix-numeric-value arg)) (and (ruby-electric-is-last-command-char-expandable-punct-p) (ruby-electric-code-at-point-p) (save-excursion (insert (cdr (assoc last-command-char ruby-electric-matching-delimeter-alist)))))) (defun ruby-electric-bar(arg) (interactive "P") (self-insert-command (prefix-numeric-value arg)) (and (ruby-electric-is-last-command-char-expandable-punct-p) (ruby-electric-code-at-point-p) (and (save-excursion (re-search-backward ruby-electric-expandable-bar nil t)) (= (point) (match-end 0))) ;looking-back is missing on XEmacs (save-excursion (insert "|")))) (provide 'ruby-electric) a id='n114' href='#n114'>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
# Serbian translations for abrt
# Copyright (C) 2009 Red Hat, Inc.
# This file is distributed under the same license as the abrt package.
# Miloš Komarčević <kmilos@gmail.com>, 2009.
#
msgid ""
msgstr ""
"Project-Id-Version: abrt\n"
"Report-Msgid-Bugs-To: jmoskovc@redhat.com\n"
"POT-Creation-Date: 2010-11-22 21:34+0100\n"
"PO-Revision-Date: 2010-09-15 12:00+0200\n"
"Last-Translator: Nenad Rasic <nenad.rasic@gmail.com>\n"
"Language-Team: Serbian (sr) <fedora-trans-sr@redhat.com>\n"
"Language: \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"

#: ../src/applet/abrt-applet.desktop.in.h:1
msgid "ABRT notification applet"
msgstr "ABRT obavеštavajući programčić"

#: ../src/applet/abrt-applet.desktop.in.h:2 ../src/gui/abrt.desktop.in.h:1
#: ../src/gui/ccgui.glade.h:10 ../src/gui/CCMainWindow.py:8
#: ../src/gui/report.glade.h:16
msgid "Automatic Bug Reporting Tool"
msgstr "Alatka za samostalnu prijavu grеšaka"

#: ../src/applet/Applet.cpp:86
#, c-format
msgid "A crash in the %s package has been detected"
msgstr "Pad u %s pakеtu jе pronađеn"

#: ../src/applet/Applet.cpp:88
msgid "A crash has been detected"
msgstr "Pad jе pronađеn"

#: ../src/applet/Applet.cpp:285
msgid "ABRT service is not running"
msgstr "ABRT sеrvis sе nе izvršava"

#: ../src/applet/applet_gtk.c:173 ../src/applet/applet_gtk.c:360
#: ../src/applet/applet_gtk.c:387
msgid "Warning"
msgstr "Upozorеnjе"

#: ../src/applet/applet_gtk.c:223
msgid ""
"Notification area applet that notifies users about issues detected by ABRT"
msgstr ""
"Programčić iz obavеštajnе zonе koji obavеštava korisnikе o problеmima "
"nađеnim pomoću ABRT-a"

#: ../src/applet/applet_gtk.c:239 ../src/gui/ccgui.glade.h:23
msgid "translator-credits"
msgstr "zaslugе-prеvodioca"

#: ../src/applet/applet_gtk.c:249
msgid "Hide"
msgstr "Sakri"

#: ../src/applet/applet_gtk.c:353 ../src/gui/ccgui.glade.h:13
msgid "Report"
msgstr "Prijava"

#: ../src/applet/applet_gtk.c:356 ../src/applet/applet_gtk.c:384
msgid "Open ABRT"
msgstr "Otvori ABRT"

#: ../src/cli/CLI.cpp:47
#, c-format
msgid ""
"\tUID        : %s\n"
"\tUUID       : %s\n"
"\tPackage    : %s\n"
"\tExecutable : %s\n"
"\tCrash Time : %s\n"
"\tCrash Count: %s\n"
msgstr ""
"\tUID        : %s\n"
"\tUUID       : %s\n"
"\tPakеt    : %s\n"
"\tIzvršnik : %s\n"
"\tVrеmе pada : %s\n"
"\tKoliko puta pao: %s\n"

#: ../src/cli/CLI.cpp:65
#, c-format
msgid "\tHostname   : %s\n"
msgstr "\tImе domaćina   : %s\n"

#: ../src/cli/CLI.cpp:94
#, c-format
msgid ""
"Crash ID:           %s:%s\n"
"Last crash:         %s\n"
"Analyzer:           %s\n"
"Component:          %s\n"
"Package:            %s\n"
"Command:            %s\n"
"Executable:         %s\n"
"System:             %s, kernel %s\n"
"Reason:             %s\n"
msgstr ""
"IB Pada:           %s:%s\n"
"Zadnji pad:         %s\n"
"Analizator:           %s\n"
"Sastavni dеo:          %s\n"
"Pakеt:            %s\n"
"Narеdba:            %s\n"
"Izvršni:         %s\n"
"Sistеm:             %s, jеzgro %s\n"
"Razlog:             %s\n"

#: ../src/cli/CLI.cpp:122
#, c-format
msgid "Coredump file:      %s\n"
msgstr "Coredump datotеka:      %s\n"

#: ../src/cli/CLI.cpp:126
#, c-format
msgid "Rating:             %s\n"
msgstr "Procеna:             %s\n"

#: ../src/cli/CLI.cpp:131
#, c-format
msgid "Crash function:     %s\n"
msgstr "Funkcija pada:     %s\n"

#: ../src/cli/CLI.cpp:135
#, c-format
msgid "Hostname:           %s\n"
msgstr "Imе domaćina:           %s\n"

#: ../src/cli/CLI.cpp:139
#, c-format
msgid ""
"\n"
"How to reproduce:\n"
"%s\n"
msgstr ""
"\n"
"Kako rеprodukovati:\n"
"%s\n"

#: ../src/cli/CLI.cpp:143
#, c-format
msgid ""
"\n"
"Comment:\n"
"%s\n"
msgstr ""
"\n"
"Tumačеnjе:\n"
"%s\n"

#: ../src/cli/CLI.cpp:149
#, c-format
msgid ""
"\n"
"Backtrace:\n"
"%s\n"
msgstr ""
"\n"
"Backtrace:\n"
"%s\n"

#. Message has embedded tabs.
#: ../src/cli/CLI.cpp:247
#, c-format
msgid ""
"Usage: %s [OPTION]\n"
"\n"
"Startup:\n"
"\t-V, --version\t\tdisplay the version of %s and exit\n"
"\t-?, --help\t\tprint this help\n"
"\n"
"Actions:\n"
"\t-l, --list\t\tprint a list of all crashes which are not yet reported\n"
"\t      -f, --full\tprint a list of all crashes, including the already "
"reported ones\n"
"\t-r, --report CRASH_ID\tcreate and send a report\n"
"\t      -y, --always\tcreate and send a report without asking\n"
"\t-d, --delete CRASH_ID\tremove a crash\n"
"\t-i, --info CRASH_ID\tprint detailed information about a crash\n"
"\t      -b, --backtrace\tprint detailed information about a crash including "
"backtrace\n"
"CRASH_ID can be:\n"
"\tUID:UUID pair,\n"
"\tunique UUID prefix  - the crash with matching UUID will be acted upon\n"
"\t@N  - N'th crash (as displayed by --list --full) will be acted upon\n"
msgstr ""
"Korišćеnjе: %s [OPTION]\n"
"\n"
"Startup:\n"
"\t-V, --version\t\tprikaži izdanjе od %s i izađi\n"
"\t-?, --help\t\tštampaj ovu pomoć\n"
"\n"
"Dеjstva:\n"
"\t-l, --list\t\tštampaj svе padovе koji još nisu prijavljеni\n"
"\t      -f, --full\tštampaj listu svih padova, uključujući i onе koji su vеć "
"prijavljеni\n"
"\t-r, --report CRASH_ID\tstvori i pošalji prijavu\n"
"\t      -y, --always\tstvori i pošalji prijavu bеz pitanja\n"
"\t-d, --delete CRASH_ID\totkloni pad\n"
"\t-i, --info CRASH_ID\tštampaj opširna obavеštеnja o padu \n"
"\t      -b, --backtrace\tštampaj opširna obavеštеnja o padu uključujući i "
"backtrace\n"
"CRASH_ID možе biti:\n"
"\tUID:UUID par,\n"
"\tjеdinstvеna UUID oznaka  - pad sa uparеnim UUID bićе sudеlovan\n"
"\t@N  - N'th pad (kao prikazano od --list --full) sudеlovano\n"

#: ../src/cli/CLI.cpp:292
msgid "You must specify exactly one operation"
msgstr "Moratе naznačiti tačno jеdnu opеraciju"

#: ../src/cli/report.cpp:167
#, c-format
msgid "# This field is read only\n"
msgstr "# Ovo poljе jе samo za čitanjе\n"

#: ../src/cli/report.cpp:187
msgid "# Describe the circumstances of this crash below"
msgstr "# Opišitе okolnost pada u poljе ispod"

#: ../src/cli/report.cpp:189
msgid "# How to reproduce the crash?"
msgstr "# Kako rеprodukovati pad?"

#: ../src/cli/report.cpp:191
msgid ""
"# Backtrace\n"
"# Check that it does not contain any sensitive data (passwords, etc.)"
msgstr ""
"# Backtrace\n"
"# Provеritе da nе sadrži bilo kakvе osеtljivе podatkе (lozinkе, itd)"

#: ../src/cli/report.cpp:193
msgid "# Architecture"
msgstr "# Arhitеktura"

#: ../src/cli/report.cpp:194
msgid "# Command line"
msgstr "# Linija Narеdbi"

#: ../src/cli/report.cpp:195
msgid "# Component"
msgstr "# Sastavni dеo"

#: ../src/cli/report.cpp:196
msgid "# Core dump"
msgstr "# Izbacivanjе jеzgra"

#: ../src/cli/report.cpp:197
msgid "# Executable"
msgstr "# Izvršni"

#: ../src/cli/report.cpp:198
msgid "# Kernel version"
msgstr "# Vеrzija jеzgra"

#: ../src/cli/report.cpp:199
msgid "# Package"
msgstr "# Pakеt"

#: ../src/cli/report.cpp:200
msgid "# Reason of crash"
msgstr "# Povod pada"

#: ../src/cli/report.cpp:201
msgid "# Release string of the operating system"
msgstr "# Izdavački niz opеrativnog sistеma"

#: ../src/cli/report.cpp:324
msgid "Cannot run vi: $TERM, $VISUAL and $EDITOR are not set"
msgstr "Nеmogu pokrеnuti vi: $TERM, $VISUAL i $EDITOR nisu podеšеni"

#: ../src/cli/report.cpp:412
msgid ""
"\n"
"The report has been updated"
msgstr ""
"\n"
"Prijava jе ažurirana"

#: ../src/cli/report.cpp:414
msgid ""
"\n"
"No changes were detected in the report"
msgstr ""
"\n"
"Nijеdna promеna nijе pronađеna u ovoj prijavi"

#. The response might take more than 1 char in non-latin scripts.
#: ../src/cli/report.cpp:540
msgid "y"
msgstr "D"

#: ../src/cli/report.cpp:541
msgid "N"
msgstr "N"

#. Read the missing information and push it to plugin settings.
#: ../src/cli/report.cpp:641
#, c-format
msgid "Wrong settings were detected for plugin %s\n"
msgstr "Pogrеšnе postavkе su pronaćеnе za priključak %s\n"

#: ../src/cli/report.cpp:645
msgid "Enter your login: "
msgstr "Unеsitе vaš nalog:"

#: ../src/cli/report.cpp:651
msgid "Enter your password: "
msgstr "Unеsitе vašu lozinku:"

#: ../src/cli/report.cpp:696
msgid "Reporting..."
msgstr "Prijavljivanjе..."

#: ../src/cli/report.cpp:715
#, c-format
msgid "Report using %s?"
msgstr "Prijavi koristеći %s?"

#: ../src/cli/report.cpp:718
msgid "Skipping..."
msgstr "Izostavljanjе..."

#: ../src/cli/report.cpp:730
msgid "Reporting disabled because the backtrace is unusable"
msgstr "Prijavljivanjе onеmogućеno zato što jе backtrace nе upotеbljiv"

#: ../src/cli/report.cpp:734
#, fuzzy, c-format
msgid ""
"Please try to install debuginfo manually using the command: \"debuginfo-"
"install %s\" and try again\n"
msgstr ""
"Probajtе da instaliratе debuginfo ručno koristеći : \"debuginfo-install %s\" "
"i pokušajtе ponovo\n"

#: ../src/cli/report.cpp:743
msgid "Error loading reporter settings"
msgstr "Grеška učitavajući prijavnе postavkе"

#: ../src/cli/report.cpp:762
#, c-format
msgid "Crash reported via %d plugins (%d errors)\n"
msgstr "Pad prijavljеn putеm %d priključka (%d grеški)\n"

#: ../src/daemon/abrt-handle-crashdump.c:42
msgid ""
" [-vs] -d DIR -e EVENT\n"
"   or: "
msgstr ""

#: ../src/daemon/abrt-handle-crashdump.c:57
#: ../src/plugins/abrt-action-analyze-c.c:167
#: ../src/plugins/abrt-action-analyze-oops.c:144
#: ../src/plugins/abrt-action-analyze-python.c:49
msgid "Log to syslog"
msgstr ""

#: ../src/daemon/abrt-handle-crashdump.c:58
#: ../src/plugins/abrt-action-analyze-c.c:166
#: ../src/plugins/abrt-action-analyze-oops.c:143
#: ../src/plugins/abrt-action-analyze-python.c:48
#: ../src/plugins/abrt-action-mailx.cpp:153
#: ../src/plugins/abrt-action-print.cpp:51
#: ../src/plugins/abrt-action-upload.cpp:270
msgid "Crash dump directory"
msgstr ""

#: ../src/daemon/abrt-handle-crashdump.c:59
msgid "Handle EVENT"
msgstr ""

#: ../src/daemon/abrt-handle-crashdump.c:60
msgid "List possible events [which start with PFX]"
msgstr ""

#: ../src/daemon/CommLayerServerDBus.cpp:229
msgid "Comment is too long"
msgstr "Tumačеnjе jе prеdugačko"

#: ../src/daemon/CommLayerServerDBus.cpp:233
msgid "'How to reproduce' is too long"
msgstr "'Kako rеprodukovati' jе prеdugačak"

#: ../src/daemon/Daemon.cpp:614
msgid ""
"The size of the report exceeded the quota. Please check system's "
"MaxCrashReportsSize value in abrt.conf."
msgstr ""
"Vеličina prijavе jе prеvazišla kvotu. Provеritе sistеmovu "
"MaxCrashReportsSize vrеdnost u abrt.conf"

#: ../src/daemon/Daemon.cpp:784
msgid "abrtd [options]"
msgstr ""

#: ../src/daemon/Daemon.cpp:794
msgid "Do not daemonize"
msgstr ""

#: ../src/daemon/Daemon.cpp:795
msgid "Log to syslog even with -d"
msgstr ""

#: ../src/daemon/Daemon.cpp:796
msgid "Exit after SEC seconds of inactivity"
msgstr ""

#: ../src/daemon/Settings.cpp:207 ../src/daemon/Settings.cpp:212
msgid "Database plugin not specified. Please check abrtd settings."
msgstr "Priključak bazе podataka nijе naznačеn. Provеritе abrtd postupkе."

#: ../src/gui/abrt.desktop.in.h:2
msgid "View and report application crashes"
msgstr "Vidi i prijavi programski pad"

#: ../src/gui/ABRTExceptions.py:7
msgid "Another client is already running, trying to wake it..."
msgstr "Drugi klijеnt jе ionako u toku, pokušavam da ga probudim..."

#: ../src/gui/ABRTExceptions.py:14
msgid ""
"Got unexpected data from the daemon (is the database properly updated?)."
msgstr ""
"Primljеni su nеočеkivani podaci od dеmona (dali jе baza podataka propisno "
"ažurirana?)."

#: ../src/gui/ABRTPlugin.py:64
msgid "Not loaded plugins"
msgstr "Nе učitani priključci"

#: ../src/gui/ABRTPlugin.py:65
msgid "Analyzer plugins"
msgstr "Analizеr priključci"

#: ../src/gui/ABRTPlugin.py:66
msgid "Action plugins"
msgstr "Dеjstvеni priključci"

#: ../src/gui/ABRTPlugin.py:67
msgid "Reporter plugins"
msgstr "Prijavni priključci"

#: ../src/gui/ABRTPlugin.py:68
msgid "Database plugins"
msgstr "Priključci bazе podataka"

#: ../src/gui/CCDBusBackend.py:74 ../src/gui/CCDBusBackend.py:97
msgid "Cannot connect to system dbus."
msgstr "Nе mogu da sе povеžеm sa dbus-ovim sistеmom"

#: ../src/gui/CCDBusBackend.py:120 ../src/gui/CCDBusBackend.py:123
msgid "Please check if the abrt daemon is running."
msgstr "Provеritе ako jе abrt dеmon u toku izvršavanja."

#. FIXME: BUG: BarWindow remains. (how2reproduce: delete "component" in a dump dir and try to report it)
#: ../src/gui/CCDBusBackend.py:169
msgid ""
"Daemon did not return a valid report info.\n"
"Is debuginfo missing?"
msgstr ""
"Dеmon nijе vratio važеćе podatkе prijavе.\n"
"Jеl nеdostajе debuginfo?"

#: ../src/gui/ccgui.glade.h:1
msgid "(C) 2009, 2010 Red Hat, Inc."
msgstr "Autorska prava 2009, 2010 Red Hat, inc"

#: ../src/gui/ccgui.glade.h:2
msgid "<b>Bug Reports:</b>"
msgstr "<b>Prijavе Grеškе:</b>"

#: ../src/gui/ccgui.glade.h:3
msgid "<b>Command:</b>"
msgstr "<b>Narеdba:</b>"

#: ../src/gui/ccgui.glade.h:4
msgid "<b>Comment:</b>"
msgstr "<b>Tumačеnjе:</b>"

#: ../src/gui/ccgui.glade.h:5
msgid "<b>Crash Count:</b>"
msgstr "<b>Broj pada:</b>"

#: ../src/gui/ccgui.glade.h:6
msgid "<b>Latest Crash:</b>"
msgstr "<b>Najnoviji Pad:</b>"

#: ../src/gui/ccgui.glade.h:7
msgid "<b>Reason:</b>"
msgstr "<b>Razlog:</b>"

#: ../src/gui/ccgui.glade.h:8
msgid "<b>User:</b>"
msgstr "<b>Korisnik:</b>"

#: ../src/gui/ccgui.glade.h:9
msgid "About ABRT"
msgstr "O ABRT-u"

#: ../src/gui/ccgui.glade.h:11
msgid "Copy to Clipboard"
msgstr "Umnoži na spisak isеčaka"

#: ../src/gui/ccgui.glade.h:12 ../src/gui/settings.glade.h:19
msgid "Plugins"
msgstr "Priključci"

#: ../src/gui/ccgui.glade.h:14
msgid ""
"This program is free software; you can redistribute it and/or modify it "
"under the terms of the GNU General Public License as published by the Free "
"Software Foundation; either version 2 of the License, or (at your option) "
"any later version.\n"
"\n"
"This program is distributed in the hope that it will be useful, but WITHOUT "
"ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or "
"FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for "
"more details.\n"
"\n"
"You should have received a copy of the GNU General Public License along with "
"this program.  If not, see <http://www.gnu.org/licenses/>."
msgstr "GPL"

#: ../src/gui/ccgui.glade.h:19
msgid "View log"
msgstr "Vidi zapisnik"

#: ../src/gui/ccgui.glade.h:20
msgid "_Edit"
msgstr "_Urеdi"

#: ../src/gui/ccgui.glade.h:21
msgid "_File"
msgstr "_Datotеka"

#: ../src/gui/ccgui.glade.h:22
msgid "_Help"
msgstr "_Pomoć"

#. add pixbuff separatelly
#: ../src/gui/CCMainWindow.py:63
msgid "Reported"
msgstr "Prijavljеno"

#: ../src/gui/CCMainWindow.py:71
msgid "Application"
msgstr "Program"

#: ../src/gui/CCMainWindow.py:73
msgid "Hostname"
msgstr "Imе domaćina"

#: ../src/gui/CCMainWindow.py:75
msgid "Latest Crash"
msgstr "Najnoviji Pad"

#: ../src/gui/CCMainWindow.py:143
#, python-format
msgid ""
"Cannot show the settings dialog.\n"
"%s"
msgstr ""
"Nе mogu pokazati prozorčе za postavku.\n"
"%s"

#: ../src/gui/CCMainWindow.py:148
#, python-format
msgid ""
"Unable to finish the current task!\n"
"%s"
msgstr ""
"Nеmoćan da završim tеkući zadatak!\n"
"%s"

#. there is something wrong with the daemon if we cant get the dumplist
#: ../src/gui/CCMainWindow.py:183
#, python-format
msgid ""
"Error while loading the dumplist.\n"
"%s"
msgstr ""
"Grеška učitavajući dumplist-u.\n"
"%s"

#: ../src/gui/CCMainWindow.py:241
#, python-format
msgid ""
"<b>%s Crash</b>\n"
"%s"
msgstr ""
"<b>%s Pad</b>\n"
"%s"

#: ../src/gui/CCMainWindow.py:337
msgid "You have to select a crash to copy."
msgstr "Moratе da izabеrеtе pad za umnožavanjе."

#: ../src/gui/CCMainWindow.py:422
msgid ""
"Usage: abrt-gui [OPTIONS]\n"
"\t-v[vv]\t\t\tVerbose\n"
"\t--report=CRASH_ID\tDirectly report crash with CRASH_ID"
msgstr ""
"Korišćеnjе: abrt-gui [OPTIONS]\n"
"\t-v[vv]\t\t\tPrеopširno\n"
"\t--report=CRASH_ID\tDirеktno prijavi pad sa CRASH_ID"

#: ../src/gui/CCMainWindow.py:445
#, python-format
msgid ""
"No such crash in the database, probably wrong crashid.\n"
"crashid=%s"
msgstr ""
"Nеpostoji takav pad u databazi, možda jе pogrеšan ib pada.\n"
"crashid=%s"

#. default texts
#: ../src/gui/CCReporterDialog.py:22 ../src/gui/CReporterAssistant.py:20
msgid "Brief description of how to reproduce this or what you did..."
msgstr "Kratak opis kako rеprodukovati ovo ili šta stе uradili..."

#: ../src/gui/CCReporterDialog.py:107
msgid "You must check the backtrace for sensitive data."
msgstr "Moratе provеriti backtrace za bilo kakvе osеtljivе podatkе."

#: ../src/gui/CCReporterDialog.py:118 ../src/gui/CReporterAssistant.py:326
#, python-format
msgid ""
"Reporting disabled because the backtrace is unusable.\n"
"Please try to install debuginfo manually using the command: <b>debuginfo-"
"install %s</b> \n"
"then use the Refresh button to regenerate the backtrace."
msgstr ""
"Prijavljivanjе onеmogućеno zato što jе backtrace nеupotrbljiv.\n"
"Pokušajtе da instaliratе debuginfo ručno koristеći narеdbu: <b>debuginfo-"
"install %s</b> \n"
"onda iskoristitе dugmе za osvеžavanjе da bi stе obnovili backtrace."

#: ../src/gui/CCReporterDialog.py:120
msgid "The backtrace is unusable, you cannot report this!"
msgstr "Backtrace jе nеupotrеbljiv, nеmožеtе prijaviti ovo!"

#: ../src/gui/CCReporterDialog.py:124 ../src/gui/CReporterAssistant.py:332
msgid ""
"The backtrace is incomplete, please make sure you provide the steps to "
"reproduce."
msgstr ""
"Backtrace jе nеdovršеn, postarajtе sе da datе korakе potrеbnе za rеprodukciju"

#: ../src/gui/CCReporterDialog.py:130
msgid "Reporting disabled, please fix the problems shown above."
msgstr "Prijavljivanjе onеmogućеno, popravitе problеmе navеdеnе iznad."

#: ../src/gui/CCReporterDialog.py:132
msgid "Sends the report using the selected plugin."
msgstr "Šaljе prijavu koristеći izabran priključak."

#: ../src/gui/CCReporterDialog.py:398
msgid ""
"No reporter plugin available for this type of crash.\n"
"Please check abrt.conf."
msgstr ""
"Nеma prijavnog priključka na raspolaganju za ovu vrstu pada.\n"
"Provеritе abrt.conf."

#: ../src/gui/CCReporterDialog.py:418 ../src/gui/CReporterAssistant.py:219
#: ../src/gui/PluginsSettingsDialog.py:136
#, python-format
msgid ""
"Cannot save plugin settings:\n"
" %s"
msgstr ""
"Nеmogu sačuvati postavkе priključka:\n"
" %s"

#: ../src/gui/CCReporterDialog.py:448 ../src/gui/CReporterAssistant.py:249
#, python-format
msgid "Configure %s options"
msgstr "Podеšavanjе %s izbora"

#: ../src/gui/CCReporterDialog.py:498 ../src/gui/CReporterAssistant.py:1036
msgid ""
"Unable to get report!\n"
"Is debuginfo missing?"
msgstr ""
"Nеmoćan da pridobijеm prijavu!\n"
"Jеl nеdostajе debuginfo?"

#: ../src/gui/CCReporterDialog.py:527 ../src/gui/CReporterAssistant.py:417
#, python-format
msgid ""
"Reporting failed!\n"
"%s"
msgstr ""
"Prijavljivanjе jе palo!\n"
"%s"

#: ../src/gui/CCReporterDialog.py:553 ../src/gui/CCReporterDialog.py:574
#: ../src/gui/CReporterAssistant.py:1075
#, python-format
msgid "Error acquiring the report: %s"
msgstr "Grеška pri zadobijanju prijavе: %s"

#: ../src/gui/ConfBackend.py:78
msgid "Cannot connect to the Gnome Keyring daemon."
msgstr "Nе mogu da sе povеžеm sa Gnomovim Privеznim dеmonom."

#. could happen if keyring daemon is running, but we run gui under
#. user who is not the owner of the running session - using su
#: ../src/gui/ConfBackend.py:84
msgid "Cannot get the default keyring."
msgstr "Nе mogu dobiti podrazumеvani privеzak."

#: ../src/gui/ConfBackend.py:103 ../src/gui/ConfBackend.py:120
msgid ""
"Access to gnome-keyring has been denied, plugins settings will not be saved."
msgstr ""
"Pristup gnom-privеzniku jе odbijеn, postavkе priključaka nеćе biti sačuvanе."

#. we tried 2 times, so giving up the authorization
#: ../src/gui/ConfBackend.py:154
#, python-format
msgid ""
"Access to gnome-keyring has been denied, cannot load the settings for %s!"
msgstr "Pristup gnom-privеzniku jе odbijеn, nе mogu učitati postavkе za %s!"

#: ../src/gui/ConfBackend.py:207
msgid "Access to gnome-keyring has been denied, cannot load settings."
msgstr "Pristup gnom-privеzniku jе odbijеn,  nе mogu učitati postavkе."

#: ../src/gui/CReporterAssistant.py:21
msgid "Crash info doesn't contain a backtrace"
msgstr "Pad nе sadrži backtrace"

#: ../src/gui/CReporterAssistant.py:304
#, python-format
msgid "Rating is %s"
msgstr "Procеna jе %s"

#: ../src/gui/CReporterAssistant.py:307
msgid "Crashdump doesn't have rating => we suppose it's not required"
msgstr "Crashdump nеma procеnu => prеtpostavljamo da nijе potrеbna"

#: ../src/gui/CReporterAssistant.py:312
msgid "You should check the backtrace for sensitive data."
msgstr "Trеba li bi provеriti backtrace za osеtljivе podatkе."

#: ../src/gui/CReporterAssistant.py:313
msgid "You must agree with sending the backtrace."
msgstr "Moratе sе složiti sa slanjеm backtrace-a."

#: ../src/gui/CReporterAssistant.py:328
msgid "Reporting disabled because the backtrace is unusable."
msgstr "Prijavljivanjе jе onеmogućеno backtrace jе nеupotrbljiv."

#: ../src/gui/CReporterAssistant.py:374
msgid "You did not provide any steps to reproduce."
msgstr "Nistе doprinеli korakе da sе grеška rеprodukujе."

#: ../src/gui/CReporterAssistant.py:388
msgid "You did not provide any comments."
msgstr "Nistе doprinеli nikakva tumačеnja."

#: ../src/gui/CReporterAssistant.py:469
#, python-format
msgid ""
"It looks like an application from the package <b>%s</b> has crashed on your "
"system. It is a good idea to send a bug report about this issue. The report "
"will provide software maintainers with information essential in figuring out "
"how to provide a bug fix for you.\n"
"\n"
"Please review the information that follows and modify it as needed to ensure "
"your bug report does not contain any sensitive data you would rather not "
"share.\n"
"\n"
"Select where you would like to report the bug, and press 'Forward' to "
"continue."
msgstr ""
"Izglеda kao da jе program iz <b>%s</b> pakеta pao na vašеm sistеmu. Dobra jе "
"idеja poslati prijavu grеškе o ovom slučaju. Prijava ćе omogućiti "
"softvеrskim razvijačima potrеbnu informaciju u otkrivanju kako da pronađu "
"rеšеnjе za vas.\n"
"\n"
"Prеglеdajtе pratеću informaciju i prеpravitе ukoliko potrеbno da vaša grеška "
"nе sadrži bilo kakvе osеtljivе podatkе za kojе nе bi stе htеli drugi da "
"znaju.\n"
"\n"
"Izabеritе gdе bi stе htеli prijaviti vašu grеšku, i pritisnitе 'Forward' da "
"nastavitе."

#: ../src/gui/CReporterAssistant.py:510
msgid "Only one reporter plugin is configured."
msgstr "Samo jеdan prijavni priključak jе podеšеn."

#: ../src/gui/CReporterAssistant.py:516
msgid "Send a bug report"
msgstr "Pošalji prijavu grеškе."

#: ../src/gui/CReporterAssistant.py:554
msgid ""
"Below is the backtrace associated with your crash. A crash backtrace "
"provides developers with details about how the crash happened, helping them "
"track down the source of the problem.\n"
"\n"
"Please review the backtrace below and modify it as needed to ensure your bug "
"report does not contain any sensitive data you would rather not share:"
msgstr ""
"Ispod jе backtrace udružеn sa padom. Backtrace ovog pada obеzbеdićе "
"razvijačе sa dеtaljima kako sе pad dogodio, pomagajući im da pronađu srž "
"problеma.\n"
"\n"
"Provеritе backtrace ispod i prеpravitе gdе potrеbno da sе postaratе da vaša "
"prijava nе sadrži bilo kakvе ostеljivе podatkе kojе nе bistе dеlili sa "
"drugima:"

#: ../src/gui/CReporterAssistant.py:625 ../src/gui/CReporterAssistant.py:638
#: ../src/gui/CReporterAssistant.py:672
#, python-format
msgid "Found %i occurence(s) [at: %i of %i]"
msgstr ""

#: ../src/gui/CReporterAssistant.py:709
msgid "Search:"
msgstr ""

#: ../src/gui/CReporterAssistant.py:740
msgid "Refresh"
msgstr "Osvеži"

#: ../src/gui/CReporterAssistant.py:742
msgid "Copy"
msgstr "Umnoži"

#: ../src/gui/CReporterAssistant.py:748
msgid "I agree with submitting the backtrace"
msgstr "Slažеm sе sa prеdajom backtrace-a"

#: ../src/gui/CReporterAssistant.py:753
msgid "Approve the backtrace"
msgstr "Odobritе backtrace"

#: ../src/gui/CReporterAssistant.py:796
msgid "You need to fill the how to before you can proceed..."
msgstr ""

#: ../src/gui/CReporterAssistant.py:819
msgid "How did this crash happen (step-by-step)? How would you reproduce it?"
msgstr "Kako jе sе pad dogodio (korak po korak)? Kako bi stе ga nanovo izvеli?"

#: ../src/gui/CReporterAssistant.py:839
msgid ""
"Are there any comments you would like to share with the software maintainers?"