-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpodman.pot
More file actions
1450 lines (1114 loc) · 28.6 KB
/
Copy pathpodman.pot
File metadata and controls
1450 lines (1114 loc) · 28.6 KB
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
# #-#-#-#-# 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.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
# #-#-#-#-# podman.metainfo.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.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"#-#-#-#-# podman.html.pot (PACKAGE_VERSION) #-#-#-#-#\n"
"Project-Id-Version: PACKAGE_VERSION\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Cockpit html2po\n"
"#-#-#-#-# podman.js.pot (PACKAGE VERSION) #-#-#-#-#\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-12 05:44+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
"#-#-#-#-# podman.manifest.pot (PACKAGE_VERSION) #-#-#-#-#\n"
"Project-Id-Version: PACKAGE_VERSION\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Cockpit manifest2po\n"
"#-#-#-#-# podman.metainfo.pot (PACKAGE VERSION) #-#-#-#-#\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-07-12 05:44+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: src/Images.jsx:97
msgid "$0 container"
msgid_plural "$0 containers"
msgstr[0] ""
msgstr[1] ""
#: src/Images.jsx:298
msgid "$0 image total, $1"
msgid_plural "$0 images total, $1"
msgstr[0] ""
msgstr[1] ""
#: src/ContainerHealthLogs.jsx:25
msgid "$0 second"
msgid_plural "$0 seconds"
msgstr[0] ""
msgstr[1] ""
#: src/Images.jsx:302
msgid "$0 unused image, $1"
msgid_plural "$0 unused images, $1"
msgstr[0] ""
msgstr[1] ""
#
#: src/Containers.jsx:434
msgid "$0% of $1 limit"
msgstr ""
#: src/PublishPort.jsx:32 src/PublishPort.jsx:43
msgid "1 to 65535"
msgstr ""
#: src/ImageRunModal.jsx:1181
msgid "Action to take once the container transitions to an unhealthy state."
msgstr ""
#: src/Containers.jsx:734
msgid "Actions"
msgstr ""
#: src/PodCreateModal.jsx:186 src/ImageRunModal.jsx:1049
msgid "Add port mapping"
msgstr ""
#: src/ImageRunModal.jsx:1071
msgid "Add variable"
msgstr ""
#: src/PodCreateModal.jsx:197 src/ImageRunModal.jsx:1059
msgid "Add volume"
msgstr ""
#: src/ContainerHeader.tsx:39 src/Containers.jsx:899 src/ImageRunModal.jsx:769
#: src/ImageDeleteModal.jsx:105
msgid "All"
msgstr ""
#: src/ImageSearchModal.jsx:170
msgid "All registries"
msgstr ""
#: src/ImageRunModal.jsx:1018
msgid "Always"
msgstr ""
#: src/PodActions.jsx:53
msgid "An error occurred"
msgstr ""
#: src/ContainerCommitModal.jsx:110
msgid "Author"
msgstr ""
#: src/Containers.jsx:609 src/Containers.jsx:612 src/Containers.jsx:731
msgid "CPU"
msgstr ""
#: src/ImageRunModal.jsx:975
msgid "CPU Shares help"
msgstr ""
#: src/ImageRunModal.jsx:973
msgid "CPU shares"
msgstr ""
#: src/ImageRunModal.jsx:977
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 ""
#: src/PodCreateModal.jsx:223 src/ContainerCommitModal.jsx:167
#: src/PruneUnusedContainersModal.jsx:112 src/ContainerCheckpointModal.jsx:67
#: src/ContainerRenameModal.jsx:100 src/ForceRemoveModal.jsx:34
#: src/ContainerRestoreModal.jsx:73 src/ContainerDeleteModal.jsx:44
#: src/ImageSearchModal.jsx:226 src/ImageRunModal.jsx:1229
#: src/PodActions.jsx:72 src/PruneUnusedImagesModal.jsx:113
#: src/ImageDeleteModal.jsx:126
msgid "Cancel"
msgstr ""
#: src/Containers.jsx:316
msgid "Checking health"
msgstr ""
#: src/ContainerCheckpointModal.jsx:63 src/Containers.jsx:245
msgid "Checkpoint"
msgstr ""
#: src/ImageRunModal.jsx:847
msgid "Checkpoint and restore support"
msgstr ""
#: src/ContainerCheckpointModal.jsx:46
msgid "Checkpoint container $0"
msgstr ""
#: src/Containers.jsx:627
msgid "Click to see published ports"
msgstr ""
#: src/Containers.jsx:642
msgid "Click to see volumes"
msgstr ""
#: org.cockpit_project.podman.metainfo.xml:22
msgid "Cockpit Project"
msgstr ""
#: org.cockpit_project.podman.metainfo.xml:6
msgid "Cockpit component for Podman containers"
msgstr ""
#: src/ContainerCommitModal.jsx:117 src/ImageDetails.jsx:56
#: src/ContainerHealthLogs.jsx:50 src/ImageRunModal.jsx:928
#: src/ImageRunModal.jsx:1082 src/ContainerDetails.jsx:44
msgid "Command"
msgstr ""
#: src/ImageHistory.jsx:34
msgid "Comments"
msgstr ""
#: src/ContainerCommitModal.jsx:154 src/Containers.jsx:281
msgid "Commit"
msgstr ""
#: src/ContainerCommitModal.jsx:142
msgid "Commit container"
msgstr ""
#: src/util.tsx:41
msgid "Configured"
msgstr ""
#: src/Containers.jsx:527
msgid "Console"
msgstr ""
#: src/Containers.jsx:729
msgid "Container"
msgstr ""
#: src/ImageRunModal.jsx:271
msgid "Container failed to be created"
msgstr ""
#: src/ImageRunModal.jsx:252
msgid "Container failed to be started"
msgstr ""
#: src/ContainerTerminal.jsx:250
msgid "Container is not running"
msgstr ""
#: src/ImageRunModal.jsx:813
msgid "Container name"
msgstr ""
#: src/ContainerRenameModal.jsx:32 src/ContainerRenameModal.jsx:43
msgid "Container name is required."
msgstr ""
#: src/Volume.jsx:53
msgid "Container path"
msgstr ""
#: src/Volume.jsx:26
msgid "Container path must not be empty"
msgstr ""
#: src/PublishPort.jsx:103
msgid "Container port"
msgstr ""
#: src/PublishPort.jsx:39
msgid "Container port must not be empty"
msgstr ""
#: src/Containers.jsx:953 src/Containers.jsx:959 src/Containers.jsx:994
msgid "Containers"
msgstr ""
#: src/PodCreateModal.jsx:220 src/ImageRunModal.jsx:1226
msgid "Create"
msgstr ""
#: src/ContainerCommitModal.jsx:143
msgid "Create a new image based on the current state of the $0 container."
msgstr ""
#: src/ImageRunModal.jsx:1222
msgid "Create and run"
msgstr ""
#: src/Containers.jsx:916 src/Images.jsx:439 src/Images.jsx:448
#: src/ImageRunModal.jsx:1215
msgid "Create container"
msgstr ""
#: src/ImageRunModal.jsx:1215
msgid "Create container in $0"
msgstr ""
#: src/Containers.jsx:1005
msgid "Create container in pod"
msgstr ""
#: src/PodCreateModal.jsx:212 src/Containers.jsx:908
msgid "Create pod"
msgstr ""
#: src/PruneUnusedContainersModal.jsx:69 src/util.tsx:41 src/util.tsx:44
#: src/ImageHistory.jsx:34 src/Images.jsx:191 src/ContainerDetails.jsx:81
msgid "Created"
msgstr ""
#: src/ImageHistory.jsx:34
msgid "Created by"
msgstr ""
#: src/ImageRunModal.jsx:994
msgid "Decrease CPU shares"
msgstr ""
#: src/ImageRunModal.jsx:1103
msgid "Decrease interval"
msgstr ""
#: src/ImageRunModal.jsx:1031
msgid "Decrease maximum retries"
msgstr ""
#: src/ImageRunModal.jsx:954
msgid "Decrease memory"
msgstr ""
#: src/ImageRunModal.jsx:1171
msgid "Decrease retries"
msgstr ""
#: src/ImageRunModal.jsx:1149
msgid "Decrease start period"
msgstr ""
#: src/ImageRunModal.jsx:1126
msgid "Decrease timeout"
msgstr ""
#: src/Containers.jsx:290 src/ContainerDeleteModal.jsx:43 src/Images.jsx:459
#: src/PodActions.jsx:68 src/PodActions.jsx:215
msgid "Delete"
msgstr ""
#: src/ImageDeleteModal.jsx:98
msgid "Delete $0 image?"
msgstr ""
#: src/ForceRemoveModal.jsx:22 src/ContainerDeleteModal.jsx:36
msgid "Delete $0?"
msgstr ""
#: src/ImageDeleteModal.jsx:124
msgid "Delete image"
msgstr ""
#: src/PodActions.jsx:49
msgid "Delete pod $0?"
msgstr ""
#: src/ImageDeleteModal.jsx:124
msgid "Delete tagged images"
msgstr ""
#: src/PruneUnusedImagesModal.jsx:39
msgid "Delete unused images of user $0:"
msgstr ""
#: src/PruneUnusedImagesModal.jsx:38
msgid "Delete unused system images:"
msgstr ""
#: src/ContainerDeleteModal.jsx:40
msgid "Deleting a container will erase all data in it."
msgstr ""
#: src/Containers.jsx:72
msgid "Deleting a running container will erase all data in it."
msgstr ""
#: src/PodActions.jsx:59
msgid "Deleting this pod will remove the following containers:"
msgstr ""
#: src/ImageDetails.jsx:34
msgid "Description"
msgstr ""
#: src/Containers.jsx:501 src/Images.jsx:161 src/ImageRunModal.jsx:828
msgid "Details"
msgstr ""
#: src/Images.jsx:193
msgid "Disk space"
msgstr ""
#: src/ContainerCommitModal.jsx:131
msgid ""
"Docker format is useful when sharing the image with Docker or Moby Engine"
msgstr ""
#: src/ImageDetails.jsx:49
msgid "Documentation"
msgstr ""
#: src/ImageSearchModal.jsx:223
msgid "Download"
msgstr ""
#: src/Images.jsx:367
msgid "Download new image"
msgstr ""
#: src/PodActions.jsx:55
msgid "Empty pod $0 will be permanently removed."
msgstr ""
#: src/ImageDetails.jsx:62 src/ImageRunModal.jsx:923
msgid "Entrypoint"
msgstr ""
#: src/ContainerIntegration.jsx:159 src/ImageRunModal.jsx:1070
msgid "Environment variables"
msgstr ""
#: src/util.tsx:44
msgid "Error"
msgstr ""
#: src/Notification.tsx:38 src/Images.jsx:62
msgid "Error message"
msgstr ""
#: src/ContainerTerminal.jsx:254
msgid "Error occurred while connecting console"
msgstr ""
#: src/ContainerCommitModal.jsx:112
msgid "Example, Your Name <yourname@example.com>"
msgstr ""
#: src/ImageRunModal.jsx:888
msgid "Example: $0"
msgstr ""
#: src/util.tsx:41 src/util.tsx:44 src/ContainerDetails.jsx:18
msgid "Exited"
msgstr ""
#: src/ContainerHealthLogs.jsx:105
msgid "Failed health run"
msgstr ""
#: src/ContainerCheckpointModal.jsx:33
msgid "Failed to checkpoint container $0"
msgstr ""
#: src/ImageRunModal.jsx:259
msgid "Failed to clean up container"
msgstr ""
#: src/ContainerCommitModal.jsx:86
msgid "Failed to commit container $0"
msgstr ""
#: src/ImageRunModal.jsx:328
msgid "Failed to create container $0"
msgstr ""
#: src/Images.jsx:60
msgid "Failed to download image $0:$1"
msgstr ""
#: src/Containers.jsx:62
msgid "Failed to force remove container $0"
msgstr ""
#: src/ImageDeleteModal.jsx:53
msgid "Failed to force remove image $0"
msgstr ""
#: src/Containers.jsx:128
msgid "Failed to pause container $0"
msgstr ""
#: src/PodActions.jsx:195
msgid "Failed to pause pod $0"
msgstr ""
#: src/PruneUnusedContainersModal.jsx:61
msgid "Failed to prune unused containers"
msgstr ""
#: src/PruneUnusedImagesModal.jsx:74
msgid "Failed to prune unused images"
msgstr ""
#: src/ImageRunModal.jsx:334
msgid "Failed to pull image $0"
msgstr ""
#: src/ContainerDeleteModal.jsx:26
msgid "Failed to remove container $0"
msgstr ""
#: src/ImageDeleteModal.jsx:79
msgid "Failed to remove image $0"
msgstr ""
#: src/ContainerRenameModal.jsx:52
msgid "Failed to rename container $0"
msgstr ""
#: src/Containers.jsx:146
msgid "Failed to restart container $0"
msgstr ""
#: src/PodActions.jsx:117 src/PodActions.jsx:124
msgid "Failed to restart pod $0"
msgstr ""
#: src/Containers.jsx:154
msgid "Failed to restart quadlet $0"
msgstr ""
#: src/ContainerRestoreModal.jsx:36
msgid "Failed to restore container $0"
msgstr ""
#: src/Containers.jsx:120
msgid "Failed to resume container $0"
msgstr ""
#: src/PodActions.jsx:180
msgid "Failed to resume pod $0"
msgstr ""
#: src/ImageRunModal.jsx:321
msgid "Failed to run container $0"
msgstr ""
#: src/ContainerHealthLogs.jsx:84
msgid "Failed to run health check on container $0"
msgstr ""
#: src/ImageSearchModal.jsx:98 src/ImageRunModal.jsx:391
msgid "Failed to search for images."
msgstr ""
#: src/ImageSearchModal.jsx:98 src/ImageRunModal.jsx:391
msgid "Failed to search for images: $0"
msgstr ""
#: src/ImageSearchModal.jsx:97 src/ImageRunModal.jsx:389
msgid "Failed to search for new images"
msgstr ""
#: src/Containers.jsx:111
msgid "Failed to start container $0"
msgstr ""
#: src/PodActions.jsx:85 src/PodActions.jsx:91
msgid "Failed to start pod $0"
msgstr ""
#: src/Containers.jsx:105
msgid "Failed to start quadlet $0"
msgstr ""
#: src/Containers.jsx:87
msgid "Failed to stop container $0"
msgstr ""
#: src/PodActions.jsx:100 src/PodActions.jsx:107
msgid "Failed to stop pod $0"
msgstr ""
#: src/Containers.jsx:96
msgid "Failed to stop quadlet $0"
msgstr ""
#: src/ContainerHealthLogs.jsx:74
msgid "Failing streak"
msgstr ""
#: src/ContainerCommitModal.jsx:161
msgid "Force commit"
msgstr ""
#: src/ForceRemoveModal.jsx:32 src/PodActions.jsx:68
msgid "Force delete"
msgstr ""
#: src/PodActions.jsx:48
msgid "Force delete pod $0?"
msgstr ""
#: src/Containers.jsx:217 src/PodActions.jsx:160
msgid "Force restart"
msgstr ""
#: src/ContainerHealthLogs.jsx:32 src/Containers.jsx:209
#: src/ImageRunModal.jsx:65 src/PodActions.jsx:145
msgid "Force stop"
msgstr ""
#: src/ImageRunModal.jsx:965
msgid "GB"
msgstr ""
#: src/ContainerDetails.jsx:68
msgid "Gateway"
msgstr ""
#: src/Containers.jsx:545 src/ImageRunModal.jsx:1080
msgid "Health check"
msgstr ""
#: src/ImageRunModal.jsx:1090
msgid "Health check interval help"
msgstr ""
#: src/ImageRunModal.jsx:1159
msgid "Health check retries help"
msgstr ""
#: src/ImageRunModal.jsx:1136
msgid "Health check start period help"
msgstr ""
#: src/ImageRunModal.jsx:1113
msgid "Health check timeout help"
msgstr ""
#: src/ImageRunModal.jsx:1179
msgid "Health failure check action help"
msgstr ""
#: src/Containers.jsx:312
msgid "Healthy"
msgstr ""
#: src/Images.jsx:330
msgid "Hide images"
msgstr ""
#: src/Images.jsx:277
msgid "Hide intermediate images"
msgstr ""
#: src/Images.jsx:170
msgid "History"
msgstr ""
#: src/Volume.jsx:39
msgid "Host path"
msgstr ""
#: src/PublishPort.jsx:78
msgid "Host port"
msgstr ""
#: src/PublishPort.jsx:81
msgid "Host port help"
msgstr ""
#: src/Images.jsx:192 src/ContainerDetails.jsx:35
msgid "ID"
msgstr ""
#: src/PublishPort.jsx:57 src/ContainerDetails.jsx:64
msgid "IP address"
msgstr ""
#: src/PublishPort.jsx:60
msgid "IP address help"
msgstr ""
#: src/ImageRunModal.jsx:858
msgid "Ideal for development"
msgstr ""
#: src/ImageRunModal.jsx:841
msgid "Ideal for running services"
msgstr ""
#: src/PublishPort.jsx:62
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 ""
#: src/PublishPort.jsx:83
msgid ""
"If the host port is not set the container port will be randomly assigned a "
"port on the host."
msgstr ""
#: src/ContainerRestoreModal.jsx:57
msgid "Ignore IP address if set statically"
msgstr ""
#: src/ContainerRestoreModal.jsx:60
msgid "Ignore MAC address if set statically"
msgstr ""
#: src/Images.jsx:189 src/ImageRunModal.jsx:881 src/ContainerDetails.jsx:39
msgid "Image"
msgstr ""
#: src/ContainerCommitModal.jsx:49
msgid "Image name is not unique"
msgstr ""
#: src/ContainerCommitModal.jsx:40
msgid "Image name is required"
msgstr ""
#: src/ImageRunModal.jsx:883
msgid "Image selection help"
msgstr ""
#: src/Images.jsx:283 src/Images.jsx:315
msgid "Images"
msgstr ""
#: src/ImageRunModal.jsx:995
msgid "Increase CPU shares"
msgstr ""
#: src/ImageRunModal.jsx:1104
msgid "Increase interval"
msgstr ""
#: src/ImageRunModal.jsx:1032
msgid "Increase maximum retries"
msgstr ""
#: src/ImageRunModal.jsx:955
msgid "Increase memory"
msgstr ""
#: src/ImageRunModal.jsx:1172
msgid "Increase retries"
msgstr ""
#: src/ImageRunModal.jsx:1150
msgid "Increase start period"
msgstr ""
#: src/ImageRunModal.jsx:1127
msgid "Increase timeout"
msgstr ""
#: src/Containers.jsx:508 src/ImageRunModal.jsx:1043
msgid "Integration"
msgstr ""
#: src/ContainerHealthLogs.jsx:54 src/ImageRunModal.jsx:1088
msgid "Interval"
msgstr ""
#: src/ImageRunModal.jsx:1092
msgid "Interval how often health check is run."
msgstr ""
#: src/PodCreateModal.jsx:122 src/ContainerRenameModal.jsx:36
msgid ""
"Invalid characters. Name can only contain letters, numbers, and certain "
"punctuation (_ . -)."
msgstr ""
#: src/ImageRunModal.jsx:963
msgid "KB"
msgstr ""
#: src/ContainerCheckpointModal.jsx:49 src/ContainerRestoreModal.jsx:52
msgid "Keep all temporary checkpoint files"
msgstr ""
#: src/Env.jsx:64
msgid "Key"
msgstr ""
#: src/Env.jsx:26
msgid "Key contains invalid characters"
msgstr ""
#: src/Env.jsx:22
msgid "Key must not be empty"
msgstr ""
#: src/Env.jsx:24
msgid "Key must not begin with a digit"
msgstr ""
#: src/ContainerHealthLogs.jsx:95
msgid "Last 5 runs"
msgstr ""
#: src/ContainerDetails.jsx:90
msgid "Latest checkpoint"
msgstr ""
#: src/ContainerCheckpointModal.jsx:51
msgid "Leave running after writing checkpoint to disk"
msgstr ""
#: src/ImageDetails.jsx:46
msgid "Links"
msgstr ""
#: src/ContainerIntegration.jsx:135 src/ImageHistory.jsx:60
msgid "Loading details..."
msgstr ""
#: src/ContainerLogs.jsx:46
msgid "Loading logs..."
msgstr ""
#: src/Containers.jsx:745 src/ImageUsedBy.jsx:15 src/Images.jsx:198
msgid "Loading..."
msgstr ""
#: src/ImageRunModal.jsx:776
msgid "Local"
msgstr ""
#: src/ImageRunModal.jsx:579
msgid "Local images"
msgstr ""
#: src/ContainerHealthLogs.jsx:92 src/Containers.jsx:513
msgid "Logs"
msgstr ""
#: src/ContainerDetails.jsx:72
msgid "MAC address"
msgstr ""
#: src/ImageRunModal.jsx:964
msgid "MB"
msgstr ""
#: src/ImageRunModal.jsx:1024
msgid "Maximum retries"
msgstr ""
#: src/Containers.jsx:616 src/Containers.jsx:619 src/Containers.jsx:732
msgid "Memory"
msgstr ""
#: src/ImageRunModal.jsx:941
msgid "Memory limit"
msgstr ""
#: src/ImageRunModal.jsx:958
msgid "Memory unit"
msgstr ""
#: src/Volume.jsx:67
msgid "Mode"
msgstr ""
#: src/ImageDeleteModal.jsx:103
msgid "Multiple tags exist for this image. Select the tagged images to delete."
msgstr ""
#: src/PublishPort.jsx:26
msgid "Must be a valid IP address"
msgstr ""
#: src/PodCreateModal.jsx:153 src/PruneUnusedContainersModal.jsx:68
#: src/ImageRunModal.jsx:810
msgid "Name"
msgstr ""
#: src/ImageRunModal.jsx:679
msgid "Name already in use"
msgstr ""
#: src/ContainerRenameModal.jsx:66
msgid "New container name"
msgstr ""
#: src/ContainerCommitModal.jsx:95
msgid "New image name"
msgstr ""
#: src/ImageRunModal.jsx:1016
msgid "No"
msgstr ""
#: src/ContainerHealthLogs.jsx:29 src/ImageRunModal.jsx:62
msgid "No action"
msgstr ""
#: src/Containers.jsx:742
msgid "No containers"
msgstr ""
#: src/ImageUsedBy.jsx:17
msgid "No containers are using this image"
msgstr ""
#: src/Containers.jsx:743
msgid "No containers in this pod"
msgstr ""
#: src/Containers.jsx:747
msgid "No containers that match the current filter"
msgstr ""
#: src/ImageRunModal.jsx:1068
msgid "No environment variables specified"
msgstr ""
#: src/Images.jsx:196
msgid "No images"
msgstr ""
#: src/ImageSearchModal.jsx:179 src/ImageRunModal.jsx:899
#: src/ImageRunModal.jsx:900
msgid "No images found"
msgstr ""
#: src/Images.jsx:200
msgid "No images that match the current filter"
msgstr ""
#: src/Volume.jsx:78
msgid "No label"
msgstr ""
#: src/PodCreateModal.jsx:183 src/ImageRunModal.jsx:1046
msgid "No ports exposed"
msgstr ""
#: src/ImageSearchModal.jsx:183
msgid "No results for $0"
msgstr ""
#: src/Containers.jsx:749
msgid "No running containers"
msgstr ""
#: src/PodCreateModal.jsx:194 src/ImageRunModal.jsx:1056
msgid "No volumes specified"
msgstr ""
#: src/ImageRunModal.jsx:1017
msgid "On failure"
msgstr ""
#: src/Containers.jsx:900
msgid "Only running"
msgstr ""
#: src/ContainerCommitModal.jsx:123
msgid "Options"
msgstr ""
#: src/PodCreateModal.jsx:171 src/PruneUnusedContainersModal.jsx:75
#: src/ContainerHeader.tsx:32 src/Containers.jsx:730
#: src/ImageSearchModal.jsx:147 src/Images.jsx:190 src/ImageRunModal.jsx:831
msgid "Owner"
msgstr ""
#: src/ImageRunModal.jsx:833
msgid "Owner help"
msgstr ""
#: src/ContainerHealthLogs.jsx:105
msgid "Passed health run"
msgstr ""
#: src/ImageRunModal.jsx:1076
msgid ""
"Paste one or more lines of key=value pairs into any field for bulk import"
msgstr ""
#: src/Containers.jsx:225 src/PodActions.jsx:199
msgid "Pause"
msgstr ""
#: src/ContainerCommitModal.jsx:127
msgid "Pause container when creating image"
msgstr ""
#: src/util.tsx:41 src/util.tsx:44
msgid "Paused"
msgstr ""
#: src/PodCreateModal.jsx:97
msgid "Pod failed to be created"
msgstr ""
#: src/PodCreateModal.jsx:156
msgid "Pod name"
msgstr ""
#: org.cockpit_project.podman.metainfo.xml:5
msgid "Podman"
msgstr ""
#: src/manifest.json:0
msgid "Podman containers"
msgstr ""
#: src/app.jsx:842
msgid "Podman service failed"
msgstr ""
#: src/PodCreateModal.jsx:185 src/ImageRunModal.jsx:1048
msgid "Port mapping"
msgstr ""