summaryrefslogtreecommitdiffstats
path: root/README
Commit message (Expand)AuthorAgeFilesLines
* Re-arrange python generator to make it clear what's auto-generatedDaniel P. Berrange2009-09-211-0/+27
a> 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
# translation of abrt.master.ast.po to Asturian
# Astur <malditoastur@gmail.com>, 2009.
msgid ""
msgstr ""
"Project-Id-Version: abrt.master.ast\n"
"Report-Msgid-Bugs-To: jmoskovc@redhat.com\n"
"POT-Creation-Date: 2010-06-30 17:40+0200\n"
"PO-Revision-Date: 2009-10-24 21:43+0100\n"
"Last-Translator: Marcos Alvarez Costales <marcos.alvarez.costales@gmail."
"com>\n"
"Language-Team: Asturian <alministradores@softastur.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Poedit-Language: Asturian\n"
"X-Generator: KBabel 1.11.4\n"

#: lib/Plugins/ReportUploader.cpp:97 lib/Plugins/FileTransfer.cpp:53
msgid "FileTransfer: URL not specified"
msgstr "Tresferencia de ficheru: URL nun especificada"

#: lib/Plugins/ReportUploader.cpp:101 lib/Plugins/FileTransfer.cpp:57
#, fuzzy, c-format
msgid "Sending archive %s to %s"
msgstr "Unviando ficheru %s vía %s"

#: lib/Plugins/ReportUploader.cpp:130
#, c-format
msgid "Sending failed, trying again. %s"
msgstr ""

#: lib/Plugins/ReportUploader.cpp:192
#, fuzzy
msgid "Creating a ReportUploader report..."
msgstr "Criando un informe..."

#: lib/Plugins/RHTSupport.cpp:231
#, fuzzy
msgid "Creating a new case..."
msgstr "Criando un nuevu informe..."

#: src/CLI/CLI.cpp:49
#, c-format
msgid ""
"\tUID        : %s\n"
"\tUUID       : %s\n"
"\tPackage    : %s\n"
"\tExecutable : %s\n"
"\tCrash Time : %s\n"
"\tCrash Count: %s\n"
msgstr ""

#: src/CLI/CLI.cpp:172
#, 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 list of crashes which are not reported yet\n"
"\t      -f, --full\tlist all crashes, including 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 crash\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 ""

#: src/CLI/CLI.cpp:215
msgid "You must specify exactly one operation"
msgstr ""

#: src/CLI/report.cpp:179
#, c-format
msgid "# This field is read only.\n"
msgstr ""

#: src/CLI/report.cpp:199
msgid "# Describe the circumstances of this crash below."
msgstr ""

#: src/CLI/report.cpp:201
msgid "# How to reproduce the crash?"
msgstr ""

#: src/CLI/report.cpp:203
msgid ""
"# Backtrace\n"
"# Check that it does not contain any sensitive data such as passwords."
msgstr ""

#: src/CLI/report.cpp:205
msgid "# Architecture"
msgstr ""

#: src/CLI/report.cpp:206
msgid "# Command line"
msgstr ""

#: src/CLI/report.cpp:207
#, fuzzy
msgid "# Component"
msgstr "Común"

#: src/CLI/report.cpp:208
msgid "# Core dump"
msgstr ""

#: src/CLI/report.cpp:209
msgid "# Executable"
msgstr ""

#: src/CLI/report.cpp:210
msgid "# Kernel version"
msgstr ""

#: src/CLI/report.cpp:211
#, fuzzy
msgid "# Package"
msgstr "Paquete"

#: src/CLI/report.cpp:212
msgid "# Reason of crash"
msgstr ""

#: src/CLI/report.cpp:213
msgid "# Release string of the operating system"
msgstr ""

#: src/CLI/report.cpp:336
msgid "Can't run vi: $TERM, $VISUAL and $EDITOR are not set"
msgstr ""

#: src/CLI/report.cpp:424
#, fuzzy
msgid ""
"\n"
"The report has been updated."
msgstr "Executáu serviciu ABRT"

#: src/CLI/report.cpp:426
msgid ""
"\n"
"No changes were detected in the report."
msgstr ""

#: src/CLI/report.cpp:646
#, c-format
msgid "Wrong settings were detected for plugin %s.\n"
msgstr ""

#: src/CLI/report.cpp:650
msgid "Enter your login: "
msgstr ""

#: src/CLI/report.cpp:656
msgid "Enter your password: "
msgstr ""

