forked from kubernetes/kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bindata.go
3094 lines (2594 loc) · 192 KB
/
bindata.go
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
// Code generated by go-bindata.
// sources:
// translations/extract.py
// translations/kubectl/OWNERS
// translations/kubectl/default/LC_MESSAGES/k8s.mo
// translations/kubectl/default/LC_MESSAGES/k8s.po
// translations/kubectl/en_US/LC_MESSAGES/k8s.mo
// translations/kubectl/en_US/LC_MESSAGES/k8s.po
// translations/kubectl/fr_FR/LC_MESSAGES/k8s.mo
// translations/kubectl/fr_FR/LC_MESSAGES/k8s.po
// translations/kubectl/template.pot
// translations/test/default/LC_MESSAGES/k8s.mo
// translations/test/default/LC_MESSAGES/k8s.po
// translations/test/en_US/LC_MESSAGES/k8s.mo
// translations/test/en_US/LC_MESSAGES/k8s.po
// DO NOT EDIT!
package generated
import (
"fmt"
"io/ioutil"
"os"
"path/filepath"
"strings"
"time"
)
type asset struct {
bytes []byte
info os.FileInfo
}
type bindataFileInfo struct {
name string
size int64
mode os.FileMode
modTime time.Time
}
func (fi bindataFileInfo) Name() string {
return fi.name
}
func (fi bindataFileInfo) Size() int64 {
return fi.size
}
func (fi bindataFileInfo) Mode() os.FileMode {
return fi.mode
}
func (fi bindataFileInfo) ModTime() time.Time {
return fi.modTime
}
func (fi bindataFileInfo) IsDir() bool {
return false
}
func (fi bindataFileInfo) Sys() interface{} {
return nil
}
var _translationsExtractPy = []byte(`#!/usr/bin/env python
# Copyright 2017 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Extract strings from command files and externalize into translation files.
Expects to be run from the root directory of the repository.
Usage:
extract.py pkg/kubectl/cmd/apply.go
"""
import fileinput
import sys
import re
class MatchHandler(object):
""" Simple holder for a regular expression and a function
to run if that regular expression matches a line.
The function should expect (re.match, file, linenumber) as parameters
"""
def __init__(self, regex, replace_fn):
self.regex = re.compile(regex)
self.replace_fn = replace_fn
def short_replace(match, file, line_number):
"""Replace a Short: ... cobra command description with an internationalization
"""
sys.stdout.write('{}i18n.T({}),\n'.format(match.group(1), match.group(2)))
SHORT_MATCH = MatchHandler(r'(\s+Short:\s+)("[^"]+"),', short_replace)
def import_replace(match, file, line_number):
"""Add an extra import for the i18n library.
Doesn't try to be smart and detect if it's already present, assumes a
gofmt round wil fix things.
"""
sys.stdout.write('{}\n"k8s.io/kubernetes/pkg/util/i18n"\n'.format(match.group(1)))
IMPORT_MATCH = MatchHandler('(.*"k8s.io/kubernetes/pkg/kubectl/cmd/util")', import_replace)
def string_flag_replace(match, file, line_number):
"""Replace a cmd.Flags().String("...", "", "...") with an internationalization
"""
sys.stdout.write('{}i18n.T("{})"))\n'.format(match.group(1), match.group(2)))
STRING_FLAG_MATCH = MatchHandler('(\s+cmd\.Flags\(\).String\("[^"]*", "[^"]*", )"([^"]*)"\)', string_flag_replace)
def replace(filename, matchers):
"""Given a file and a set of matchers, run those matchers
across the file and replace it with the results.
"""
# Run all the matchers
line_number = 0
for line in fileinput.input(filename, inplace=True):
line_number += 1
matched = False
for matcher in matchers:
match = matcher.regex.match(line)
if match:
matcher.replace_fn(match, filename, line_number)
matched = True
break
if not matched:
sys.stdout.write(line)
sys.stdout.flush()
# gofmt the file again
from subprocess import call
call(["goimports", "-w", filename])
replace(sys.argv[1], [SHORT_MATCH, IMPORT_MATCH, STRING_FLAG_MATCH])
`)
func translationsExtractPyBytes() ([]byte, error) {
return _translationsExtractPy, nil
}
func translationsExtractPy() (*asset, error) {
bytes, err := translationsExtractPyBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "translations/extract.py", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _translationsKubectlOwners = []byte(`approvers:
- sig-cli-maintainers
reviewers:
- sig-cli
`)
func translationsKubectlOwnersBytes() ([]byte, error) {
return _translationsKubectlOwners, nil
}
func translationsKubectlOwners() (*asset, error) {
bytes, err := translationsKubectlOwnersBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "translations/kubectl/OWNERS", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _translationsKubectlDefaultLc_messagesK8sMo = []byte("\xde\x12\x04\x95\x00\x00\x00\x00\x86\x00\x00\x00\x1c\x00\x00\x00L\x04\x00\x00\xb3\x00\x00\x00|\b\x00\x00\x00\x00\x00\x00H\v\x00\x00\xb7\x00\x00\x00I\v\x00\x00\x95\x00\x00\x00\x01\f\x00\x00\xc3\x00\x00\x00\x97\f\x00\x00y\x01\x00\x00[\r\x00\x00s\x00\x00\x00\xd5\x0e\x00\x00\x8b\x01\x00\x00I\x0f\x00\x00]\x01\x00\x00\xd5\x10\x00\x00\xad\x01\x00\x003\x12\x00\x008\x00\x00\x00\xe1\x13\x00\x00%\x00\x00\x00\x1a\x14\x00\x00\xaf\x00\x00\x00@\x14\x00\x00\x1d\x00\x00\x00\xf0\x14\x00\x00=\x00\x00\x00\x0e\x15\x00\x00\xeb\x00\x00\x00L\x15\x00\x00i\x00\x00\x008\x16\x00\x00[\x00\x00\x00\xa2\x16\x00\x00G\x01\x00\x00\xfe\x16\x00\x003\x00\x00\x00F\x18\x00\x002\x00\x00\x00z\x18\x00\x008\x00\x00\x00\xad\x18\x00\x00\x1e\x00\x00\x00\xe6\x18\x00\x00\x1a\x00\x00\x00\x05\x19\x00\x009\x00\x00\x00 \x19\x00\x00\x13\x00\x00\x00Z\x19\x00\x00\x1b\x00\x00\x00n\x19\x00\x00@\x00\x00\x00\x8a\x19\x00\x00,\x00\x00\x00\xcb\x19\x00\x00*\x00\x00\x00\xf8\x19\x00\x007\x00\x00\x00#\x1a\x00\x00'\x00\x00\x00[\x1a\x00\x00&\x00\x00\x00\x83\x1a\x00\x00.\x00\x00\x00\xaa\x1a\x00\x00=\x00\x00\x00\xd9\x1a\x00\x00*\x00\x00\x00\x17\x1b\x00\x000\x00\x00\x00B\x1b\x00\x00,\x00\x00\x00s\x1b\x00\x00\x1f\x00\x00\x00\xa0\x1b\x00\x00]\x00\x00\x00\xc0\x1b\x00\x000\x00\x00\x00\x1e\x1c\x00\x000\x00\x00\x00O\x1c\x00\x00\"\x00\x00\x00\x80\x1c\x00\x00?\x00\x00\x00\xa3\x1c\x00\x00\x1d\x00\x00\x00\xe3\x1c\x00\x004\x00\x00\x00\x01\x1d\x00\x003\x00\x00\x006\x1d\x00\x00,\x00\x00\x00j\x1d\x00\x00\x14\x00\x00\x00\x97\x1d\x00\x00*\x00\x00\x00\xac\x1d\x00\x00A\x00\x00\x00\xd7\x1d\x00\x00\x1d\x00\x00\x00\x19\x1e\x00\x00\x1c\x00\x00\x007\x1e\x00\x00\x1a\x00\x00\x00T\x1e\x00\x00)\x00\x00\x00o\x1e\x00\x006\x00\x00\x00\x99\x1e\x00\x00\x1d\x00\x00\x00\xd0\x1e\x00\x003\x00\x00\x00\xee\x1e\x00\x00 \x00\x00\x00\"\x1f\x00\x00\xed\x00\x00\x00C\x1f\x00\x00(\x00\x00\x001 \x00\x00\x16\x00\x00\x00Z \x00\x00\xe1\x00\x00\x00q \x00\x00\xc1\x00\x00\x00S!\x00\x007\x01\x00\x00\x15\"\x00\x00/\x01\x00\x00M#\x00\x00Q\x01\x00\x00}$\x00\x007\x00\x00\x00\xcf%\x00\x00\x18\x00\x00\x00\a&\x00\x00\x1a\x00\x00\x00 &\x00\x00I\x00\x00\x00;&\x00\x00\x1d\x00\x00\x00\x85&\x00\x00\x17\x00\x00\x00\xa3&\x00\x00\xc3\x00\x00\x00\xbb&\x00\x00\xe7\x00\x00\x00\u007f'\x00\x00B\x00\x00\x00g(\x00\x00\xb1\x00\x00\x00\xaa(\x00\x00W\x00\x00\x00\\)\x00\x00W\x00\x00\x00\xb4)\x00\x00m\x00\x00\x00\f*\x00\x00;\x00\x00\x00z*\x00\x00\xe3\x00\x00\x00\xb6*\x00\x00/\x00\x00\x00\x9a+\x00\x001\x00\x00\x00\xca+\x00\x00'\x00\x00\x00\xfc+\x00\x00'\x00\x00\x00$,\x00\x001\x00\x00\x00L,\x00\x00M\x00\x00\x00~,\x00\x00%\x00\x00\x00\xcc,\x00\x00(\x00\x00\x00\xf2,\x00\x00G\x00\x00\x00\x1b-\x00\x00K\x00\x00\x00c-\x00\x00 \x00\x00\x00\xaf-\x00\x00\x1e\x00\x00\x00\xd0-\x00\x00\"\x00\x00\x00\xef-\x00\x00\"\x00\x00\x00\x12.\x00\x00\x1f\x00\x00\x005.\x00\x00-\x00\x00\x00U.\x00\x00-\x00\x00\x00\x83.\x00\x009\x00\x00\x00\xb1.\x00\x00=\x00\x00\x00\xeb.\x00\x003\x00\x00\x00)/\x00\x00c\x00\x00\x00]/\x00\x00G\x00\x00\x00\xc1/\x00\x00\x05\x01\x00\x00\t0\x00\x00)\x01\x00\x00\x0f1\x00\x00\x91\x00\x00\x0092\x00\x00M\x00\x00\x00\xcb2\x00\x00\xcb\x00\x00\x00\x193\x00\x00\xf5\x00\x00\x00\xe53\x00\x00\x95\x00\x00\x00\xdb4\x00\x00\xcb\x01\x00\x00q5\x00\x00\xaf\x00\x00\x00=7\x00\x00\x8b\x00\x00\x00\xed7\x00\x00\xc3\x00\x00\x00y8\x00\x00\xed\x00\x00\x00=9\x00\x00\x97\x01\x00\x00+:\x00\x00\x9f\x01\x00\x00\xc3;\x00\x00=\x02\x00\x00c=\x00\x009\x00\x00\x00\xa1?\x00\x00\xa9\x00\x00\x00\xdb?\x00\x00/\x00\x00\x00\x85@\x00\x00/\x00\x00\x00\xb5@\x00\x009\x00\x00\x00\xe5@\x00\x00\x1e\x00\x00\x00\x1fA\x00\x00=\x00\x00\x00>A\x00\x00$\x00\x00\x00|A\x00\x00\x1f\x00\x00\x00\xa1A\x00\x00&\x00\x00\x00\xc1A\x00\x00W\x00\x00\x00\xe8A\x00\x00)\x00\x00\x00@B\x00\x00\xe5\x00\x00\x00jB\x00\x001\x00\x00\x00PC\x00\x00/\x00\x00\x00\x82C\x00\x00\xc5\x00\x00\x00\xb2C\x00\x00\xac\x01\x00\x00xD\x00\x00[\x00\x00\x00%F\x00\x00J\x00\x00\x00\x81F\x00\x00a\x00\x00\x00\xccF\x00\x00\xbc\x00\x00\x00.G\x00\x009\x00\x00\x00\xebG\x00\x00\xc5\x00\x00\x00%H\x00\x00\xae\x00\x00\x00\xebH\x00\x00\xd6\x00\x00\x00\x9aI\x00\x008\x00\x00\x00qJ\x00\x00%\x00\x00\x00\xaaJ\x00\x00W\x00\x00\x00\xd0J\x00\x00\x1d\x00\x00\x00(K\x00\x00=\x00\x00\x00FK\x00\x00u\x00\x00\x00\x84K\x00\x004\x00\x00\x00\xfaK\x00\x00-\x00\x00\x00/L\x00\x00\xa3\x00\x00\x00]L\x00\x003\x00\x00\x00\x01M\x00\x002\x00\x00\x005M\x00\x008\x00\x00\x00hM\x00\x00\x1e\x00\x00\x00\xa1M\x00\x00\x1a\x00\x00\x00\xc0M\x00\x009\x00\x00\x00\xdbM\x00\x00\x13\x00\x00\x00\x15N\x00\x00\x1b\x00\x00\x00)N\x00\x00@\x00\x00\x00EN\x00\x00,\x00\x00\x00\x86N\x00\x00*\x00\x00\x00\xb3N\x00\x007\x00\x00\x00\xdeN\x00\x00'\x00\x00\x00\x16O\x00\x00&\x00\x00\x00>O\x00\x00.\x00\x00\x00eO\x00\x00=\x00\x00\x00\x94O\x00\x00*\x00\x00\x00\xd2O\x00\x000\x00\x00\x00\xfdO\x00\x00,\x00\x00\x00.P\x00\x00\x1f\x00\x00\x00[P\x00\x00]\x00\x00\x00{P\x00\x000\x00\x00\x00\xd9P\x00\x000\x00\x00\x00\nQ\x00\x00\"\x00\x00\x00;Q\x00\x00?\x00\x00\x00^Q\x00\x00\x1d\x00\x00\x00\x9eQ\x00\x004\x00\x00\x00\xbcQ\x00\x003\x00\x00\x00\xf1Q\x00\x00,\x00\x00\x00%R\x00\x00\x14\x00\x00\x00RR\x00\x00*\x00\x00\x00gR\x00\x00A\x00\x00\x00\x92R\x00\x00\x1d\x00\x00\x00\xd4R\x00\x00\x1c\x00\x00\x00\xf2R\x00\x00\x1a\x00\x00\x00\x0fS\x00\x00)\x00\x00\x00*S\x00\x006\x00\x00\x00TS\x00\x00\x1d\x00\x00\x00\x8bS\x00\x00\x19\x00\x00\x00\xa9S\x00\x00 \x00\x00\x00\xc3S\x00\x00v\x00\x00\x00\xe4S\x00\x00(\x00\x00\x00[T\x00\x00\x16\x00\x00\x00\x84T\x00\x00p\x00\x00\x00\x9bT\x00\x00`\x00\x00\x00\fU\x00\x00\x9b\x00\x00\x00mU\x00\x00\x97\x00\x00\x00\tV\x00\x00\xa8\x00\x00\x00\xa1V\x00\x00\x1b\x00\x00\x00JW\x00\x00\x18\x00\x00\x00fW\x00\x00\x1a\x00\x00\x00\u007fW\x00\x00$\x00\x00\x00\x9aW\x00\x00\x1d\x00\x00\x00\xbfW\x00\x00\x17\x00\x00\x00\xddW\x00\x00a\x00\x00\x00\xf5W\x00\x00s\x00\x00\x00WX\x00\x00B\x00\x00\x00\xcbX\x00\x00X\x00\x00\x00\x0eY\x00\x00+\x00\x00\x00gY\x00\x00+\x00\x00\x00\x93Y\x00\x006\x00\x00\x00\xbfY\x00\x00;\x00\x00\x00\xf6Y\x00\x00q\x00\x00\x002Z\x00\x00/\x00\x00\x00\xa4Z\x00\x001\x00\x00\x00\xd4Z\x00\x00'\x00\x00\x00\x06[\x00\x00'\x00\x00\x00.[\x00\x00\x18\x00\x00\x00V[\x00\x00&\x00\x00\x00o[\x00\x00%\x00\x00\x00\x96[\x00\x00(\x00\x00\x00\xbc[\x00\x00#\x00\x00\x00\xe5[\x00\x00K\x00\x00\x00\t\\\x00\x00 \x00\x00\x00U\\\x00\x00\x1e\x00\x00\x00v\\\x00\x00\"\x00\x00\x00\x95\\\x00\x00\"\x00\x00\x00\xb8\\\x00\x00\x1f\x00\x00\x00\xdb\\\x00\x00-\x00\x00\x00\xfb\\\x00\x00-\x00\x00\x00)]\x00\x009\x00\x00\x00W]\x00\x00\x1e\x00\x00\x00\x91]\x00\x00\x19\x00\x00\x00\xb0]\x00\x00c\x00\x00\x00\xca]\x00\x00#\x00\x00\x00.^\x00\x00\x82\x00\x00\x00R^\x00\x00\x94\x00\x00\x00\xd5^\x00\x00H\x00\x00\x00j_\x00\x00&\x00\x00\x00\xb3_\x00\x00e\x00\x00\x00\xda_\x00\x00z\x00\x00\x00@`\x00\x00J\x00\x00\x00\xbb`\x00\x00\xe5\x00\x00\x00\x06a\x00\x00W\x00\x00\x00\xeca\x00\x00E\x00\x00\x00Db\x00\x00a\x00\x00\x00\x8ab\x00\x00v\x00\x00\x00\xecb\x00\x00\xcb\x00\x00\x00cc\x00\x00\xcf\x00\x00\x00/d\x00\x00\x1e\x01\x00\x00\xffd\x00\x00\x1c\x00\x00\x00\x1ef\x00\x00T\x00\x00\x00;f\x00\x00\x17\x00\x00\x00\x90f\x00\x00/\x00\x00\x00\xa8f\x00\x009\x00\x00\x00\xd8f\x00\x00\x1e\x00\x00\x00\x12g\x00\x00=\x00\x00\x001g\x00\x00\x86\x00\x00\x00og\x00\x00\x1f\x00\x00\x00\xf6g\x00\x00&\x00\x00\x00\x16h\x00\x00+\x00\x00\x00=h\x00\x00\x14\x00\x00\x00ih\x00\x00r\x00\x00\x00~h\x00\x00\x18\x00\x00\x00\xf1h\x00\x00/\x00\x00\x00\ni\x00\x00\xc3\x00\x00\x00:i\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x85\x00\x00\x00\x84\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x13\x00\x00\x00\x03\x00\x00\x00X\x00\x00\x00\x00\x00\x00\x00z\x00\x00\x00\x00\x00\x00\x00N\x00\x00\x00|\x00\x00\x00f\x00\x00\x00m\x00\x00\x00\x18\x00\x00\x00Z\x00\x00\x00\x00\x00\x00\x00\x1f\x00\x00\x00\a\x00\x00\x00P\x00\x00\x00R\x00\x00\x000\x00\x00\x00\x02\x00\x00\x00H\x00\x00\x00}\x00\x00\x00\b\x00\x00\x00h\x00\x00\x00\x04\x00\x00\x00d\x00\x00\x00v\x00\x00\x00\x00\x00\x00\x00t\x00\x00\x00\x1d\x00\x00\x00w\x00\x00\x003\x00\x00\x00\x00\x00\x00\x00M\x00\x00\x00J\x00\x00\x00\n\x00\x00\x00=\x00\x00\x00j\x00\x00\x00l\x00\x00\x00^\x00\x00\x00\x00\x00\x00\x002\x00\x00\x00/\x00\x00\x00\x12\x00\x00\x00\x80\x00\x00\x00+\x00\x00\x00\x16\x00\x00\x00.\x00\x00\x00&\x00\x00\x00\t\x00\x00\x00\x00\x00\x00\x00i\x00\x00\x00Q\x00\x00\x00\x1e\x00\x00\x00V\x00\x00\x00\x00\x00\x00\x00\x82\x00\x00\x00G\x00\x00\x00!\x00\x00\x00\x00\x00\x00\x00n\x00\x00\x00\x83\x00\x00\x00s\x00\x00\x00\x00\x00\x00\x00e\x00\x00\x00K\x00\x00\x00\\\x00\x00\x00r\x00\x00\x00\x00\x00\x00\x00\x11\x00\x00\x00\x00\x00\x00\x00:\x00\x00\x00]\x00\x00\x00\x0f\x00\x00\x00\x00\x00\x00\x00O\x00\x00\x00@\x00\x00\x00\x1b\x00\x00\x00a\x00\x00\x009\x00\x00\x00'\x00\x00\x00*\x00\x00\x00\x0e\x00\x00\x00k\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00L\x00\x00\x00\x81\x00\x00\x00{\x00\x00\x00-\x00\x00\x00b\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x19\x00\x00\x00\x1a\x00\x00\x00\x00\x00\x00\x001\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00x\x00\x00\x00W\x00\x00\x00Y\x00\x00\x00\x14\x00\x00\x00\x00\x00\x00\x00<\x00\x00\x00\x15\x00\x00\x00\"\x00\x00\x00`\x00\x00\x00#\x00\x00\x00[\x00\x00\x00\u007f\x00\x00\x006\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00A\x00\x00\x00\x00\x00\x00\x00;\x00\x00\x008\x00\x00\x00T\x00\x00\x00U\x00\x00\x00>\x00\x00\x00S\x00\x00\x00\x00\x00\x00\x00c\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00(\x00\x00\x00\x17\x00\x00\x00D\x00\x00\x00\x00\x00\x00\x00o\x00\x00\x007\x00\x00\x00\x10\x00\x00\x00_\x00\x00\x00g\x00\x00\x00\x00\x00\x00\x004\x00\x00\x00\x00\x00\x00\x00\f\x00\x00\x00u\x00\x00\x00\x00\x00\x00\x00$\x00\x00\x00 \x00\x00\x00p\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00y\x00\x00\x00E\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00)\x00\x00\x00C\x00\x00\x00,\x00\x00\x00\x06\x00\x00\x00q\x00\x00\x00\x05\x00\x00\x00I\x00\x00\x00\x00\x00\x00\x00F\x00\x00\x00%\x00\x00\x00\x1c\x00\x00\x00~\x00\x00\x00B\x00\x00\x00\v\x00\x00\x00?\x00\x00\x00\r\x00\x00\x00\x86\x00\x00\x005\x00\x00\x00\x00A comma-delimited set of quota scopes that must all match each object tracked by the quota.\x04A comma-delimited set of quota scopes that must all match each object tracked by the quota.\x00A comma-delimited set of resource=quantity pairs that define a hard limit.\x04A comma-delimited set of resource=quantity pairs that define a hard limit.\x00A label selector to use for this budget. Only equality-based selector requirements are supported.\x04A label selector to use for this budget. Only equality-based selector requirements are supported.\x00A label selector to use for this service. Only equality-based selector requirements are supported. If empty (the default) infer the selector from the replication controller or replica set.\x04A label selector to use for this service. Only equality-based selector requirements are supported. If empty (the default) infer the selector from the replication controller or replica set.\x00A schedule in the Cron format the job should be run with.\x04A schedule in the Cron format the job should be run with.\x00Additional external IP address (not managed by Kubernetes) to accept for the service. If this IP is routed to a node, the service can be accessed by this IP in addition to its generated service IP.\x04Additional external IP address (not managed by Kubernetes) to accept for the service. If this IP is routed to a node, the service can be accessed by this IP in addition to its generated service IP.\x00An inline JSON override for the generated object. If this is non-empty, it is used to override the generated object. Requires that the object supply a valid apiVersion field.\x04An inline JSON override for the generated object. If this is non-empty, it is used to override the generated object. Requires that the object supply a valid apiVersion field.\x00An inline JSON override for the generated service object. If this is non-empty, it is used to override the generated object. Requires that the object supply a valid apiVersion field. Only used if --expose is true.\x04An inline JSON override for the generated service object. If this is non-empty, it is used to override the generated object. Requires that the object supply a valid apiVersion field. Only used if --expose is true.\x00Apply a configuration to a resource by filename or stdin\x00Approve a certificate signing request\x00Assign your own ClusterIP or set to 'None' for a 'headless' service (no loadbalancing).\x04Assign your own ClusterIP or set to 'None' for a 'headless' service (no loadbalancing).\x00Attach to a running container\x00Auto-scale a Deployment, ReplicaSet, or ReplicationController\x00ClusterIP to be assigned to the service. Leave empty to auto-allocate, or set to 'None' to create a headless service.\x04ClusterIP to be assigned to the service. Leave empty to auto-allocate, or set to 'None' to create a headless service.\x00ClusterRole this ClusterRoleBinding should reference\x04ClusterRole this ClusterRoleBinding should reference\x00ClusterRole this RoleBinding should reference\x04ClusterRole this RoleBinding should reference\x00Container name which will have its image upgraded. Only relevant when --image is specified, ignored otherwise. Required when using --image on a multi-container pod\x04Container name which will have its image upgraded. Only relevant when --image is specified, ignored otherwise. Required when using --image on a multi-container pod\x00Convert config files between different API versions\x00Copy files and directories to and from containers.\x00Create a ClusterRoleBinding for a particular ClusterRole\x00Create a LoadBalancer service.\x00Create a NodePort service.\x00Create a RoleBinding for a particular Role or ClusterRole\x00Create a TLS secret\x00Create a clusterIP service.\x00Create a configmap from a local file, directory or literal value\x00Create a deployment with the specified name.\x00Create a namespace with the specified name\x00Create a pod disruption budget with the specified name.\x00Create a quota with the specified name.\x00Create a resource by filename or stdin\x00Create a secret for use with a Docker registry\x00Create a secret from a local file, directory or literal value\x00Create a secret using specified subcommand\x00Create a service account with the specified name\x00Create a service using specified subcommand.\x00Create an ExternalName service.\x00Delete resources by filenames, stdin, resources and names, or by resources and label selector\x00Delete the specified cluster from the kubeconfig\x00Delete the specified context from the kubeconfig\x00Deny a certificate signing request\x00Deprecated: Gracefully shut down a resource by name or filename\x00Describe one or many contexts\x00Display Resource (CPU/Memory/Storage) usage of nodes\x00Display Resource (CPU/Memory/Storage) usage of pods\x00Display Resource (CPU/Memory/Storage) usage.\x00Display cluster info\x00Display clusters defined in the kubeconfig\x00Display merged kubeconfig settings or a specified kubeconfig file\x00Display one or many resources\x00Displays the current-context\x00Documentation of resources\x00Drain node in preparation for maintenance\x00Dump lots of relevant info for debugging and diagnosis\x00Edit a resource on the server\x00Email for Docker registry\x04Email for Docker registry\x00Execute a command in a container\x00Explicit policy for when to pull container images. Required when --image is same as existing image, ignored otherwise.\x04Explicit policy for when to pull container images. Required when --image is same as existing image, ignored otherwise.\x00Forward one or more local ports to a pod\x00Help about any command\x00IP to assign to the Load Balancer. If empty, an ephemeral IP will be created and used (cloud-provider specific).\x04IP to assign to the Load Balancer. If empty, an ephemeral IP will be created and used (cloud-provider specific).\x00If non-empty, set the session affinity for the service to this; legal values: 'None', 'ClientIP'\x04If non-empty, set the session affinity for the service to this; legal values: 'None', 'ClientIP'\x00If non-empty, the annotation update will only succeed if this is the current resource-version for the object. Only valid when specifying a single resource.\x04If non-empty, the annotation update will only succeed if this is the current resource-version for the object. Only valid when specifying a single resource.\x00If non-empty, the labels update will only succeed if this is the current resource-version for the object. Only valid when specifying a single resource.\x04If non-empty, the labels update will only succeed if this is the current resource-version for the object. Only valid when specifying a single resource.\x00Image to use for upgrading the replication controller. Must be distinct from the existing image (either new image or new image tag). Can not be used with --filename/-f\x04Image to use for upgrading the replication controller. Must be distinct from the existing image (either new image or new image tag). Can not be used with --filename/-f\x00Manage a deployment rollout\x04Manage a deployment rollout\x00Mark node as schedulable\x00Mark node as unschedulable\x00Mark the provided resource as paused\x04Mark the provided resource as paused\x00Modify certificate resources.\x00Modify kubeconfig files\x00Name or number for the port on the container that the service should direct traffic to. Optional.\x04Name or number for the port on the container that the service should direct traffic to. Optional.\x00Only return logs after a specific date (RFC3339). Defaults to all logs. Only one of since-time / since may be used.\x04Only return logs after a specific date (RFC3339). Defaults to all logs. Only one of since-time / since may be used.\x00Output shell completion code for the specified shell (bash or zsh)\x00Output the formatted object with the given group version (for ex: 'extensions/v1beta1').\x04Output the formatted object with the given group version (for ex: 'extensions/v1beta1').\x00Password for Docker registry authentication\x04Password for Docker registry authentication\x00Path to PEM encoded public key certificate.\x04Path to PEM encoded public key certificate.\x00Path to private key associated with given certificate.\x04Path to private key associated with given certificate.\x00Perform a rolling update of the given ReplicationController\x00Precondition for resource version. Requires that the current resource version match this value in order to scale.\x04Precondition for resource version. Requires that the current resource version match this value in order to scale.\x00Print the client and server version information\x00Print the list of flags inherited by all commands\x00Print the logs for a container in a pod\x00Replace a resource by filename or stdin\x00Resume a paused resource\x04Resume a paused resource\x00Role this RoleBinding should reference\x04Role this RoleBinding should reference\x00Run a particular image on the cluster\x00Run a proxy to the Kubernetes API server\x00Server location for Docker registry\x04Server location for Docker registry\x00Set a new size for a Deployment, ReplicaSet, Replication Controller, or Job\x00Set specific features on objects\x00Set the selector on a resource\x00Sets a cluster entry in kubeconfig\x00Sets a context entry in kubeconfig\x00Sets a user entry in kubeconfig\x00Sets an individual value in a kubeconfig file\x00Sets the current-context in a kubeconfig file\x00Show details of a specific resource or group of resources\x00Show the status of the rollout\x04Show the status of the rollout\x00Synonym for --target-port\x04Synonym for --target-port\x00Take a replication controller, service, deployment or pod and expose it as a new Kubernetes Service\x00The image for the container to run.\x04The image for the container to run.\x00The image pull policy for the container. If left empty, this value will not be specified by the client and defaulted by the server\x04The image pull policy for the container. If left empty, this value will not be specified by the client and defaulted by the server\x00The key to use to differentiate between two different controllers, default 'deployment'. Only relevant when --image is specified, ignored otherwise\x04The key to use to differentiate between two different controllers, default 'deployment'. Only relevant when --image is specified, ignored otherwise\x00The minimum number or percentage of available pods this budget requires.\x04The minimum number or percentage of available pods this budget requires.\x00The name for the newly created object.\x04The name for the newly created object.\x00The name for the newly created object. If not specified, the name of the input resource will be used.\x04The name for the newly created object. If not specified, the name of the input resource will be used.\x00The name of the API generator to use, see http://kubernetes.io/docs/user-guide/kubectl-conventions/#generators for a list.\x04The name of the API generator to use, see http://kubernetes.io/docs/user-guide/kubectl-conventions/#generators for a list.\x00The name of the API generator to use. Currently there is only 1 generator.\x04The name of the API generator to use. Currently there is only 1 generator.\x00The name of the API generator to use. There are 2 generators: 'service/v1' and 'service/v2'. The only difference between them is that service port in v1 is named 'default', while it is left unnamed in v2. Default is 'service/v2'.\x04The name of the API generator to use. There are 2 generators: 'service/v1' and 'service/v2'. The only difference between them is that service port in v1 is named 'default', while it is left unnamed in v2. Default is 'service/v2'.\x00The name of the generator to use for creating a service. Only used if --expose is true\x04The name of the generator to use for creating a service. Only used if --expose is true\x00The network protocol for the service to be created. Default is 'TCP'.\x04The network protocol for the service to be created. Default is 'TCP'.\x00The port that the service should serve on. Copied from the resource being exposed, if unspecified\x04The port that the service should serve on. Copied from the resource being exposed, if unspecified\x00The port that this container exposes. If --expose is true, this is also the port used by the service that is created.\x04The port that this container exposes. If --expose is true, this is also the port used by the service that is created.\x00The resource requirement limits for this container. For example, 'cpu=200m,memory=512Mi'. Note that server side components may assign limits depending on the server configuration, such as limit ranges.\x04The resource requirement limits for this container. For example, 'cpu=200m,memory=512Mi'. Note that server side components may assign limits depending on the server configuration, such as limit ranges.\x00The resource requirement requests for this container. For example, 'cpu=100m,memory=256Mi'. Note that server side components may assign requests depending on the server configuration, such as limit ranges.\x04The resource requirement requests for this container. For example, 'cpu=100m,memory=256Mi'. Note that server side components may assign requests depending on the server configuration, such as limit ranges.\x00The restart policy for this Pod. Legal values [Always, OnFailure, Never]. If set to 'Always' a deployment is created, if set to 'OnFailure' a job is created, if set to 'Never', a regular pod is created. For the latter two --replicas must be 1. Default 'Always', for CronJobs `Never`.\x04The restart policy for this Pod. Legal values [Always, OnFailure, Never]. If set to 'Always' a deployment is created, if set to 'OnFailure' a job is created, if set to 'Never', a regular pod is created. For the latter two --replicas must be 1. Default 'Always', for CronJobs `Never`.\x00The type of secret to create\x04The type of secret to create\x00Type for this service: ClusterIP, NodePort, or LoadBalancer. Default is 'ClusterIP'.\x04Type for this service: ClusterIP, NodePort, or LoadBalancer. Default is 'ClusterIP'.\x00Undo a previous rollout\x04Undo a previous rollout\x00Unsets an individual value in a kubeconfig file\x00Update field(s) of a resource using strategic merge patch\x00Update image of a pod template\x00Update resource requests/limits on objects with pod templates\x00Update the annotations on a resource\x00Update the labels on a resource\x00Update the taints on one or more nodes\x00Username for Docker registry authentication\x04Username for Docker registry authentication\x00View rollout history\x04View rollout history\x00Where to output the files. If empty or '-' uses stdout, otherwise creates a directory hierarchy in that directory\x04Where to output the files. If empty or '-' uses stdout, otherwise creates a directory hierarchy in that directory\x00external name of service\x04external name of service\x00kubectl controls the Kubernetes cluster manager\x00watch is only supported on individual resources and resource collections - %d resources were found\x00watch is only supported on individual resources and resource collections - %d resources were found\x00Project-Id-Version: gettext-go-examples-hello\nReport-Msgid-Bugs-To: \nPOT-Creation-Date: 2013-12-12 20:03+0000\nPO-Revision-Date: 2017-02-21 22:06-0800\nLast-Translator: Brendan Burns <brendan.d.burns@gmail.com>\nMIME-Version: 1.0\nContent-Type: text/plain; charset=UTF-8\nContent-Transfer-Encoding: 8bit\nX-Generator: Poedit 1.6.10\nX-Poedit-SourceCharset: UTF-8\nLanguage-Team: \nPlural-Forms: nplurals=2; plural=(n != 1);\nLanguage: en\n\x00A comma-delimited set of quota scopes that must all match each object tracked by the quota.\x00A comma-delimited set of resource=quantity pairs that define a hard limit.\x00A label selector to use for this budget. Only equality-based selector requirements are supported.\x00A label selector to use for this service. Only equality-based selector requirements are supported. If empty (the default) infer the selector from the replication controller or replica set.\x00A schedule in the Cron format the job should be run with.\x00Additional external IP address (not managed by Kubernetes) to accept for the service. If this IP is routed to a node, the service can be accessed by this IP in addition to its generated service IP.\x00An inline JSON override for the generated object. If this is non-empty, it is used to override the generated object. Requires that the object supply a valid apiVersion field.\x00An inline JSON override for the generated service object. If this is non-empty, it is used to override the generated object. Requires that the object supply a valid apiVersion field. Only used if --expose is true.\x00Apply a configuration to a resource by filename or stdin\x00Approve a certificate signing request\x00Assign your own ClusterIP or set to 'None' for a 'headless' service (no loadbalancing).\x00Attach to a running container\x00Auto-scale a Deployment, ReplicaSet, or ReplicationController\x00ClusterIP to be assigned to the service. Leave empty to auto-allocate, or set to 'None' to create a headless service.\x00ClusterRole this ClusterRoleBinding should reference\x00ClusterRole this RoleBinding should reference\x00Container name which will have its image upgraded. Only relevant when --image is specified, ignored otherwise. Required when using --image on a multi-container pod\x00Convert config files between different API versions\x00Copy files and directories to and from containers.\x00Create a ClusterRoleBinding for a particular ClusterRole\x00Create a LoadBalancer service.\x00Create a NodePort service.\x00Create a RoleBinding for a particular Role or ClusterRole\x00Create a TLS secret\x00Create a clusterIP service.\x00Create a configmap from a local file, directory or literal value\x00Create a deployment with the specified name.\x00Create a namespace with the specified name\x00Create a pod disruption budget with the specified name.\x00Create a quota with the specified name.\x00Create a resource by filename or stdin\x00Create a secret for use with a Docker registry\x00Create a secret from a local file, directory or literal value\x00Create a secret using specified subcommand\x00Create a service account with the specified name\x00Create a service using specified subcommand.\x00Create an ExternalName service.\x00Delete resources by filenames, stdin, resources and names, or by resources and label selector\x00Delete the specified cluster from the kubeconfig\x00Delete the specified context from the kubeconfig\x00Deny a certificate signing request\x00Deprecated: Gracefully shut down a resource by name or filename\x00Describe one or many contexts\x00Display Resource (CPU/Memory/Storage) usage of nodes\x00Display Resource (CPU/Memory/Storage) usage of pods\x00Display Resource (CPU/Memory/Storage) usage.\x00Display cluster info\x00Display clusters defined in the kubeconfig\x00Display merged kubeconfig settings or a specified kubeconfig file\x00Display one or many resources\x00Displays the current-context\x00Documentation of resources\x00Drain node in preparation for maintenance\x00Dump lots of relevant info for debugging and diagnosis\x00Edit a resource on the server\x00Email for Docker registry\x00Execute a command in a container\x00Explicit policy for when to pull container images. Required when --image is same as existing image, ignored otherwise.\x00Forward one or more local ports to a pod\x00Help about any command\x00IP to assign to the Load Balancer. If empty, an ephemeral IP will be created and used (cloud-provider specific).\x00If non-empty, set the session affinity for the service to this; legal values: 'None', 'ClientIP'\x00If non-empty, the annotation update will only succeed if this is the current resource-version for the object. Only valid when specifying a single resource.\x00If non-empty, the labels update will only succeed if this is the current resource-version for the object. Only valid when specifying a single resource.\x00Image to use for upgrading the replication controller. Must be distinct from the existing image (either new image or new image tag). Can not be used with --filename/-f\x00Manage a deployment rollout\x00Mark node as schedulable\x00Mark node as unschedulable\x00Mark the provided resource as paused\x00Modify certificate resources.\x00Modify kubeconfig files\x00Name or number for the port on the container that the service should direct traffic to. Optional.\x00Only return logs after a specific date (RFC3339). Defaults to all logs. Only one of since-time / since may be used.\x00Output shell completion code for the specified shell (bash or zsh)\x00Output the formatted object with the given group version (for ex: 'extensions/v1beta1').\x00Password for Docker registry authentication\x00Path to PEM encoded public key certificate.\x00Path to private key associated with given certificate.\x00Perform a rolling update of the given ReplicationController\x00Precondition for resource version. Requires that the current resource version match this value in order to scale.\x00Print the client and server version information\x00Print the list of flags inherited by all commands\x00Print the logs for a container in a pod\x00Replace a resource by filename or stdin\x00Resume a paused resource\x00Role this RoleBinding should reference\x00Run a particular image on the cluster\x00Run a proxy to the Kubernetes API server\x00Server location for Docker registry\x00Set a new size for a Deployment, ReplicaSet, Replication Controller, or Job\x00Set specific features on objects\x00Set the selector on a resource\x00Sets a cluster entry in kubeconfig\x00Sets a context entry in kubeconfig\x00Sets a user entry in kubeconfig\x00Sets an individual value in a kubeconfig file\x00Sets the current-context in a kubeconfig file\x00Show details of a specific resource or group of resources\x00Show the status of the rollout\x00Synonym for --target-port\x00Take a replication controller, service, deployment or pod and expose it as a new Kubernetes Service\x00The image for the container to run.\x00The image pull policy for the container. If left empty, this value will not be specified by the client and defaulted by the server\x00The key to use to differentiate between two different controllers, default 'deployment'. Only relevant when --image is specified, ignored otherwise\x00The minimum number or percentage of available pods this budget requires.\x00The name for the newly created object.\x00The name for the newly created object. If not specified, the name of the input resource will be used.\x00The name of the API generator to use, see http://kubernetes.io/docs/user-guide/kubectl-conventions/#generators for a list.\x00The name of the API generator to use. Currently there is only 1 generator.\x00The name of the API generator to use. There are 2 generators: 'service/v1' and 'service/v2'. The only difference between them is that service port in v1 is named 'default', while it is left unnamed in v2. Default is 'service/v2'.\x00The name of the generator to use for creating a service. Only used if --expose is true\x00The network protocol for the service to be created. Default is 'TCP'.\x00The port that the service should serve on. Copied from the resource being exposed, if unspecified\x00The port that this container exposes. If --expose is true, this is also the port used by the service that is created.\x00The resource requirement limits for this container. For example, 'cpu=200m,memory=512Mi'. Note that server side components may assign limits depending on the server configuration, such as limit ranges.\x00The resource requirement requests for this container. For example, 'cpu=100m,memory=256Mi'. Note that server side components may assign requests depending on the server configuration, such as limit ranges.\x00The restart policy for this Pod. Legal values [Always, OnFailure, Never]. If set to 'Always' a deployment is created, if set to 'OnFailure' a job is created, if set to 'Never', a regular pod is created. For the latter two --replicas must be 1. Default 'Always', for CronJobs `Never`.\x00The type of secret to create\x00Type for this service: ClusterIP, NodePort, or LoadBalancer. Default is 'ClusterIP'.\x00Undo a previous rollout\x00Unsets an individual value in a kubeconfig file\x00Update field(s) of a resource using strategic merge patch\x00Update image of a pod template\x00Update resource requests/limits on objects with pod templates\x00Update the annotations on a resourcewatch is only supported on individual resources and resource collections - %d resources were found\x00Update the labels on a resource\x00Update the taints on one or more nodes\x00Username for Docker registry authentication\x00View rollout history\x00Where to output the files. If empty or '-' uses stdout, otherwise creates a directory hierarchy in that directory\x00external name of service\x00kubectl controls the Kubernetes cluster manager\x00watch is only supported on individual resources and resource collections - %d resource was found\x00watch is only supported on individual resources and resource collections - %d resources were found\x00")
func translationsKubectlDefaultLc_messagesK8sMoBytes() ([]byte, error) {
return _translationsKubectlDefaultLc_messagesK8sMo, nil
}
func translationsKubectlDefaultLc_messagesK8sMo() (*asset, error) {
bytes, err := translationsKubectlDefaultLc_messagesK8sMoBytes()
if err != nil {
return nil, err
}
info := bindataFileInfo{name: "translations/kubectl/default/LC_MESSAGES/k8s.mo", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
var _translationsKubectlDefaultLc_messagesK8sPo = []byte(`# Test translations for unit tests.
# Copyright (C) 2016
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR brendan.d.burns@gmail.com, 2016.
#
msgid ""
msgstr ""
"Project-Id-Version: gettext-go-examples-hello\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-12-12 20:03+0000\n"
"PO-Revision-Date: 2017-02-21 22:06-0800\n"
"Last-Translator: Brendan Burns <brendan.d.burns@gmail.com>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 1.6.10\n"
"X-Poedit-SourceCharset: UTF-8\n"
"Language-Team: \n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Language: en\n"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_quota.go#L61
msgctxt ""
"A comma-delimited set of quota scopes that must all match each object "
"tracked by the quota."
msgid ""
"A comma-delimited set of quota scopes that must all match each object "
"tracked by the quota."
msgstr ""
"A comma-delimited set of quota scopes that must all match each object "
"tracked by the quota."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_quota.go#L60
msgctxt ""
"A comma-delimited set of resource=quantity pairs that define a hard limit."
msgid ""
"A comma-delimited set of resource=quantity pairs that define a hard limit."
msgstr ""
"A comma-delimited set of resource=quantity pairs that define a hard limit."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_pdb.go#L63
msgctxt ""
"A label selector to use for this budget. Only equality-based selector "
"requirements are supported."
msgid ""
"A label selector to use for this budget. Only equality-based selector "
"requirements are supported."
msgstr ""
"A label selector to use for this budget. Only equality-based selector "
"requirements are supported."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/expose.go#L106
msgctxt ""
"A label selector to use for this service. Only equality-based selector "
"requirements are supported. If empty (the default) infer the selector from "
"the replication controller or replica set."
msgid ""
"A label selector to use for this service. Only equality-based selector "
"requirements are supported. If empty (the default) infer the selector from "
"the replication controller or replica set."
msgstr ""
"A label selector to use for this service. Only equality-based selector "
"requirements are supported. If empty (the default) infer the selector from "
"the replication controller or replica set."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/run.go#L136
msgctxt "A schedule in the Cron format the job should be run with."
msgid "A schedule in the Cron format the job should be run with."
msgstr "A schedule in the Cron format the job should be run with."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/expose.go#L111
msgctxt ""
"Additional external IP address (not managed by Kubernetes) to accept for the "
"service. If this IP is routed to a node, the service can be accessed by this "
"IP in addition to its generated service IP."
msgid ""
"Additional external IP address (not managed by Kubernetes) to accept for the "
"service. If this IP is routed to a node, the service can be accessed by this "
"IP in addition to its generated service IP."
msgstr ""
"Additional external IP address (not managed by Kubernetes) to accept for the "
"service. If this IP is routed to a node, the service can be accessed by this "
"IP in addition to its generated service IP."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/run.go#L119
msgctxt ""
"An inline JSON override for the generated object. If this is non-empty, it "
"is used to override the generated object. Requires that the object supply a "
"valid apiVersion field."
msgid ""
"An inline JSON override for the generated object. If this is non-empty, it "
"is used to override the generated object. Requires that the object supply a "
"valid apiVersion field."
msgstr ""
"An inline JSON override for the generated object. If this is non-empty, it "
"is used to override the generated object. Requires that the object supply a "
"valid apiVersion field."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/run.go#L134
msgctxt ""
"An inline JSON override for the generated service object. If this is non-"
"empty, it is used to override the generated object. Requires that the object "
"supply a valid apiVersion field. Only used if --expose is true."
msgid ""
"An inline JSON override for the generated service object. If this is non-"
"empty, it is used to override the generated object. Requires that the object "
"supply a valid apiVersion field. Only used if --expose is true."
msgstr ""
"An inline JSON override for the generated service object. If this is non-"
"empty, it is used to override the generated object. Requires that the object "
"supply a valid apiVersion field. Only used if --expose is true."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/apply.go#L98
msgid "Apply a configuration to a resource by filename or stdin"
msgstr "Apply a configuration to a resource by filename or stdin"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/certificates.go#L71
msgid "Approve a certificate signing request"
msgstr "Approve a certificate signing request"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L81
msgctxt ""
"Assign your own ClusterIP or set to 'None' for a 'headless' service (no "
"loadbalancing)."
msgid ""
"Assign your own ClusterIP or set to 'None' for a 'headless' service (no "
"loadbalancing)."
msgstr ""
"Assign your own ClusterIP or set to 'None' for a 'headless' service (no "
"loadbalancing)."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/attach.go#L64
msgid "Attach to a running container"
msgstr "Attach to a running container"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/autoscale.go#L55
msgid "Auto-scale a Deployment, ReplicaSet, or ReplicationController"
msgstr "Auto-scale a Deployment, ReplicaSet, or ReplicationController"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/expose.go#L115
msgctxt ""
"ClusterIP to be assigned to the service. Leave empty to auto-allocate, or "
"set to 'None' to create a headless service."
msgid ""
"ClusterIP to be assigned to the service. Leave empty to auto-allocate, or "
"set to 'None' to create a headless service."
msgstr ""
"ClusterIP to be assigned to the service. Leave empty to auto-allocate, or "
"set to 'None' to create a headless service."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_clusterrolebinding.go#L55
msgctxt "ClusterRole this ClusterRoleBinding should reference"
msgid "ClusterRole this ClusterRoleBinding should reference"
msgstr "ClusterRole this ClusterRoleBinding should reference"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_rolebinding.go#L55
msgctxt "ClusterRole this RoleBinding should reference"
msgid "ClusterRole this RoleBinding should reference"
msgstr "ClusterRole this RoleBinding should reference"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollingupdate.go#L101
msgctxt ""
"Container name which will have its image upgraded. Only relevant when --"
"image is specified, ignored otherwise. Required when using --image on a "
"multi-container pod"
msgid ""
"Container name which will have its image upgraded. Only relevant when --"
"image is specified, ignored otherwise. Required when using --image on a "
"multi-container pod"
msgstr ""
"Container name which will have its image upgraded. Only relevant when --"
"image is specified, ignored otherwise. Required when using --image on a "
"multi-container pod"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/convert.go#L67
msgid "Convert config files between different API versions"
msgstr "Convert config files between different API versions"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/cp.go#L64
msgid "Copy files and directories to and from containers."
msgstr "Copy files and directories to and from containers."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_clusterrolebinding.go#L43
msgid "Create a ClusterRoleBinding for a particular ClusterRole"
msgstr "Create a ClusterRoleBinding for a particular ClusterRole"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L181
msgid "Create a LoadBalancer service."
msgstr "Create a LoadBalancer service."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L124
msgid "Create a NodePort service."
msgstr "Create a NodePort service."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_rolebinding.go#L43
msgid "Create a RoleBinding for a particular Role or ClusterRole"
msgstr "Create a RoleBinding for a particular Role or ClusterRole"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_secret.go#L214
msgid "Create a TLS secret"
msgstr "Create a TLS secret"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L68
msgid "Create a clusterIP service."
msgstr "Create a clusterIP service."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_configmap.go#L59
msgid "Create a configmap from a local file, directory or literal value"
msgstr "Create a configmap from a local file, directory or literal value"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_deployment.go#L44
msgid "Create a deployment with the specified name."
msgstr "Create a deployment with the specified name."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_namespace.go#L44
msgid "Create a namespace with the specified name"
msgstr "Create a namespace with the specified name"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_pdb.go#L49
msgid "Create a pod disruption budget with the specified name."
msgstr "Create a pod disruption budget with the specified name."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_quota.go#L47
msgid "Create a quota with the specified name."
msgstr "Create a quota with the specified name."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create.go#L56
msgid "Create a resource by filename or stdin"
msgstr "Create a resource by filename or stdin"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_secret.go#L143
msgid "Create a secret for use with a Docker registry"
msgstr "Create a secret for use with a Docker registry"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_secret.go#L73
msgid "Create a secret from a local file, directory or literal value"
msgstr "Create a secret from a local file, directory or literal value"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_secret.go#L34
msgid "Create a secret using specified subcommand"
msgstr "Create a secret using specified subcommand"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_serviceaccount.go#L44
msgid "Create a service account with the specified name"
msgstr "Create a service account with the specified name"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L36
msgid "Create a service using specified subcommand."
msgstr "Create a service using specified subcommand."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_service.go#L240
msgid "Create an ExternalName service."
msgstr "Create an ExternalName service."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/delete.go#L130
msgid ""
"Delete resources by filenames, stdin, resources and names, or by resources "
"and label selector"
msgstr ""
"Delete resources by filenames, stdin, resources and names, or by resources "
"and label selector"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/delete_cluster.go#L38
msgid "Delete the specified cluster from the kubeconfig"
msgstr "Delete the specified cluster from the kubeconfig"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/delete_context.go#L38
msgid "Delete the specified context from the kubeconfig"
msgstr "Delete the specified context from the kubeconfig"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/certificates.go#L121
msgid "Deny a certificate signing request"
msgstr "Deny a certificate signing request"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/stop.go#L58
msgid "Deprecated: Gracefully shut down a resource by name or filename"
msgstr "Deprecated: Gracefully shut down a resource by name or filename"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/get_contexts.go#L62
msgid "Describe one or many contexts"
msgstr "Describe one or many contexts"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/top_node.go#L77
msgid "Display Resource (CPU/Memory/Storage) usage of nodes"
msgstr "Display Resource (CPU/Memory/Storage) usage of nodes"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/top_pod.go#L79
msgid "Display Resource (CPU/Memory/Storage) usage of pods"
msgstr "Display Resource (CPU/Memory/Storage) usage of pods"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/top.go#L43
msgid "Display Resource (CPU/Memory/Storage) usage."
msgstr "Display Resource (CPU/Memory/Storage) usage."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/clusterinfo.go#L49
msgid "Display cluster info"
msgstr "Display cluster info"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/get_clusters.go#L40
msgid "Display clusters defined in the kubeconfig"
msgstr "Display clusters defined in the kubeconfig"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/view.go#L64
msgid "Display merged kubeconfig settings or a specified kubeconfig file"
msgstr "Display merged kubeconfig settings or a specified kubeconfig file"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/get.go#L107
msgid "Display one or many resources"
msgstr "Display one or many resources"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/current_context.go#L48
msgid "Displays the current-context"
msgstr "Displays the current-context"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/explain.go#L50
msgid "Documentation of resources"
msgstr "Documentation of resources"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/drain.go#L176
msgid "Drain node in preparation for maintenance"
msgstr "Drain node in preparation for maintenance"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/clusterinfo_dump.go#L37
msgid "Dump lots of relevant info for debugging and diagnosis"
msgstr "Dump lots of relevant info for debugging and diagnosis"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/edit.go#L100
msgid "Edit a resource on the server"
msgstr "Edit a resource on the server"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_secret.go#L159
msgctxt "Email for Docker registry"
msgid "Email for Docker registry"
msgstr "Email for Docker registry"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/exec.go#L68
msgid "Execute a command in a container"
msgstr "Execute a command in a container"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollingupdate.go#L102
msgctxt ""
"Explicit policy for when to pull container images. Required when --image is "
"same as existing image, ignored otherwise."
msgid ""
"Explicit policy for when to pull container images. Required when --image is "
"same as existing image, ignored otherwise."
msgstr ""
"Explicit policy for when to pull container images. Required when --image is "
"same as existing image, ignored otherwise."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/portforward.go#L75
msgid "Forward one or more local ports to a pod"
msgstr "Forward one or more local ports to a pod"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/help.go#L36
msgid "Help about any command"
msgstr "Help about any command"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/expose.go#L105
msgctxt ""
"IP to assign to the Load Balancer. If empty, an ephemeral IP will be created "
"and used (cloud-provider specific)."
msgid ""
"IP to assign to the Load Balancer. If empty, an ephemeral IP will be created "
"and used (cloud-provider specific)."
msgstr ""
"IP to assign to the Load Balancer. If empty, an ephemeral IP will be created "
"and used (cloud-provider specific)."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/expose.go#L114
msgctxt ""
"If non-empty, set the session affinity for the service to this; legal "
"values: 'None', 'ClientIP'"
msgid ""
"If non-empty, set the session affinity for the service to this; legal "
"values: 'None', 'ClientIP'"
msgstr ""
"If non-empty, set the session affinity for the service to this; legal "
"values: 'None', 'ClientIP'"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/annotate.go#L135
msgctxt ""
"If non-empty, the annotation update will only succeed if this is the current "
"resource-version for the object. Only valid when specifying a single "
"resource."
msgid ""
"If non-empty, the annotation update will only succeed if this is the current "
"resource-version for the object. Only valid when specifying a single "
"resource."
msgstr ""
"If non-empty, the annotation update will only succeed if this is the current "
"resource-version for the object. Only valid when specifying a single "
"resource."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/label.go#L132
msgctxt ""
"If non-empty, the labels update will only succeed if this is the current "
"resource-version for the object. Only valid when specifying a single "
"resource."
msgid ""
"If non-empty, the labels update will only succeed if this is the current "
"resource-version for the object. Only valid when specifying a single "
"resource."
msgstr ""
"If non-empty, the labels update will only succeed if this is the current "
"resource-version for the object. Only valid when specifying a single "
"resource."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollingupdate.go#L98
msgctxt ""
"Image to use for upgrading the replication controller. Must be distinct from "
"the existing image (either new image or new image tag). Can not be used "
"with --filename/-f"
msgid ""
"Image to use for upgrading the replication controller. Must be distinct from "
"the existing image (either new image or new image tag). Can not be used "
"with --filename/-f"
msgstr ""
"Image to use for upgrading the replication controller. Must be distinct from "
"the existing image (either new image or new image tag). Can not be used "
"with --filename/-f"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollout/rollout.go#L46
msgctxt "Manage a deployment rollout"
msgid "Manage a deployment rollout"
msgstr "Manage a deployment rollout"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/drain.go#L127
msgid "Mark node as schedulable"
msgstr "Mark node as schedulable"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/drain.go#L102
msgid "Mark node as unschedulable"
msgstr "Mark node as unschedulable"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollout/rollout_pause.go#L73
msgctxt "Mark the provided resource as paused"
msgid "Mark the provided resource as paused"
msgstr "Mark the provided resource as paused"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/certificates.go#L35
msgid "Modify certificate resources."
msgstr "Modify certificate resources."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/config.go#L39
msgid "Modify kubeconfig files"
msgstr "Modify kubeconfig files"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/expose.go#L110
msgctxt ""
"Name or number for the port on the container that the service should direct "
"traffic to. Optional."
msgid ""
"Name or number for the port on the container that the service should direct "
"traffic to. Optional."
msgstr ""
"Name or number for the port on the container that the service should direct "
"traffic to. Optional."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/logs.go#L108
msgctxt ""
"Only return logs after a specific date (RFC3339). Defaults to all logs. Only "
"one of since-time / since may be used."
msgid ""
"Only return logs after a specific date (RFC3339). Defaults to all logs. Only "
"one of since-time / since may be used."
msgstr ""
"Only return logs after a specific date (RFC3339). Defaults to all logs. Only "
"one of since-time / since may be used."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/completion.go#L97
msgid "Output shell completion code for the specified shell (bash or zsh)"
msgstr "Output shell completion code for the specified shell (bash or zsh)"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/edit.go#L115
msgctxt ""
"Output the formatted object with the given group version (for ex: "
"'extensions/v1beta1')."
msgid ""
"Output the formatted object with the given group version (for ex: "
"'extensions/v1beta1')."
msgstr ""
"Output the formatted object with the given group version (for ex: "
"'extensions/v1beta1')."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_secret.go#L157
msgctxt "Password for Docker registry authentication"
msgid "Password for Docker registry authentication"
msgstr "Password for Docker registry authentication"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_secret.go#L226
msgctxt "Path to PEM encoded public key certificate."
msgid "Path to PEM encoded public key certificate."
msgstr "Path to PEM encoded public key certificate."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_secret.go#L227
msgctxt "Path to private key associated with given certificate."
msgid "Path to private key associated with given certificate."
msgstr "Path to private key associated with given certificate."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollingupdate.go#L84
msgid "Perform a rolling update of the given ReplicationController"
msgstr "Perform a rolling update of the given ReplicationController"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/scale.go#L82
msgctxt ""
"Precondition for resource version. Requires that the current resource "
"version match this value in order to scale."
msgid ""
"Precondition for resource version. Requires that the current resource "
"version match this value in order to scale."
msgstr ""
"Precondition for resource version. Requires that the current resource "
"version match this value in order to scale."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/version.go#L39
msgid "Print the client and server version information"
msgstr "Print the client and server version information"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/options.go#L37
msgid "Print the list of flags inherited by all commands"
msgstr "Print the list of flags inherited by all commands"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/logs.go#L86
msgid "Print the logs for a container in a pod"
msgstr "Print the logs for a container in a pod"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/replace.go#L70
msgid "Replace a resource by filename or stdin"
msgstr "Replace a resource by filename or stdin"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollout/rollout_resume.go#L71
msgctxt "Resume a paused resource"
msgid "Resume a paused resource"
msgstr "Resume a paused resource"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_rolebinding.go#L56
msgctxt "Role this RoleBinding should reference"
msgid "Role this RoleBinding should reference"
msgstr "Role this RoleBinding should reference"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/run.go#L94
msgid "Run a particular image on the cluster"
msgstr "Run a particular image on the cluster"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/proxy.go#L68
msgid "Run a proxy to the Kubernetes API server"
msgstr "Run a proxy to the Kubernetes API server"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_secret.go#L161
msgctxt "Server location for Docker registry"
msgid "Server location for Docker registry"
msgstr "Server location for Docker registry"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/scale.go#L71
msgid ""
"Set a new size for a Deployment, ReplicaSet, Replication Controller, or Job"
msgstr ""
"Set a new size for a Deployment, ReplicaSet, Replication Controller, or Job"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/set/set.go#L37
msgid "Set specific features on objects"
msgstr "Set specific features on objects"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/set/set_selector.go#L81
msgid "Set the selector on a resource"
msgstr "Set the selector on a resource"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_cluster.go#L67
msgid "Sets a cluster entry in kubeconfig"
msgstr "Sets a cluster entry in kubeconfig"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_context.go#L57
msgid "Sets a context entry in kubeconfig"
msgstr "Sets a context entry in kubeconfig"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/create_authinfo.go#L103
msgid "Sets a user entry in kubeconfig"
msgstr "Sets a user entry in kubeconfig"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/set.go#L59
msgid "Sets an individual value in a kubeconfig file"
msgstr "Sets an individual value in a kubeconfig file"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/use_context.go#L48
msgid "Sets the current-context in a kubeconfig file"
msgstr "Sets the current-context in a kubeconfig file"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/describe.go#L80
msgid "Show details of a specific resource or group of resources"
msgstr "Show details of a specific resource or group of resources"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollout/rollout_status.go#L57
msgctxt "Show the status of the rollout"
msgid "Show the status of the rollout"
msgstr "Show the status of the rollout"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/expose.go#L108
msgctxt "Synonym for --target-port"
msgid "Synonym for --target-port"
msgstr "Synonym for --target-port"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/expose.go#L87
msgid ""
"Take a replication controller, service, deployment or pod and expose it as a "
"new Kubernetes Service"
msgstr ""
"Take a replication controller, service, deployment or pod and expose it as a "
"new Kubernetes Service"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/run.go#L114
msgctxt "The image for the container to run."
msgid "The image for the container to run."
msgstr "The image for the container to run."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/run.go#L116
msgctxt ""
"The image pull policy for the container. If left empty, this value will not "
"be specified by the client and defaulted by the server"
msgid ""
"The image pull policy for the container. If left empty, this value will not "
"be specified by the client and defaulted by the server"
msgstr ""
"The image pull policy for the container. If left empty, this value will not "
"be specified by the client and defaulted by the server"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollingupdate.go#L100
msgctxt ""
"The key to use to differentiate between two different controllers, default "
"'deployment'. Only relevant when --image is specified, ignored otherwise"
msgid ""
"The key to use to differentiate between two different controllers, default "
"'deployment'. Only relevant when --image is specified, ignored otherwise"
msgstr ""
"The key to use to differentiate between two different controllers, default "
"'deployment'. Only relevant when --image is specified, ignored otherwise"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_pdb.go#L62
msgctxt ""
"The minimum number or percentage of available pods this budget requires."
msgid ""
"The minimum number or percentage of available pods this budget requires."
msgstr ""
"The minimum number or percentage of available pods this budget requires."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/expose.go#L113
msgctxt "The name for the newly created object."
msgid "The name for the newly created object."
msgstr "The name for the newly created object."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/autoscale.go#L71
msgctxt ""
"The name for the newly created object. If not specified, the name of the "
"input resource will be used."
msgid ""
"The name for the newly created object. If not specified, the name of the "
"input resource will be used."
msgstr ""
"The name for the newly created object. If not specified, the name of the "
"input resource will be used."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/run.go#L113
msgctxt ""
"The name of the API generator to use, see http://kubernetes.io/docs/user-"
"guide/kubectl-conventions/#generators for a list."
msgid ""
"The name of the API generator to use, see http://kubernetes.io/docs/user-"
"guide/kubectl-conventions/#generators for a list."
msgstr ""
"The name of the API generator to use, see http://kubernetes.io/docs/user-"
"guide/kubectl-conventions/#generators for a list."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/autoscale.go#L66
msgctxt ""
"The name of the API generator to use. Currently there is only 1 generator."
msgid ""
"The name of the API generator to use. Currently there is only 1 generator."
msgstr ""
"The name of the API generator to use. Currently there is only 1 generator."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/expose.go#L98
msgctxt ""
"The name of the API generator to use. There are 2 generators: 'service/v1' "
"and 'service/v2'. The only difference between them is that service port in "
"v1 is named 'default', while it is left unnamed in v2. Default is 'service/"
"v2'."
msgid ""
"The name of the API generator to use. There are 2 generators: 'service/v1' "
"and 'service/v2'. The only difference between them is that service port in "
"v1 is named 'default', while it is left unnamed in v2. Default is 'service/"
"v2'."
msgstr ""
"The name of the API generator to use. There are 2 generators: 'service/v1' "
"and 'service/v2'. The only difference between them is that service port in "
"v1 is named 'default', while it is left unnamed in v2. Default is 'service/"
"v2'."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/run.go#L133
msgctxt ""
"The name of the generator to use for creating a service. Only used if --"
"expose is true"
msgid ""
"The name of the generator to use for creating a service. Only used if --"
"expose is true"
msgstr ""
"The name of the generator to use for creating a service. Only used if --"
"expose is true"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/expose.go#L99
msgctxt "The network protocol for the service to be created. Default is 'TCP'."
msgid "The network protocol for the service to be created. Default is 'TCP'."
msgstr "The network protocol for the service to be created. Default is 'TCP'."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/expose.go#L100
msgctxt ""
"The port that the service should serve on. Copied from the resource being "
"exposed, if unspecified"
msgid ""
"The port that the service should serve on. Copied from the resource being "
"exposed, if unspecified"
msgstr ""
"The port that the service should serve on. Copied from the resource being "
"exposed, if unspecified"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/run.go#L121
msgctxt ""
"The port that this container exposes. If --expose is true, this is also the "
"port used by the service that is created."
msgid ""
"The port that this container exposes. If --expose is true, this is also the "
"port used by the service that is created."
msgstr ""
"The port that this container exposes. If --expose is true, this is also the "
"port used by the service that is created."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/run.go#L131
msgctxt ""
"The resource requirement limits for this container. For example, 'cpu=200m,"
"memory=512Mi'. Note that server side components may assign limits depending "
"on the server configuration, such as limit ranges."
msgid ""
"The resource requirement limits for this container. For example, 'cpu=200m,"
"memory=512Mi'. Note that server side components may assign limits depending "
"on the server configuration, such as limit ranges."
msgstr ""
"The resource requirement limits for this container. For example, 'cpu=200m,"
"memory=512Mi'. Note that server side components may assign limits depending "
"on the server configuration, such as limit ranges."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/run.go#L130
msgctxt ""
"The resource requirement requests for this container. For example, "
"'cpu=100m,memory=256Mi'. Note that server side components may assign "
"requests depending on the server configuration, such as limit ranges."
msgid ""
"The resource requirement requests for this container. For example, "
"'cpu=100m,memory=256Mi'. Note that server side components may assign "
"requests depending on the server configuration, such as limit ranges."
msgstr ""
"The resource requirement requests for this container. For example, "
"'cpu=100m,memory=256Mi'. Note that server side components may assign "
"requests depending on the server configuration, such as limit ranges."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/run.go#L128
msgctxt ""
"The restart policy for this Pod. Legal values [Always, OnFailure, Never]. "
"If set to 'Always' a deployment is created, if set to 'OnFailure' a job is "
"created, if set to 'Never', a regular pod is created. For the latter two --"
"replicas must be 1. Default 'Always', for CronJobs ` + "`" + `Never` + "`" + `."
msgid ""
"The restart policy for this Pod. Legal values [Always, OnFailure, Never]. "
"If set to 'Always' a deployment is created, if set to 'OnFailure' a job is "
"created, if set to 'Never', a regular pod is created. For the latter two --"
"replicas must be 1. Default 'Always', for CronJobs ` + "`" + `Never` + "`" + `."
msgstr ""
"The restart policy for this Pod. Legal values [Always, OnFailure, Never]. "
"If set to 'Always' a deployment is created, if set to 'OnFailure' a job is "
"created, if set to 'Never', a regular pod is created. For the latter two --"
"replicas must be 1. Default 'Always', for CronJobs ` + "`" + `Never` + "`" + `."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/create_secret.go#L87
msgctxt "The type of secret to create"
msgid "The type of secret to create"
msgstr "The type of secret to create"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/expose.go#L101
msgctxt ""
"Type for this service: ClusterIP, NodePort, or LoadBalancer. Default is "
"'ClusterIP'."
msgid ""
"Type for this service: ClusterIP, NodePort, or LoadBalancer. Default is "
"'ClusterIP'."
msgstr ""
"Type for this service: ClusterIP, NodePort, or LoadBalancer. Default is "
"'ClusterIP'."
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/rollout/rollout_undo.go#L71
msgctxt "Undo a previous rollout"
msgid "Undo a previous rollout"
msgstr "Undo a previous rollout"
# https://github.com/kubernetes/kubernetes/blob/master/pkg/kubectl/cmd/config/unset.go#L47