1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553
|
# Martin Pitt <mpitt@redhat.com>, 2019. #zanata
# Mike FABIAN <mfabian@redhat.com>, 2020.
# Matej Marusak <marusak.matej@gmail.com>, 2020.
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE_VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2025-06-19 03:38+0000\n"
"PO-Revision-Date: 2025-06-10 18:50+0000\n"
"Last-Translator: Robert Simai <robert.simai@suse.com>\n"
"Language-Team: German <https://translate.fedoraproject.org/projects/cockpit/"
"cockpit-podman/de/>\n"
"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1\n"
"X-Generator: Weblate 5.11.4\n"
#: src/Images.jsx:96
msgid "$0 container"
msgid_plural "$0 containers"
msgstr[0] "$0 Container"
msgstr[1] "$0 Container"
#: src/Images.jsx:278
msgid "$0 image total, $1"
msgid_plural "$0 images total, $1"
msgstr[0] "$0 Abbild insgesamt, $1"
msgstr[1] "$0 Abbilder insgesamt, $1"
#: src/ContainerHealthLogs.jsx:38
msgid "$0 second"
msgid_plural "$0 seconds"
msgstr[0] "$0 Sekunde"
msgstr[1] "$0 Sekunden"
#: src/Images.jsx:282
msgid "$0 unused image, $1"
msgid_plural "$0 unused images, $1"
msgstr[0] "$0 ungenutztes Abbild, $1"
msgstr[1] "$0 ungenutzte Abbilder, $1"
#: src/Containers.jsx:374
msgid "$0% of $1 limit"
msgstr ""
#: src/PublishPort.jsx:31 src/PublishPort.jsx:42
msgid "1 to 65535"
msgstr "1 bis 65535"
#: src/ImageRunModal.jsx:1176
msgid "Action to take once the container transitions to an unhealthy state."
msgstr ""
"Zu ergreifende Maßnahmen, wenn der Container in einen ungesunden Zustand "
"übergeht."
#: src/Containers.jsx:616
msgid "Actions"
msgstr "Aktionen"
#: src/PodCreateModal.jsx:185 src/ImageRunModal.jsx:1045
msgid "Add port mapping"
msgstr "Port-Zuordnung hinzufügen"
#: src/ImageRunModal.jsx:1067
msgid "Add variable"
msgstr "Variable hinzufügen"
#: src/PodCreateModal.jsx:197 src/ImageRunModal.jsx:1055
msgid "Add volume"
msgstr "Volumen hinzufügen"
#: src/ImageRunModal.jsx:767 src/Containers.jsx:767 src/ContainerHeader.jsx:24
#: src/ImageDeleteModal.jsx:104
msgid "All"
msgstr "Alle"
#: src/ImageSearchModal.jsx:169
msgid "All registries"
msgstr "Alle Registries"
#: src/ImageRunModal.jsx:1015
msgid "Always"
msgstr "Immer"
#: src/PodActions.jsx:51
msgid "An error occurred"
msgstr "Ein Fehler ist aufgetreten"
#: src/ContainerCommitModal.jsx:109
msgid "Author"
msgstr "Autor"
#: src/Containers.jsx:536 src/Containers.jsx:539 src/Containers.jsx:613
msgid "CPU"
msgstr "CPU"
#: src/ImageRunModal.jsx:972
msgid "CPU Shares help"
msgstr "CPU Shares Hilfe"
#: src/ImageRunModal.jsx:970
msgid "CPU shares"
msgstr "CPU-Shares"
#: src/ImageRunModal.jsx:974
msgid ""
"CPU shares determine the priority of running containers. Default priority is "
"1024. A higher number prioritizes this container. A lower number decreases "
"priority."
msgstr ""
"CPU Shares legt die Priorität laufender Container fest. Standardwert ist "
"1024. Ein höherer Wert priorisiert den Container. Ein niedrigerer Wert senkt "
"dessen Priorität."
#: src/ContainerRenameModal.jsx:106 src/PodActions.jsx:70
#: src/PodCreateModal.jsx:224 src/ImageRunModal.jsx:1224
#: src/ContainerDeleteModal.jsx:43 src/ImageSearchModal.jsx:225
#: src/PruneUnusedImagesModal.jsx:112 src/PruneUnusedContainersModal.jsx:111
#: src/ContainerRestoreModal.jsx:72 src/ContainerCommitModal.jsx:166
#: src/ContainerCheckpointModal.jsx:66 src/ImageDeleteModal.jsx:125
#: src/ForceRemoveModal.jsx:33
msgid "Cancel"
msgstr "Abbruch"
#: src/Containers.jsx:281
msgid "Checking health"
msgstr "Überprüfung der Gesundheit"
#: src/Containers.jsx:210 src/ContainerCheckpointModal.jsx:62
msgid "Checkpoint"
msgstr "Kontrollpunkt"
#: src/ImageRunModal.jsx:844
msgid "Checkpoint and restore support"
msgstr "Unterstützung von Kontrollpunkten und Wiederherstellung"
#: src/ContainerCheckpointModal.jsx:45
msgid "Checkpoint container $0"
msgstr "Kontrollpunkt für Container $0"
#: src/Containers.jsx:554
msgid "Click to see published ports"
msgstr "Klicken um veröffentlichte Ports zu sehen"
#: src/Containers.jsx:569
msgid "Click to see volumes"
msgstr "Klicken um Volumen zu sehen"
#: org.cockpit_project.podman.metainfo.xml:22
msgid "Cockpit Project"
msgstr "Cockpit-Projekt"
#: org.cockpit_project.podman.metainfo.xml:6
msgid "Cockpit component for Podman containers"
msgstr "Cockpit Bestandteil für Podman-Container"
#: src/ContainerHealthLogs.jsx:63 src/ImageDetails.jsx:17
#: src/ImageRunModal.jsx:925 src/ImageRunModal.jsx:1076
#: src/ContainerDetails.jsx:43 src/ContainerCommitModal.jsx:116
msgid "Command"
msgstr "Befehl"
#: src/ImageHistory.jsx:33
msgid "Comments"
msgstr "Kommentare"
#: src/Containers.jsx:245 src/ContainerCommitModal.jsx:153
msgid "Commit"
msgstr "Committen"
#: src/ContainerCommitModal.jsx:141
msgid "Commit container"
msgstr "Container übergeben"
#: src/util.js:24
msgid "Configured"
msgstr "Konfiguriert"
#: src/Containers.jsx:464
msgid "Console"
msgstr "Konsole"
#: src/Containers.jsx:611
msgid "Container"
msgstr "Container"
#: src/ImageRunModal.jsx:270
msgid "Container failed to be created"
msgstr "Container konnte nicht erstellt werden"
#: src/ImageRunModal.jsx:251
msgid "Container failed to be started"
msgstr "Container konnte nicht erstellt werden"
#: src/ContainerTerminal.jsx:264
msgid "Container is not running"
msgstr "Container läuft nicht"
#: src/ImageRunModal.jsx:811
msgid "Container name"
msgstr "Container-Name"
#: src/ContainerRenameModal.jsx:32 src/ContainerRenameModal.jsx:43
msgid "Container name is required."
msgstr "Containername ist erforderlich."
#: src/Volume.jsx:52
msgid "Container path"
msgstr "Container-Pfad"
#: src/Volume.jsx:25
msgid "Container path must not be empty"
msgstr "Containerpfad darf nicht leer sein"
#: src/PublishPort.jsx:102
msgid "Container port"
msgstr "Container-Port"
#: src/PublishPort.jsx:38
msgid "Container port must not be empty"
msgstr "Containerport darf nicht leer sein"
#: src/Containers.jsx:821 src/Containers.jsx:827 src/Containers.jsx:862
msgid "Containers"
msgstr "Container"
#: src/PodCreateModal.jsx:221 src/ImageRunModal.jsx:1221
msgid "Create"
msgstr "Erstellen"
#: src/ContainerCommitModal.jsx:142
msgid "Create a new image based on the current state of the $0 container."
msgstr ""
"Ein neues Abbild auf der Grundlage des aktuellen Zustands des Containers $0 "
"erstellen."
#: src/ImageRunModal.jsx:1217
msgid "Create and run"
msgstr "Erstellen und ausführen"
#: src/Images.jsx:420 src/Images.jsx:429 src/ImageRunModal.jsx:1210
#: src/Containers.jsx:784
msgid "Create container"
msgstr "Container erstellen"
#: src/ImageRunModal.jsx:1210
msgid "Create container in $0"
msgstr "Container in $0 erstellen"
#: src/Containers.jsx:873
msgid "Create container in pod"
msgstr "Container in Pod erstellen"
#: src/PodCreateModal.jsx:213 src/Containers.jsx:776
msgid "Create pod"
msgstr "Pod erstellen"
#: src/Images.jsx:189 src/util.js:24 src/util.js:27 src/ContainerDetails.jsx:79
#: src/PruneUnusedContainersModal.jsx:68 src/ImageHistory.jsx:33
msgid "Created"
msgstr "Erstellt"
#: src/ImageHistory.jsx:33
msgid "Created by"
msgstr "Erstellt von"
#: src/ImageRunModal.jsx:991
msgid "Decrease CPU shares"
msgstr "CPU-Anteile verringern"
#: src/ImageRunModal.jsx:1097
msgid "Decrease interval"
msgstr "Intervall verringern"
#: src/ImageRunModal.jsx:1028
msgid "Decrease maximum retries"
msgstr "Maximale Wiederholungsversuche verringern"
#: src/ImageRunModal.jsx:951
msgid "Decrease memory"
msgstr "Speicher verringern"
#: src/ImageRunModal.jsx:1165
msgid "Decrease retries"
msgstr "Wiederholungsversuche verringern"
#: src/ImageRunModal.jsx:1143
msgid "Decrease start period"
msgstr "Startzeitraum verringern"
#: src/ImageRunModal.jsx:1120
msgid "Decrease timeout"
msgstr "Zeitüberschreitung verringern"
#: src/PodActions.jsx:66 src/PodActions.jsx:186 src/Images.jsx:440
#: src/ContainerDeleteModal.jsx:42 src/Containers.jsx:255
msgid "Delete"
msgstr "Löschen"
#: src/ImageDeleteModal.jsx:97
msgid "Delete $0 image?"
msgstr "Abbild $0 löschen?"
#: src/ContainerDeleteModal.jsx:35 src/ForceRemoveModal.jsx:21
msgid "Delete $0?"
msgstr "$0 löschen?"
#: src/ImageDeleteModal.jsx:123
msgid "Delete image"
msgstr "Abbild löschen"
#: src/PodActions.jsx:47
msgid "Delete pod $0?"
msgstr "Pod $0 löschen?"
#: src/ImageDeleteModal.jsx:123
msgid "Delete tagged images"
msgstr "Markierte Image löschen"
#: src/PruneUnusedImagesModal.jsx:38
msgid "Delete unused images of user $0:"
msgstr "Nicht verwendete Abbilder von Benutzer $0 löschen:"
#: src/PruneUnusedImagesModal.jsx:37
msgid "Delete unused system images:"
msgstr "Nicht verwendete Systemabbilder löschen:"
#: src/ContainerDeleteModal.jsx:39
msgid "Deleting a container will erase all data in it."
msgstr "Beim Löschen des Containers werden alle Daten darin verloren gehen."
#: src/Containers.jsx:70
msgid "Deleting a running container will erase all data in it."
msgstr ""
"Das Löschen eines laufenden Containers führt dazu, dass alle darin "
"enthaltenen Daten gelöscht werden."
#: src/PodActions.jsx:57
msgid "Deleting this pod will remove the following containers:"
msgstr "Löschen des Pods wird die folgenden Container entfernen:"
#: src/Images.jsx:160 src/ImageRunModal.jsx:826 src/Containers.jsx:441
msgid "Details"
msgstr "Details"
#: src/Images.jsx:191
msgid "Disk space"
msgstr "Speicherplatz"
#: src/ContainerCommitModal.jsx:130
msgid ""
"Docker format is useful when sharing the image with Docker or Moby Engine"
msgstr ""
"Docker-Format ist hilfreich, wenn das Image mit Docker oder Moby Engine "
"geteilt wird"
#: src/ImageSearchModal.jsx:222
msgid "Download"
msgstr "Herunterladen"
#: src/Images.jsx:347
msgid "Download new image"
msgstr "Neues Abbild herunterladen"
#: src/PodActions.jsx:53
msgid "Empty pod $0 will be permanently removed."
msgstr "Leerer Pod $0 wird endgültig entfernt."
#: src/ImageDetails.jsx:23 src/ImageRunModal.jsx:920
msgid "Entrypoint"
msgstr "Einsprungspunkt"
#: src/ImageRunModal.jsx:1066 src/ContainerIntegration.jsx:158
msgid "Environment variables"
msgstr "Umgebungsvariablen"
#: src/util.js:27
msgid "Error"
msgstr "Fehler"
#: src/Images.jsx:61 src/Notification.jsx:43
msgid "Error message"
msgstr "Fehlermeldung"
#: src/ContainerTerminal.jsx:268
msgid "Error occurred while connecting console"
msgstr "Beim Verbinden der Konsole ist ein Fehler aufgetreten"
#: src/ContainerCommitModal.jsx:111
msgid "Example, Your Name <yourname@example.com>"
msgstr "Beispiel, Ihr Name <yourname@example.com>"
#: src/ImageRunModal.jsx:885
msgid "Example: $0"
msgstr "Beispiel: $0"
#: src/util.js:24 src/util.js:27 src/ContainerDetails.jsx:17
msgid "Exited"
msgstr "Beendet"
#: src/ContainerHealthLogs.jsx:118
msgid "Failed health run"
msgstr "Gesundheitsprüfung fehlgeschlagen"
#: src/ContainerCheckpointModal.jsx:32
msgid "Failed to checkpoint container $0"
msgstr "Überprüfung von Container $0 fehlgeschlagen"
#: src/ImageRunModal.jsx:258
msgid "Failed to clean up container"
msgstr "Fehler bei der Bereinigung des Containers"
#: src/ContainerCommitModal.jsx:85
msgid "Failed to commit container $0"
msgstr "Konnte Container $0 nicht committen"
#: src/ImageRunModal.jsx:327
msgid "Failed to create container $0"
msgstr "Fehler bei der Erstellung des Containers $0"
#: src/Images.jsx:59
msgid "Failed to download image $0:$1"
msgstr "Konnte Image $0 nicht herunterladen: $1"
#: src/Containers.jsx:60
msgid "Failed to force remove container $0"
msgstr "Konnte Container $0 nicht neu entfernen"
#: src/ImageDeleteModal.jsx:52
msgid "Failed to force remove image $0"
msgstr "Fehler bei der erzwungenen Entfernung des Abbilds $0"
#: src/PodActions.jsx:122
msgid "Failed to force restart pod $0"
msgstr "Konnte Pod $0 nicht neu starten"
#: src/PodActions.jsx:100
msgid "Failed to force stop pod $0"
msgstr "Konnte Pod $0 nicht stoppen"
#: src/Containers.jsx:109
msgid "Failed to pause container $0"
msgstr "Konnte Container $0 nicht pausieren"
#: src/PodActions.jsx:167
msgid "Failed to pause pod $0"
msgstr "Konnte Pod $0 nicht pausieren"
#: src/PruneUnusedContainersModal.jsx:60
msgid "Failed to prune unused containers"
msgstr "Löschen nicht gebrauchter Container fehlgeschlagen"
#: src/PruneUnusedImagesModal.jsx:73
msgid "Failed to prune unused images"
msgstr "Reduzierung nicht gebrauchter Abbilder fehlgeschlagen"
#: src/ImageRunModal.jsx:333
msgid "Failed to pull image $0"
msgstr "Image $0 konnte nicht gepullt werden"
#: src/ContainerDeleteModal.jsx:25
msgid "Failed to remove container $0"
msgstr "Konnte Container $0 nicht neu entfernen"
#: src/ImageDeleteModal.jsx:78
msgid "Failed to remove image $0"
msgstr "Fehler bei der Entfernung von Abbild $0"
#: src/ContainerRenameModal.jsx:58
msgid "Failed to rename container $0"
msgstr "Fehler beim Umbenennen des Containers $0"
#: src/Containers.jsx:127
msgid "Failed to restart container $0"
msgstr "Konnte Container $0 nicht neu starten"
#: src/PodActions.jsx:111
msgid "Failed to restart pod $0"
msgstr "Konnte Pod $0 nicht neu starten"
#: src/ContainerRestoreModal.jsx:35
msgid "Failed to restore container $0"
msgstr "Konnte Container $0 nicht wiederherstellen"
#: src/Containers.jsx:101
msgid "Failed to resume container $0"
msgstr "Konnte Container $0 nicht wieder starten"
#: src/PodActions.jsx:152
msgid "Failed to resume pod $0"
msgstr "Konnte Pod $0 nicht wieder starten"
#: src/ImageRunModal.jsx:320
msgid "Failed to run container $0"
msgstr "Konnte Container $0 nicht starten"
#: src/ContainerHealthLogs.jsx:97
msgid "Failed to run health check on container $0"
msgstr "Gesundheitsprüfung von Container $0 fehlgeschlagen"
#: src/ImageRunModal.jsx:390 src/ImageSearchModal.jsx:97
msgid "Failed to search for images."
msgstr "Konnte nicht nach Images suchen."
#: src/ImageRunModal.jsx:390 src/ImageSearchModal.jsx:97
msgid "Failed to search for images: $0"
msgstr "Konnte nicht nach Images suchen: $0"
#: src/ImageRunModal.jsx:388 src/ImageSearchModal.jsx:96
msgid "Failed to search for new images"
msgstr "Konnte nicht nach neuen Images suchen"
#: src/Containers.jsx:93
msgid "Failed to start container $0"
msgstr "Konnte Container $0 nicht starten"
#: src/PodActions.jsx:137
msgid "Failed to start pod $0"
msgstr "Konnte Pod $0 nicht starten"
#: src/Containers.jsx:85
msgid "Failed to stop container $0"
msgstr "Konnte Container $0 nicht stoppen"
#: src/PodActions.jsx:89
msgid "Failed to stop pod $0"
msgstr "Konnte Pod $0 nicht stoppen"
#: src/ContainerHealthLogs.jsx:87
msgid "Failing streak"
msgstr "Misserfolgssträhne"
#: src/ContainerCommitModal.jsx:160
msgid "Force commit"
msgstr "Übergabe erzwingen"
#: src/PodActions.jsx:66 src/ForceRemoveModal.jsx:31
msgid "Force delete"
msgstr "Löschen erzwingen"
#: src/PodActions.jsx:46
msgid "Force delete pod $0?"
msgstr "Löschen von Pod $0 erzwingen?"
#: src/PodActions.jsx:126 src/Containers.jsx:182
msgid "Force restart"
msgstr "Neustart erzwingen"
#: src/ContainerHealthLogs.jsx:45 src/PodActions.jsx:104
#: src/ImageRunModal.jsx:64 src/Containers.jsx:174
msgid "Force stop"
msgstr "Stoppen erzwingen"
#: src/ImageRunModal.jsx:962
msgid "GB"
msgstr "GB"
#: src/ContainerDetails.jsx:67
msgid "Gateway"
msgstr "Gateway"
#: src/ImageRunModal.jsx:1075 src/Containers.jsx:473
msgid "Health check"
msgstr "Gesundheitsprüfung"
#: src/ImageRunModal.jsx:1084
msgid "Health check interval help"
msgstr "Hilfe zum Gesundheitsprüfungsintervall"
#: src/ImageRunModal.jsx:1153
msgid "Health check retries help"
msgstr "Hilfe zur Wiederholung der Gesundheitsprüfung"
#: src/ImageRunModal.jsx:1130
msgid "Health check start period help"
msgstr "Hilfe zur Periode der Gesundheitsprüfung"
#: src/ImageRunModal.jsx:1107
msgid "Health check timeout help"
msgstr "Hilfe zum Zeitlimit der Gesundheitsprüfung"
#: src/ImageRunModal.jsx:1174
msgid "Health failure check action help"
msgstr "Hilfe zur Gesundheitsprüfungs-Aktion"
#: src/Containers.jsx:277
msgid "Healthy"
msgstr "Gesund"
#: src/Images.jsx:310
msgid "Hide images"
msgstr "Abbilder ausblenden"
#: src/Images.jsx:259
msgid "Hide intermediate images"
msgstr "Intermediate Images verstecken"
#: src/Images.jsx:169
msgid "History"
msgstr "Verlauf"
#: src/Volume.jsx:38
msgid "Host path"
msgstr "Host-Pfad"
#: src/PublishPort.jsx:77
msgid "Host port"
msgstr "Host-Port"
#: src/PublishPort.jsx:80
msgid "Host port help"
msgstr "Hilfe zum Host-Port"
#: src/Images.jsx:190 src/ContainerDetails.jsx:34
msgid "ID"
msgstr "ID"
#: src/PublishPort.jsx:56 src/ContainerDetails.jsx:63
msgid "IP address"
msgstr "IP-Adresse"
#: src/PublishPort.jsx:59
msgid "IP address help"
msgstr "Hilfe zur IP-Adresse"
#: src/ImageRunModal.jsx:855
msgid "Ideal for development"
msgstr "Ideal zur Entwicklung"
#: src/ImageRunModal.jsx:838
msgid "Ideal for running services"
msgstr "Ideal für Dienste"
#: src/PublishPort.jsx:61
msgid ""
"If host IP is set to 0.0.0.0 or not set at all, the port will be bound on "
"all IPs on the host."
msgstr ""
"Wenn die Host-IP auf 0.0.0.0 oder gar nicht gesetzt ist, wird der Port an "
"alle IPs des Hosts gebunden."
#: src/PublishPort.jsx:82
msgid ""
"If the host port is not set the container port will be randomly assigned a "
"port on the host."
msgstr ""
"Wenn der Host-Port nicht gesetzt ist, wird dem Container-Port ein zufälliger "
"Port auf dem Host zugewiesen."
#: src/ContainerRestoreModal.jsx:56
msgid "Ignore IP address if set statically"
msgstr "IP-Adresse ignorieren, wenn statisch festgelegt"
#: src/ContainerRestoreModal.jsx:59
msgid "Ignore MAC address if set statically"
msgstr "MAC-Adresse ignorieren, wenn statisch festgelegt"
#: src/Images.jsx:187 src/ImageRunModal.jsx:878 src/ContainerDetails.jsx:38
msgid "Image"
msgstr "Image"
#: src/ContainerCommitModal.jsx:48
msgid "Image name is not unique"
msgstr "Abbildname ist nicht eindeutig"
#: src/ContainerCommitModal.jsx:39
msgid "Image name is required"
msgstr "Abbildname ist erforderlich"
#: src/ImageRunModal.jsx:880
msgid "Image selection help"
msgstr "Abbildauswahl-Hilfe"
#: src/Images.jsx:265 src/Images.jsx:295
msgid "Images"
msgstr "Images"
#: src/ImageRunModal.jsx:992
msgid "Increase CPU shares"
msgstr "CPU-Anteile erhöhen"
#: src/ImageRunModal.jsx:1098
msgid "Increase interval"
msgstr "Intervall erhöhen"
#: src/ImageRunModal.jsx:1029
msgid "Increase maximum retries"
msgstr "Maximale Wiederholungsversuche erhöhen"
#: src/ImageRunModal.jsx:952
msgid "Increase memory"
msgstr "Speicher erhöhen"
#: src/ImageRunModal.jsx:1166
msgid "Increase retries"
msgstr "Wiederholungsversuche erhöhen"
#: src/ImageRunModal.jsx:1144
msgid "Increase start period"
msgstr "Startzeitraum erhöhen"
#: src/ImageRunModal.jsx:1121
msgid "Increase timeout"
msgstr "Zeitüberschreitung erhöhen"
#: src/ImageRunModal.jsx:1039 src/Containers.jsx:448
msgid "Integration"
msgstr "Integration"
#: src/ContainerHealthLogs.jsx:67 src/ImageRunModal.jsx:1082
msgid "Interval"
msgstr "Intervall"
#: src/ImageRunModal.jsx:1086
msgid "Interval how often health check is run."
msgstr "Intervall, in dem die Gesundheitsprüfung durchgeführt wird."
#: src/ContainerRenameModal.jsx:36 src/PodCreateModal.jsx:121
msgid ""
"Invalid characters. Name can only contain letters, numbers, and certain "
"punctuation (_ . -)."
msgstr ""
"Ungültige Zeichen. Der Name darf nur Buchstaben, Zahlen und bestimmte "
"Satzzeichen (_ . -) enthalten."
#: src/ImageRunModal.jsx:960
msgid "KB"
msgstr "KB"
#: src/ContainerRestoreModal.jsx:51 src/ContainerCheckpointModal.jsx:48
msgid "Keep all temporary checkpoint files"
msgstr "Alle temporären Kontrollpunktdateien behalten"
#: src/Env.jsx:63
msgid "Key"
msgstr "Schlüssel"
#: src/Env.jsx:25
msgid "Key contains invalid characters"
msgstr "Schlüssel enthält ungültige Zeichen"
#: src/Env.jsx:21
msgid "Key must not be empty"
msgstr "Schlüssel darf nicht leer sein"
#: src/Env.jsx:23
msgid "Key must not begin with a digit"
msgstr "Schlüssel darf nicht mit einer Ziffer beginnen"
#: src/ContainerHealthLogs.jsx:108
msgid "Last 5 runs"
msgstr "Letzte 5 Durchläufe"
#: src/ContainerDetails.jsx:87
msgid "Latest checkpoint"
msgstr "LetzterKontrollpunkt"
#: src/ContainerCheckpointModal.jsx:50
msgid "Leave running after writing checkpoint to disk"
msgstr ""
"Nach dem Schreiben des Kontrollpunkts auf die Festplatte weiterlaufen lassen"
#: src/ImageHistory.jsx:59 src/ContainerIntegration.jsx:134
msgid "Loading details..."
msgstr "Details werden geladen ..."
#: src/ContainerLogs.jsx:57
msgid "Loading logs..."
msgstr "Protokolle werden geladen ..."
#: src/ImageUsedBy.jsx:14 src/Containers.jsx:625
msgid "Loading..."
msgstr "Wird geladen ..."
#: src/ImageRunModal.jsx:774
msgid "Local"
msgstr "Lokal"
#: src/ImageRunModal.jsx:577
msgid "Local images"
msgstr "Lokale Abbilder"
#: src/ContainerHealthLogs.jsx:105 src/Containers.jsx:453
msgid "Logs"
msgstr "Protokolle"
#: src/ContainerDetails.jsx:71
msgid "MAC address"
msgstr "MAC-Adresse"
#: src/ImageRunModal.jsx:961
msgid "MB"
msgstr "MB"
#: src/ImageRunModal.jsx:1021
msgid "Maximum retries"
msgstr "Maximale Versuche"
#: src/Containers.jsx:543 src/Containers.jsx:546 src/Containers.jsx:614
msgid "Memory"
msgstr "Speicher"
#: src/ImageRunModal.jsx:938
msgid "Memory limit"
msgstr "Speicher-Limit"
#: src/ImageRunModal.jsx:955
msgid "Memory unit"
msgstr "Speichereinheit"
#: src/Volume.jsx:66
msgid "Mode"
msgstr "Modus"
#: src/ImageDeleteModal.jsx:102
msgid "Multiple tags exist for this image. Select the tagged images to delete."
msgstr ""
"Mehrere Tags für dieses Image vorhanden. Getagte Images zum Löschen "
"auswählen."
#: src/PublishPort.jsx:25
msgid "Must be a valid IP address"
msgstr "Muss eine gültige IP-Adresse sein"
#: src/PodCreateModal.jsx:152 src/ImageRunModal.jsx:808
#: src/PruneUnusedContainersModal.jsx:67
msgid "Name"
msgstr "Name"
#: src/ImageRunModal.jsx:677
msgid "Name already in use"
msgstr "Name bereits in Gebrauch"
#: src/ContainerRenameModal.jsx:72
msgid "New container name"
msgstr "Neuer Containername"
#: src/ContainerCommitModal.jsx:94
msgid "New image name"
msgstr "Neuer Abbildname"
#: src/ImageRunModal.jsx:1013
msgid "No"
msgstr "Nein"
#: src/ContainerHealthLogs.jsx:42 src/ImageRunModal.jsx:61
msgid "No action"
msgstr "Keine Aktion"
#: src/Containers.jsx:622
msgid "No containers"
msgstr "Keine Container"
#: src/ImageUsedBy.jsx:16
msgid "No containers are using this image"
msgstr "Keine Container benutzen dieses Abbild"
#: src/Containers.jsx:623
msgid "No containers in this pod"
msgstr "Keine Container in diesem Pod"
#: src/Containers.jsx:627
msgid "No containers that match the current filter"
msgstr "Aktueller Filter passt auf keinen Container"
#: src/ImageRunModal.jsx:1064
msgid "No environment variables specified"
msgstr "Keine Umgebungsvariablen angegeben"
#: src/Images.jsx:194
msgid "No images"
msgstr "Keine Images"
#: src/ImageRunModal.jsx:896 src/ImageRunModal.jsx:897
#: src/ImageSearchModal.jsx:178
msgid "No images found"
msgstr "Keine Abbilder gefunden"
#: src/Images.jsx:198
msgid "No images that match the current filter"
msgstr "Aktueller Filter passt auf kein Image"
#: src/Volume.jsx:77
msgid "No label"
msgstr "Keine Bezeichnung"
#: src/PodCreateModal.jsx:182 src/ImageRunModal.jsx:1042
msgid "No ports exposed"
msgstr "Keine offenen Ports"
#: src/ImageSearchModal.jsx:182
msgid "No results for $0"
msgstr "Keine Ergebnisse für $0"
#: src/Containers.jsx:629
msgid "No running containers"
msgstr "Keine laufenden Container"
#: src/PodCreateModal.jsx:194 src/ImageRunModal.jsx:1052
msgid "No volumes specified"
msgstr "Keine Volumen angegeben"
#: src/ImageRunModal.jsx:1014
msgid "On failure"
msgstr "Bei einem Ausfall"
#: src/Containers.jsx:768
msgid "Only running"
msgstr "Nur laufenlassen"
#: src/ContainerCommitModal.jsx:122
msgid "Options"
msgstr "Optionen"
#: src/Images.jsx:188 src/PodCreateModal.jsx:170 src/ImageRunModal.jsx:828
#: src/ImageSearchModal.jsx:146 src/PruneUnusedContainersModal.jsx:74
#: src/Containers.jsx:612 src/ContainerHeader.jsx:17
msgid "Owner"
msgstr "Eigentümer"
#: src/ImageRunModal.jsx:830
msgid "Owner help"
msgstr "Eigentümer-Hilfe"
#: src/ContainerHealthLogs.jsx:118
msgid "Passed health run"
msgstr "Bestandener Gesundheitstest"
#: src/ImageRunModal.jsx:1072
msgid ""
"Paste one or more lines of key=value pairs into any field for bulk import"
msgstr ""
"Fügen Sie eine oder mehrere Zeilen mit key=value Paaren in irgendein Feld "
"ein für multiplen Import"
#: src/PodActions.jsx:171 src/Containers.jsx:190
msgid "Pause"
msgstr "Anhalten"
#: src/ContainerCommitModal.jsx:126
msgid "Pause container when creating image"
msgstr "Container bei der Abbilderstellung pausieren"
#: src/util.js:24 src/util.js:27
msgid "Paused"
msgstr "Pausiert"
#: src/PodCreateModal.jsx:96
msgid "Pod failed to be created"
msgstr "Pod konnte nicht erstellt werden"
#: src/PodCreateModal.jsx:155
msgid "Pod name"
msgstr "Pod-Name"
#: org.cockpit_project.podman.metainfo.xml:5
msgid "Podman"
msgstr "Podman"
#: src/manifest.json:0
msgid "Podman containers"
msgstr "Podman-Container"
#: src/app.jsx:675
msgid "Podman service failed"
msgstr "Podman-Dienst fehlgeschlagen"
#: src/PodCreateModal.jsx:184 src/ImageRunModal.jsx:1044
msgid "Port mapping"
msgstr "Portzuordnung"
#: src/ImageDetails.jsx:41 src/ContainerIntegration.jsx:150
msgid "Ports"
msgstr "Ports"
#: src/ImageRunModal.jsx:847
msgid "Ports under 1024 can be mapped"
msgstr "Ports unter 1024 können zugeordnet werden"
#: src/Volume.jsx:79
msgid "Private"
msgstr "Privat"
#: src/PublishPort.jsx:119
msgid "Protocol"
msgstr "Protokoll"
#: src/PruneUnusedImagesModal.jsx:110 src/PruneUnusedContainersModal.jsx:109
msgid "Prune"
msgstr "Reduzieren"
#: src/PruneUnusedContainersModal.jsx:93 src/Containers.jsx:295
msgid "Prune unused containers"
msgstr "Nicht benötigte Abbilder löschen"
#: src/Images.jsx:365 src/PruneUnusedImagesModal.jsx:90
msgid "Prune unused images"
msgstr "Reduzierung nicht benötigter Abbilder"
#: src/PruneUnusedContainersModal.jsx:105
#: src/PruneUnusedContainersModal.jsx:109
msgid "Pruning containers"
msgstr "Räume Container auf"
#: src/PruneUnusedImagesModal.jsx:106 src/PruneUnusedImagesModal.jsx:110
msgid "Pruning images"
msgstr "Reduziere Abbilder"
#: src/Images.jsx:434
msgid "Pull"
msgstr "Ziehen"
#: src/Images.jsx:354
msgid "Pull all images"
msgstr "Alle Abbilder ziehen"
#: src/ImageRunModal.jsx:914
msgid "Pull latest image"
msgstr "Neuestes Image pullen"
#: src/Images.jsx:333
msgid "Pulling"
msgstr "Herunterladen"
#: src/ContainerIntegration.jsx:83
msgid "Read-only access"
msgstr "Nur-Lese-Zugriff"
#: src/ContainerIntegration.jsx:82
msgid "Read-write access"
msgstr "Lese-/Schreibzugriff"
#: src/Volume.jsx:86 src/PublishPort.jsx:134 src/Env.jsx:97
msgid "Remove item"
msgstr "Element entfernen"
#: src/PruneUnusedContainersModal.jsx:95
msgid "Removes selected non-running containers"
msgstr "Entfernt selektierte nicht-laufende Container"
#: src/util.js:24
msgid "Removing"
msgstr "Wird entfernt"
#: src/ContainerRenameModal.jsx:101 src/Containers.jsx:156
msgid "Rename"
msgstr "Umbenennen"
#: src/ContainerRenameModal.jsx:90
msgid "Rename container $0"
msgstr "Container $0 umbenennen"
#: src/ImageRunModal.jsx:841
msgid "Resource limits can be set"
msgstr "Ressourcen-Grenzen können gesetzt werden"
#: src/ContainerHealthLogs.jsx:43 src/PodActions.jsx:115
#: src/ImageRunModal.jsx:62 src/util.js:24 src/Containers.jsx:178
msgid "Restart"
msgstr "Neustart"
#: src/ImageRunModal.jsx:1000
msgid "Restart policy"
msgstr "Neustartrichtlinie"
#: src/ImageRunModal.jsx:1002 src/ImageRunModal.jsx:1010
msgid "Restart policy help"
msgstr "Neustartrichtlinien-Hilfe"
#: src/ImageRunModal.jsx:1004
msgid "Restart policy to follow when containers exit."
msgstr ""
"Neustart-Richtlinie, die beim Beenden von Containern befolgt werden soll."
#: src/ImageRunModal.jsx:1004
msgid ""
"Restart policy to follow when containers exit. Using linger for auto-"
"starting containers may not work in some circumstances, such as when "
"ecryptfs, systemd-homed, NFS, or 2FA are used on a user account."
msgstr ""
"Neustart-Richtlinie, die beim Beenden von Containern befolgt werden soll. "
"Die Verwendung von linger für das automatische Starten von Containern kann "
"unter bestimmten Umständen nicht funktionieren, z. B. wenn ecryptfs, systemd-"
"homed, NFS oder 2FA für ein Benutzerkonto verwendet werden."
#: src/ContainerRestoreModal.jsx:68 src/Containers.jsx:231
msgid "Restore"
msgstr "Wiederherstellen"
#: src/ContainerRestoreModal.jsx:48
msgid "Restore container $0"
msgstr "Container $0 wiederherstellen"
#: src/ContainerRestoreModal.jsx:53
msgid "Restore with established TCP connections"
msgstr "Wiederherstellung mit bestehenden TCP-Verbindungen"
#: src/ImageRunModal.jsx:858
msgid "Restricted by user account permissions"
msgstr "Eingeschränkt durch Benutzerkonto-Privilegien"
#: src/PodActions.jsx:156 src/Containers.jsx:197
msgid "Resume"
msgstr "Fotfahren"
#: src/ContainerHealthLogs.jsx:71 src/ImageRunModal.jsx:1151
msgid "Retries"
msgstr "Wiederholungsversuche"
#: src/ImageSearchModal.jsx:183
msgid "Retry another term."
msgstr "Versuchen Sie einen anderen Begriff."
#: src/ContainerHealthLogs.jsx:101
msgid "Run health check"
msgstr "Gesundheitsprüfung durchführen"
#: src/ImageUsedBy.jsx:37 src/util.js:24 src/util.js:27
msgid "Running"
msgstr "Läuft"
#: src/Volume.jsx:73
msgid "SELinux"
msgstr "SELinux"
#: src/ImageSearchModal.jsx:160
msgid "Search by name or description"
msgstr "Nach Name oder Beschreibung suchen"
#: src/ImageRunModal.jsx:766
msgid "Search by registry"
msgstr "Nach Registry suchen"
#: src/ImageSearchModal.jsx:157
msgid "Search for"
msgstr "Suchen nach"
#: src/ImageSearchModal.jsx:141
msgid "Search for an image"
msgstr "Nach einem Abbild suchen"
#: src/ImageRunModal.jsx:900
msgid "Search string or container location"
msgstr "Suchbegriff oder Containerort"
#: src/ImageSearchModal.jsx:176
msgid "Searching..."
msgstr "Wird gesucht ..."
#: src/ImageRunModal.jsx:886
msgid "Searching: $0"
msgstr "Wird gesucht: $0"
#: src/Volume.jsx:78
msgid "Shared"
msgstr "Freigegeben"
#: src/Containers.jsx:763
msgid "Show"
msgstr "Anzeigen"
#: src/Images.jsx:310
msgid "Show images"
msgstr "Abbilder anzeigen"
#: src/Images.jsx:259
msgid "Show intermediate images"
msgstr "Zwischenabbilder anzeigen"
#: src/ContainerIntegration.jsx:123
msgid "Show less"
msgstr "Weniger anzeigen"
#: src/PruneUnusedImagesModal.jsx:54 src/ContainerIntegration.jsx:123
msgid "Show more"
msgstr "Mehr anzeigen"
#: src/ImageHistory.jsx:33
msgid "Size"
msgstr "Größe"
#: src/PodActions.jsx:141 src/Containers.jsx:220
msgid "Start"
msgstr "Starten"
#: src/ContainerHealthLogs.jsx:75 src/ImageRunModal.jsx:1128
msgid "Start period"
msgstr "Startzeitraum"
#: src/ImageSearchModal.jsx:178
msgid "Start typing to look for images."
msgstr "Zum Suchen nach Abbildern mit dem Tippen beginnen."
#: src/ContainerHealthLogs.jsx:108
msgid "Started at"
msgstr "Gestartet am"
#: src/ContainerDetails.jsx:83 src/Containers.jsx:615
msgid "State"
msgstr "Zustand"
#: src/ContainerHealthLogs.jsx:59
msgid "Status"
msgstr "Status"
#: src/ContainerHealthLogs.jsx:44 src/PodActions.jsx:93
#: src/ImageRunModal.jsx:63 src/Containers.jsx:170
msgid "Stop"
msgstr "Stoppen"
#: src/util.js:24 src/util.js:27
msgid "Stopped"
msgstr "Angehalten"
#: src/ContainerCheckpointModal.jsx:53
msgid "Support preserving established TCP connections"
msgstr "Unterstützung der Aufrechterhaltung bestehender TCP-Verbindungen"
#: src/PodCreateModal.jsx:174 src/ImageRunModal.jsx:835
#: src/ImageRunModal.jsx:870
msgid "System"
msgstr "System"
#: src/PublishPort.jsx:125
msgid "TCP"
msgstr "TCP"
#: src/ImageSearchModal.jsx:212 src/ContainerCommitModal.jsx:102
msgid "Tag"
msgstr "Etikett"
#: src/ImageDetails.jsx:29
msgid "Tags"
msgstr "Etiketten"
#: org.cockpit_project.podman.metainfo.xml:10
msgid ""
"The Cockpit user interface for Podman containers. podman (Pod Manager) is a "
"fully featured daemon-less engine for OCI containers, pods (groups of "
"containers), and container images. It is CLI, API, and functionally "
"compatible with Docker."
msgstr ""
"Die Cockpit-Benutzeroberfläche für Podman-Container. podman (Pod Manager) "
"ist eine voll ausgestattete Daemon-lose Engine für OCI-Container, Pods "
"(Gruppen von Containern) und Container-Abbilder. Es ist mit dem CLI, der API "
"und funktional mit Docker kompatibel."
#: src/ImageRunModal.jsx:1132
msgid "The initialization time needed for a container to bootstrap."
msgstr "Die zum Urladen eines Containers benötigte Initialisierungszeit."
#: src/ImageRunModal.jsx:1109
msgid ""
"The maximum time allowed to complete the health check before an interval is "
"considered failed."
msgstr ""
"Die maximal zulässige Zeit für den Abschluss der Gesundheitsprüfung, bevor "
"ein Intervall als fehlgeschlagen gilt."
#: src/ImageRunModal.jsx:1155
msgid ""
"The number of retries allowed before a healthcheck is considered to be "
"unhealthy."
msgstr ""
"Die Anzahl der zulässigen Wiederholungsversuche, bevor eine "
"Gesundheitsprüfung als ungesund gilt."
#: src/ContainerHealthLogs.jsx:79 src/ImageRunModal.jsx:1105
msgid "Timeout"
msgstr "Zeitüberschreitung"
#: src/app.jsx:679
msgid "Troubleshoot"
msgstr "Fehler suchen"
#: src/ContainerHeader.jsx:31
msgid "Type to filter…"
msgstr "Tippen zum filtern…"
#: src/PublishPort.jsx:126
msgid "UDP"
msgstr "UDP"
#: src/ImageHistory.jsx:59
msgid "Unable to load image history"
msgstr "Abbildverlauf kann nicht geladen werden"
#: src/Containers.jsx:279
msgid "Unhealthy"
msgstr "Ungesund"
#: src/ContainerDetails.jsx:15
msgid "Up since:"
msgstr "Läuft seit:"
#: src/ContainerCommitModal.jsx:131
msgid "Use legacy Docker format"
msgstr "Veraltetes Docker-Format verwenden"
#: src/Images.jsx:192 src/ImageDetails.jsx:35
msgid "Used by"
msgstr "Benutzt von"
#: src/ImageRunModal.jsx:852 src/app.jsx:528
msgid "User"
msgstr "Benutzer"
#: src/PodCreateModal.jsx:174 src/ImageRunModal.jsx:870
msgid "User:"
msgstr "Benutzer:"
#: src/Env.jsx:79
msgid "Value"
msgstr "Wert"
#: src/ContainerDetails.jsx:53
msgid "View $0"
msgstr "$0 ansehen"
#: src/ContainerLogs.jsx:179
msgid "View $0 logs"
msgstr "$0 Logs ansehen"
#: src/PodCreateModal.jsx:196 src/ImageRunModal.jsx:1054
#: src/ContainerIntegration.jsx:154
msgid "Volumes"
msgstr "Datenträger"
#: src/ContainerHealthLogs.jsx:83 src/ImageRunModal.jsx:1172
msgid "When unhealthy"
msgstr "Wenn ungesund"
#: src/ImageRunModal.jsx:934
msgid "With terminal"
msgstr "Mit Terminal"
#: src/Volume.jsx:68
msgid "Writable"
msgstr "Beschreibbar"
#: src/manifest.json:0
msgid "container"
msgstr "container"
#: src/ImageRunModal.jsx:304
msgid "downloading"
msgstr "wird heruntergeladen"
#: src/ImageRunModal.jsx:884
msgid "host[:port]/[user]/container[:tag]"
msgstr "Host[:Port]/[Benutzer]/Container[:Tag]"
#: src/manifest.json:0
msgid "image"
msgstr "Image"
#: src/ImageSearchModal.jsx:165
msgid "in"
msgstr "in"
#: src/ImageDeleteModal.jsx:84
msgid "intermediate"
msgstr "intermediate"
#: src/ImageDeleteModal.jsx:64
msgid "intermediate image"
msgstr "Zwischenabbild"
#: src/Containers.jsx:353 src/Containers.jsx:354
msgid "n/a"
msgstr "n.v."
#: src/Containers.jsx:353 src/Containers.jsx:354
msgid "not available"
msgstr "nicht verfügbar"
#: src/Containers.jsx:893
msgid "pod"
msgstr "Pod"
#: src/manifest.json:0
msgid "podman"
msgstr "podman"
#: src/Containers.jsx:563
msgid "ports"
msgstr "Ports"
#: src/ImageRunModal.jsx:1102 src/ImageRunModal.jsx:1125
#: src/ImageRunModal.jsx:1148
msgid "seconds"
msgstr "Sekunden"
#: src/Containers.jsx:390 src/Containers.jsx:894
msgid "service"
msgstr "Dienst"
#: src/Images.jsx:144 src/app.jsx:61 src/app.jsx:515
#: src/PruneUnusedContainersModal.jsx:34 src/Containers.jsx:416
msgid "system"
msgstr "System"
#: src/ContainerDetails.jsx:49
msgid "systemd service"
msgstr "systemd-Dienst"
#: src/Images.jsx:92 src/Images.jsx:99
msgid "unused"
msgstr "ungenutzt"
#: src/app.jsx:61
msgid "user"
msgstr "Benutzer"
#: src/Images.jsx:144 src/PruneUnusedContainersModal.jsx:34
#: src/Containers.jsx:416
msgid "user:"
msgstr "Benutzer:"
#: src/Containers.jsx:578
msgid "volumes"
msgstr "Volumen"
#~ msgid "pod group"
#~ msgstr "Pod-Gruppe"
#~ msgid "Delete unused user images:"
#~ msgstr "Nicht verwendete Benutzerabbilder löschen:"
#~ msgid "Automatically start podman on boot"
#~ msgstr "Podman automatisch beim Hochfahren starten"
#~ msgid "Start podman"
#~ msgstr "Podman starten"
#~ msgid "System Podman service is also available"
#~ msgstr "System-Podman ist auch verfügbar"
#~ msgid "User Podman service is also available"
#~ msgstr "Benutzer Podman ist auch verfügbar"
#~ msgid "The Cockpit user interface for Podman containers."
#~ msgstr "Die Cockpit Benutzeroberfläche für Podman Container."
#~ msgid "Delete $0"
#~ msgstr "$0 löschen"
#~ msgid "select all"
#~ msgstr "Alles auswählen"
#~ msgid "Restarting"
#~ msgstr "Wird neu gestartet"
#~ msgid "Confirm deletion of $0"
#~ msgstr "Löschen von $0 bestätigen"
#, fuzzy
#~| msgid "Please confirm deletion of pod $0"
#~ msgid "Confirm deletion of pod $0"
#~ msgstr "Löschen von Pod $0 bestätigen"
#, fuzzy
#~| msgid "Please confirm force deletion of pod $0"
#~ msgid "Confirm force deletion of pod $0"
#~ msgstr "Erzwungenes Löschen von Pod $0 bestätigen"
#~ msgid "Confirm forced deletion of $0"
#~ msgstr "Erzwungenes Löschen von $0 bestätigen"
#~ msgid "Container is currently running."
#~ msgstr "Container läuft gerade."
#~ msgid "Do not include root file-system changes when exporting"
#~ msgstr "Keine root-Dateisystem-Änderungen beifügen, wenn exportieren"
#~ msgid "Start after creation"
#~ msgstr "Nach der Erstellung starten"
#~ msgid "created"
#~ msgstr "erstellt"
#~ msgid "exited"
#~ msgstr "beendet"
#~ msgid "paused"
#~ msgstr "pausiert"
#~ msgid "running"
#~ msgstr "Läuft"
#~ msgid "stopped"
#~ msgstr "Angehalten"
#~ msgid "Add on build variable"
#~ msgstr "Build-Variable hinzufügen"
#~ msgid "Commit image"
#~ msgstr "Image committen"
#~ msgid "Format"
#~ msgstr "Format"
#~ msgid "Message"
#~ msgstr "Nachricht"
#~ msgid "Pause the container"
#~ msgstr "Den Container anhalten"
#~ msgid "Remove on build variable"
#~ msgstr "Bei Bau-Variable entfernen"
#~ msgid "Add item"
#~ msgstr "Element hinzufügen"
#, fuzzy
#~| msgid "Host port"
#~ msgid "Host port (optional)"
#~ msgstr "Host-Port"
#~ msgid "ReadOnly"
#~ msgstr "Nur lesen"
#~ msgid "IP prefix length"
#~ msgstr "IP-Präfixlänge"
#~ msgid "Get new image"
#~ msgstr "Neues Image herunterladen"
#~ msgid "Run"
#~ msgstr "Starten"
#~ msgid "On build"
#~ msgstr "Beim Bauen"
#~ msgid "Are you sure you want to delete this image?"
#~ msgstr "Sind Sie sicher, dass Sie dieses Image löschen wollen?"
#~ msgid "Could not attach to this container: $0"
#~ msgstr "Konnte nicht mit diesem Container verbinden: $0"
#~ msgid "Could not open channel: $0"
#~ msgstr "Konnte keinen Kanal öffnen: $0"
#~ msgid "Everything"
#~ msgstr "Alles"
#~ msgid "Security"
#~ msgstr "Sicherheit"
#~ msgid "This version of the Web Console does not support a terminal."
#~ msgstr "Diese Version der Web-Konsole unterstützt kein Terminal."
|