#: src/CLI/report.cpp:700
#, fuzzy
msgid "Reporting..."
msgstr "Trabayando..."

#: src/CLI/report.cpp:719
#, c-format
msgid "Report using %s? [y/N]: "
msgstr ""

#: src/CLI/report.cpp:722
#, fuzzy
msgid "Skipping..."
msgstr "Trabayando..."

#: src/CLI/report.cpp:739
#, c-format
msgid "Crash reported via %d plugins (%d errors)\n"
msgstr ""

#: src/Daemon/CommLayerServerDBus.cpp:234
msgid "Comment is too long"
msgstr ""

#: src/Daemon/CommLayerServerDBus.cpp:238
msgid "'How to reproduce' is too long"
msgstr ""

#: src/Gui/ABRTExceptions.py:6
msgid "Another client is already running, trying to wake it."
msgstr "Otru veceru yá ta executándose, intentando llevantalu."

#: src/Gui/ABRTExceptions.py:13
msgid "Got unexpected data from daemon (is the database properly updated?)."
msgstr ""
"Algamáronse datos inesperaos dende'l degorriu (¿ta la Base de Datos "
"correutamente anovada?)"

#: src/Gui/ABRTPlugin.py:62
#, fuzzy
msgid "Not loaded plugins"
msgstr "Nun hai interface del usuariu pal complementu %s"

#: src/Gui/ABRTPlugin.py:63
msgid "Analyzer plugins"
msgstr "Complementos analizadores"

#: src/Gui/ABRTPlugin.py:64
msgid "Action plugins"
msgstr "Complementos d'aición"

#: src/Gui/ABRTPlugin.py:65
msgid "Reporter plugins"
msgstr "Complementos d'informes"

#: src/Gui/ABRTPlugin.py:66
msgid "Database plugins"
msgstr "Complementos de Bases de Datos"

#: src/Gui/CCDBusBackend.py:74 src/Gui/CCDBusBackend.py:97
msgid "Can't connect to system dbus"
msgstr "Nun ye dable coneutase con system dbus"

#: src/Gui/CCDBusBackend.py:120 src/Gui/CCDBusBackend.py:123
msgid "Please check if abrt daemon is running"
msgstr "Por favor, compreba si'l degorriu abrt ta executándose"

#: src/Gui/CCDBusBackend.py:174
#, fuzzy
msgid ""
"Daemon didn't return valid report info\n"
"Debuginfo is missing?"
msgstr ""
"El degorriu nun devuelve un informe válidu\n"
"¿Falta la información de la depuración?"

#: src/Gui/ccgui.glade:7
msgid "About ABRT"
msgstr "Tocante a ABRT"

#: src/Gui/ccgui.glade:15
#, fuzzy
msgid "(C) 2009, 2010 Red Hat, Inc."
msgstr "(C) 2009 Red Hat, Inc."

#: src/Gui/ccgui.glade:17
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 ""
"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/>."

#: src/Gui/ccgui.glade:28 src/Applet/CCApplet.cpp:105
msgid "translator-credits"
msgstr ""

#: src/Gui/ccgui.glade:58 src/Gui/CCMainWindow.py:8 src/Gui/report.glade:7
msgid "Automatic Bug Reporting Tool"
msgstr "Ferramienta d'Informe de Fallos Automática"

#: src/Gui/ccgui.glade:71
msgid "_File"
msgstr "_Ficheru"

#: src/Gui/ccgui.glade:92
msgid "_Edit"
msgstr "_Editar"

#: src/Gui/ccgui.glade:100 src/Gui/settings.glade:6
msgid "Plugins"
msgstr "Complementos"

#: src/Gui/ccgui.glade:119
msgid "_Help"
msgstr "Ai_da"

#: src/Gui/ccgui.glade:126
msgid "View log"
msgstr ""

#: src/Gui/ccgui.glade:237
#, fuzzy
msgid "<b>Bug Reports:</b>"
msgstr "<b>¡Non informáu!</b>"

#: src/Gui/ccgui.glade:278
msgid "<b>Latest Crash:</b>"
msgstr ""

#: src/Gui/ccgui.glade:291
msgid "<b>Command:</b>"
msgstr ""

#: src/Gui/ccgui.glade:306
msgid "<b>User:</b>"
msgstr ""

#: src/Gui/ccgui.glade:321
msgid "<b>Crash Count:</b>"
msgstr ""

