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
|
# #-#-#-#-# podman.js.pot (PACKAGE VERSION) #-#-#-#-#
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# Pany <geekpany@gmail.com>, 2020.
# Harry Chen <harrychen0314@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-02-28 05:23+0000\n"
"Last-Translator: Martin Pitt <mpitt@redhat.com>\n"
"Language-Team: Chinese (Simplified) <https://translate.fedoraproject.org/"
"projects/cockpit-podman/main/zh_CN/>\n"
"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0\n"
"X-Generator: Weblate 5.10\n"
#: src/Images.jsx:96
msgid "$0 container"
msgid_plural "$0 containers"
msgstr[0] "$0 容器"
#: src/Images.jsx:278
msgid "$0 image total, $1"
msgid_plural "$0 images total, $1"
msgstr[0] "$0 镜像总共,$1"
#: src/ContainerHealthLogs.jsx:38
msgid "$0 second"
msgid_plural "$0 seconds"
msgstr[0] "$0 秒"
#: src/Images.jsx:282
msgid "$0 unused image, $1"
msgid_plural "$0 unused images, $1"
msgstr[0] "$0 未使用的镜像,$1"
#: src/Containers.jsx:374
msgid "$0% of $1 limit"
msgstr "$1 限制的 $0%"
#: src/PublishPort.jsx:31 src/PublishPort.jsx:42
msgid "1 to 65535"
msgstr "1 到 65535"
#: src/ImageRunModal.jsx:1176
msgid "Action to take once the container transitions to an unhealthy state."
msgstr "容器转换到不健康状态后要执行的操作。"
#: src/Containers.jsx:616
msgid "Actions"
msgstr "操作"
#: src/PodCreateModal.jsx:185 src/ImageRunModal.jsx:1045
msgid "Add port mapping"
msgstr "添加端口映射"
#: src/ImageRunModal.jsx:1067
msgid "Add variable"
msgstr "添加变量"
#: src/PodCreateModal.jsx:197 src/ImageRunModal.jsx:1055
msgid "Add volume"
msgstr "添加卷"
#: src/ImageRunModal.jsx:767 src/Containers.jsx:767 src/ContainerHeader.jsx:24
#: src/ImageDeleteModal.jsx:104
msgid "All"
msgstr "所有"
#: src/ImageSearchModal.jsx:169
msgid "All registries"
msgstr "所有 registry"
#: src/ImageRunModal.jsx:1015
msgid "Always"
msgstr "总是"
#: src/PodActions.jsx:51
msgid "An error occurred"
msgstr "发生了错误"
#: src/ContainerCommitModal.jsx:109
msgid "Author"
msgstr "作者"
#: 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 份额帮助"
#: src/ImageRunModal.jsx:970
msgid "CPU shares"
msgstr "CPU 份额"
#: 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 份额决定了运行容器的优先级。默认优先级为 1024。数字越大,容器的优先级越"
"高。数字越小,优先级越低。"
#: 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 "取消"
#: src/Containers.jsx:281
msgid "Checking health"
msgstr "检查健康状况"
#: src/Containers.jsx:210 src/ContainerCheckpointModal.jsx:62
msgid "Checkpoint"
msgstr "检查点"
#: src/ImageRunModal.jsx:844
msgid "Checkpoint and restore support"
msgstr "检查点和恢复支持"
#: src/ContainerCheckpointModal.jsx:45
msgid "Checkpoint container $0"
msgstr "检查点容器 $0"
#: src/Containers.jsx:554
msgid "Click to see published ports"
msgstr "点击以查看公布的端口"
#: src/Containers.jsx:569
msgid "Click to see volumes"
msgstr "点击以查看卷"
#: org.cockpit_project.podman.metainfo.xml:22
msgid "Cockpit Project"
msgstr "Cockpit 项目"
#: org.cockpit_project.podman.metainfo.xml:6
msgid "Cockpit component for Podman containers"
msgstr "Podman 容器的 Cockpit 组件"
#: 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 "命令"
#: src/ImageHistory.jsx:33
msgid "Comments"
msgstr "注释"
#: src/Containers.jsx:245 src/ContainerCommitModal.jsx:153
msgid "Commit"
msgstr "提交"
#: src/ContainerCommitModal.jsx:141
msgid "Commit container"
msgstr "提交容器"
#: src/util.js:24
msgid "Configured"
msgstr "已配置"
#: src/Containers.jsx:464
msgid "Console"
msgstr "控制台"
#: src/Containers.jsx:611
msgid "Container"
msgstr "容器"
#: src/ImageRunModal.jsx:270
msgid "Container failed to be created"
msgstr "容器创建失败"
#: src/ImageRunModal.jsx:251
msgid "Container failed to be started"
msgstr "容器启动失败"
#: src/ContainerTerminal.jsx:264
msgid "Container is not running"
msgstr "容器未运行"
#: src/ImageRunModal.jsx:811
msgid "Container name"
msgstr "容器名称"
#: src/ContainerRenameModal.jsx:32 src/ContainerRenameModal.jsx:43
msgid "Container name is required."
msgstr "容器名称是必需的。"
#: src/Volume.jsx:52
msgid "Container path"
msgstr "容器路径"
#: src/Volume.jsx:25
msgid "Container path must not be empty"
msgstr "容器路径不能为空"
#: src/PublishPort.jsx:102
msgid "Container port"
msgstr "容器端口"
#: src/PublishPort.jsx:38
msgid "Container port must not be empty"
msgstr "容器端口不能为空"
#: src/Containers.jsx:821 src/Containers.jsx:827 src/Containers.jsx:862
msgid "Containers"
msgstr "容器"
#: src/PodCreateModal.jsx:221 src/ImageRunModal.jsx:1221
msgid "Create"
msgstr "创建"
#: src/ContainerCommitModal.jsx:142
msgid "Create a new image based on the current state of the $0 container."
msgstr "根据 $0 容器的当前状态创建一个新镜像。"
#: src/ImageRunModal.jsx:1217
msgid "Create and run"
msgstr "创建并运行"
#: src/Images.jsx:420 src/Images.jsx:429 src/ImageRunModal.jsx:1210
#: src/Containers.jsx:784
msgid "Create container"
msgstr "创建容器"
#: src/ImageRunModal.jsx:1210
msgid "Create container in $0"
msgstr "在 $0 中创建容器"
#: src/Containers.jsx:873
msgid "Create container in pod"
msgstr "在 pod 中创建容器"
#: src/PodCreateModal.jsx:213 src/Containers.jsx:776
msgid "Create pod"
msgstr "创建 pod"
#: 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 "已创建"
#: src/ImageHistory.jsx:33
msgid "Created by"
msgstr "创建"
#: src/ImageRunModal.jsx:991
msgid "Decrease CPU shares"
msgstr "减少 CPU 共享"
#: src/ImageRunModal.jsx:1097
msgid "Decrease interval"
msgstr "缩短间隔"
#: src/ImageRunModal.jsx:1028
msgid "Decrease maximum retries"
msgstr "减小最大重试次数"
#: src/ImageRunModal.jsx:951
msgid "Decrease memory"
msgstr "减少内存"
#: src/ImageRunModal.jsx:1165
msgid "Decrease retries"
msgstr "减少重试"
#: src/ImageRunModal.jsx:1143
msgid "Decrease start period"
msgstr "减少启动周期"
#: src/ImageRunModal.jsx:1120
msgid "Decrease timeout"
msgstr "减少超时"
#: src/PodActions.jsx:66 src/PodActions.jsx:186 src/Images.jsx:440
#: src/ContainerDeleteModal.jsx:42 src/Containers.jsx:255
msgid "Delete"
msgstr "删除"
#: src/ImageDeleteModal.jsx:97
msgid "Delete $0 image?"
msgstr "删除 $0 镜像?"
#: src/ContainerDeleteModal.jsx:35 src/ForceRemoveModal.jsx:21
msgid "Delete $0?"
msgstr "删除 $0 ?"
#: src/ImageDeleteModal.jsx:123
msgid "Delete image"
msgstr "删除镜像"
#: src/PodActions.jsx:47
msgid "Delete pod $0?"
msgstr "删除 pod $0?"
#: src/ImageDeleteModal.jsx:123
msgid "Delete tagged images"
msgstr "删除标记的镜像"
#: src/PruneUnusedImagesModal.jsx:38
#, fuzzy
#| msgid "Delete tagged images"
msgid "Delete unused images of user $0:"
msgstr "删除标记的镜像"
#: src/PruneUnusedImagesModal.jsx:37
msgid "Delete unused system images:"
msgstr "删除未使用的系统镜像:"
#: src/ContainerDeleteModal.jsx:39
msgid "Deleting a container will erase all data in it."
msgstr "删除容器会清空其中的全部数据。"
#: src/Containers.jsx:70
msgid "Deleting a running container will erase all data in it."
msgstr "删除正在运行的容器将会清除其中的所有数据。"
#: src/PodActions.jsx:57
msgid "Deleting this pod will remove the following containers:"
msgstr "删除这个 Pod 将会移除这些容器:"
#: src/Images.jsx:160 src/ImageRunModal.jsx:826 src/Containers.jsx:441
msgid "Details"
msgstr "详情"
#: src/Images.jsx:191
msgid "Disk space"
msgstr "磁盘空间"
#: src/ContainerCommitModal.jsx:130
msgid ""
"Docker format is useful when sharing the image with Docker or Moby Engine"
msgstr "当与 Docker 或 Moby Engine 共享镜像时,Docker 格式非常有用"
#: src/ImageSearchModal.jsx:222
msgid "Download"
msgstr "下载"
#: src/Images.jsx:347
msgid "Download new image"
msgstr "下载新镜像"
#: src/PodActions.jsx:53
msgid "Empty pod $0 will be permanently removed."
msgstr "空 pod $0 将被永久删除。"
#: src/ImageDetails.jsx:23 src/ImageRunModal.jsx:920
msgid "Entrypoint"
msgstr "入口点"
#: src/ImageRunModal.jsx:1066 src/ContainerIntegration.jsx:158
msgid "Environment variables"
msgstr "环境变量"
#: src/util.js:27
msgid "Error"
msgstr "错误"
#: src/Images.jsx:61 src/Notification.jsx:43
msgid "Error message"
msgstr "错误信息"
#: src/ContainerTerminal.jsx:268
msgid "Error occurred while connecting console"
msgstr "连接到控制台时出现错误"
#: src/ContainerCommitModal.jsx:111
msgid "Example, Your Name <yourname@example.com>"
msgstr "示例,您的名字 <yourname@example.com>"
#: src/ImageRunModal.jsx:885
msgid "Example: $0"
msgstr "示例:$0"
#: src/util.js:24 src/util.js:27 src/ContainerDetails.jsx:17
msgid "Exited"
msgstr "已退出"
#: src/ContainerHealthLogs.jsx:118
msgid "Failed health run"
msgstr "失败的健康运行"
#: src/ContainerCheckpointModal.jsx:32
msgid "Failed to checkpoint container $0"
msgstr "检查点容器 $0 失败"
#: src/ImageRunModal.jsx:258
msgid "Failed to clean up container"
msgstr "清理容器失败"
#: src/ContainerCommitModal.jsx:85
msgid "Failed to commit container $0"
msgstr "提交容器 $0 失败"
#: src/ImageRunModal.jsx:327
msgid "Failed to create container $0"
msgstr "创建容器 $0 失败"
#: src/Images.jsx:59
msgid "Failed to download image $0:$1"
msgstr "下载镜像 $0:$1 失败"
#: src/Containers.jsx:60
msgid "Failed to force remove container $0"
msgstr "强制移除容器 $0 失败"
#: src/ImageDeleteModal.jsx:52
msgid "Failed to force remove image $0"
msgstr "强制删除镜像失败 $0"
#: src/PodActions.jsx:122
msgid "Failed to force restart pod $0"
msgstr "强制重启 pod $0 失败"
#: src/PodActions.jsx:100
msgid "Failed to force stop pod $0"
msgstr "强制停止 Pod $0 失败"
#: src/Containers.jsx:109
msgid "Failed to pause container $0"
msgstr "暂停容器 $0 失败"
#: src/PodActions.jsx:167
msgid "Failed to pause pod $0"
msgstr "暂停 Pod $0 失败"
#: src/PruneUnusedContainersModal.jsx:60
msgid "Failed to prune unused containers"
msgstr "删除未使用的容器失败"
#: src/PruneUnusedImagesModal.jsx:73
msgid "Failed to prune unused images"
msgstr "删除未使用的映像失败"
#: src/ImageRunModal.jsx:333
msgid "Failed to pull image $0"
msgstr "拉取镜像 $0 失败"
#: src/ContainerDeleteModal.jsx:25
msgid "Failed to remove container $0"
msgstr "移除容器 $0 失败"
#: src/ImageDeleteModal.jsx:78
msgid "Failed to remove image $0"
msgstr "删除镜像 $0 失败"
#: src/ContainerRenameModal.jsx:58
msgid "Failed to rename container $0"
msgstr "重命名容器 $0 失败"
#: src/Containers.jsx:127
msgid "Failed to restart container $0"
msgstr "重启容器 $0 失败"
#: src/PodActions.jsx:111
msgid "Failed to restart pod $0"
msgstr "重启 pod $0 失败"
#: src/ContainerRestoreModal.jsx:35
msgid "Failed to restore container $0"
msgstr "恢复容器 $0 失败"
#: src/Containers.jsx:101
msgid "Failed to resume container $0"
msgstr "恢复容器 $0 失败"
#: src/PodActions.jsx:152
msgid "Failed to resume pod $0"
msgstr "恢复 Pod $0 失败"
#: src/ImageRunModal.jsx:320
msgid "Failed to run container $0"
msgstr "运行容器 $0 失败"
#: src/ContainerHealthLogs.jsx:97
msgid "Failed to run health check on container $0"
msgstr "在容器 $0 上运行健康检查失败"
#: src/ImageRunModal.jsx:390 src/ImageSearchModal.jsx:97
msgid "Failed to search for images."
msgstr "搜索镜像失败。"
#: src/ImageRunModal.jsx:390 src/ImageSearchModal.jsx:97
msgid "Failed to search for images: $0"
msgstr "搜索镜像 $0 失败"
#: src/ImageRunModal.jsx:388 src/ImageSearchModal.jsx:96
msgid "Failed to search for new images"
msgstr "搜索新镜像失败"
#: src/Containers.jsx:93
msgid "Failed to start container $0"
msgstr "启动容器 $0 失败"
#: src/PodActions.jsx:137
msgid "Failed to start pod $0"
msgstr "启动 Pod $0 失败"
#: src/Containers.jsx:85
msgid "Failed to stop container $0"
msgstr "停止容器 $0 失败"
#: src/PodActions.jsx:89
msgid "Failed to stop pod $0"
msgstr "停止 Pod $0 失败"
#: src/ContainerHealthLogs.jsx:87
msgid "Failing streak"
msgstr "streak 失败"
#: src/ContainerCommitModal.jsx:160
msgid "Force commit"
msgstr "强制提交"
#: src/PodActions.jsx:66 src/ForceRemoveModal.jsx:31
msgid "Force delete"
msgstr "强制删除"
#: src/PodActions.jsx:46
msgid "Force delete pod $0?"
msgstr "强制删除 pod $0?"
#: src/PodActions.jsx:126 src/Containers.jsx:182
msgid "Force restart"
msgstr "强制重启"
#: src/ContainerHealthLogs.jsx:45 src/PodActions.jsx:104
#: src/ImageRunModal.jsx:64 src/Containers.jsx:174
msgid "Force stop"
msgstr "强制停止"
#: src/ImageRunModal.jsx:962
msgid "GB"
msgstr "GB"
#: src/ContainerDetails.jsx:67
msgid "Gateway"
msgstr "网关"
#: src/ImageRunModal.jsx:1075 src/Containers.jsx:473
msgid "Health check"
msgstr "健康检查"
#: src/ImageRunModal.jsx:1084
msgid "Health check interval help"
msgstr "健康检查间隔帮助"
#: src/ImageRunModal.jsx:1153
msgid "Health check retries help"
msgstr "健康检查重试帮助"
#: src/ImageRunModal.jsx:1130
msgid "Health check start period help"
msgstr "健康检查启动周期帮助"
#: src/ImageRunModal.jsx:1107
msgid "Health check timeout help"
msgstr "健康检查超时帮助"
#: src/ImageRunModal.jsx:1174
msgid "Health failure check action help"
msgstr "健康检查失败操作帮助"
#: src/Containers.jsx:277
msgid "Healthy"
msgstr "健康"
#: src/Images.jsx:310
msgid "Hide images"
msgstr "隐藏镜像"
#: src/Images.jsx:259
msgid "Hide intermediate images"
msgstr "隐藏中间镜像"
#: src/Images.jsx:169
msgid "History"
msgstr "历史"
#: src/Volume.jsx:38
msgid "Host path"
msgstr "主机路径"
#: src/PublishPort.jsx:77
msgid "Host port"
msgstr "主机端口"
#: src/PublishPort.jsx:80
msgid "Host port help"
msgstr "主机端口帮助"
#: 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 地址"
#: src/PublishPort.jsx:59
msgid "IP address help"
msgstr "IP 地址帮助"
#: src/ImageRunModal.jsx:855
msgid "Ideal for development"
msgstr "非常适合开发"
#: src/ImageRunModal.jsx:838
msgid "Ideal for running services"
msgstr "非常适合运行服务"
#: 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 "如果主机 IP 设置为 0.0.0.0 或没有设置,端口将被绑定到主机上的所有 IP。"
#: 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 "如果主机端口没有设置,容器端口将被随机分配到主机上的一个端口。"
#: src/ContainerRestoreModal.jsx:56
msgid "Ignore IP address if set statically"
msgstr "如果以静态方式设置,则忽略 IP 地址"
#: src/ContainerRestoreModal.jsx:59
msgid "Ignore MAC address if set statically"
msgstr "忽略被静态设定的 MAC 地址"
#: src/Images.jsx:187 src/ImageRunModal.jsx:878 src/ContainerDetails.jsx:38
msgid "Image"
msgstr "镜像"
#: src/ContainerCommitModal.jsx:48
msgid "Image name is not unique"
msgstr "镜像名称不是唯一的"
#: src/ContainerCommitModal.jsx:39
msgid "Image name is required"
msgstr "镜像名称是必需的"
#: src/ImageRunModal.jsx:880
msgid "Image selection help"
msgstr "镜像选择帮助"
#: src/Images.jsx:265 src/Images.jsx:295
msgid "Images"
msgstr "镜像"
#: src/ImageRunModal.jsx:992
msgid "Increase CPU shares"
msgstr "增加 CPU 共享"
#: src/ImageRunModal.jsx:1098
msgid "Increase interval"
msgstr "增加间隔"
#: src/ImageRunModal.jsx:1029
msgid "Increase maximum retries"
msgstr "增加最大重试次数"
#: src/ImageRunModal.jsx:952
msgid "Increase memory"
msgstr "增加内存"
#: src/ImageRunModal.jsx:1166
msgid "Increase retries"
msgstr "增加重试"
#: src/ImageRunModal.jsx:1144
msgid "Increase start period"
msgstr "增加开始周期"
#: src/ImageRunModal.jsx:1121
msgid "Increase timeout"
msgstr "增加超时"
#: src/ImageRunModal.jsx:1039 src/Containers.jsx:448
msgid "Integration"
msgstr "集成"
#: src/ContainerHealthLogs.jsx:67 src/ImageRunModal.jsx:1082
msgid "Interval"
msgstr "间隔"
#: src/ImageRunModal.jsx:1086
msgid "Interval how often health check is run."
msgstr "健康检查运行的频率间隔。"
#: src/ContainerRenameModal.jsx:36 src/PodCreateModal.jsx:121
msgid ""
"Invalid characters. Name can only contain letters, numbers, and certain "
"punctuation (_ . -)."
msgstr "无效的字符。名称只能包含字母、数字和某些标点符号 (_ . -)。"
#: src/ImageRunModal.jsx:960
msgid "KB"
msgstr "KB"
#: src/ContainerRestoreModal.jsx:51 src/ContainerCheckpointModal.jsx:48
msgid "Keep all temporary checkpoint files"
msgstr "保留所有临时检查点文件"
#: src/Env.jsx:63
msgid "Key"
msgstr "密钥"
#: src/Env.jsx:25
msgid "Key contains invalid characters"
msgstr "密钥包含无效的字符"
#: src/Env.jsx:21
msgid "Key must not be empty"
msgstr "密钥不能为空"
#: src/Env.jsx:23
msgid "Key must not begin with a digit"
msgstr "密钥不能以数字开头"
#: src/ContainerHealthLogs.jsx:108
msgid "Last 5 runs"
msgstr "最后 5 个运行"
#: src/ContainerDetails.jsx:87
msgid "Latest checkpoint"
msgstr "最新的检查点"
#: src/ContainerCheckpointModal.jsx:50
msgid "Leave running after writing checkpoint to disk"
msgstr "在将检查点写入磁盘后保持运行"
#: src/ImageHistory.jsx:59 src/ContainerIntegration.jsx:134
msgid "Loading details..."
msgstr "加载详细信息..."
#: src/ContainerLogs.jsx:57
msgid "Loading logs..."
msgstr "正在加载日志..."
#: src/ImageUsedBy.jsx:14 src/Containers.jsx:625
msgid "Loading..."
msgstr "加载中……"
#: src/ImageRunModal.jsx:774
msgid "Local"
msgstr "本地"
#: src/ImageRunModal.jsx:577
msgid "Local images"
msgstr "本地镜像"
#: src/ContainerHealthLogs.jsx:105 src/Containers.jsx:453
msgid "Logs"
msgstr "日志"
#: src/ContainerDetails.jsx:71
msgid "MAC address"
msgstr "MAC 地址"
#: src/ImageRunModal.jsx:961
msgid "MB"
msgstr "MB"
#: src/ImageRunModal.jsx:1021
msgid "Maximum retries"
msgstr "最大重试次数"
#: src/Containers.jsx:543 src/Containers.jsx:546 src/Containers.jsx:614
msgid "Memory"
msgstr "内存"
#: src/ImageRunModal.jsx:938
msgid "Memory limit"
msgstr "内存限制"
#: src/ImageRunModal.jsx:955
msgid "Memory unit"
msgstr "内存单元"
#: src/Volume.jsx:66
msgid "Mode"
msgstr "模式"
#: src/ImageDeleteModal.jsx:102
msgid "Multiple tags exist for this image. Select the tagged images to delete."
msgstr "此镜像存在多个标签。选择标记的镜像以删除。"
#: src/PublishPort.jsx:25
msgid "Must be a valid IP address"
msgstr "必须是有效的 IP 地址"
#: src/PodCreateModal.jsx:152 src/ImageRunModal.jsx:808
#: src/PruneUnusedContainersModal.jsx:67
msgid "Name"
msgstr "名称"
#: src/ImageRunModal.jsx:677
msgid "Name already in use"
msgstr "名称已被使用"
#: src/ContainerRenameModal.jsx:72
msgid "New container name"
msgstr "新容器名称"
#: src/ContainerCommitModal.jsx:94
msgid "New image name"
msgstr "新镜像名称"
#: src/ImageRunModal.jsx:1013
msgid "No"
msgstr "否"
#: src/ContainerHealthLogs.jsx:42 src/ImageRunModal.jsx:61
msgid "No action"
msgstr "无操作"
#: src/Containers.jsx:622
msgid "No containers"
msgstr "没有容器"
#: src/ImageUsedBy.jsx:16
msgid "No containers are using this image"
msgstr "没有使用该镜像的容器"
#: src/Containers.jsx:623
msgid "No containers in this pod"
msgstr "此 pod 中没有容器"
#: src/Containers.jsx:627
msgid "No containers that match the current filter"
msgstr "没有符合当前筛选条件的容器"
#: src/ImageRunModal.jsx:1064
msgid "No environment variables specified"
msgstr "没有指定环境变量"
#: src/Images.jsx:194
msgid "No images"
msgstr "没有镜像"
#: src/ImageRunModal.jsx:896 src/ImageRunModal.jsx:897
#: src/ImageSearchModal.jsx:178
msgid "No images found"
msgstr "没有找到镜像"
#: src/Images.jsx:198
msgid "No images that match the current filter"
msgstr "没有符合当前筛选条件的镜像"
#: src/Volume.jsx:77
msgid "No label"
msgstr "无标签"
#: src/PodCreateModal.jsx:182 src/ImageRunModal.jsx:1042
msgid "No ports exposed"
msgstr "没有公开的端口"
#: src/ImageSearchModal.jsx:182
msgid "No results for $0"
msgstr "没有 $0 的结果"
#: src/Containers.jsx:629
msgid "No running containers"
msgstr "没有正在运行的容器"
#: src/PodCreateModal.jsx:194 src/ImageRunModal.jsx:1052
msgid "No volumes specified"
msgstr "没有指定卷"
#: src/ImageRunModal.jsx:1014
msgid "On failure"
msgstr "失败时"
#: src/Containers.jsx:768
msgid "Only running"
msgstr "仅运行"
#: src/ContainerCommitModal.jsx:122
msgid "Options"
msgstr "选项"
#: 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 "所有者"
#: src/ImageRunModal.jsx:830
msgid "Owner help"
msgstr "所有者帮助"
#: src/ContainerHealthLogs.jsx:118
msgid "Passed health run"
msgstr "通过的健康运行"
#: src/ImageRunModal.jsx:1072
msgid ""
"Paste one or more lines of key=value pairs into any field for bulk import"
msgstr "将一个或多个 key=value 对行粘贴到批量导入的任何字段"
#: src/PodActions.jsx:171 src/Containers.jsx:190
msgid "Pause"
msgstr "暂停"
#: src/ContainerCommitModal.jsx:126
msgid "Pause container when creating image"
msgstr "创建镜像时暂停容器"
#: src/util.js:24 src/util.js:27
msgid "Paused"
msgstr "已暂停"
#: src/PodCreateModal.jsx:96
msgid "Pod failed to be created"
msgstr "创建 Pod 失败"
#: src/PodCreateModal.jsx:155
msgid "Pod name"
msgstr "Pod 名称"
#: org.cockpit_project.podman.metainfo.xml:5
msgid "Podman"
msgstr "Podman"
#: src/manifest.json:0
msgid "Podman containers"
msgstr "Podman 容器"
#: src/app.jsx:675
msgid "Podman service failed"
msgstr "Podman 服务失败"
#: src/PodCreateModal.jsx:184 src/ImageRunModal.jsx:1044
msgid "Port mapping"
msgstr "端口映射"
#: src/ImageDetails.jsx:41 src/ContainerIntegration.jsx:150
msgid "Ports"
msgstr "端口"
#: src/ImageRunModal.jsx:847
msgid "Ports under 1024 can be mapped"
msgstr "1024 以下的端口可以映射"
#: src/Volume.jsx:79
msgid "Private"
msgstr "私有"
#: src/PublishPort.jsx:119
msgid "Protocol"
msgstr "协议"
#: src/PruneUnusedImagesModal.jsx:110 src/PruneUnusedContainersModal.jsx:109
msgid "Prune"
msgstr "删除"
#: src/PruneUnusedContainersModal.jsx:93 src/Containers.jsx:295
msgid "Prune unused containers"
msgstr "删除未使用的容器"
#: src/Images.jsx:365 src/PruneUnusedImagesModal.jsx:90
msgid "Prune unused images"
msgstr "删除未使用的镜像"
#: src/PruneUnusedContainersModal.jsx:105
#: src/PruneUnusedContainersModal.jsx:109
msgid "Pruning containers"
msgstr "正在删除容器"
#: src/PruneUnusedImagesModal.jsx:106 src/PruneUnusedImagesModal.jsx:110
msgid "Pruning images"
msgstr "删除镜像"
#: src/Images.jsx:434
msgid "Pull"
msgstr "拉取"
#: src/Images.jsx:354
msgid "Pull all images"
msgstr "拉取所有镜像"
#: src/ImageRunModal.jsx:914
msgid "Pull latest image"
msgstr "拉取最新的镜像"
#: src/Images.jsx:333
msgid "Pulling"
msgstr "正在拉取"
#: src/ContainerIntegration.jsx:83
msgid "Read-only access"
msgstr "只读访问"
#: src/ContainerIntegration.jsx:82
msgid "Read-write access"
msgstr "读写访问"
#: src/Volume.jsx:86 src/PublishPort.jsx:134 src/Env.jsx:97
msgid "Remove item"
msgstr "删除项目"
#: src/PruneUnusedContainersModal.jsx:95
msgid "Removes selected non-running containers"
msgstr "删除选择的、没有在运行的容器"
#: src/util.js:24
msgid "Removing"
msgstr "删除"
#: src/ContainerRenameModal.jsx:101 src/Containers.jsx:156
msgid "Rename"
msgstr "重命名"
#: src/ContainerRenameModal.jsx:90
msgid "Rename container $0"
msgstr "重命名容器 $0"
#: src/ImageRunModal.jsx:841
msgid "Resource limits can be set"
msgstr "可以设置资源限制"
#: src/ContainerHealthLogs.jsx:43 src/PodActions.jsx:115
#: src/ImageRunModal.jsx:62 src/util.js:24 src/Containers.jsx:178
msgid "Restart"
msgstr "重启"
#: src/ImageRunModal.jsx:1000
msgid "Restart policy"
msgstr "重启策略"
#: src/ImageRunModal.jsx:1002 src/ImageRunModal.jsx:1010
msgid "Restart policy help"
msgstr "重启策略帮助"
#: src/ImageRunModal.jsx:1004
msgid "Restart policy to follow when containers exit."
msgstr "容器退出时遵循重启策略。"
#: 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 ""
"容器退出时重启策略。在某些情况下,使用 linger 进行自动启动容器可能无法正常工"
"作,如在用户账户中使用了 ecryptfs、systemd-homed、NFS 或 2FA。"
#: src/ContainerRestoreModal.jsx:68 src/Containers.jsx:231
msgid "Restore"
msgstr "恢复"
#: src/ContainerRestoreModal.jsx:48
msgid "Restore container $0"
msgstr "恢复容器 $0"
#: src/ContainerRestoreModal.jsx:53
msgid "Restore with established TCP connections"
msgstr "使用已建立的 TCP 连接恢复"
#: src/ImageRunModal.jsx:858
msgid "Restricted by user account permissions"
msgstr "受用户帐户权限限制"
#: src/PodActions.jsx:156 src/Containers.jsx:197
msgid "Resume"
msgstr "继续"
#: src/ContainerHealthLogs.jsx:71 src/ImageRunModal.jsx:1151
msgid "Retries"
msgstr "重试"
#: src/ImageSearchModal.jsx:183
msgid "Retry another term."
msgstr "重试另一个项。"
#: src/ContainerHealthLogs.jsx:101
msgid "Run health check"
msgstr "运行健康检查"
#: src/ImageUsedBy.jsx:37 src/util.js:24 src/util.js:27
msgid "Running"
msgstr "正在运行"
#: src/Volume.jsx:73
msgid "SELinux"
msgstr "SELinux"
#: src/ImageSearchModal.jsx:160
msgid "Search by name or description"
msgstr "按名称或描述搜索"
#: src/ImageRunModal.jsx:766
msgid "Search by registry"
msgstr "按照注册表搜索"
#: src/ImageSearchModal.jsx:157
msgid "Search for"
msgstr "搜索"
#: src/ImageSearchModal.jsx:141
msgid "Search for an image"
msgstr "搜索镜像"
#: src/ImageRunModal.jsx:900
msgid "Search string or container location"
msgstr "搜索字符串或容器位置"
#: src/ImageSearchModal.jsx:176
msgid "Searching..."
msgstr "搜索中..."
#: src/ImageRunModal.jsx:886
msgid "Searching: $0"
msgstr "搜索: $0"
#: src/Volume.jsx:78
msgid "Shared"
msgstr "共享"
#: src/Containers.jsx:763
msgid "Show"
msgstr "显示"
#: src/Images.jsx:310
msgid "Show images"
msgstr "显示镜像"
#: src/Images.jsx:259
msgid "Show intermediate images"
msgstr "显示中间镜像"
#: src/ContainerIntegration.jsx:123
msgid "Show less"
msgstr "显示更少"
#: src/PruneUnusedImagesModal.jsx:54 src/ContainerIntegration.jsx:123
msgid "Show more"
msgstr "显示更多"
#: src/ImageHistory.jsx:33
msgid "Size"
msgstr "大小"
#: src/PodActions.jsx:141 src/Containers.jsx:220
msgid "Start"
msgstr "启动"
#: src/ContainerHealthLogs.jsx:75 src/ImageRunModal.jsx:1128
msgid "Start period"
msgstr "开始期间"
#: src/ImageSearchModal.jsx:178
msgid "Start typing to look for images."
msgstr "开始键入来查找镜像。"
#: src/ContainerHealthLogs.jsx:108
msgid "Started at"
msgstr "开始于"
#: src/ContainerDetails.jsx:83 src/Containers.jsx:615
msgid "State"
msgstr "状态"
#: src/ContainerHealthLogs.jsx:59
msgid "Status"
msgstr "状态"
#: src/ContainerHealthLogs.jsx:44 src/PodActions.jsx:93
#: src/ImageRunModal.jsx:63 src/Containers.jsx:170
msgid "Stop"
msgstr "停止"
#: src/util.js:24 src/util.js:27
msgid "Stopped"
msgstr "已停止"
#: src/ContainerCheckpointModal.jsx:53
msgid "Support preserving established TCP connections"
msgstr "支持保留已建立的 TCP 连接"
#: src/PodCreateModal.jsx:174 src/ImageRunModal.jsx:835
#: src/ImageRunModal.jsx:870
msgid "System"
msgstr "系统"
#: src/PublishPort.jsx:125
msgid "TCP"
msgstr "TCP"
#: src/ImageSearchModal.jsx:212 src/ContainerCommitModal.jsx:102
msgid "Tag"
msgstr "标签"
#: src/ImageDetails.jsx:29
msgid "Tags"
msgstr "标签"
#: 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 ""
"Podman 容器的 Cockpit 用户界面。podman (Pod Manager)是一个用于 OCI 容器、pods"
"(容器组)和容器镜像的功能齐全的无守护进程引擎。它是 CLI、API ,并且在功能上"
"与 Docker 兼容。"
#: src/ImageRunModal.jsx:1132
msgid "The initialization time needed for a container to bootstrap."
msgstr "容器进行 bootstrap 所需的初始化时间。"
#: src/ImageRunModal.jsx:1109
msgid ""
"The maximum time allowed to complete the health check before an interval is "
"considered failed."
msgstr "当间隔被视为失败前,允许完成健康检查的最长时间。"
#: src/ImageRunModal.jsx:1155
msgid ""
"The number of retries allowed before a healthcheck is considered to be "
"unhealthy."
msgstr "在健康检查被视为不健康前,允许的重试次数。"
#: src/ContainerHealthLogs.jsx:79 src/ImageRunModal.jsx:1105
msgid "Timeout"
msgstr "超时"
#: src/app.jsx:679
msgid "Troubleshoot"
msgstr "故障排除"
#: src/ContainerHeader.jsx:31
msgid "Type to filter…"
msgstr "输入筛选条件……"
#: src/PublishPort.jsx:126
msgid "UDP"
msgstr "UDP"
#: src/ImageHistory.jsx:59
msgid "Unable to load image history"
msgstr "无法加载镜像历史记录"
#: src/Containers.jsx:279
msgid "Unhealthy"
msgstr "不健康"
#: src/ContainerDetails.jsx:15
msgid "Up since:"
msgstr "运行时间:"
#: src/ContainerCommitModal.jsx:131
msgid "Use legacy Docker format"
msgstr "使用旧的 Docker 格式"
#: src/Images.jsx:192 src/ImageDetails.jsx:35
msgid "Used by"
msgstr "使用者"
#: src/ImageRunModal.jsx:852 src/app.jsx:528
msgid "User"
msgstr "用户"
#: src/PodCreateModal.jsx:174 src/ImageRunModal.jsx:870
msgid "User:"
msgstr "用户:"
#: src/Env.jsx:79
msgid "Value"
msgstr "值"
#: src/ContainerDetails.jsx:53
msgid "View $0"
msgstr ""
#: src/ContainerLogs.jsx:179
msgid "View $0 logs"
msgstr ""
#: src/PodCreateModal.jsx:196 src/ImageRunModal.jsx:1054
#: src/ContainerIntegration.jsx:154
msgid "Volumes"
msgstr "卷"
#: src/ContainerHealthLogs.jsx:83 src/ImageRunModal.jsx:1172
msgid "When unhealthy"
msgstr "当不健康时"
#: src/ImageRunModal.jsx:934
msgid "With terminal"
msgstr "使用终端"
#: src/Volume.jsx:68
msgid "Writable"
msgstr "可写入"
#: src/manifest.json:0
msgid "container"
msgstr "容器"
#: src/ImageRunModal.jsx:304
msgid "downloading"
msgstr "下载"
#: src/ImageRunModal.jsx:884
msgid "host[:port]/[user]/container[:tag]"
msgstr "host[:port]/[user]/container[:tag]"
#: src/manifest.json:0
msgid "image"
msgstr "镜像"
#: src/ImageSearchModal.jsx:165
msgid "in"
msgstr "于"
#: src/ImageDeleteModal.jsx:84
msgid "intermediate"
msgstr "中间体"
#: src/ImageDeleteModal.jsx:64
msgid "intermediate image"
msgstr "中间镜像"
#: src/Containers.jsx:353 src/Containers.jsx:354
msgid "n/a"
msgstr "不适用"
#: src/Containers.jsx:353 src/Containers.jsx:354
msgid "not available"
msgstr "不可用"
#: src/Containers.jsx:893
#, fuzzy
#| msgid "podman"
msgid "pod"
msgstr "podman"
#: src/manifest.json:0
msgid "podman"
msgstr "podman"
#: src/Containers.jsx:563
msgid "ports"
msgstr "端口"
#: src/ImageRunModal.jsx:1102 src/ImageRunModal.jsx:1125
#: src/ImageRunModal.jsx:1148
msgid "seconds"
msgstr "秒"
#: src/Containers.jsx:390 src/Containers.jsx:894
msgid "service"
msgstr ""
#: src/Images.jsx:144 src/app.jsx:61 src/app.jsx:515
#: src/PruneUnusedContainersModal.jsx:34 src/Containers.jsx:416
msgid "system"
msgstr "系统"
#: src/ContainerDetails.jsx:49
msgid "systemd service"
msgstr ""
#: src/Images.jsx:92 src/Images.jsx:99
msgid "unused"
msgstr "未使用"
#: src/app.jsx:61
#, fuzzy
#| msgid "user:"
msgid "user"
msgstr "用户:"
#: src/Images.jsx:144 src/PruneUnusedContainersModal.jsx:34
#: src/Containers.jsx:416
msgid "user:"
msgstr "用户:"
#: src/Containers.jsx:578
msgid "volumes"
msgstr "卷"
#~ msgid "pod group"
#~ msgstr "pod 组"
#~ msgid "Delete unused user images:"
#~ msgstr "删除未使用的用户镜像:"
#~ msgid "Automatically start podman on boot"
#~ msgstr "开机自动启动 podman"
#~ msgid "Start podman"
#~ msgstr "启动 podman"
#~ msgid "System Podman service is also available"
#~ msgstr "系统 Podman 服务同样可用"
#~ msgid "User Podman service is also available"
#~ msgstr "用户 Podman 服务同样可用"
#~ msgid "The Cockpit user interface for Podman containers."
#~ msgstr "Podman 容器的 Cockpit 用户界面。"
#~ msgid "Delete $0"
#~ msgstr "删除 $0"
#~ msgid "select all"
#~ msgstr "全选"
#~ msgid "Restarting"
#~ msgstr "正在重启"
#~ msgid "Confirm deletion of $0"
#~ msgstr "确认删除 $0"
#~ msgid "Confirm deletion of pod $0"
#~ msgstr "确认删除 pod $0"
#~ msgid "Confirm force deletion of pod $0"
#~ msgstr "确认强制删除 pod $0"
#~ msgid "Confirm forced deletion of $0"
#~ msgstr "确认强制删除 $0"
#~ msgid "Container is currently running."
#~ msgstr "容器正在运行。"
#~ msgid "Do not include root file-system changes when exporting"
#~ msgstr "导出时不包含 root 文件系统更改"
#~ msgid "Default with single selectable"
#~ msgstr "默认使用单选"
#~ msgid "Start after creation"
#~ msgstr "创建后启动"
#~ msgid "created"
#~ msgstr "创建"
#~ msgid "exited"
#~ msgstr "退出"
#~ msgid "paused"
#~ msgstr "已暂停"
#~ msgid "running"
#~ msgstr "正在运行"
#~ msgid "stopped"
#~ msgstr "已停止"
#~ msgid "Add on build variable"
#~ msgstr "添加构建变量"
#~ msgid "Commit image"
#~ msgstr "提交镜像"
#~ msgid "Format"
#~ msgstr "格式"
#~ msgid "Message"
#~ msgstr "消息"
#~ msgid "Pause the container"
#~ msgstr "暂停该容器"
#~ msgid "Remove on build variable"
#~ msgstr "删除构建变量"
#~ msgid "Add item"
#~ msgstr "添加项目"
#~ msgid "Host port (optional)"
#~ msgstr "主机端口(可选)"
#~ msgid "IP (optional)"
#~ msgstr "IP(可选)"
#~ msgid "ReadOnly"
#~ msgstr "只读"
#~ msgid "IP prefix length"
#~ msgstr "IP 前缀长度"
#~ msgid "Get new image"
#~ msgstr "获取新镜像"
#~ msgid "Run"
#~ msgstr "运行"
#~ msgid "On build"
#~ msgstr "构建时"
#~ msgid "Are you sure you want to delete this image?"
#~ msgstr "您确定要删除该镜像吗?"
#~ msgid "Could not attach to this container: $0"
#~ msgstr "无法附加到该容器:$0"
#~ msgid "Could not open channel: $0"
#~ msgstr "无法打开通道:$0"
#~ msgid "Everything"
#~ msgstr "全部"
#~ msgid "Security"
#~ msgstr "安全性"
#~ msgid "The scan from $time ($type) found no vulnerabilities."
#~ msgstr "$time ($type) 发起的扫描未发现漏洞。"
#~ msgid "This version of the Web Console does not support a terminal."
#~ msgstr "该版本的网页控制台不支持终端。"
|