#: src/Gui/ccgui.glade:437
msgid "<b>Reason:</b>"
msgstr ""

#: src/Gui/ccgui.glade:463
#, fuzzy
msgid "<b>Comment:</b>"
msgstr "Comentariu"

#: src/Gui/ccgui.glade:543
msgid "Copy to Clipboard"
msgstr ""

#: src/Gui/ccgui.glade:555 src/Gui/ccgui.glade:683 src/Applet/CCApplet.cpp:253
msgid "Report"
msgstr "Informe"

#: src/Gui/CCMainWindow.py:63
#, fuzzy
msgid "Reported"
msgstr "Informe"

#: src/Gui/CCMainWindow.py:71
msgid "Application"
msgstr "Aplicación"

#: src/Gui/CCMainWindow.py:73
msgid "Hostname"
msgstr ""

#: src/Gui/CCMainWindow.py:75
msgid "Latest Crash"
msgstr ""

#: src/Gui/CCMainWindow.py:143
#, python-format
msgid ""
"Can't show the settings dialog\n"
"%s"
msgstr ""
"Nun pudo amosase'l diálogu de configuración\n"
"%s"

#: src/Gui/CCMainWindow.py:148
#, python-format
msgid ""
"Unable to finish current task!\n"
"%s"
msgstr ""
"¡Nun pudo finase la xera actual!\n"
"%s"

#: src/Gui/CCMainWindow.py:183
#, fuzzy, python-format
msgid ""
"Error while loading the dumplist.\n"
"%s"
msgstr ""
"Fallu intentando cargar la llista de volcáu, por favor compreba si'l "
"degorriu abrt ta executándose\n"
"%s"

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

#: src/Gui/CCMainWindow.py:337
msgid "You have to select a crash to copy."
msgstr ""

#: 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 ""

#: src/Gui/CCMainWindow.py:445
#, python-format
msgid ""
"No such crash in database, probably wrong crashid.\n"
"crashid=%s"
msgstr ""

#: src/Gui/CCReporterDialog.py:22 src/Gui/CReporterAssistant.py:19
msgid "Brief description how to reproduce this or what you did..."
msgstr "Breve descripción de cómo reproducir esto o lo que ficisti..."

#: src/Gui/CCReporterDialog.py:107
msgid "You must check backtrace for sensitive data"
msgstr ""

#: src/Gui/CCReporterDialog.py:118 src/Gui/CReporterAssistant.py:304
#, python-format
msgid ""
"Reporting disabled because the backtrace is unusable.\n"
"Please try to install debuginfo manually using command: <b>debuginfo-install "
"%s</b> \n"
"then use Refresh button to regenerate the backtrace."
msgstr ""

#: src/Gui/CCReporterDialog.py:120 src/Gui/CReporterAssistant.py:306
msgid "The backtrace is unusable, you can't report this!"
msgstr ""

#: src/Gui/CCReporterDialog.py:124 src/Gui/CReporterAssistant.py:310
msgid ""
"The backtrace is incomplete, please make sure you provide good steps to "
"reproduce."
msgstr ""

#: src/Gui/CCReporterDialog.py:130
msgid "Reporting disabled, please fix the problems shown above."
msgstr ""

#: src/Gui/CCReporterDialog.py:132
msgid "Sends the report using selected plugin."
msgstr ""

#: src/Gui/CCReporterDialog.py:398
msgid ""
"No reporter plugin available for this type of crash\n"
"Please check abrt.conf."
msgstr ""

#: src/Gui/CCReporterDialog.py:418 src/Gui/PluginsSettingsDialog.py:169
#: src/Gui/CReporterAssistant.py:201
#, fuzzy, python-format
msgid ""
"Can't save plugin settings:\n"
" %s"
msgstr ""
"Nun pudo amosase'l diálogu de configuración\n"
"%s"

#: src/Gui/CCReporterDialog.py:448 src/Gui/CReporterAssistant.py:231
#, fuzzy, python-format
msgid "Configure %s options"
msgstr "C_onfigurar Complementu"

#: src/Gui/CCReporterDialog.py:498 src/Gui/CReporterAssistant.py:837
msgid ""
"Unable to get report!\n"
"Debuginfo is missing?"
msgstr ""
"Nun foi dable algamar l'informe!\n"
"¿Falta la información de la depuración?"

#: src/Gui/CCReporterDialog.py:527 src/Gui/CReporterAssistant.py:400
#, python-format
msgid ""
"Reporting failed!\n"