summaryrefslogtreecommitdiffstats
path: root/lib/debug.rb
blob: 77be345a076af5426220e1b5236eaf828294d76c (plain)
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
# Copyright (C) 2000  Network Applied Communication Laboratory, Inc.
# Copyright (C) 2000  Information-technology Promotion Agency, Japan
# Copyright (C) 2000-2003  NAKAMURA, Hiroshi  <nahi@ruby-lang.org>

require 'continuation'

if $SAFE > 0
  STDERR.print "-r debug.rb is not available in safe mode\n"
  exit 1
end

require 'tracer'
require 'pp'

class Tracer
  def Tracer.trace_func(*vars)
    Single.trace_func(*vars)
  end
end

SCRIPT_LINES__ = {} unless defined? SCRIPT_LINES__

class DEBUGGER__
MUTEX = Mutex.new

class Context
  DEBUG_LAST_CMD = []

  begin
    require 'readline'
    def readline(prompt, hist)
      Readline::readline(prompt, hist)
    end
  rescue LoadError
    def readline(prompt, hist)
      STDOUT.print prompt
      STDOUT.flush
      line = STDIN.gets
      exit unless line
      line.chomp!
      line
    end
    USE_READLINE = false
  end

  def initialize
    if Thread.current == Thread.main
      @stop_next = 1
    else
      @stop_next = 0
    end
    @last_file = nil
    @file = nil
    @line = nil
    @no_step = nil
    @frames = []
    @finish_pos = 0
    @trace = false
    @catch = "StandardError"
    @suspend_next = false
  end

  def stop_next(n=1)
    @stop_next = n
  end

  def set_suspend
    @suspend_next = true
  end

  def clear_suspend
    @suspend_next = false
  end

  def suspend_all
    DEBUGGER__.suspend
  end

  def resume_all
    DEBUGGER__.resume
  end

  def check_suspend
    while MUTEX.synchronize {
	if @suspend_next
	  DEBUGGER__.waiting.push Thread.current
	  @suspend_next = false
	  true
	end
      }
    end
  end

  def trace?
    @trace
  end

  def set_trace(arg)
    @trace = arg
  end

  def stdout
    DEBUGGER__.stdout
  end

  def break_points
    DEBUGGER__.break_points
  end

  def display
    DEBUGGER__.display
  end

  def context(th)
    DEBUGGER__.context(th)
  end

  def set_trace_all(arg)
    DEBUGGER__.set_trace(arg)
  end

  def set_last_thread(th)
    DEBUGGER__.set_last_thread(th)
  end

  def debug_eval(str, binding)
    begin
      val = eval(str, binding)
    rescue StandardError, ScriptError => e
      at = eval("caller(1)", binding)
      stdout.printf "%s:%s\n", at.shift, e.to_s.sub(/\(eval\):1:(in `.*?':)?/, '')
      for i in at
	stdout.printf "\tfrom %s\n", i
      end
      throw :debug_error
    end
  end

  def debug_silent_eval(str, binding)
    begin
      eval(str, binding)
    rescue StandardError, ScriptError
      nil
    end
  end

  def var_list(ary, binding)
    ary.sort!
    for v in ary
      stdout.printf "  %s => %s\n", v, eval(v, binding).inspect
    end
  end

  def debug_variable_info(input, binding)
    case input
    when /^\s*g(?:lobal)?\s*$/
      var_list(global_variables, binding)

    when /^\s*l(?:ocal)?\s*$/
      var_list(eval("local_variables", binding), binding)

    when /^\s*i(?:nstance)?\s+/
      obj = debug_eval($', binding)
      var_list(obj.instance_variables, obj.instance_eval{binding()})

    when /^\s*c(?:onst(?:ant)?)?\s+/
      obj = debug_eval($', binding)
      unless obj.kind_of? Module
	stdout.print "Should be Class/Module: ", $', "\n"
      else
	var_list(obj.constants, obj.module_eval{binding()})
      end
    end
  end

  def debug_method_info(input, binding)
    case input
    when /^i(:?nstance)?\s+/
      obj = debug_eval($', binding)

      len = 0
      for v in obj.methods.sort
	len += v.size + 1
	if len > 70
	  len = v.size + 1
	  stdout.print "\n"
	end
	stdout.print v, " "
      end
      stdout.print "\n"

    else
      obj = debug_eval(input, binding)
      unless obj.kind_of? Module
	stdout.print "Should be Class/Module: ", input, "\n"
      else
	len = 0
	for v in obj.instance_methods(false).sort
	  len += v.size + 1
	  if len > 70
	    len = v.size + 1
	    stdout.print "\n"
	  end
	  stdout.print v, " "
	end
	stdout.print "\n"
      end
    end
  end

  def thnum
    num = DEBUGGER__.instance_eval{@thread_list[Thread.current]}
    unless num
      DEBUGGER__.make_thread_list
      num = DEBUGGER__.instance_eval{@thread_list[Thread.current]}
    end
    num
  end

  def debug_command(file, line, id, binding)
    MUTEX.lock
    unless defined?($debugger_restart) and $debugger_restart
      callcc{|c| $debugger_restart = c} 
    end
    set_last_thread(Thread.current)
    frame_pos = 0
    binding_file = file
    binding_line = line
    previous_line = nil
    if ENV['EMACS']
      stdout.printf "\032\032%s:%d:\n", binding_file, binding_line
    else
      stdout.printf "%s:%d:%s", binding_file, binding_line,
	line_at(binding_file, binding_line)
    end
    @frames[0] = [binding, file, line, id]
    display_expressions(binding)
    prompt = true
    while prompt and input = readline("(rdb:%d) "%thnum(), true)
      catch(:debug_error) do
	if input == ""
          next unless DEBUG_LAST_CMD[0]
	  input = DEBUG_LAST_CMD[0]
	  stdout.print input, "\n"
	else
	  DEBUG_LAST_CMD[0] = input
	end

	case input
	when /^\s*tr(?:ace)?(?:\s+(on|off))?(?:\s+(all))?$/
          if defined?( $2 )
            if $1 == 'on'
              set_trace_all true
            else
              set_trace_all false
            end
          elsif defined?( $1 )
            if $1 == 'on'
              set_trace true
            else
              set_trace false
            end
          end
          if trace?
            stdout.print "Trace on.\n"
          else
            stdout.print "Trace off.\n"
          end

	when /^\s*b(?:reak)?\s+(?:(.+):)?([^.:]+)$/
	  pos = $2
          if $1
            klass = debug_silent_eval($1, binding)
            file = $1
          end
	  if pos =~ /^\d+$/
	    pname = pos
	    pos = pos.to_i
	  else
	    pname = pos = pos.intern.id2name
	  end
	  break_points.push [true, 0, klass || file, pos]
	  stdout.printf "Set breakpoint %d at %s:%s\n", break_points.size, klass || file, pname

	when /^\s*b(?:reak)?\s+(.+)[#.]([^.:]+)$/
	  pos = $2.intern.id2name
	  klass = debug_eval($1, binding)
	  break_points.push [true, 0, klass, pos]
	  stdout.printf "Set breakpoint %d at %s.%s\n", break_points.size, klass, pos

	when /^\s*wat(?:ch)?\s+(.+)$/
	  exp = $1
	  break_points.push [true, 1, exp]
	  stdout.printf "Set watchpoint %d:%s\n", break_points.size, exp

	when /^\s*b(?:reak)?$/
	  if break_points.find{|b| b[1] == 0}
	    n = 1
	    stdout.print "Breakpoints:\n"
	    break_points.each do |b|
	      if b[0] and b[1] == 0
		stdout.printf "  %d %s:%s\n", n, b[2], b[3] 
	      end
	      n += 1
	    end
	  end
	  if break_points.find{|b| b[1] == 1}
	    n = 1
	    stdout.print "\n"
	    stdout.print "Watchpoints:\n"
	    for b in break_points
	      if b[0] and b[1] == 1
		stdout.printf "  %d %s\n", n, b[2]
	      end
	      n += 1
	    end
	  end
	  if break_points.size == 0
	    stdout.print "No breakpoints\n"
	  else
	    stdout.print "\n"
	  end

	when /^\s*del(?:ete)?(?:\s+(\d+))?$/
	  pos = $1
	  unless pos
	    input = readline("Clear all breakpoints? (y/n) ", false)
	    if input == "y"
	      for b in break_points
		b[0] = false
	      end
	    end
	  else
	    pos = pos.to_i
	    if break_points[pos-1]
	      break_points[pos-1][0] = false
	    else
	      stdout.printf "Breakpoint %d is not defined\n", pos
	    end
	  end

	when /^\s*disp(?:lay)?\s+(.+)$/
	  exp = $1
	  display.push [true, exp]
	  stdout.printf "%d: ", display.size
	  display_expression(exp, binding)

	when /^\s*disp(?:lay)?$/
	  display_expressions(binding)

	when /^\s*undisp(?:lay)?(?:\s+(\d+))?$/
	  pos = $1
	  unless pos
	    input = readline("Clear all expressions? (y/n) ", false)
	    if input == "y"
	      for d in display
		d[0] = false
	      end
	    end
	  else
	    pos = pos.to_i
	    if display[pos-1]
	      display[pos-1][0] = false
	    else
	      stdout.printf "Display expression %d is not defined\n", pos
	    end
	  end

	when /^\s*c(?:ont)?$/
	  prompt = false

	when /^\s*s(?:tep)?(?:\s+(\d+))?$/
	  if $1
	    lev = $1.to_i
	  else
	    lev = 1
	  end
	  @stop_next = lev
	  prompt = false

	when /^\s*n(?:ext)?(?:\s+(\d+))?$/
	  if $1
	    lev = $1.to_i
	  else
	    lev = 1
	  end
	  @stop_next = lev
	  @no_step = @frames.size - frame_pos
	  prompt = false

	when /^\s*w(?:here)?$/, /^\s*f(?:rame)?$/
	  display_frames(frame_pos)

	when /^\s*l(?:ist)?(?:\s+(.+))?$/
	  if not $1
	    b = previous_line ? previous_line + 10 : binding_line - 5
	    e = b + 9
	  elsif $1 == '-'
	    b = previous_line ? previous_line - 10 : binding_line - 5
	    e = b + 9
	  else
	    b, e = $1.split(/[-,]/)
	    if e
	      b = b.to_i
	      e = e.to_i
	    else
	      b = b.to_i - 5
	      e = b + 9
	    end
	  end
	  previous_line = b
	  display_list(b, e, binding_file, binding_line)

	when /^\s*up(?:\s+(\d+))?$/
	  previous_line = nil
	  if $1
	    lev = $1.to_i
	  else
	    lev = 1
	  end
	  frame_pos += lev
	  if frame_pos >= @frames.size
	    frame_pos = @frames.size - 1
	    stdout.print "At toplevel\n"
	  end
	  binding, binding_file, binding_line = @frames[frame_pos]
	  stdout.print format_frame(frame_pos)

	when /^\s*down(?:\s+(\d+))?$/
	  previous_line = nil
	  if $1
	    lev = $1.to_i
	  else
	    lev = 1
	  end
	  frame_pos -= lev
	  if frame_pos < 0
	    frame_pos = 0
	    stdout.print "At stack bottom\n"
	  end
	  binding, binding_file, binding_line = @frames[frame_pos]
	  stdout.print format_frame(frame_pos)

	when /^\s*fin(?:ish)?$/
	  if frame_pos == @frames.size
	    stdout.print "\"finish\" not meaningful in the outermost frame.\n"
	  else
	    @finish_pos = @frames.size - frame_pos
	    frame_pos = 0
	    prompt = false
	  end

	when /^\s*cat(?:ch)?(?:\s+(.+))?$/
	  if $1
	    excn = $1
	    if excn == 'off'
	      @catch = nil
	      stdout.print "Clear catchpoint.\n"
	    else
	      @catch = excn
	      stdout.printf "Set catchpoint %s.\n", @catch
	    end
	  else
	    if @catch
	      stdout.printf "Catchpoint %s.\n", @catch
	    else
	      stdout.print "No catchpoint.\n"
	    end
	  end

	when /^\s*q(?:uit)?$/
	  input = readline("Really quit? (y/n) ", false)
	  if input == "y"
	    exit!	# exit -> exit!: No graceful way to stop threads...
	  end

	when /^\s*v(?:ar)?\s+/
	  debug_variable_info($', binding)

	when /^\s*m(?:ethod)?\s+/
	  debug_method_info($', binding)

	when /^\s*th(?:read)?\s+/
	  if DEBUGGER__.debug_thread_info($', binding) == :cont
	    prompt = false
	  end

	when /^\s*pp\s+/
	  PP.pp(debug_eval($', binding), stdout)

	when /^\s*p\s+/
	  stdout.printf "%s\n", debug_eval($', binding).inspect

	when /^\s*r(?:estart)?$/
          $debugger_restart.call

	when /^\s*h(?:elp)?$/
	  debug_print_help()

	else
	  v = debug_eval(input, binding)
	  stdout.printf "%s\n", v.inspect
	end
      end
    end
    MUTEX.unlock
    resume_all
  end

  def debug_print_help
    stdout.print <<EOHELP
Debugger help v.-0.002b
Commands
  b[reak] [file:|class:]<line|method>
  b[reak] [class.]<line|method>
                             set breakpoint to some position
  wat[ch] <expression>       set watchpoint to some expression
  cat[ch] (<exception>|off)  set catchpoint to an exception
  b[reak]                    list breakpoints
  cat[ch]                    show catchpoint
  del[ete][ nnn]             delete some or all breakpoints
  disp[lay] <expression>     add expression into display expression list
  undisp[lay][ nnn]          delete one particular or all display expressions
  c[ont]                     run until program ends or hit breakpoint
  s[tep][ nnn]               step (into methods) one line or till line nnn
  n[ext][ nnn]               go over one line or till line nnn
  w[here]                    display frames
  f[rame]                    alias for where
  l[ist][ (-|nn-mm)]         list program, - lists backwards
                             nn-mm lists given lines
  up[ nn]                    move to higher frame
  down[ nn]                  move to lower frame
  fin[ish]                   return to outer frame
  tr[ace] (on|off)           set trace mode of current thread
  tr[ace] (on|off) all       set trace mode of all threads
  q[uit]                     exit from debugger
  v[ar] g[lobal]             show global variables
  v[ar] l[ocal]              show local variables
  v[ar] i[nstance] <object>  show instance variables of object
  v[ar] c[onst] <object>     show constants of object
  m[ethod] i[nstance] <obj>  show methods of object
  m[ethod] <class|module>    show instance methods of class or module
  th[read] l[ist]            list all threads
  th[read] c[ur[rent]]       show current thread
  th[read] [sw[itch]] <nnn>  switch thread context to nnn
  th[read] stop <nnn>        stop thread nnn
  th[read] resume <nnn>      resume thread nnn
  p expression               evaluate expression and print its value
  h[elp]                     print this help
  <everything else>          evaluate
EOHELP
  end

  def display_expressions(binding)
    n = 1
    for d in display
      if d[0]
	stdout.printf "%d: ", n
	display_expression(d[1], binding)
      end
      n += 1
    end
  end

  def display_expression(exp, binding)
    stdout.printf "%s = %s\n", exp, debug_silent_eval(exp, binding).to_s
  end

  def frame_set_pos(file, line)
    if @frames[0]
      @frames[0][1] = file
      @frames[0][2] = line
    end
  end

  def display_frames(pos)
    0.upto(@frames.size - 1) do |n|
      if n == pos
	stdout.print "--> "
      else
	stdout.print "    "
      end
      stdout.print format_frame(n)
    end
  end

  def format_frame(pos)
    bind, file, line, id = @frames[pos]
    sprintf "#%d %s:%s%s\n", pos + 1, file, line,
      (id ? ":in `#{id.id2name}'" : "")
  end

  def display_list(b, e, file, line)
    stdout.printf "[%d, %d] in %s\n", b, e, file
    if lines = SCRIPT_LINES__[file] and lines != true
      b.upto(e) do |n|
	if n > 0 && lines[n-1]
	  if n == line
	    stdout.printf "=> %d  %s\n", n, lines[n-1].chomp
	  else
	    stdout.printf "   %d  %s\n", n, lines[n-1].chomp
	  end
	end
      end
    else
      stdout.printf "No sourcefile available for %s\n", file
    end
  end

  def line_at(file, line)
    lines = SCRIPT_LINES__[file]
    if lines
      return "\n" if lines == true
      line = lines[line-1]
      return "\n" unless line
      return line
    end
    return "\n"
  end

  def debug_funcname(id)
    if id.nil?
      "toplevel"
    else
      id.id2name
    end
  end

  def check_break_points(file, klass, pos, binding, id)
    return false if break_points.empty?
    n = 1
    for b in break_points
      if b[0]		# valid
	if b[1] == 0	# breakpoint
	  if (b[2] == file and b[3] == pos) or
	      (klass and b[2] == klass and b[3] == pos)
	    stdout.printf "Breakpoint %d, %s at %s:%s\n", n, debug_funcname(id), file, pos
	    return true
	  end
	elsif b[1] == 1	# watchpoint
	  if debug_silent_eval(b[2], binding)
	    stdout.printf "Watchpoint %d, %s at %s:%s\n", n, debug_funcname(id), file, pos
	    return true
	  end
	end
      end
      n += 1
    end
    return false
  end

  def excn_handle(file, line, id, binding)
    if $!.class <= SystemExit
      set_trace_func nil
      exit
    end

    if @catch and ($!.class.ancestors.find { |e| e.to_s == @catch })
      stdout.printf "%s:%d: `%s' (%s)\n", file, line, $!, $!.class
      fs = @frames.size
      tb = caller(0)[-fs..-1]
      if tb
	for i in tb
	  stdout.printf "\tfrom %s\n", i
	end
      end
      suspend_all
      debug_command(file, line, id, binding)
    end
  end

  def trace_func(event, file, line, id, binding, klass)
    Tracer.trace_func(event, file, line, id, binding, klass) if trace?
    context(Thread.current).check_suspend
    @file = file
    @line = line
    case event
    when 'line'
      frame_set_pos(file, line)
      if !@no_step or @frames.size == @no_step
	@stop_next -= 1
	@stop_next = -1 if @stop_next < 0
      elsif @frames.size < @no_step
	@stop_next = 0		# break here before leaving...
      else
	# nothing to do. skipped.
      end
      if @stop_next == 0 or check_break_points(file, nil, line, binding, id)
	@no_step = nil
	suspend_all
	debug_command(file, line, id, binding)
      end

    when 'call'
      @frames.unshift [binding, file, line, id]
      if check_break_points(file, klass, id.id2name, binding, id)
	suspend_all
	debug_command(file, line, id, binding)
      end

    when 'c-call'
      frame_set_pos(file, line)

    when 'class'
      @frames.unshift [binding, file, line, id]

    when 'return', 'end'
      if @frames.size == @finish_pos
	@stop_next = 1
	@finish_pos = 0
      end
      @frames.shift

    when 'raise' 
      excn_handle(file, line, id, binding)

    end
    @last_file = file
  end
end

trap("INT") { DEBUGGER__.interrupt }
@last_thread = Thread::main
@max_thread = 1
@thread_list = {Thread::main => 1}
@break_points = []
@display = []
@waiting = []
@stdout = STDOUT

class << DEBUGGER__
  def stdout
    @stdout
  end

  def stdout=(s)
    @stdout = s
  end

  def display
    @display
  end

  def break_points
    @break_points
  end

  def waiting
    @waiting
  end

  def set_trace( arg )
    MUTEX.synchronize do
      make_thread_list
      for th, in @thread_list
	context(th).set_trace arg
      end
    end
    arg
  end

  def set_last_thread(th)
    @last_thread = th
  end

  def suspend
    MUTEX.synchronize do
      make_thread_list
      for th, in @thread_list
	next if th == Thread.current
	context(th).set_suspend
      end
    end
    # Schedule other threads to suspend as soon as possible.
    Thread.pass
  end

  def resume
    MUTEX.synchronize do
      make_thread_list
      @thread_list.each do |th,|
	next if th == Thread.current
	context(th).clear_suspend
      end
      waiting.each do |th|
	th.run
      end
      waiting.clear
    end
    # Schedule other threads to restart as soon as possible.
    Thread.pass
  end

  def context(thread=Thread.current)
    c = thread[:__debugger_data__]
    unless c
      thread[:__debugger_data__] = c = Context.new
    end
    c
  end

  def interrupt
    context(@last_thread).stop_next
  end

  def get_thread(num)
    th = @thread_list.key(num)
    unless th
      @stdout.print "No thread ##{num}\n"
      throw :debug_error
    end
    th
  end

  def thread_list(num)
    th = get_thread(num)
    if th == Thread.current
      @stdout.print "+"
    else
      @stdout.print " "
    end
    @stdout.printf "%d ", num
    @stdout.print th.inspect, "\t"
    file = context(th).instance_eval{@file}
    if file
      @stdout.print file,":",context(th).instance_eval{@line}
    end
    @stdout.print "\n"
  end

  def thread_list_all
    for th in @thread_list.values.sort
      thread_list(th)
    end
  end

  def make_thread_list
    hash = {}
    for th in Thread::list
      if @thread_list.key? th
	hash[th] = @thread_list[th]
      else
	@max_thread += 1
	hash[th] = @max_thread
      end
    end
    @thread_list = hash
  end

  def debug_thread_info(input, binding)
    case input
    when /^l(?:ist)?/
      make_thread_list
      thread_list_all

    when /^c(?:ur(?:rent)?)?$/
      make_thread_list
      thread_list(@thread_list[Thread.current])

    when /^(?:sw(?:itch)?\s+)?(\d+)/
      make_thread_list
      th = get_thread($1.to_i)
      if th == Thread.current
	@stdout.print "It's the current thread.\n"
      else
	thread_list(@thread_list[th])
	context(th).stop_next
	th.run
	return :cont
      end

    when /^stop\s+(\d+)/
      make_thread_list
      th = get_thread($1.to_i)
      if th == Thread.current
	@stdout.print "It's the current thread.\n"
      elsif th.stop?
	@stdout.print "Already stopped.\n"
      else
	thread_list(@thread_list[th])
	context(th).suspend 
      end

    when /^resume\s+(\d+)/
      make_thread_list
      th = get_thread($1.to_i)
      if th == Thread.current
	@stdout.print "It's the current thread.\n"
      elsif !th.stop?
	@stdout.print "Already running."
      else
	thread_list(@thread_list[th])
	th.run
      end
    end
  end
end

stdout.printf "Debug.rb\n"
stdout.printf "Emacs support available.\n\n"
set_trace_func proc { |event, file, line, id, binding, klass, *rest|
  DEBUGGER__.context.trace_func event, file, line, id, binding, klass
}
RubyVM::InstructionSequence.compile_option = {
  trace_instruction: true
}
end
id='n3198' href='#n3198'>3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Red Hat
# This file is distributed under the same license as the PACKAGE package.
# 
msgid ""
msgstr ""
"Project-Id-Version: FreeIPA\n"
"Report-Msgid-Bugs-To: https://bugzilla.redhat.com/enter_bug.cgi?product=freeIPA\n"
"POT-Creation-Date: 2011-06-06 13:27-0400\n"
"PO-Revision-Date: 2011-07-27 00:01+0000\n"
"Last-Translator: jdennis <jdennis@redhat.com>\n"
"Language-Team: Persian (http://www.transifex.net/projects/p/fedora/team/fa/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: fa\n"
"Plural-Forms: nplurals=1; plural=0\n"

#: ipalib/plugins/__init__.py:20
msgid ""
"\n"
"Sub-package containing all core plugins.\n"
msgstr ""

#: ipalib/plugins/aci.py:20
msgid ""
"\n"
"Directory Server Access Control Instructions (ACIs)\n"
"\n"
"ACIs are used to allow or deny access to information. This module is\n"
"currently designed to allow, not deny, access.\n"
"\n"
"The aci commands are designed to grant permissions that allow updating\n"
"existing entries or adding or deleting new ones. The goal of the ACIs\n"
"that ship with IPA is to provide a set of low-level permissions that\n"
"grant access to special groups called taskgroups. These low-level\n"
"permissions can be combined into roles that grant broader access. These\n"
"roles are another type of group, roles.\n"
"\n"
"For example, if you have taskgroups that allow adding and modifying users you\n"
"could create a role, useradmin. You would assign users to the useradmin\n"
"role to allow them to do the operations defined by the taskgroups.\n"
"\n"
"You can create ACIs that delegate permission so users in group A can write\n"
"attributes on group B.\n"
"\n"
"The type option is a map that applies to all entries in the users, groups or\n"
"host location. It is primarily designed to be used when granting add\n"
"permissions (to write new entries).\n"
"\n"
"An ACI consists of three parts:\n"
"1. target\n"
"2. permissions\n"
"3. bind rules\n"
"\n"
"The target is a set of rules that define which LDAP objects are being\n"
"targeted. This can include a list of attributes, an area of that LDAP\n"
"tree or an LDAP filter.\n"
"\n"
"The targets include:\n"
"- attrs: list of attributes affected\n"
"- type: an object type (user, group, host, service, etc)\n"
"- memberof: members of a group\n"
"- targetgroup: grant access to modify a specific group. This is primarily\n"
"  designed to enable users to add or remove members of a specific group.\n"
"- filter: A legal LDAP filter used to narrow the scope of the target.\n"
"- subtree: Used to apply a rule across an entire set of objects. For example,\n"
"  to allow adding users you need to grant \"add\" permission to the subtree\n"
"  ldap://uid=*,cn=users,cn=accounts,dc=example,dc=com. The subtree option\n"
"  is a fail-safe for objects that may not be covered by the type option.\n"
"\n"
"The permissions define what the the ACI is allowed to do, and are one or\n"
"more of:\n"
"1. write - write one or more attributes\n"
"2. read - read one or more attributes\n"
"3. add - add a new entry to the tree\n"
"4. delete - delete an existing entry\n"
"5. all - all permissions are granted\n"
"\n"
"Note the distinction between attributes and entries. The permissions are\n"
"independent, so being able to add a user does not mean that the user will\n"
"be editable.\n"
"\n"
"The bind rule defines who this ACI grants permissions to. The LDAP server\n"
"allows this to be any valid LDAP entry but we encourage the use of\n"
"taskgroups so that the rights can be easily shared through roles.\n"
"\n"
"For a more thorough description of access controls see\n"
"http://www.redhat.com/docs/manuals/dir-server/ag/8.0/Managing_Access_Control.html\n"
"\n"
"EXAMPLES:\n"
"\n"
"NOTE: ACIs are now added via the permission plugin. These examples are to\n"
"demonstrate how the various options work but this is done via the permission\n"
"command-line now (see last example).\n"
"\n"
" Add an ACI so that the group \"secretaries\" can update the address on any user:\n"
"   ipa group-add --desc=\"Office secretaries\" secretaries\n"
"   ipa aci-add --attrs=streetAddress --memberof=ipausers --group=secretaries --permissions=write --prefix=none \"Secretaries write addresses\"\n"
"\n"
" Show the new ACI:\n"
"   ipa aci-show --prefix=none \"Secretaries write addresses\"\n"
"\n"
" Add an ACI that allows members of the \"addusers\" permission to add new users:\n"
"   ipa aci-add --type=user --permission=addusers --permissions=add --prefix=none \"Add new users\"\n"
"\n"
" Add an ACI that allows members of the editors manage members of the admins group:\n"
"   ipa aci-add --permissions=write --attrs=member --targetgroup=admins --group=editors --prefix=none \"Editors manage admins\"\n"
"\n"
" Add an ACI that allows members of the admin group to manage the street and zip code of those in the editors group:\n"
"   ipa aci-add --permissions=write --memberof=editors --group=admins --attrs=street,postalcode --prefix=none \"admins edit the address of editors\"\n"
"\n"
" Add an ACI that allows the admins group manage the street and zipcode of those who work for the boss:\n"
"   ipa aci-add --permissions=write --group=admins --attrs=street,postalcode --filter=\"(manager=uid=boss,cn=users,cn=accounts,dc=example,dc=com)\" --prefix=none \"Edit the address of those who work for the boss\"\n"
"\n"
" Add an entirely new kind of record to IPA that isn't covered by any of the --type options, creating a permission:\n"
"   ipa permission-add  --permissions=add --subtree=\"cn=*,cn=orange,cn=accounts,dc=example,dc=com\" --desc=\"Add Orange Entries\" add_orange\n"
"\n"
"\n"
"The show command shows the raw 389-ds ACI.\n"
"\n"
"IMPORTANT: When modifying the target attributes of an existing ACI you\n"
"must include all existing attributes as well. When doing an aci-mod the\n"
"targetattr REPLACES the current attributes, it does not add to them.\n"
"\n"
msgstr ""

#: ipalib/plugins/aci.py:153
msgid "A list of ACI values"
msgstr ""

#: ipalib/plugins/aci.py:172
msgid ""
"\n"
"    Given a name and a prefix construct an ACI name.\n"
"    "
msgstr ""

#: ipalib/plugins/aci.py:181
msgid ""
"\n"
"    Parse the raw ACI name and return a tuple containing the ACI prefix\n"
"    and the actual ACI name.\n"
"    "
msgstr ""

#: ipalib/plugins/aci.py:193
msgid ""
"\n"
"    Pull the group name out of a memberOf filter\n"
"    "
msgstr ""

#: ipalib/plugins/aci.py:204
msgid ""
"\n"
"    Given a name and a set of keywords construct an ACI.\n"
"    "
msgstr ""

#: ipalib/plugins/aci.py:215
msgid "type, filter, subtree and targetgroup are mutually exclusive"
msgstr ""

#: ipalib/plugins/aci.py:218
msgid "ACI prefix is required"
msgstr ""

#: ipalib/plugins/aci.py:221
msgid ""
"at least one of: type, filter, subtree, targetgroup, attrs or memberof are "
"required"
msgstr ""

#: ipalib/plugins/aci.py:224
msgid "filter and memberof are mutually exclusive"
msgstr ""

#: ipalib/plugins/aci.py:230
msgid "group, permission and self are mutually exclusive"
msgstr ""

#: ipalib/plugins/aci.py:232
msgid "One of group, permission or self is required"
msgstr ""

#: ipalib/plugins/aci.py:251
msgid "Group '%s' does not exist"
msgstr ""

#: ipalib/plugins/aci.py:273
msgid "empty filter"
msgstr ""

#: ipalib/plugins/aci.py:294
msgid "Syntax Error: %(error)s"
msgstr ""

#: ipalib/plugins/aci.py:299
msgid ""
"Convert an ACI into its equivalent keywords.\n"
"\n"
"       This is used for the modify operation so we can merge the\n"
"       incoming kw and existing ACI and pass the result to\n"
"       _make_aci().\n"
"    "
msgstr ""

#: ipalib/plugins/aci.py:379
msgid "ACI with name \"%s\" not found"
msgstr ""

#: ipalib/plugins/aci.py:400
msgid "ACI prefix"
msgstr ""

#: ipalib/plugins/aci.py:401
msgid ""
"Prefix used to distinguish ACI types (permission, delegation, selfservice, "
"none)"
msgstr ""

#: ipalib/plugins/aci.py:407
msgid ""
"\n"
"    ACI object.\n"
"    "
msgstr ""

#: ipalib/plugins/aci.py:412
msgid "ACIs"
msgstr ""

#: ipalib/plugins/aci.py:417
msgid "ACI name"
msgstr ""

#: ipalib/plugins/aci.py:422
msgid "Permission"
msgstr ""

#: ipalib/plugins/aci.py:423
msgid "Permission ACI grants access to"
msgstr ""

#: ipalib/plugins/aci.py:427 ipalib/plugins/delegation.py:130
msgid "User group"
msgstr ""

#: ipalib/plugins/aci.py:428 ipalib/plugins/delegation.py:131
msgid "User group ACI grants access to"
msgstr ""

#: ipalib/plugins/aci.py:432 ipalib/plugins/baseldap.py:60
#: ipalib/plugins/delegation.py:113 ipalib/plugins/permission.py:107
#: ipalib/plugins/permission.py:118 ipalib/plugins/selfservice.py:86
msgid "Permissions"
msgstr ""

#: ipalib/plugins/aci.py:433
msgid ""
"comma-separated list of permissions to grant(read, write, add, delete, all)"
msgstr ""

#: ipalib/plugins/aci.py:439 ipalib/plugins/delegation.py:119
#: ipalib/plugins/permission.py:124 ipalib/plugins/selfservice.py:92
msgid "Attributes"
msgstr ""

#: ipalib/plugins/aci.py:440 ipalib/plugins/delegation.py:120
#: ipalib/plugins/permission.py:125 ipalib/plugins/selfservice.py:93
msgid "Comma-separated list of attributes"
msgstr ""

#: ipalib/plugins/aci.py:444 ipalib/plugins/internal.py:164
#: ipalib/plugins/permission.py:131
msgid "Type"
msgstr ""

#: ipalib/plugins/aci.py:445
msgid "type of IPA object (user, group, host, hostgroup, service, netgroup)"
msgstr ""

#: ipalib/plugins/aci.py:450
msgid "Member of"
msgstr ""

#: ipalib/plugins/aci.py:451
msgid "Member of a group"
msgstr ""

#: ipalib/plugins/aci.py:455 ipalib/plugins/internal.py:234
#: ipalib/plugins/permission.py:144
msgid "Filter"
msgstr ""

#: ipalib/plugins/aci.py:456 ipalib/plugins/permission.py:145
msgid "Legal LDAP filter (e.g. ou=Engineering)"
msgstr ""

#: ipalib/plugins/aci.py:460 ipalib/plugins/permission.py:150
msgid "Subtree"
msgstr ""

#: ipalib/plugins/aci.py:461
msgid "Subtree to apply ACI to"
msgstr ""

#: ipalib/plugins/aci.py:465 ipalib/plugins/permission.py:156
msgid "Target group"
msgstr ""

#: ipalib/plugins/aci.py:466
msgid "Group to apply ACI to"
msgstr ""

#: ipalib/plugins/aci.py:470
msgid "Target your own entry (self)"
msgstr ""

#: ipalib/plugins/aci.py:471
msgid "Apply ACI to your own entry (self)"
msgstr ""

#: ipalib/plugins/aci.py:478
msgid ""
"\n"
"    Create new ACI.\n"
"    "
msgstr ""

#: ipalib/plugins/aci.py:482
msgid "Created ACI \"%(value)s\""
msgstr ""

#: ipalib/plugins/aci.py:487
msgid "Test the ACI syntax but don't write anything"
msgstr ""

#: ipalib/plugins/aci.py:493
msgid ""
"\n"
"        Execute the aci-create operation.\n"
"\n"
"        Returns the entry as it will be created in LDAP.\n"
"\n"
"        :param aciname: The name of the ACI being added.\n"
"        :param kw: Keyword arguments for the other LDAP attributes.\n"
"        "
msgstr ""

#: ipalib/plugins/aci.py:533
msgid ""
"\n"
"    Delete ACI.\n"
"    "
msgstr ""

#: ipalib/plugins/aci.py:538
msgid "Deleted ACI \"%(value)s\""
msgstr ""

#: ipalib/plugins/aci.py:543
msgid ""
"\n"
"        Execute the aci-delete operation.\n"
"\n"
"        :param aciname: The name of the ACI being added.\n"
"        :param kw: unused\n"
"        "
msgstr ""

#: ipalib/plugins/aci.py:576
msgid ""
"\n"
"    Modify ACI.\n"
"    "
msgstr ""

#: ipalib/plugins/aci.py:582 ipalib/plugins/aci.py:830
#: ipalib/plugins/aci.py:871 ipalib/plugins/delegation.py:255
#: ipalib/plugins/selfservice.py:212
msgid "ACI"
msgstr ""

#: ipalib/plugins/aci.py:588
msgid "Modified ACI \"%(value)s\""
msgstr ""

#: ipalib/plugins/aci.py:633
msgid ""
"\n"
"    Search for ACIs.\n"
"\n"
"    Returns a list of ACIs\n"
"\n"
"    EXAMPLES:\n"
"\n"
"     To find all ACIs that apply directly to members of the group ipausers:\n"
"       ipa aci-find --memberof=ipausers\n"
"\n"
"     To find all ACIs that grant add access:\n"
"       ipa aci-find --permissions=add\n"
"\n"
"    Note that the find command only looks for the given text in the set of\n"
"    ACIs, it does not evaluate the ACIs to see if something would apply.\n"
"    For example, searching on memberof=ipausers will find all ACIs that\n"
"    have ipausers as a memberof. There may be other ACIs that apply to\n"
"    members of that group indirectly.\n"
"    "
msgstr ""

#: ipalib/plugins/aci.py:653
msgid "%(count)d ACI matched"
msgid_plural "%(count)d ACIs matched"
msgstr[0] ""

#: ipalib/plugins/aci.py:823
msgid ""
"\n"
"    Display a single ACI given an ACI name.\n"
"    "
msgstr ""

#: ipalib/plugins/aci.py:837
msgid ""
"\n"
"        Execute the aci-show operation.\n"
"\n"
"        Returns the entry\n"
"\n"
"        :param uid: The login name of the user to retrieve.\n"
"        :param kw: unused\n"
"        "
msgstr ""

#: ipalib/plugins/aci.py:865
msgid ""
"\n"
"    Rename an ACI.\n"
"    "
msgstr ""

#: ipalib/plugins/aci.py:878
msgid "New ACI name"
msgstr ""

#: ipalib/plugins/aci.py:882
msgid "Renamed ACI to \"%(value)s\""
msgstr ""

#: ipalib/plugins/automount.py:20
msgid ""
"\n"
"Automount\n"
"\n"
"Stores automount(8) configuration for autofs(8) in IPA.\n"
"\n"
"The base of an automount configuration is the configuration file auto.master.\n"
"This is also the base location in IPA. Multiple auto.master configurations\n"
"can be stored in separate locations. A location is implementation-specific\n"
"with the default being a location named 'default'. For example, you can have\n"
"locations by geographic region, by floor, by type, etc.\n"
"\n"
"Automount has three basic object types: locations, maps and keys.\n"
"\n"
"A location defines a set of maps anchored in auto.master. This allows you\n"
"to store multiple automount configurations. A location in itself isn't\n"
"very interesting, it is just a point to start a new automount map.\n"
"\n"
"A map is roughly equivalent to a discrete automount file and provides\n"
"storage for keys.\n"
"\n"
"A key is a mount point associated with a map.\n"
"\n"
"When a new location is created, two maps are automatically created for\n"
"it: auto.master and auto.direct. auto.master is the root map for all\n"
"automount maps for the location. auto.direct is the default map for\n"
"direct mounts and is mounted on /-.\n"
"\n"
"EXAMPLES:\n"
"\n"
"Locations:\n"
"\n"
"  Create a named location, \"Baltimore\":\n"
"    ipa automountlocation-add baltimore\n"
"\n"
"  Display the new location:\n"
"    ipa automountlocation-show baltimore\n"
"\n"
"  Find available locations:\n"
"    ipa automountlocation-find\n"
"\n"
"  Remove a named automount location:\n"
"    ipa automountlocation-del baltimore\n"
"\n"
"  Show what the automount maps would look like if they were in the filesystem:\n"
"    ipa automountlocation-tofiles baltimore\n"
"\n"
"  Import an existing configuration into a location:\n"
"    ipa automountlocation-import baltimore /etc/auto.master\n"
"\n"
"    The import will fail if any duplicate entries are found. For\n"
"    continuous operation where errors are ignored, use the --continue\n"
"    option.\n"
"\n"
"Maps:\n"
"\n"
"  Create a new map, \"auto.share\":\n"
"    ipa automountmap-add baltimore auto.share\n"
"\n"
"  Display the new map:\n"
"    ipa automountmap-show baltimore auto.share\n"
"\n"
"  Find maps in the location baltimore:\n"
"    ipa automountmap-find baltimore\n"
"\n"
"  Remove the auto.share map:\n"
"    ipa automountmap-del baltimore auto.share\n"
"\n"
"Keys:\n"
"\n"
"  Create a new key for the auto.share map in location baltimore. This ties\n"
"  the map we previously created to auto.master:\n"
"    ipa automountkey-add baltimore auto.master --key=/share --info=auto.share\n"
"\n"
"  Create a new key for our auto.share map, an NFS mount for man pages:\n"
"    ipa automountkey-add baltimore auto.share --key=man --info=\"-ro,soft,rsize=8192,wsize=8192 ipa.example.com:/shared/man\"\n"
"\n"
"  Find all keys for the auto.share map:\n"
"    ipa automountkey-find baltimore auto.share\n"
"\n"
"  Find all direct automount keys:\n"
"    ipa automountkey-find baltimore --key=/-\n"
"\n"
"  Remove the man key from the auto.share map:\n"
"    ipa automountkey-del baltimore auto.share --key=man\n"
msgstr ""

#: ipalib/plugins/automount.py:182
msgid ""
"\n"
"    Location container for automount maps.\n"
"    "
msgstr ""

#: ipalib/plugins/automount.py:190
msgid "Automount Locations"
msgstr ""

#: ipalib/plugins/automount.py:196 ipalib/plugins/host.py:247
msgid "Location"
msgstr ""

#: ipalib/plugins/automount.py:197
msgid "Automount location name."
msgstr ""

#: ipalib/plugins/automount.py:206
msgid ""
"\n"
"    Create a new automount location.\n"
"    "
msgstr ""

#: ipalib/plugins/automount.py:221
msgid ""
"\n"
"    Delete an automount location.\n"
"    "
msgstr ""

#: ipalib/plugins/automount.py:229
msgid ""
"\n"
"    Display an automount location.\n"
"    "
msgstr ""

#: ipalib/plugins/automount.py:237
msgid ""
"\n"
"    Search for an automount location.\n"
"    "
msgstr ""

#: ipalib/plugins/automount.py:245
msgid ""
"\n"
"    Generate automount files for a specific location.\n"
"    "
msgstr ""

#: ipalib/plugins/automount.py:308
msgid ""
"\n"
"    Import automount files for a specific location.\n"
"    "
msgstr ""

#: ipalib/plugins/automount.py:314
msgid "Master file"
msgstr ""

#: ipalib/plugins/automount.py:315
msgid "Automount master file."
msgstr ""

#: ipalib/plugins/automount.py:322
msgid ""
"Continuous operation mode. Errors are reported but the process continues."
msgstr ""

#: ipalib/plugins/automount.py:334
msgid "File %(file)s not found"
msgstr ""

#: ipalib/plugins/automount.py:341
msgid ""
"\n"
"        The basic idea is to read the master file and create all the maps\n"
"        we need, then read each map file and add all the keys for the map.\n"
"        "
msgstr ""

#: ipalib/plugins/automount.py:492
msgid ""
"\n"
"    Automount map object.\n"
"    "
msgstr ""

#: ipalib/plugins/automount.py:505
msgid "Map"
msgstr ""

#: ipalib/plugins/automount.py:506
msgid "Automount map name."
msgstr ""

#: ipalib/plugins/automount.py:511 ipalib/plugins/group.py:114
#: ipalib/plugins/hbacrule.py:171 ipalib/plugins/hbacsvc.py:73
#: ipalib/plugins/hbacsvcgroup.py:75 ipalib/plugins/host.py:237
#: ipalib/plugins/hostgroup.py:85 ipalib/plugins/netgroup.py:109
#: ipalib/plugins/privilege.py:76 ipalib/plugins/role.py:92
#: ipalib/plugins/sudocmd.py:74 ipalib/plugins/sudocmdgroup.py:76
#: ipalib/plugins/sudorule.py:78
msgid "Description"
msgstr ""

#: ipalib/plugins/automount.py:515
msgid "Automount Maps"
msgstr ""

#: ipalib/plugins/automount.py:521
msgid ""
"\n"
"    Create a new automount map.\n"
"    "
msgstr ""

#: ipalib/plugins/automount.py:529
msgid ""
"\n"
"    Delete an automount map.\n"
"    "
msgstr ""

#: ipalib/plugins/automount.py:548
msgid ""
"\n"
"    Modify an automount map.\n"
"    "
msgstr ""

#: ipalib/plugins/automount.py:556
msgid ""
"\n"
"    Search for an automount map.\n"
"    "
msgstr ""

#: ipalib/plugins/automount.py:564
msgid ""
"\n"
"    Display an automount map.\n"
"    "
msgstr ""

#: ipalib/plugins/automount.py:572
msgid ""
"\n"
"    Automount key object.\n"
"    "
msgstr ""

#: ipalib/plugins/automount.py:589 ipalib/plugins/automount.py:778
#: ipalib/plugins/automount.py:850
msgid "Key"
msgstr ""

#: ipalib/plugins/automount.py:590 ipalib/plugins/automount.py:779
#: ipalib/plugins/automount.py:851
msgid "Automount key name."
msgstr ""

#: ipalib/plugins/automount.py:594 ipalib/plugins/automount.py:783
#: ipalib/plugins/automount.py:855
msgid "Mount information"
msgstr ""

#: ipalib/plugins/automount.py:597
msgid "description"
msgstr ""

#: ipalib/plugins/automount.py:606
msgid "Automount Keys"
msgstr ""

#: ipalib/plugins/automount.py:607
msgid ""
"The key,info pair must be unique. A key named %(key)s with info %(info)s "
"already exists"
msgstr ""

#: ipalib/plugins/automount.py:608
msgid "key named %(key)s already exists"
msgstr ""

#: ipalib/plugins/automount.py:609
msgid "The automount key %(key)s with info %(info)s does not exist"
msgstr ""

#: ipalib/plugins/automount.py:659
msgid ""
"More than one entry with key %(key)s found, use --info to select specific "
"entry."
msgstr ""

#: ipalib/plugins/automount.py:717
msgid ""
"\n"
"    Create a new automount key.\n"
"    "
msgstr ""

#: ipalib/plugins/automount.py:742
msgid ""
"\n"
"    Create a new indirect mount point.\n"
"    "
msgstr ""

#: ipalib/plugins/automount.py:748
msgid "Mount point"
msgstr ""

#: ipalib/plugins/automount.py:752
msgid "Parent map"
msgstr ""

#: ipalib/plugins/automount.py:753
msgid "Name of parent automount map (default: auto.master)."
msgstr ""

#: ipalib/plugins/automount.py:772
msgid ""
"\n"
"    Delete an automount key.\n"
"    "
msgstr ""

#: ipalib/plugins/automount.py:803
msgid ""
"\n"
"    Modify an automount key.\n"
"    "
msgstr ""

#: ipalib/plugins/automount.py:809
msgid "New mount information"
msgstr ""

#: ipalib/plugins/automount.py:836
msgid ""
"\n"
"    Search for an automount key.\n"
"    "
msgstr ""

#: ipalib/plugins/automount.py:844
msgid ""
"\n"
"    Display an automount key.\n"
"    "
msgstr ""

#: ipalib/plugins/baseldap.py:19
msgid ""
"\n"
"Base classes for LDAP plugins.\n"
msgstr ""

#: ipalib/plugins/baseldap.py:39
msgid "Failed members"
msgstr ""

#: ipalib/plugins/baseldap.py:42
msgid "Member users"
msgstr ""

#: ipalib/plugins/baseldap.py:45
msgid "Member groups"
msgstr ""

#: ipalib/plugins/baseldap.py:48
msgid "Member of groups"
msgstr ""

#: ipalib/plugins/baseldap.py:51
msgid "Member hosts"
msgstr ""

#: ipalib/plugins/baseldap.py:54
msgid "Member host-groups"
msgstr ""

#: ipalib/plugins/baseldap.py:57
msgid "Member of host-groups"
msgstr ""

#: ipalib/plugins/baseldap.py:66
msgid "Roles"
msgstr ""

#: ipalib/plugins/baseldap.py:69 ipalib/plugins/sudocmdgroup.py:65
#: ipalib/plugins/sudocmdgroup.py:84 ipalib/plugins/sudorule.py:139
#: ipalib/plugins/sudorule.py:143
msgid "Sudo Command Groups"
msgstr ""

#: ipalib/plugins/baseldap.py:75
msgid "Granting privilege to roles"
msgstr ""

#: ipalib/plugins/baseldap.py:78
msgid "Member netgroups"
msgstr ""

#: ipalib/plugins/baseldap.py:81
msgid "Member of netgroups"
msgstr ""

#: ipalib/plugins/baseldap.py:84
msgid "Member services"
msgstr ""

#: ipalib/plugins/baseldap.py:87
msgid "Member service groups"
msgstr ""

#: ipalib/plugins/baseldap.py:93
msgid "Member HBAC service groups"
msgstr ""

#: ipalib/plugins/baseldap.py:102
msgid "Indirect Member users"
msgstr ""

#: ipalib/plugins/baseldap.py:105
msgid "Indirect Member groups"
msgstr ""

#: ipalib/plugins/baseldap.py:108
msgid "Indirect Member hosts"
msgstr ""

#: ipalib/plugins/baseldap.py:111
msgid "Indirect Member host-groups"
msgstr ""

#: ipalib/plugins/baseldap.py:114
msgid "Indirect Member of roles"
msgstr ""

#: ipalib/plugins/baseldap.py:117
msgid "Indirect Member permissions"
msgstr ""

#: ipalib/plugins/baseldap.py:120
msgid "Indirect Member HBAC service"
msgstr ""

#: ipalib/plugins/baseldap.py:123
msgid "Indirect Member HBAC service group"
msgstr ""

#: ipalib/plugins/baseldap.py:126
msgid "Indirect Member netgroups"
msgstr ""

#: ipalib/plugins/baseldap.py:141
msgid "External host"
msgstr ""

#: ipalib/plugins/baseldap.py:144
msgid "Failed hosts/hostgroups"
msgstr ""

#: ipalib/plugins/baseldap.py:147
msgid "Failed users/groups"
msgstr ""

#: ipalib/plugins/baseldap.py:150
msgid "Failed managedby"
msgstr ""

#: ipalib/plugins/baseldap.py:153
msgid "Failed to remove"
msgstr ""

#: ipalib/plugins/baseldap.py:171
msgid ""
"\n"
"    Given a list of values in the form name=value, return a list of name.\n"
"    "
msgstr ""

#: ipalib/plugins/baseldap.py:197
msgid ""
"\n"
"    When adding or removing reverse members we are faking an update to\n"
"    object A by updating the member attribute in object B. The memberof\n"
"    plugin makes this work by adding or removing the memberof attribute\n"
"    to/from object A, it just takes a little bit of time.\n"
"\n"
"    This will loop for 6+ seconds, retrieving object A so we can see\n"
"    if all the memberof attributes have been updated.\n"
"    "
msgstr ""

#: ipalib/plugins/baseldap.py:241
msgid ""
"\n"
"    Object representing a LDAP entry.\n"
"    "
msgstr ""

#: ipalib/plugins/baseldap.py:281
msgid "Entry"
msgstr ""

#: ipalib/plugins/baseldap.py:283
msgid "container entry (%(container)s) not found"
msgstr ""

#: ipalib/plugins/baseldap.py:284
msgid "%(parent)s: %(oname)s not found"
msgstr ""

#: ipalib/plugins/baseldap.py:285
msgid "%(pkey)s: %(oname)s not found"
msgstr ""

#: ipalib/plugins/baseldap.py:286
msgid "%(oname)s with name \"%(pkey)s\" already exists"
msgstr ""

#: ipalib/plugins/baseldap.py:415
msgid ""
"Add an attribute/value pair. Format is attr=value. The attribute must be "
"part of the schema."
msgstr ""

#: ipalib/plugins/baseldap.py:420
msgid ""
"Set an attribute to a name/value pair. Format is attr=value.\n"
"For multi-valued attributes, the command replaces the values already present."
msgstr ""

#: ipalib/plugins/baseldap.py:444
msgid ""
"\n"
"    If the set of objectclasses is limited enforce that only those\n"
"    are updated in entry_attrs (plus dn)\n"
"\n"
"    allow_only tells us what mode to check in:\n"
"\n"
"    If True then we enforce that the attributes must be in the list of\n"
"    allowed.\n"
"\n"
"    If False then those attributes are not allowed.\n"
"    "
msgstr ""

#: ipalib/plugins/baseldap.py:474
msgid ""
"\n"
"    Callback registration interface\n"
"    "
msgstr ""

#: ipalib/plugins/baseldap.py:561
msgid ""
"\n"
"    Create a new entry in LDAP.\n"
"    "
msgstr ""

#: ipalib/plugins/baseldap.py:703
msgid ""
"\n"
"    Base class for commands that need to retrieve an existing entry.\n"
"    "
msgstr ""

#: ipalib/plugins/baseldap.py:727
msgid ""
"\n"
"    Base class for commands that need to retrieve one or more existing entries.\n"
"    "
msgstr ""

#: ipalib/plugins/baseldap.py:733
msgid "Continuous mode: Don't stop on errors."
msgstr ""

#: ipalib/plugins/baseldap.py:750
msgid ""
"\n"
"    Retrieve an LDAP entry.\n"
"    "
msgstr ""

#: ipalib/plugins/baseldap.py:758 ipalib/plugins/baseldap.py:827
#: ipalib/plugins/internal.py:232
msgid "Rights"
msgstr ""

#: ipalib/plugins/baseldap.py:759 ipalib/plugins/baseldap.py:828
msgid ""
"Display the access rights of this entry (requires --all). See ipa man page "
"for details."
msgstr ""

#: ipalib/plugins/baseldap.py:821
msgid ""
"\n"
"    Update an LDAP entry.\n"
"    "
msgstr ""

#: ipalib/plugins/baseldap.py:837
msgid "Rename"
msgstr ""

#: ipalib/plugins/baseldap.py:838
msgid "Rename the %(ldap_obj_name)s object"
msgstr ""

#: ipalib/plugins/baseldap.py:957
msgid "the entry was deleted while being modified"
msgstr ""

#: ipalib/plugins/baseldap.py:988
msgid ""
"\n"
"    Delete an LDAP entry and all of its direct subentries.\n"
"    "
msgstr ""

#: ipalib/plugins/baseldap.py:1078
msgid ""
"\n"
"    Base class for member manipulation.\n"
"    "
msgstr ""

#: ipalib/plugins/baseldap.py:1120
msgid ""
"\n"
"    Add other LDAP entries to members.\n"
"    "
msgstr ""

#: ipalib/plugins/baseldap.py:1131 ipalib/plugins/baseldap.py:1592
#: ipalib/plugins/privilege.py:165 ipalib/plugins/privilege.py:191
#: ipalib/plugins/role.py:179 ipalib/plugins/role.py:203
msgid "Members that could not be added"
msgstr ""

#: ipalib/plugins/baseldap.py:1135 ipalib/plugins/baseldap.py:1596
msgid "Number of members added"
msgstr ""

#: ipalib/plugins/baseldap.py:1226
msgid ""
"\n"
"    Remove LDAP entries from members.\n"
"    "
msgstr ""

#: ipalib/plugins/baseldap.py:1236 ipalib/plugins/baseldap.py:1705
msgid "Members that could not be removed"
msgstr ""

#: ipalib/plugins/baseldap.py:1240 ipalib/plugins/baseldap.py:1709
msgid "Number of members removed"
msgstr ""

#: ipalib/plugins/baseldap.py:1335
msgid ""
"\n"
"    Retrieve all LDAP entries matching the given criteria.\n"
"    "
msgstr ""

#: ipalib/plugins/baseldap.py:1344
msgid "Time Limit"
msgstr ""

#: ipalib/plugins/baseldap.py:1345
msgid "Time limit of search in seconds"
msgstr ""

#: ipalib/plugins/baseldap.py:1351
msgid "Size Limit"
msgstr ""

#: ipalib/plugins/baseldap.py:1352
msgid "Maximum number of entries returned"
msgstr ""

#: ipalib/plugins/baseldap.py:1552
msgid ""
"\n"
"    Base class for reverse member manipulation.\n"
"    "
msgstr ""

#: ipalib/plugins/baseldap.py:1574
msgid ""
"\n"
"    Add other LDAP entries to members in reverse.\n"
"\n"
"    The call looks like \"add A to B\" but in fact executes\n"
"    add B to A to handle reverse membership.\n"
"    "
msgstr ""

#: ipalib/plugins/baseldap.py:1654
msgid "added"
msgstr ""

#: ipalib/plugins/baseldap.py:1687
msgid ""
"\n"
"    Remove other LDAP entries from members in reverse.\n"
"\n"
"    The call looks like \"remove A from B\" but in fact executes\n"
"    remove B from A to handle reverse membership.\n"
"    "
msgstr ""

#: ipalib/plugins/baseldap.py:1767
msgid "removed"
msgstr ""

#: ipalib/plugins/batch.py:21
msgid ""
"\n"
"Plugin to make multiple ipa calls via one remote procedure call\n"
"\n"
"To run this code in the lite-server\n"
"\n"
"curl   -H \"Content-Type:application/json\"          -H \"Accept:application/json\" -H \"Accept-Language:en\"        --negotiate -u :          --cacert /etc/ipa/ca.crt           -d  @batch_request.json -X POST       http://localhost:8888/ipa/json\n"
"\n"
"where the contents of the file batch_request.json follow the below example\n"
"\n"
"{\"method\":\"batch\",\"params\":[[\n"
"        {\"method\":\"group_find\",\"params\":[[],{}]},\n"
"        {\"method\":\"user_find\",\"params\":[[],{\"whoami\":\"true\",\"all\":\"true\"}]},\n"
"        {\"method\":\"user_show\",\"params\":[[\"admin\"],{\"all\":true}]}\n"
"        ],{}],\"id\":1}\n"
"\n"
"The format of the response is nested the same way.  At the top you will see\n"
"  \"error\": null,\n"
"    \"id\": 1,\n"
"    \"result\": {\n"
"        \"count\": 3,\n"
"            \"results\": [\n"
"\n"
"\n"
"And then a nested response for each IPA command method sent in the request\n"
"\n"
msgstr ""

#: ipalib/plugins/batch.py:61
msgid "Nested Methods to execute"
msgstr ""

#: ipalib/plugins/batch.py:68 ipalib/frontend.py:861
msgid "Client version. Used to determine if server will accept request."
msgstr ""

#: ipalib/plugins/cert.py:22
msgid ""
"\n"
"IPA certificate operations\n"
"\n"
"Implements a set of commands for managing server SSL certificates.\n"
"\n"
"Certificate requests exist in the form of a Certificate Signing Request (CSR)\n"
"in PEM format.\n"
"\n"
"If using the selfsign back end then the subject in the CSR needs to match\n"
"the subject configured in the server. The dogtag CA uses just the CN\n"
"value of the CSR and forces the rest of the subject.\n"
"\n"
"A certificate is stored with a service principal and a service principal\n"
"needs a host.\n"
"\n"
"In order to request a certificate:\n"
"\n"
"* The host must exist\n"
"* The service must exist (or you use the --add option to automatically add it)\n"
"\n"
"EXAMPLES:\n"
"\n"
" Request a new certificate and add the principal:\n"
"   ipa cert-request --add --principal=HTTP/lion.example.com example.csr\n"
"\n"
" Retrieve an existing certificate:\n"
"   ipa cert-show 1032\n"
"\n"
" Revoke a certificate (see RFC 5280 for reason details):\n"
"   ipa cert-revoke --revocation-reason=6 1032\n"
"\n"
" Remove a certificate from revocation hold status:\n"
"   ipa cert-remove-hold 1032\n"
"\n"
" Check the status of a signing request:\n"
"   ipa cert-status 10\n"
"\n"
"IPA currently immediately issues (or declines) all certificate requests so\n"
"the status of a request is not normally useful. This is for future use\n"
"or the case where a CA does not immediately issue a certificate.\n"
"\n"
"The following revocation reasons are supported:\n"
"\n"
"    * 0 - unspecified\n"
"    * 1 - keyCompromise\n"
"    * 2 - cACompromise\n"
"    * 3 - affiliationChanged\n"
"    * 4 - superseded\n"
"    * 5 - cessationOfOperation\n"
"    * 6 - certificateHold\n"
"    * 8 - removeFromCRL\n"
"    * 9 - privilegeWithdrawn\n"
"    * 10 - aACompromise\n"
"\n"
"Note that reason code 7 is not used.  See RFC 5280 for more details:\n"
"\n"
"http://www.ietf.org/rfc/rfc5280.txt\n"
"\n"
msgstr ""

#: ipalib/plugins/cert.py:104
msgid ""
"\n"
"    Return the value of CN in the subject of the request or None\n"
"    "
msgstr ""

#: ipalib/plugins/cert.py:112
msgid "Failure decoding Certificate Signing Request:"
msgstr ""

#: ipalib/plugins/cert.py:115
msgid ""
"\n"
"    Return the first value of the subject alt name, if any\n"
"    "
msgstr ""

#: ipalib/plugins/cert.py:125 ipalib/plugins/cert.py:137
msgid "Failure decoding Certificate Signing Request"
msgstr ""

#: ipalib/plugins/cert.py:128
msgid ""
"\n"
"    Ensure the CSR is base64-encoded and can be decoded by our PKCS#10\n"
"    parser.\n"
"    "
msgstr ""

#: ipalib/plugins/cert.py:139
msgid "Failure decoding Certificate Signing Request: %s"
msgstr ""

#: ipalib/plugins/cert.py:142
msgid ""
"\n"
"    Strip any leading and trailing cruft around the BEGIN/END block\n"
"    "
msgstr ""

#: ipalib/plugins/cert.py:162
msgid ""
"\n"
"    Convert a SN given in decimal or hexadecimal.\n"
"    Returns the number or None if conversion fails.\n"
"    "
msgstr ""

#: ipalib/plugins/cert.py:188
msgid ""
"\n"
"    Given a principal with or without a realm return the\n"
"    host portion.\n"
"    "
msgstr ""

#: ipalib/plugins/cert.py:202
msgid ""
"\n"
"    Submit a certificate signing request.\n"
"    "
msgstr ""

#: ipalib/plugins/cert.py:216 ipalib/plugins/service.py:225
msgid "Principal"
msgstr ""

#: ipalib/plugins/cert.py:217
msgid "Service principal for this certificate (e.g. HTTP/test.example.com)"
msgstr ""

#: ipalib/plugins/cert.py:224
msgid "automatically add the principal if it doesn't exist"
msgstr ""

#: ipalib/plugins/cert.py:232 ipalib/plugins/cert.py:439
#: ipalib/plugins/entitle.py:173 ipalib/plugins/host.py:276
#: ipalib/plugins/service.py:232
msgid "Certificate"
msgstr ""

#: ipalib/plugins/cert.py:236 ipalib/plugins/cert.py:442
#: ipalib/plugins/host.py:159 ipalib/plugins/service.py:93
msgid "Subject"
msgstr ""

#: ipalib/plugins/cert.py:240 ipalib/plugins/cert.py:445
#: ipalib/plugins/host.py:165 ipalib/plugins/service.py:99
msgid "Issuer"
msgstr ""

#: ipalib/plugins/cert.py:244 ipalib/plugins/cert.py:448
#: ipalib/plugins/host.py:168 ipalib/plugins/service.py:102
msgid "Not Before"
msgstr ""

#: ipalib/plugins/cert.py:248 ipalib/plugins/cert.py:451
#: ipalib/plugins/host.py:171 ipalib/plugins/service.py:105
msgid "Not After"
msgstr ""

#: ipalib/plugins/cert.py:252 ipalib/plugins/cert.py:454
#: ipalib/plugins/host.py:174 ipalib/plugins/service.py:108
msgid "Fingerprint (MD5)"
msgstr ""

#: ipalib/plugins/cert.py:256 ipalib/plugins/cert.py:457
#: ipalib/plugins/host.py:177 ipalib/plugins/service.py:111
msgid "Fingerprint (SHA1)"
msgstr ""

#: ipalib/plugins/cert.py:260 ipalib/plugins/cert.py:425
msgid "Serial number"
msgstr ""

#: ipalib/plugins/cert.py:268 ipalib/plugins/entitle.py:230
#: ipalib/plugins/entitle.py:588 ipalib/plugins/misc.py:57
msgid "Dictionary mapping variable name to value"
msgstr ""

#: ipalib/plugins/cert.py:396
msgid ""
"\n"
"    Check the status of a certificate signing request.\n"
"    "
msgstr ""

#: ipalib/plugins/cert.py:402
msgid "Request id"
msgstr ""

#: ipalib/plugins/cert.py:408
msgid "Request status"
msgstr ""

#: ipalib/plugins/cert.py:426
msgid "Serial number in decimal or if prefixed with 0x in hexadecimal"
msgstr ""

#: ipalib/plugins/cert.py:431
msgid ""
"\n"
"    Retrieve an existing certificate.\n"
"    "
msgstr ""

#: ipalib/plugins/cert.py:460 ipalib/plugins/host.py:180
#: ipalib/plugins/service.py:114
msgid "Revocation reason"
msgstr ""

#: ipalib/plugins/cert.py:466
msgid "Output filename"
msgstr ""

#: ipalib/plugins/cert.py:467
msgid "File to store the certificate in."
msgstr ""

#: ipalib/plugins/cert.py:518
msgid ""
"\n"
"    Revoke a certificate.\n"
"    "
msgstr ""

#: ipalib/plugins/cert.py:526
msgid "Revoked"
msgstr ""

#: ipalib/plugins/cert.py:534
msgid "Reason"
msgstr ""

#: ipalib/plugins/cert.py:535
msgid "Reason for revoking the certificate (0-10)"
msgstr ""

#: ipalib/plugins/cert.py:562
msgid ""
"\n"
"    Take a revoked certificate off hold.\n"
"    "
msgstr ""

#: ipalib/plugins/cert.py:570
msgid "Unrevoked"
msgstr ""

#: ipalib/plugins/cert.py:573
msgid "Error"
msgstr ""

#: ipalib/plugins/config.py:20
msgid ""
"\n"
"Manage the IPA configuration\n"
"\n"
"Manage the default values that IPA uses and some of its tuning parameters.\n"
"\n"
" To show the current configuration:\n"
"   ipa config-show\n"
"\n"
" To modify the configuration:\n"
"   ipa config-mod --maxusername=99\n"
"\n"
"The available options are:\n"
"\n"
"User management options:\n"
"\n"
"  --maxusername=INT     Max. username length when creating/modifying a user\n"
"  --homedirectory=STR   Default location of home directories (default /home)\n"
"  --defaultshell=STR    Default shell for new users (default /bin/sh)\n"
"  --defaultgroup=STR    Default group for new users (default ipausers). The\n"
"                        group must exist, or adding new users will fail.\n"
"  --emaildomain=STR     Default e-mail domain for new users\n"
"\n"
"Search tuning options. These impact how much data is searched through and\n"
"how many records may be returned on a given search.\n"
"\n"
"  --searchtimelimit=INT Max. amount of time (sec.) for a search (> 0, or -1 for\n"
"                        unlimited)\n"
"  --searchrecordslimit=INT Max. number of records to search (-1 is unlimited)\n"
"\n"
"Server Configuration.\n"
"\n"
"  --enable-migration=BOOL Enable migration mode\n"
"  --pwdexpnotify=INT      Password Expiration Notification (days)\n"
"\n"
"The password notification value is stored here so it will be replicated.\n"
"It is not currently used to notify users in advance of an expiring\n"
"password.\n"
"\n"
"Some attributes are read-only, provided only for information purposes. These\n"
"include:\n"
"\n"
"Certificate Subject base: the configured certificate subject base,\n"
"  e.g. O=EXAMPLE.COM.  This is configurable only at install time.\n"
"Password plug-in features: currently defines additional hashes that the\n"
"  password will generate (there may be other conditions).\n"
msgstr ""

#: ipalib/plugins/config.py:76
msgid "searchtimelimit must be -1 or > 1."
msgstr ""

#: ipalib/plugins/config.py:80
msgid ""
"\n"
"    IPA configuration object\n"
"    "
msgstr ""

#: ipalib/plugins/config.py:91 ipalib/plugins/internal.py:151
msgid "Configuration"
msgstr ""

#: ipalib/plugins/config.py:96
msgid "Max. username length"
msgstr ""

#: ipalib/plugins/config.py:101
msgid "Home directory base"
msgstr ""

#: ipalib/plugins/config.py:102
msgid "Default location of home directories."
msgstr ""

#: ipalib/plugins/config.py:106
msgid "Default shell"
msgstr ""

#: ipalib/plugins/config.py:107
msgid "Default shell for new users."
msgstr ""

#: ipalib/plugins/config.py:111
msgid "Default users group"
msgstr ""

#: ipalib/plugins/config.py:112
msgid "Default group for new users."
msgstr ""

#: ipalib/plugins/config.py:116
msgid "Default e-mail domain for new users"
msgstr ""

#: ipalib/plugins/config.py:117
msgid "Default e-mail domain new users."
msgstr ""

#: ipalib/plugins/config.py:121
msgid "Search time limit"
msgstr ""

#: ipalib/plugins/config.py:122
msgid "Max. amount of time (sec.) for a search (> 0, or -1 for unlimited)."
msgstr ""

#: ipalib/plugins/config.py:127
msgid "Search size limit"
msgstr ""

#: ipalib/plugins/config.py:128
msgid "Max. number of records to search (-1 is unlimited)."
msgstr ""

#: ipalib/plugins/config.py:133
msgid "User search fields"
msgstr ""

#: ipalib/plugins/config.py:134
msgid "A comma-separated list of fields to search when searching for users."
msgstr ""

#: ipalib/plugins/config.py:139
msgid "A comma-separated list of fields to search when searching for groups."
msgstr ""

#: ipalib/plugins/config.py:143
msgid "Migration mode"
msgstr ""

#: ipalib/plugins/config.py:144
msgid "Enable migration mode."
msgstr ""

#: ipalib/plugins/config.py:148
msgid "Certificate Subject base"
msgstr ""

#: ipalib/plugins/config.py:149
msgid "Base for certificate subjects (OU=Test,O=Example)."
msgstr ""

#: ipalib/plugins/config.py:154
msgid "Default group objectclasses"
msgstr ""

#: ipalib/plugins/config.py:155
msgid "Default group objectclassses (comma-separated list)."
msgstr ""

#: ipalib/plugins/config.py:159
msgid "Default user objectclasses"
msgstr ""

#: ipalib/plugins/config.py:160
msgid "Default user objectclassses (comma-separated list)."
msgstr ""

#: ipalib/plugins/config.py:164
msgid "Password Expiration Notification"
msgstr ""

#: ipalib/plugins/config.py:165
msgid "Number of days's notice of impending password expiration."
msgstr ""

#: ipalib/plugins/config.py:170
msgid "Password plugin features"
msgstr ""

#: ipalib/plugins/config.py:171
msgid "Extra hashes to generate in password plug-in."
msgstr ""

#: ipalib/plugins/config.py:183
msgid ""
"\n"
"    Modify configuration options.\n"
"    "
msgstr ""

#: ipalib/plugins/config.py:220
msgid ""
"\n"
"    Show the current configuration.\n"
"    "
msgstr ""

#: ipalib/plugins/delegation.py:19
msgid ""
"\n"
"Group to Group Delegation\n"
"\n"
"A permission enables fine-grained delegation of permissions. Access Control\n"
"Rules, or instructions (ACIs), grant permission to permissions to perform\n"
"given tasks such as adding a user, modifying a group, etc.\n"
"\n"
"Group to Group Delegations grants the members of one group to update a set\n"
"of attributes of members of another group.\n"
"\n"
"EXAMPLES:\n"
"\n"
" Add a delegation rule to allow editors to edit admin's addresses:\n"
"   ipa delegation-add --attrs=street --membergroup=admins --group=editors 'editors edit admins street'\n"
"\n"
" When managing the list of attributes you need to include all attributes\n"
" in the list, including existing ones. Add postalCode to the list:\n"
"   ipa delegation-mod --attrs=street,postalCode --membergroup=admins --group=editors 'editors edit admins street'\n"
"\n"
" Display our updated rule:\n"
"   ipa delegation-show 'editors edit admins street'\n"
"\n"
" Delete a rule:\n"
"   ipa delegation-del 'editors edit admins street'\n"
msgstr ""

#: ipalib/plugins/delegation.py:56
msgid ""
"\n"
"    memberOf is in filter but we want to pull out the group for easier\n"
"    displaying.\n"
"    "
msgstr ""

#: ipalib/plugins/delegation.py:63 ipalib/plugins/delegation.py:90
msgid "Delegation '%(permission)s' not found"
msgstr ""

#: ipalib/plugins/delegation.py:70
msgid "Error retrieving member group %(group)s: %(error)s"
msgstr ""

#: ipalib/plugins/delegation.py:79
msgid ""
"\n"
"    Determine if the ACI is a Delegation ACI and raise an exception if it\n"
"    isn't.\n"
"\n"
"    Return the result if it is a delegation ACI, adding a new attribute\n"
"    membergroup.\n"
"    "
msgstr ""

#: ipalib/plugins/delegation.py:95
msgid ""
"\n"
"    Delegation object.\n"
"    "
msgstr ""

#: ipalib/plugins/delegation.py:102
msgid "Delegation"
msgstr ""

#: ipalib/plugins/delegation.py:107 ipalib/plugins/delegation.py:108
msgid "Delegation name"
msgstr ""

#: ipalib/plugins/delegation.py:114 ipalib/plugins/selfservice.py:87
msgid ""
"Comma-separated list of permissions to grant (read, write). Default is "
"write."
msgstr ""

#: ipalib/plugins/delegation.py:125
msgid "Member user group"
msgstr ""

#: ipalib/plugins/delegation.py:126
msgid "User group to apply delegation to"
msgstr ""

#: ipalib/plugins/delegation.py:152
msgid ""
"\n"
"    Add a new delegation.\n"
"    "
msgstr ""

#: ipalib/plugins/delegation.py:156
msgid "Added delegation \"%(value)s\""
msgstr ""

#: ipalib/plugins/delegation.py:176
msgid ""
"\n"
"    Delete a delegation.\n"
"    "
msgstr ""

#: ipalib/plugins/delegation.py:181
msgid "Deleted delegation \"%(value)s\""
msgstr ""

#: ipalib/plugins/delegation.py:197
msgid ""
"\n"
"    Modify a delegation.\n"
"    "
msgstr ""

#: ipalib/plugins/delegation.py:201
msgid "Modified delegation \"%(value)s\""
msgstr ""

#: ipalib/plugins/delegation.py:219
msgid ""
"\n"
"    Search for delegations.\n"
"    "
msgstr ""

#: ipalib/plugins/delegation.py:223
msgid "%(count)d delegation matched"
msgid_plural "%(count)d delegations matched"
msgstr[0] ""

#: ipalib/plugins/delegation.py:250
msgid ""
"\n"
"    Display information about a delegation.\n"
"    "
msgstr ""

#: ipalib/plugins/dns.py:20
msgid ""
"\n"
"Domain Name System (DNS)\n"
"\n"
"Manage DNS zone and resource records.\n"
"\n"
"EXAMPLES:\n"
"\n"
" Add new zone:\n"
"   ipa dnszone-add example.com --name-server nameserver.example.com\n"
"                               --admin-email admin@example.com\n"
"\n"
" Add second nameserver for example.com:\n"
"   ipa dnsrecord-add example.com @ --ns-rec nameserver2.example.com\n"
"\n"
" Add a mail server for example.com:\n"
"   ipa dnsrecord-add example.com @ --mx-rec=\"10 mail2\"\n"
"\n"
" Delete previously added nameserver from example.com:\n"
"   ipa dnsrecord-del example.com @ --ns-rec nameserver2.example.com\n"
"\n"
" Add new A record for www.example.com: (random IP)\n"
"   ipa dnsrecord-add example.com www --a-rec 80.142.15.2\n"
"\n"
" Add new PTR record for www.example.com\n"
"   ipa dnsrecord-add 15.142.80.in-addr.arpa 2 --ptr-rec www.example.com.\n"
"\n"
" Add new SRV records for LDAP servers. Three quarters of the requests\n"
" should go to fast.example.com, one quarter to slow.example.com. If neither\n"
" is available, switch to backup.example.com.\n"
"   ipa dnsrecord-add example.com _ldap._tcp --srv-rec=\"0 3 389 fast.example.com\"\n"
"   ipa dnsrecord-add example.com _ldap._tcp --srv-rec=\"0 1 389 slow.example.com\"\n"
"   ipa dnsrecord-add example.com _ldap._tcp --srv-rec=\"1 1 389 backup.example.com\"\n"
"\n"
" When dnsrecord-add command is executed with no option to add a specific record\n"
" an interactive mode is started. The mode interactively prompts for the most\n"
" typical record types for the respective zone:\n"
"   ipa dnsrecord-add example.com www\n"
"   [A record]: 1.2.3.4,11.22.33.44      (2 interactively entered random IPs)\n"
"   [AAAA record]:                       (no AAAA address entered)\n"
"     Record name: www\n"
"     A record: 1.2.3.4, 11.22.33.44\n"
"\n"
" The interactive mode can also be used for deleting the DNS records:\n"
"   ipa dnsrecord-del example.com www\n"
"   No option to delete specific record provided.\n"
"   Delete all? Yes/No (default No):     (do not delete all records)\n"
"   Current DNS record contents:\n"
"\n"
"   A record: 1.2.3.4, 11.22.33.44\n"
"\n"
"   Delete A record '1.2.3.4'? Yes/No (default No): \n"
"   Delete A record '11.22.33.44'? Yes/No (default No): y\n"
"     Record name: www\n"
"     A record: 1.2.3.4                  (A record 11.22.33.44 has been deleted)\n"
"\n"
" Show zone example.com:\n"
"   ipa dnszone-show example.com\n"
"\n"
" Find zone with \"example\" in its domain name:\n"
"   ipa dnszone-find example\n"
"\n"
" Find records for resources with \"www\" in their name in zone example.com:\n"
"   ipa dnsrecord-find example.com www\n"
"\n"
" Find A records with value 10.10.0.1 in zone example.com\n"
"   ipa dnsrecord-find example.com --a-rec 10.10.0.1\n"
"\n"
" Show records for resource www in zone example.com\n"
"   ipa dnsrecord-show example.com www\n"
"\n"
" Delete zone example.com with all resource records:\n"
"   ipa dnszone-del example.com\n"
"\n"
" Resolve a host name to see if it exists (will add default IPA domain\n"
" if one is not included):\n"
"   ipa dns-resolve www.example.com\n"
"   ipa dns-resolve www\n"
msgstr ""

#: ipalib/plugins/dns.py:140
msgid "Generate serial number for zones."
msgstr ""

#: ipalib/plugins/dns.py:189
msgid "see RFC 2915 "
msgstr ""

#: ipalib/plugins/dns.py:249
msgid "Nameserver '%(host)s' does not have a corresponding A/AAAA record"
msgstr ""

#: ipalib/plugins/dns.py:272
msgid ""
"\n"
"    DNS Zone, container for resource records.\n"
"    "
msgstr ""

#: ipalib/plugins/dns.py:284
msgid "DNS"
msgstr ""

#: ipalib/plugins/dns.py:289
msgid "Zone name"
msgstr ""

#: ipalib/plugins/dns.py:290
msgid "Zone name (FQDN)"
msgstr ""

#: ipalib/plugins/dns.py:296
msgid "Authoritative nameserver"
msgstr ""

#: ipalib/plugins/dns.py:297
msgid "Authoritative nameserver."
msgstr ""

#: ipalib/plugins/dns.py:301 ipalib/plugins/dns.py:302
msgid "Administrator e-mail address"
msgstr ""

#: ipalib/plugins/dns.py:308
msgid "SOA serial"
msgstr ""

#: ipalib/plugins/dns.py:309
msgid "SOA record serial number"
msgstr ""

#: ipalib/plugins/dns.py:316
msgid "SOA refresh"
msgstr ""

#: ipalib/plugins/dns.py:317
msgid "SOA record refresh time"
msgstr ""

#: ipalib/plugins/dns.py:324
msgid "SOA retry"
msgstr ""

#: ipalib/plugins/dns.py:325
msgid "SOA record retry time"
msgstr ""

#: ipalib/plugins/dns.py:332
msgid "SOA expire"
msgstr ""

#: ipalib/plugins/dns.py:333
msgid "SOA record expire time"
msgstr ""

#: ipalib/plugins/dns.py:340
msgid "SOA minimum"
msgstr ""

#: ipalib/plugins/dns.py:341
msgid "How long should negative responses be cached"
msgstr ""

#: ipalib/plugins/dns.py:349
msgid "SOA time to live"
msgstr ""

#: ipalib/plugins/dns.py:350
msgid "SOA record time to live"
msgstr ""

#: ipalib/plugins/dns.py:354
msgid "SOA class"
msgstr ""

#: ipalib/plugins/dns.py:355
msgid "SOA record class"
msgstr ""

#: ipalib/plugins/dns.py:360 ipalib/plugins/dns.py:361
msgid "BIND update policy"
msgstr ""

#: ipalib/plugins/dns.py:365
msgid "Active zone"
msgstr ""

#: ipalib/plugins/dns.py:366
msgid "Is zone active?"
msgstr ""

#: ipalib/plugins/dns.py:372
msgid "Dynamic update"
msgstr ""

#: ipalib/plugins/dns.py:373
msgid "Allow dynamic updates."
msgstr ""

#: ipalib/plugins/dns.py:382
msgid ""
"\n"
"    Create new DNS zone (SOA record).\n"
"    "
msgstr ""

#: ipalib/plugins/dns.py:387 ipalib/plugins/dns.py:697
#: ipalib/plugins/host.py:315 ipalib/plugins/service.py:250
msgid "Force"
msgstr ""

#: ipalib/plugins/dns.py:388
msgid "Force DNS zone creation even if nameserver not in DNS."
msgstr ""

#: ipalib/plugins/dns.py:391
msgid "Add the nameserver to DNS with this IP address"
msgstr ""

#: ipalib/plugins/dns.py:397
msgid "DNS is not configured"
msgstr ""

#: ipalib/plugins/dns.py:431
msgid ""
"\n"
"    Delete DNS zone (SOA record).\n"
"    "
msgstr ""

#: ipalib/plugins/dns.py:439
msgid ""
"\n"
"    Modify DNS zone (SOA record).\n"
"    "
msgstr ""

#: ipalib/plugins/dns.py:452
msgid ""
"\n"
"    Search for DNS zones (SOA records).\n"
"    "
msgstr ""

#: ipalib/plugins/dns.py:460
msgid ""
"\n"
"    Display information about a DNS zone (SOA record).\n"
"    "
msgstr ""

#: ipalib/plugins/dns.py:468
msgid ""
"\n"
"    Disable DNS Zone.\n"
"    "
msgstr ""

#: ipalib/plugins/dns.py:472
msgid "Disabled DNS zone \"%(value)s\""
msgstr ""

#: ipalib/plugins/dns.py:490
msgid ""
"\n"
"    Enable DNS Zone.\n"
"    "
msgstr ""

#: ipalib/plugins/dns.py:494
msgid "Enabled DNS zone \"%(value)s\""
msgstr ""

#: ipalib/plugins/dns.py:512
msgid ""
"\n"
"    DNS record.\n"
"    "
msgstr ""

#: ipalib/plugins/dns.py:522
msgid "DNS resource record"
msgstr ""

#: ipalib/plugins/dns.py:527 ipalib/plugins/dns.py:528
msgid "Record name"
msgstr ""

#: ipalib/plugins/dns.py:533 ipalib/plugins/dns.py:534
msgid "Time to live"
msgstr ""

#: ipalib/plugins/dns.py:538
msgid "Class"
msgstr ""

#: ipalib/plugins/dns.py:539
msgid "DNS class"
msgstr ""

#: ipalib/plugins/dns.py:566
msgid ""
"\n"
"    Base class for DNS record commands with record options.\n"
"    "
msgstr ""

#: ipalib/plugins/dns.py:610
msgid ""
"\n"
"    Base class for adding/removing records from DNS resource entries.\n"
"    "
msgstr ""

#: ipalib/plugins/dns.py:674
msgid ""
"\n"
"    Add records to DNS resource.\n"
"    "
msgstr ""

#: ipalib/plugins/dns.py:690
msgid ""
"\n"
"    Add new DNS resource record.\n"
"    "
msgstr ""

#: ipalib/plugins/dns.py:699
msgid "force NS record creation even if its hostname is not in DNS"
msgstr ""

#: ipalib/plugins/dns.py:735
msgid ""
"Reverse zone for PTR record should be a sub-zone of one the following fully "
"qualified domains: %s"
msgstr ""

#: ipalib/plugins/dns.py:740
msgid "Reverse zone %s requires exactly %d IP address components, %d given"
msgstr ""

#: ipalib/plugins/dns.py:746
msgid "PTR record '%s' is not fully qualified (check traling '.')"
msgstr ""

#: ipalib/plugins/dns.py:789
msgid ""
"\n"
"    Delete DNS record entry.\n"
"    "
msgstr ""

#: ipalib/plugins/dns.py:792
msgid "Deleted record \"%(value)s\""
msgstr ""

#: ipalib/plugins/dns.py:799
msgid ""
"\n"
"    Delete DNS resource record.\n"
"    "
msgstr ""

#: ipalib/plugins/dns.py:802
msgid ""
"Neither --del-all nor options to delete a specific record provided.\n"
"Command help may be consulted for all supported record types."
msgstr ""

#: ipalib/plugins/dns.py:807
msgid "Delete all associated records"
msgstr ""

#: ipalib/plugins/dns.py:834
msgid "No option to delete specific record provided."
msgstr ""

#: ipalib/plugins/dns.py:835
msgid "Delete all?"
msgstr ""

#: ipalib/plugins/dns.py:845
msgid "Current DNS record contents:\n"
msgstr ""

#: ipalib/plugins/dns.py:875
msgid "%s record with value %s not found"
msgstr ""

#: ipalib/plugins/dns.py:889
msgid ""
"\n"
"    Display DNS resource.\n"
"    "
msgstr ""

#: ipalib/plugins/dns.py:905
msgid ""
"\n"
"    Search for DNS resources.\n"
"    "
msgstr ""

#: ipalib/plugins/dns.py:932
msgid ""
"\n"
"    Resolve a host name in DNS\n"
"    "
msgstr ""

#: ipalib/plugins/dns.py:936
msgid "Found '%(value)s'"
msgstr ""

#: ipalib/plugins/dns.py:940
msgid "Hostname"
msgstr ""

#: ipalib/plugins/dns.py:962
msgid "Host '%(host)s' not found"
msgstr ""

#: ipalib/plugins/dns.py:970
msgid ""
"\n"
"    Checks if any of the servers has the DNS service enabled.\n"
"    "
msgstr ""

#: ipalib/plugins/entitle.py:19
msgid ""
"\n"
"Entitlements\n"
"\n"
"Manage entitlements for client machines\n"
"\n"
"Entitlements can be managed either by registering with an entitlement\n"
"server with a username and password or by manually importing entitlement\n"
"certificates. An entitlement certificate contains embedded information\n"
"such as the product being entitled, the quantity and the validity dates.\n"
"\n"
"An entitlement server manages the number of client entitlements available.\n"
"To mark these entitlements as used by the IPA server you provide a quantity\n"
"and they are marked as consumed on the entitlement server.\n"
"\n"
" Register with an entitlement server:\n"
"   ipa entitle-register consumer\n"
"\n"
" Import an entitlement certificate:\n"
"   ipa entitle-import /home/user/ipaclient.pem\n"
"\n"
" Display current entitlements:\n"
"   ipa entitle-status\n"
"\n"
" Retrieve details on entitlement certificates:\n"
"   ipa entitle-get\n"
"\n"
" Consume some entitlements from the entitlement server:\n"
"   ipa entitle-consume 50\n"
"\n"
"The registration ID is a Unique Identifier (UUID). This ID will be\n"
"IMPORTED if you have used entitle-import.\n"
"\n"
"Changes to /etc/rhsm/rhsm.conf require a restart of the httpd service.\n"
msgstr ""

#: ipalib/plugins/entitle.py:106
msgid ""
"\n"
"    Get our entitlement pool. Assume there is only one pool.\n"
"    "
msgstr ""

#: ipalib/plugins/entitle.py:129
msgid ""
"\n"
"    Retrieve our UUID, certificate and key from LDAP.\n"
"\n"
"    Except on error the caller is responsible for removing temporary files\n"
"    "
msgstr ""

#: ipalib/plugins/entitle.py:178
msgid ""
"\n"
"    Entitlement object\n"
"    "
msgstr ""

#: ipalib/plugins/entitle.py:189
msgid "Entitlements"
msgstr ""

#: ipalib/plugins/entitle.py:206
msgid ""
"\n"
"    Display current entitlements\n"
"    "
msgstr ""

#: ipalib/plugins/entitle.py:214 ipalib/plugins/entitle.py:602
msgid "UUID"
msgstr ""

#: ipalib/plugins/entitle.py:217 ipalib/plugins/entitle.py:306
#: ipalib/plugins/entitle.py:388 ipalib/plugins/entitle.py:575
#: ipalib/plugins/entitle.py:690
msgid "Product"
msgstr ""

#: ipalib/plugins/entitle.py:220 ipalib/plugins/entitle.py:286
#: ipalib/plugins/entitle.py:296 ipalib/plugins/entitle.py:391
#: ipalib/plugins/entitle.py:578 ipalib/plugins/entitle.py:680
msgid "Quantity"
msgstr ""

#: ipalib/plugins/entitle.py:223 ipalib/plugins/entitle.py:309
#: ipalib/plugins/entitle.py:581 ipalib/plugins/entitle.py:693
msgid "Consumed"
msgstr ""

#: ipalib/plugins/entitle.py:276
msgid ""
"\n"
"    Consume an entitlement\n"
"    "
msgstr ""

#: ipalib/plugins/entitle.py:282
msgid "Consumed %(value)s entitlement(s)."
msgstr ""

#: ipalib/plugins/entitle.py:314
msgid ""
"\n"
"        Override this so we can set value to the number of entitlements\n"
"        consumed.\n"
"        "
msgstr ""

#: ipalib/plugins/entitle.py:362 ipalib/plugins/entitle.py:724
msgid ""
"\n"
"        Returning the certificates isn't very interesting. Return the\n"
"        status of entitlements instead.\n"
"        "
msgstr ""

#: ipalib/plugins/entitle.py:380
msgid ""
"\n"
"    Retrieve the entitlement certs\n"
"    "
msgstr ""

#: ipalib/plugins/entitle.py:394
msgid "Start"
msgstr ""

#: ipalib/plugins/entitle.py:397
msgid "End"
msgstr ""

#: ipalib/plugins/entitle.py:400 ipalib/plugins/host.py:162
#: ipalib/plugins/internal.py:132 ipalib/plugins/service.py:96
msgid "Serial Number"
msgstr ""

#: ipalib/plugins/entitle.py:435 ipalib/plugins/entitle.py:626
#: ipalib/plugins/entitle.py:628
msgid "Not an entitlement certificate"
msgstr ""

#: ipalib/plugins/entitle.py:460
msgid ""
"\n"
"    Search for entitlement accounts.\n"
"    "
msgstr ""

#: ipalib/plugins/entitle.py:473
msgid ""
"\n"
"    Register to the entitlement system\n"
"    "
msgstr ""

#: ipalib/plugins/entitle.py:479
msgid "Registered to entitlement server."
msgstr ""

#: ipalib/plugins/entitle.py:483
msgid "Username"
msgstr ""

#: ipalib/plugins/entitle.py:490 ipalib/plugins/entitle.py:603
msgid "Enrollment UUID"
msgstr ""

#: ipalib/plugins/entitle.py:494 ipalib/plugins/migration.py:271
#: ipalib/plugins/passwd.py:59 ipalib/plugins/user.py:172
msgid "Password"
msgstr ""

#: ipalib/plugins/entitle.py:495
msgid "Registration password"
msgstr ""

#: ipalib/plugins/entitle.py:569
msgid ""
"\n"
"    Import an entitlement certificate.\n"
"    "
msgstr ""

#: ipalib/plugins/entitle.py:646
msgid ""
"\n"
"        If we are adding the first entry there are no updates so EmptyModlist\n"
"        will get thrown. Ignore it.\n"
"        "
msgstr ""

#: ipalib/plugins/entitle.py:667
msgid ""
"\n"
"    Re-sync the local entitlement cache with the entitlement server\n"
"    "
msgstr ""

#: ipalib/plugins/entitle.py:673
msgid "Entitlement(s) synchronized."
msgstr ""

#: ipalib/plugins/group.py:20
msgid ""
"\n"
"Groups of users\n"
"\n"
"Manage groups of users. By default, new groups are POSIX groups. You\n"
"can add the --nonposix option to the group-add command to mark a new group\n"
"as non-POSIX, and you can use the same argument to the group-mod command\n"
"to convert a non-POSIX group to a POSIX group. POSIX groups cannot be\n"
"converted to non-POSIX groups.\n"
"\n"
"Every group must have a description.\n"
"\n"
"POSIX groups must have a Group ID (GID) number. Changing a GID is\n"
"supported but can have an impact on your file permissions. It is not necessary\n"
"to supply a GID when creating a group. IPA will generate one automatically\n"
"if it is not provided.\n"
"\n"
"EXAMPLES:\n"
"\n"
" Add a new group:\n"
"   ipa group-add --desc='local administrators' localadmins\n"
"\n"
" Add a new non-POSIX group:\n"
"   ipa group-add --nonposix --desc='remote administrators' remoteadmins\n"
"\n"
" Convert a non-POSIX group to posix:\n"
"   ipa group-mod --posix remoteadmins\n"
"\n"
" Add a new POSIX group with a specific Group ID number:\n"
"   ipa group-add --gid=500 --desc='unix admins' unixadmins\n"
"\n"
" Add a new POSIX group and let IPA assign a Group ID number:\n"
"   ipa group-add --desc='printer admins' printeradmins\n"
"\n"
" Remove a group:\n"
"   ipa group-del unixadmins\n"
"\n"
" To add the \"remoteadmins\" group to the \"localadmins\" group:\n"
"   ipa group-add-member --groups=remoteadmins localadmins\n"
"\n"
" Add a list of users to the \"localadmins\" group:\n"
"   ipa group-add-member --users=test1,test2 localadmins\n"
"\n"
" Remove a user from the \"localadmins\" group:\n"
"   ipa group-remove-member --users=test2 localadmins\n"
"\n"
" Display information about a named group.\n"
"   ipa group-show localadmins\n"
msgstr ""

#: ipalib/plugins/group.py:76
msgid ""
"\n"
"    Group object.\n"
"    "
msgstr ""

#: ipalib/plugins/group.py:100
msgid "User Groups"
msgstr ""

#: ipalib/plugins/group.py:108
msgid "Group name"
msgstr ""

#: ipalib/plugins/group.py:115 ipalib/plugins/sudocmdgroup.py:77
msgid "Group description"
msgstr ""

#: ipalib/plugins/group.py:119 ipalib/plugins/user.py:187
msgid "GID"
msgstr ""

#: ipalib/plugins/group.py:120
msgid "GID (use this option to set it manually)"
msgstr ""

#: ipalib/plugins/group.py:128
msgid ""
"\n"
"    Create a new group.\n"
"    "
msgstr ""

#: ipalib/plugins/group.py:132
msgid "Added group \"%(value)s\""
msgstr ""

#: ipalib/plugins/group.py:137
msgid "Create as a non-POSIX group"
msgstr ""

#: ipalib/plugins/group.py:154
msgid ""
"\n"
"    Delete group.\n"
"    "
msgstr ""

#: ipalib/plugins/group.py:158
msgid "Deleted group \"%(value)s\""
msgstr ""

#: ipalib/plugins/group.py:186
msgid ""
"\n"
"    Modify a group.\n"
"    "
msgstr ""

#: ipalib/plugins/group.py:189
msgid "Modified group \"%(value)s\""
msgstr ""

#: ipalib/plugins/group.py:194
msgid "change to a POSIX group"
msgstr ""

#: ipalib/plugins/group.py:215
msgid ""
"\n"
"    Search for groups.\n"
"    "
msgstr ""

#: ipalib/plugins/group.py:220
msgid "%(count)d group matched"
msgid_plural "%(count)d groups matched"
msgstr[0] ""

#: ipalib/plugins/group.py:227 ipalib/plugins/netgroup.py:192
msgid "search for private groups"
msgstr ""

#: ipalib/plugins/group.py:257
msgid ""
"\n"
"    Display information about a named group.\n"
"    "
msgstr ""

#: ipalib/plugins/group.py:265
msgid ""
"\n"
"    Add members to a group.\n"
"    "
msgstr ""

#: ipalib/plugins/group.py:273
msgid ""
"\n"
"    Remove members from a group.\n"
"    "
msgstr ""

#: ipalib/plugins/group.py:281
msgid ""
"\n"
"    Detach a managed group from a user\n"
"    "
msgstr ""

#: ipalib/plugins/group.py:285
msgid "Detached group \"%(value)s\" from user \"%(value)s\""
msgstr ""

#: ipalib/plugins/group.py:288
msgid ""
"\n"
"        This requires updating both the user and the group. We first need to\n"
"        verify that both the user and group can be updated, then we go\n"
"        about our work. We don't want a situation where only the user or\n"
"        group can be modified and we're left in a bad state.\n"
"        "
msgstr ""

#: ipalib/plugins/group.py:306
msgid "not allowed to modify user entries"
msgstr ""

#: ipalib/plugins/group.py:312
msgid "not allowed to modify group entries"
msgstr ""

#: ipalib/plugins/group.py:331
msgid "Not a managed group"
msgstr ""

#: ipalib/plugins/hbacrule.py:19
msgid ""
"\n"
"Host-based access control\n"
"\n"
"Control who can access what services on what hosts and from where. You\n"
"can use HBAC to control which users or groups on a source host can\n"
"access a service, or group of services, on a target host.\n"
"\n"
"You can also specify a category of users, target hosts, and source\n"
"hosts. This is currently limited to \"all\", but might be expanded in the\n"
"future.\n"
"\n"
"Target hosts and source hosts in HBAC rules must be hosts managed by IPA.\n"
"\n"
"The available services and groups of services are controlled by the\n"
"hbacsvc and hbacsvcgroup plug-ins respectively.\n"
"\n"
"EXAMPLES:\n"
"\n"
" Create a rule, \"test1\", that grants all users access to the host \"server\" from\n"
" anywhere:\n"
"   ipa hbacrule-add --type=allow --usercat=all --srchostcat=all test1\n"
"   ipa hbacrule-add-host --hosts=server.example.com test1\n"
"\n"
" Display the properties of a named HBAC rule:\n"
"   ipa hbacrule-show test1\n"
"\n"
" Create a rule for a specific service. This lets the user john access\n"
" the sshd service on any machine from any machine:\n"
"   ipa hbacrule-add --type=allow --hostcat=all --srchostcat=all john_sshd\n"
"   ipa hbacrule-add-user --users=john john_sshd\n"
"   ipa hbacrule-add-service --hbacsvcs=sshd john_sshd\n"
"\n"
" Create a rule for a new service group. This lets the user john access\n"
" the FTP service on any machine from any machine:\n"
"   ipa hbacsvcgroup-add ftpers\n"
"   ipa hbacsvc-add sftp\n"
"   ipa hbacsvcgroup-add-member --hbacsvcs=ftp,sftp ftpers\n"
"   ipa hbacrule-add --type=allow --hostcat=all --srchostcat=all john_ftp\n"
"   ipa hbacrule-add-user --users=john john_ftp\n"
"   ipa hbacrule-add-service --hbacsvcgroups=ftpers john_ftp\n"
"\n"
" Disable a named HBAC rule:\n"
"   ipa hbacrule-disable test1\n"
"\n"
" Remove a named HBAC rule:\n"
"   ipa hbacrule-del allow_server\n"
msgstr ""

#: ipalib/plugins/hbacrule.py:91
msgid ""
"\n"
"    See if options[attribute] is lower-case 'all' in a safe way.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacrule.py:103
msgid ""
"\n"
"    HBAC object.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacrule.py:126
msgid "HBAC Rule"
msgstr ""

#: ipalib/plugins/hbacrule.py:131 ipalib/plugins/sudorule.py:73
msgid "Rule name"
msgstr ""

#: ipalib/plugins/hbacrule.py:136
msgid "Rule type (allow or deny)"
msgstr ""

#: ipalib/plugins/hbacrule.py:137
msgid "Rule type"
msgstr ""

#: ipalib/plugins/hbacrule.py:143 ipalib/plugins/netgroup.py:124
#: ipalib/plugins/sudorule.py:86
msgid "User category"
msgstr ""

#: ipalib/plugins/hbacrule.py:144 ipalib/plugins/netgroup.py:125
#: ipalib/plugins/sudorule.py:87
msgid "User category the rule applies to"
msgstr ""

#: ipalib/plugins/hbacrule.py:149 ipalib/plugins/netgroup.py:130
#: ipalib/plugins/sudorule.py:92
msgid "Host category"
msgstr ""

#: ipalib/plugins/hbacrule.py:150 ipalib/plugins/netgroup.py:131
#: ipalib/plugins/sudorule.py:93
msgid "Host category the rule applies to"
msgstr ""

#: ipalib/plugins/hbacrule.py:155
msgid "Source host category"
msgstr ""

#: ipalib/plugins/hbacrule.py:156
msgid "Source host category the rule applies to"
msgstr ""

#: ipalib/plugins/hbacrule.py:161
msgid "Service category"
msgstr ""

#: ipalib/plugins/hbacrule.py:162
msgid "Service category the rule applies to"
msgstr ""

#: ipalib/plugins/hbacrule.py:174 ipalib/plugins/sudorule.py:81
msgid "Enabled"
msgstr ""

#: ipalib/plugins/hbacrule.py:178 ipalib/plugins/sudorule.py:115
#: ipalib/plugins/user.py:108
msgid "Users"
msgstr ""

#: ipalib/plugins/hbacrule.py:182 ipalib/plugins/internal.py:272
#: ipalib/plugins/sudorule.py:119
msgid "Groups"
msgstr ""

#: ipalib/plugins/hbacrule.py:186 ipalib/plugins/host.py:226
#: ipalib/plugins/sudorule.py:123
msgid "Hosts"
msgstr ""

#: ipalib/plugins/hbacrule.py:190 ipalib/plugins/hostgroup.py:73
#: ipalib/plugins/sudorule.py:127
msgid "Host Groups"
msgstr ""

#: ipalib/plugins/hbacrule.py:194
msgid "Source hosts"
msgstr ""

#: ipalib/plugins/hbacrule.py:198
msgid "Source host groups"
msgstr ""

#: ipalib/plugins/hbacrule.py:202 ipalib/plugins/internal.py:196
#: ipalib/plugins/service.py:220
msgid "Services"
msgstr ""

#: ipalib/plugins/hbacrule.py:206
msgid "Service Groups"
msgstr ""

#: ipalib/plugins/hbacrule.py:215
msgid ""
"\n"
"    Create a new HBAC rule.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacrule.py:219
msgid "Added HBAC rule \"%(value)s\""
msgstr ""

#: ipalib/plugins/hbacrule.py:230
msgid ""
"\n"
"    Delete an HBAC rule.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacrule.py:234
msgid "Deleted HBAC rule \"%(value)s\""
msgstr ""

#: ipalib/plugins/hbacrule.py:240
msgid ""
"\n"
"    Modify an HBAC rule.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacrule.py:244
msgid "Modified HBAC rule \"%(value)s\""
msgstr ""

#: ipalib/plugins/hbacrule.py:266
msgid ""
"\n"
"    Search for HBAC rules.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacrule.py:270
msgid "%(count)d HBAC rule matched"
msgid_plural "%(count)d HBAC rules matched"
msgstr[0] ""

#: ipalib/plugins/hbacrule.py:278
msgid ""
"\n"
"    Display the properties of an HBAC rule.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacrule.py:286
msgid ""
"\n"
"    Enable an HBAC rule.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacrule.py:290
msgid "Enabled HBAC rule \"%(value)s\""
msgstr ""

#: ipalib/plugins/hbacrule.py:315
msgid ""
"\n"
"    Disable an HBAC rule.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacrule.py:319
msgid "Disabled HBAC rule \"%(value)s\""
msgstr ""

#: ipalib/plugins/hbacrule.py:344
msgid ""
"\n"
"    Add an access time to an HBAC rule.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacrule.py:351 ipalib/plugins/hbacrule.py:391
msgid "Access time"
msgstr ""

#: ipalib/plugins/hbacrule.py:385
msgid ""
"\n"
"    Remove access time to HBAC rule.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacrule.py:425
msgid ""
"\n"
"    Add users and groups to an HBAC rule.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacrule.py:442
msgid ""
"\n"
"    Remove users and groups from an HBAC rule.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacrule.py:452
msgid ""
"\n"
"    Add target hosts and hostgroups to an HBAC rule\n"
"    "
msgstr ""

#: ipalib/plugins/hbacrule.py:469
msgid ""
"\n"
"    Remove target hosts and hostgroups from an HBAC rule.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacrule.py:479
msgid ""
"\n"
"    Add source hosts and hostgroups from a HBAC rule.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacrule.py:496
msgid ""
"\n"
"    Remove source hosts and hostgroups from an HBAC rule.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacrule.py:506
msgid ""
"\n"
"    Add services to an HBAC rule.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacrule.py:523
msgid ""
"\n"
"    Remove service and service groups from an HBAC rule.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacsvc.py:19
msgid ""
"\n"
"HBAC Services\n"
"\n"
"The PAM services that HBAC can control access to. The name used here\n"
"must match the service name that PAM is evaluating.\n"
"\n"
"EXAMPLES:\n"
"\n"
" Add a new HBAC service:\n"
"   ipa hbacsvc-add tftp\n"
"\n"
" Modify an existing HBAC service:\n"
"   ipa hbacsvc-mod --desc=\"TFTP service\" tftp\n"
"\n"
" Search for HBAC services. This example will return two results, the FTP\n"
" service and the newly-added tftp service:\n"
"   ipa hbacsvc-find ftp\n"
"\n"
" Delete an HBAC service:\n"
"   ipa hbacsvc-del tftp\n"
"\n"
msgstr ""

#: ipalib/plugins/hbacsvc.py:51
msgid ""
"\n"
"    HBAC Service object.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacsvc.py:61
msgid "HBAC Services"
msgstr ""

#: ipalib/plugins/hbacsvc.py:66
msgid "Service name"
msgstr ""

#: ipalib/plugins/hbacsvc.py:67
msgid "HBAC service"
msgstr ""

#: ipalib/plugins/hbacsvc.py:74
msgid "HBAC service description"
msgstr ""

#: ipalib/plugins/hbacsvc.py:82
msgid ""
"\n"
"    Add a new HBAC service.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacsvc.py:85
msgid "Added HBAC service \"%(value)s\""
msgstr ""

#: ipalib/plugins/hbacsvc.py:91
msgid ""
"\n"
"    Delete an existing HBAC service.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacsvc.py:94
msgid "Deleted HBAC service \"%(value)s\""
msgstr ""

#: ipalib/plugins/hbacsvc.py:100
msgid ""
"\n"
"    Modify an HBAC service.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacsvc.py:104
msgid "Modified HBAC service \"%(value)s\""
msgstr ""

#: ipalib/plugins/hbacsvc.py:110
msgid ""
"\n"
"    Search for HBAC services.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacsvc.py:114
msgid "%(count)d HBAC service matched"
msgid_plural "%(count)d HBAC services matched"
msgstr[0] ""

#: ipalib/plugins/hbacsvc.py:122
msgid ""
"\n"
"    Display information about an HBAC service.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacsvcgroup.py:19
msgid ""
"\n"
"HBAC Service Groups\n"
"\n"
"HBAC service groups can contain any number of individual services,\n"
"or \"members\". Every group must have a description.\n"
"\n"
"EXAMPLES:\n"
"\n"
" Add a new HBAC service group:\n"
"   ipa hbacsvcgroup-add --desc=\"login services\" login\n"
"\n"
" Add members to an HBAC service group:\n"
"   ipa hbacsvcgroup-add-member --hbacsvcs=sshd,login login\n"
"\n"
" Display information about a named group:\n"
"   ipa hbacsvcgroup-show login\n"
"\n"
" Add a new group to the \"login\" group:\n"
"   ipa hbacsvcgroup-add --desc=\"switch users\" login\n"
"   ipa hbacsvcgroup-add-member --hbacsvcs=su,su-l login\n"
"\n"
" Delete an HBAC service group:\n"
"   ipa hbacsvcgroup-del login\n"
msgstr ""

#: ipalib/plugins/hbacsvcgroup.py:51
msgid ""
"\n"
"    HBAC service group object.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacsvcgroup.py:64
msgid "HBAC service Groups"
msgstr ""

#: ipalib/plugins/hbacsvcgroup.py:69
msgid "Service group name"
msgstr ""

#: ipalib/plugins/hbacsvcgroup.py:76
msgid "HBAC service group description"
msgstr ""

#: ipalib/plugins/hbacsvcgroup.py:84
msgid ""
"\n"
"    Add a new HBAC service group.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacsvcgroup.py:87
msgid "Added HBAC service group \"%(value)s\""
msgstr ""

#: ipalib/plugins/hbacsvcgroup.py:93
msgid ""
"\n"
"    Delete an HBAC service group.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacsvcgroup.py:96
msgid "Deleted HBAC service group \"%(value)s\""
msgstr ""

#: ipalib/plugins/hbacsvcgroup.py:102
msgid ""
"\n"
"    Modify an HBAC service group.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacsvcgroup.py:105
msgid "Modified HBAC service group \"%(value)s\""
msgstr ""

#: ipalib/plugins/hbacsvcgroup.py:111
msgid ""
"\n"
"    Search for an HBAC service group.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacsvcgroup.py:114
msgid "%(count)d HBAC service group matched"
msgid_plural "%(count)d HBAC service groups matched"
msgstr[0] ""

#: ipalib/plugins/hbacsvcgroup.py:122
msgid ""
"\n"
"    Display information about an HBAC service group.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacsvcgroup.py:130
msgid ""
"\n"
"    Add members to an HBAC service group.\n"
"    "
msgstr ""

#: ipalib/plugins/hbacsvcgroup.py:138
msgid ""
"\n"
"    Remove members from an HBAC service group.\n"
"    "
msgstr ""

#: ipalib/plugins/host.py:20
msgid ""
"\n"
"Hosts/Machines\n"
"\n"
"A host represents a machine. It can be used in a number of contexts:\n"
"- service entries are associated with a host\n"
"- a host stores the host/ service principal\n"
"- a host can be used in Host-based Access Control (HBAC) rules\n"
"- every enrolled client generates a host entry\n"
"\n"
"ENROLLMENT:\n"
"\n"
"There are three enrollment scenarios when enrolling a new client:\n"
"\n"
"1. You are enrolling as a full administrator. The host entry may exist\n"
"   or not. A full administrator is a member of the hostadmin role\n"
"   or the admins group.\n"
"2. You are enrolling as a limited administrator. The host must already\n"
"   exist. A limited administrator is a member a role with the\n"
"   Host Enrollment privilege.\n"
"3. The host has been created with a one-time password.\n"
"\n"
"A host can only be enrolled once. If a client has enrolled and needs to\n"
"be re-enrolled, the host entry must be removed and re-created. Note that\n"
"re-creating the host entry will result in all services for the host being\n"
"removed, and all SSL certificates associated with those services being\n"
"revoked.\n"
"\n"
"A host can optionally store information such as where it is located,\n"
"the OS that it runs, etc.\n"
"\n"
"EXAMPLES:\n"
"\n"
" Add a new host:\n"
"   ipa host-add --location=\"3rd floor lab\" --locality=Dallas test.example.com\n"
"\n"
" Delete a host:\n"
"   ipa host-del test.example.com\n"
"\n"
" Add a new host with a one-time password:\n"
"   ipa host-add --os='Fedora 12' --password=Secret123 test.example.com\n"
"\n"
" Add a new host with a random one-time password:\n"
"   ipa host-add --os='Fedora 12' --random test.example.com\n"
"\n"
" Modify information about a host:\n"
"   ipa host-mod --os='Fedora 12' test.example.com\n"
"\n"
" Disable the host Kerberos key, SSL certificate and all of its services:\n"
"   ipa host-disable test.example.com\n"
"\n"
" Add a host that can manage this host's keytab and certificate:\n"
"   ipa host-add-managedby --hosts=test2 test\n"
msgstr ""

#: ipalib/plugins/host.py:97
msgid ""
"\n"
"    Require at least one dot in the hostname (to support localhost.localdomain)\n"
"    "
msgstr ""

#: ipalib/plugins/host.py:101
msgid "Fully-qualified hostname required"
msgstr ""

#: ipalib/plugins/host.py:129
msgid "DNS reverse zone for IP address %(addr)s not found"
msgstr ""

#: ipalib/plugins/host.py:153 ipalib/plugins/service.py:87
msgid "Keytab"
msgstr ""

#: ipalib/plugins/host.py:185
msgid ""
"\n"
"    Verify that we have either an IPv4 or IPv6 address.\n"
"    "
msgstr ""

#: ipalib/plugins/host.py:189
msgid "invalid IP address"
msgstr ""

#: ipalib/plugins/host.py:194
msgid ""
"\n"
"    Host object.\n"
"    "
msgstr ""

#: ipalib/plugins/host.py:231
msgid "Host name"
msgstr ""

#: ipalib/plugins/host.py:238
msgid "A description of this host"
msgstr ""

#: ipalib/plugins/host.py:242
msgid "Locality"
msgstr ""

#: ipalib/plugins/host.py:243
msgid "Host locality (e.g. \"Baltimore, MD\")"
msgstr ""

#: ipalib/plugins/host.py:248
msgid "Host location (e.g. \"Lab 2\")"
msgstr ""

#: ipalib/plugins/host.py:252
msgid "Platform"
msgstr ""

#: ipalib/plugins/host.py:253
msgid "Host hardware platform (e.g. \"Lenovo T61\")"
msgstr ""

#: ipalib/plugins/host.py:257
msgid "Operating system"
msgstr ""

#: ipalib/plugins/host.py:258
msgid "Host operating system and version (e.g. \"Fedora 9\")"
msgstr ""

#: ipalib/plugins/host.py:262
msgid "User password"
msgstr ""

#: ipalib/plugins/host.py:263
msgid "Password used in bulk enrollment"
msgstr ""

#: ipalib/plugins/host.py:266
msgid "Generate a random password to be used in bulk enrollment"
msgstr ""

#: ipalib/plugins/host.py:271
msgid "Random password"
msgstr ""

#: ipalib/plugins/host.py:277 ipalib/plugins/service.py:233
msgid "Base-64 encoded server certificate"
msgstr ""

#: ipalib/plugins/host.py:280 ipalib/plugins/host.py:548
msgid "Principal name"
msgstr ""

#: ipalib/plugins/host.py:306
msgid ""
"\n"
"    Add a new host.\n"
"    "
msgstr ""

#: ipalib/plugins/host.py:311
msgid "Added host \"%(value)s\""
msgstr ""

#: ipalib/plugins/host.py:316
msgid "force host name even if not in DNS"
msgstr ""

#: ipalib/plugins/host.py:319
msgid "skip reverse DNS detection"
msgstr ""

#: ipalib/plugins/host.py:322
msgid "Add the host to DNS with this IP address"
msgstr ""

#: ipalib/plugins/host.py:338 ipalib/plugins/host.py:477
msgid "DNS zone %(zone)s not found"
msgstr ""

#: ipalib/plugins/host.py:413
msgid "The host was added but the DNS update failed with: %(exc)s"
msgstr ""

#: ipalib/plugins/host.py:422
msgid ""
"\n"
"    Delete a host.\n"
"    "
msgstr ""

#: ipalib/plugins/host.py:426
msgid "Deleted host \"%(value)s\""
msgstr ""

#: ipalib/plugins/host.py:431
msgid "Remove entries from DNS"
msgstr ""

#: ipalib/plugins/host.py:537
msgid ""
"\n"
"    Modify information about a host.\n"
"    "
msgstr ""

#: ipalib/plugins/host.py:542
msgid "Modified host \"%(value)s\""
msgstr ""

#: ipalib/plugins/host.py:549
msgid "Kerberos principal name for this host"
msgstr ""

#: ipalib/plugins/host.py:618
msgid ""
"\n"
"    Search for hosts.\n"
"    "
msgstr ""

#: ipalib/plugins/host.py:623
msgid "%(count)d host matched"
msgid_plural "%(count)d hosts matched"
msgstr[0] ""

#: ipalib/plugins/host.py:643
msgid ""
"\n"
"    Display information about a host.\n"
"    "
msgstr ""

#: ipalib/plugins/host.py:649 ipalib/plugins/service.py:400
msgid "file to store certificate in"
msgstr ""

#: ipalib/plugins/host.py:673 ipalib/plugins/service.py:422
msgid "Certificate stored in file '%(file)s'"
msgstr ""

#: ipalib/plugins/host.py:684
msgid ""
"\n"
"    Disable the Kerberos key, SSL certificate and all services of a host.\n"
"    "
msgstr ""

#: ipalib/plugins/host.py:688
msgid "Disabled host \"%(value)s\""
msgstr ""

#: ipalib/plugins/host.py:770
msgid ""
"\n"
"    Add hosts that can manage this host.\n"
"    "
msgstr ""

#: ipalib/plugins/host.py:781
msgid ""
"\n"
"    Remove hosts that can manage this host.\n"
"    "
msgstr ""

#: ipalib/plugins/hostgroup.py:20
msgid ""
"\n"
"Groups of hosts.\n"
"\n"
"Manage groups of hosts. This is useful for applying access control to a\n"
"number of hosts by using Host-based Access Control.\n"
"\n"
"EXAMPLES:\n"
"\n"
" Add a new host group:\n"
"   ipa hostgroup-add --desc=\"Baltimore hosts\" baltimore\n"
"\n"
" Add another new host group:\n"
"   ipa hostgroup-add --desc=\"Maryland hosts\" maryland\n"
"\n"
" Add members to the hostgroup:\n"
"   ipa hostgroup-add-member --hosts=box1,box2,box3 baltimore\n"
"\n"
" Add a hostgroup as a member of another hostgroup:\n"
"   ipa hostgroup-add-member --hostgroups=baltimore maryland\n"
"\n"
" Remove a host from the hostgroup:\n"
"   ipa hostgroup-remove-member --hosts=box2 baltimore\n"
"\n"
" Display a host group:\n"
"   ipa hostgroup-show baltimore\n"
"\n"
" Delete a hostgroup:\n"
"   ipa hostgroup-del baltimore\n"
msgstr ""

#: ipalib/plugins/hostgroup.py:55
msgid ""
"\n"
"    Hostgroup object.\n"
"    "
msgstr ""

#: ipalib/plugins/hostgroup.py:78
msgid "Host-group"
msgstr ""

#: ipalib/plugins/hostgroup.py:79
msgid "Name of host-group"
msgstr ""

#: ipalib/plugins/hostgroup.py:86
msgid "A description of this host-group"
msgstr ""

#: ipalib/plugins/hostgroup.py:94
msgid ""
"\n"
"    Add a new hostgroup.\n"
"    "
msgstr ""

#: ipalib/plugins/hostgroup.py:98
msgid "Added hostgroup \"%(value)s\""
msgstr ""

#: ipalib/plugins/hostgroup.py:104
msgid ""
"\n"
"    Delete a hostgroup.\n"
"    "
msgstr ""

#: ipalib/plugins/hostgroup.py:108
msgid "Deleted hostgroup \"%(value)s\""
msgstr ""

#: ipalib/plugins/hostgroup.py:114
msgid ""
"\n"
"    Modify a hostgroup.\n"
"    "
msgstr ""

#: ipalib/plugins/hostgroup.py:118
msgid "Modified hostgroup \"%(value)s\""
msgstr ""

#: ipalib/plugins/hostgroup.py:124
msgid ""
"\n"
"    Search for hostgroups.\n"
"    "
msgstr ""

#: ipalib/plugins/hostgroup.py:128
msgid "%(count)d hostgroup matched"
msgid_plural "%(count)d hostgroups matched"
msgstr[0] ""

#: ipalib/plugins/hostgroup.py:136
msgid ""
"\n"
"    Display information about a hostgroup.\n"
"    "
msgstr ""

#: ipalib/plugins/hostgroup.py:144
msgid ""
"\n"
"    Add members to a hostgroup.\n"
"    "
msgstr ""

#: ipalib/plugins/hostgroup.py:152
msgid ""
"\n"
"    Remove members from a hostgroup.\n"
"    "
msgstr ""

#: ipalib/plugins/internal.py:22
msgid ""
"\n"
"Plugins not accessible directly through the CLI, commands used internally\n"
msgstr ""

#: ipalib/plugins/internal.py:36
msgid ""
"\n"
"    Export plugin meta-data for the webUI.\n"
"    "
msgstr ""

#: ipalib/plugins/internal.py:44
msgid "Name of object to export"
msgstr ""

#: ipalib/plugins/internal.py:47
msgid "Name of method to export"
msgstr ""

#: ipalib/plugins/internal.py:52
msgid "Dict of JSON encoded IPA Objects"
msgstr ""

#: ipalib/plugins/internal.py:53
msgid "Dict of JSON encoded IPA Methods"
msgstr ""

#: ipalib/plugins/internal.py:96
msgid "Logged In As"
msgstr ""

#: ipalib/plugins/internal.py:99
msgid "Attribute"
msgstr ""

#: ipalib/plugins/internal.py:102
msgid "Add Automount Location"
msgstr ""

#: ipalib/plugins/internal.py:103
msgid "Automount Location Settings"
msgstr ""

#: ipalib/plugins/internal.py:106
msgid "Add Automount Map"
msgstr ""

#: ipalib/plugins/internal.py:109
msgid "Add Automount Key"
msgstr ""

#: ipalib/plugins/internal.py:112
msgid "Unspecified"
msgstr ""

#: ipalib/plugins/internal.py:113
msgid "Key Compromise"
msgstr ""

#: ipalib/plugins/internal.py:114
msgid "CA Compromise"
msgstr ""

#: ipalib/plugins/internal.py:115
msgid "Affiliation Changed"
msgstr ""

#: ipalib/plugins/internal.py:116
msgid "Superseded"
msgstr ""

#: ipalib/plugins/internal.py:117
msgid "Cessation of Operation"
msgstr ""

#: ipalib/plugins/internal.py:118
msgid "Certificate Hold"
msgstr ""

#: ipalib/plugins/internal.py:119
msgid "Remove from CRL"
msgstr ""

#: ipalib/plugins/internal.py:120
msgid "Privilege Withdrawn"
msgstr ""

#: ipalib/plugins/internal.py:121
msgid "AA Compromise"
msgstr ""

#: ipalib/plugins/internal.py:122
msgid ""
"To confirm your intention to revoke this certificate, select a reason from "
"the pull-down list, and click the \"Revoke\" button."
msgstr ""

#: ipalib/plugins/internal.py:124
msgid "Note"
msgstr ""

#: ipalib/plugins/internal.py:125
msgid "Reason for Revocation"
msgstr ""

#: ipalib/plugins/internal.py:126
msgid ""
"To confirm your intention to restore this certificate, click the \"Restore\""
" button."
msgstr ""

#: ipalib/plugins/internal.py:128
msgid "Issued To"
msgstr ""

#: ipalib/plugins/internal.py:129
msgid "Common Name"
msgstr ""

#: ipalib/plugins/internal.py:130
msgid "Organization"
msgstr ""

#: ipalib/plugins/internal.py:131
msgid "Organizational Unit"
msgstr ""

#: ipalib/plugins/internal.py:133
msgid "Issued By"
msgstr ""

#: ipalib/plugins/internal.py:134
msgid "Validity"
msgstr ""

#: ipalib/plugins/internal.py:135
msgid "Issued On"
msgstr ""

#: ipalib/plugins/internal.py:136
msgid "Expires On"
msgstr ""

#: ipalib/plugins/internal.py:137
msgid "Fingerprints"
msgstr ""

#: ipalib/plugins/internal.py:138
msgid "SHA1 Fingerprint"
msgstr ""

#: ipalib/plugins/internal.py:139
msgid "MD5 Fingerprint"
msgstr ""

#: ipalib/plugins/internal.py:140
msgid "Enter the Base64-encoded CSR below"
msgstr ""

#: ipalib/plugins/internal.py:141
msgid "Valid Certificate Present"
msgstr ""

#: ipalib/plugins/internal.py:142
msgid "New Certificate"
msgstr ""

#: ipalib/plugins/internal.py:143
msgid "Certificate Revoked"
msgstr ""

#: ipalib/plugins/internal.py:144
msgid "No Valid Certificate"
msgstr ""

#: ipalib/plugins/internal.py:145
msgid "Certificate for ${entity} ${primary_key}"
msgstr ""

#: ipalib/plugins/internal.py:146
msgid "Issue New Certificate for ${entity} ${primary_key}"
msgstr ""

#: ipalib/plugins/internal.py:147
msgid "Revoke Certificate for ${entity} ${primary_key}"
msgstr ""

#: ipalib/plugins/internal.py:148
msgid "Restore Certificate for ${entity} ${primary_key}"
msgstr ""

#: ipalib/plugins/internal.py:152
msgid "Name"
msgstr ""

#: ipalib/plugins/internal.py:155
msgid "Add Delegation"
msgstr ""

#: ipalib/plugins/internal.py:158
msgid "Add DNS Zone"
msgstr ""

#: ipalib/plugins/internal.py:159
msgid "DNS Zone Settings"
msgstr ""

#: ipalib/plugins/internal.py:162
msgid "Add DNS Resource Record"
msgstr ""

#: ipalib/plugins/internal.py:163
msgid "Resource"
msgstr ""

#: ipalib/plugins/internal.py:165
msgid "Data"
msgstr ""

#: ipalib/plugins/internal.py:166
msgid "Records for DNS Zone"
msgstr ""

#: ipalib/plugins/internal.py:169
msgid "Add Group"
msgstr ""

#: ipalib/plugins/internal.py:170
msgid "Group Settings"
msgstr ""

#: ipalib/plugins/internal.py:171 ipalib/plugins/internal.py:206
msgid "Is this a POSIX group?"
msgstr ""

#: ipalib/plugins/internal.py:174
msgid "Add HBAC Rule"
msgstr ""

#: ipalib/plugins/internal.py:175 ipalib/plugins/internal.py:280
#: ipalib/plugins/internal.py:306
msgid "Active"
msgstr ""

#: ipalib/plugins/internal.py:176 ipalib/plugins/internal.py:282
msgid "Allow"
msgstr ""

#: ipalib/plugins/internal.py:177 ipalib/plugins/internal.py:283
msgid "Deny"
msgstr ""

#: ipalib/plugins/internal.py:178 ipalib/plugins/internal.py:281
#: ipalib/plugins/internal.py:308
msgid "Inactive"
msgstr ""

#: ipalib/plugins/internal.py:179 ipalib/plugins/internal.py:296
msgid "Rule status"
msgstr ""

#: ipalib/plugins/internal.py:180 ipalib/plugins/internal.py:284
msgid "Who"
msgstr ""

#: ipalib/plugins/internal.py:181 ipalib/plugins/internal.py:285
msgid "Anyone"
msgstr ""

#: ipalib/plugins/internal.py:182 ipalib/plugins/internal.py:286
msgid "Specified Users and Groups"
msgstr ""

#: ipalib/plugins/internal.py:183
msgid "Accessing"
msgstr ""

#: ipalib/plugins/internal.py:184 ipalib/plugins/internal.py:288
msgid "Any Host"
msgstr ""

#: ipalib/plugins/internal.py:185 ipalib/plugins/internal.py:289
msgid "Specified Hosts and Groups"
msgstr ""

#: ipalib/plugins/internal.py:186
msgid "Via Service"
msgstr ""

#: ipalib/plugins/internal.py:187
msgid "Any Service"
msgstr ""

#: ipalib/plugins/internal.py:188
msgid "Specified Services and Groups"
msgstr ""

#: ipalib/plugins/internal.py:189
msgid "From"
msgstr ""

#: ipalib/plugins/internal.py:192
msgid "Add HBAC Service"
msgstr ""

#: ipalib/plugins/internal.py:195
msgid "Add HBAC Service Group"
msgstr ""

#: ipalib/plugins/internal.py:199
msgid "Add Host"
msgstr ""

#: ipalib/plugins/internal.py:200
msgid "Host Certificate"
msgstr ""

#: ipalib/plugins/internal.py:201 ipalib/plugins/internal.py:259
msgid "Host Name"
msgstr ""

#: ipalib/plugins/internal.py:202
msgid "Host Settings"
msgstr ""

#: ipalib/plugins/internal.py:203
msgid "Enrolled?"
msgstr ""

#: ipalib/plugins/internal.py:204
msgid "Enrollment"
msgstr ""

#: ipalib/plugins/internal.py:205
msgid "Fully Qualified Host Name"
msgstr ""

#: ipalib/plugins/internal.py:207 ipalib/plugins/internal.py:262
msgid "Status"
msgstr ""

#: ipalib/plugins/internal.py:208
msgid "Kerberos Key Present, Host Provisioned"
msgstr ""

#: ipalib/plugins/internal.py:209 ipalib/plugins/internal.py:264
msgid "Delete Key, Unprovision"
msgstr ""

#: ipalib/plugins/internal.py:210 ipalib/plugins/internal.py:265
msgid "Kerberos Key Not Present"
msgstr ""

#: ipalib/plugins/internal.py:211
msgid "Enroll via One-Time-Password"
msgstr ""

#: ipalib/plugins/internal.py:212
msgid "Set OTP"
msgstr ""

#: ipalib/plugins/internal.py:213
msgid "One-Time-Password has been set."
msgstr ""

#: ipalib/plugins/internal.py:214 ipalib/plugins/internal.py:266
msgid "Unprovisioning ${entity}"
msgstr ""

#: ipalib/plugins/internal.py:215
msgid "Are you sure you want to unprovision this host?"
msgstr ""

#: ipalib/plugins/internal.py:216 ipalib/plugins/internal.py:268
msgid "Unprovision"
msgstr ""

#: ipalib/plugins/internal.py:219
msgid "Add Host Group"
msgstr ""

#: ipalib/plugins/internal.py:220
msgid "Host Group Settings"
msgstr ""

#: ipalib/plugins/internal.py:223
msgid "Kerberos ticket policy"
msgstr ""

#: ipalib/plugins/internal.py:226
msgid "Add Netgroup"
msgstr ""

#: ipalib/plugins/internal.py:227
msgid "Netgroup Settings"
msgstr ""

#: ipalib/plugins/internal.py:230
msgid "Add Permission"
msgstr ""

#: ipalib/plugins/internal.py:231 ipalib/plugins/internal.py:376
msgid "Identity"
msgstr ""

#: ipalib/plugins/internal.py:233
msgid "Target"
msgstr ""

#: ipalib/plugins/internal.py:235
msgid "By Subtree"
msgstr ""

#: ipalib/plugins/internal.py:236
msgid "Target Group"
msgstr ""

#: ipalib/plugins/internal.py:237
msgid "Object By Type"
msgstr ""

#: ipalib/plugins/internal.py:238
msgid "Permission with invalid target specification"
msgstr ""

#: ipalib/plugins/internal.py:241
msgid "Add Privilege"
msgstr ""

#: ipalib/plugins/internal.py:242
msgid "Privilege Settings"
msgstr ""

#: ipalib/plugins/internal.py:245
msgid "Add Password Policy"
msgstr ""

#: ipalib/plugins/internal.py:246 ipalib/plugins/pwpolicy.py:219
msgid "Password Policy"
msgstr ""

#: ipalib/plugins/internal.py:249
msgid "Add Role"
msgstr ""

#: ipalib/plugins/internal.py:250
msgid "Role Settings"
msgstr ""

#: ipalib/plugins/internal.py:253
msgid "Add Self Service Definition"
msgstr ""

#: ipalib/plugins/internal.py:256
msgid "Add Service"
msgstr ""

#: ipalib/plugins/internal.py:257
msgid "Service Certificate"
msgstr ""

#: ipalib/plugins/internal.py:258
msgid "Service Settings"
msgstr ""

#: ipalib/plugins/internal.py:260
msgid "Provisioning"
msgstr ""

#: ipalib/plugins/internal.py:261
msgid "Service"
msgstr ""

#: ipalib/plugins/internal.py:263
msgid "Kerberos Key Present, Service Provisioned"
msgstr ""

#: ipalib/plugins/internal.py:267
msgid "Are you sure you want to unprovision this service?"
msgstr ""

#: ipalib/plugins/internal.py:271
msgid "Add Sudo Command"
msgstr ""

#: ipalib/plugins/internal.py:275
msgid "Add Sudo Command Group"
msgstr ""

#: ipalib/plugins/internal.py:276 ipalib/plugins/sudocmdgroup.py:80
msgid "Commands"
msgstr ""

#: ipalib/plugins/internal.py:279
msgid "Add Sudo Rule"
msgstr ""

#: ipalib/plugins/internal.py:287
msgid "Access this host"
msgstr ""

#: ipalib/plugins/internal.py:290
msgid "Run Commands"
msgstr ""

#: ipalib/plugins/internal.py:291
msgid "Any Command"
msgstr ""

#: ipalib/plugins/internal.py:292
msgid "Specified Commands and Groups"
msgstr ""

#: ipalib/plugins/internal.py:293
msgid "As Whom"
msgstr ""

#: ipalib/plugins/internal.py:294
msgid "Any Group"
msgstr ""

#: ipalib/plugins/internal.py:295
msgid "Specified Groups"
msgstr ""

#: ipalib/plugins/internal.py:297
msgid "External"
msgstr ""

#: ipalib/plugins/internal.py:300
msgid "Add User"
msgstr ""

#: ipalib/plugins/internal.py:301
msgid "Account Settings"
msgstr ""

#: ipalib/plugins/internal.py:302
msgid "Contact Settings"
msgstr ""

#: ipalib/plugins/internal.py:303
msgid "Mailing Address"
msgstr ""

#: ipalib/plugins/internal.py:304
msgid "Employee Information"
msgstr ""

#: ipalib/plugins/internal.py:305
msgid "Misc. Information"
msgstr ""

#: ipalib/plugins/internal.py:307
msgid "Click to Deactivate"
msgstr ""

#: ipalib/plugins/internal.py:309
msgid "Click to Activate"
msgstr ""

#: ipalib/plugins/internal.py:310
msgid "Error changing account status"
msgstr ""

#: ipalib/plugins/internal.py:311
msgid "Reset Password"
msgstr ""

#: ipalib/plugins/internal.py:312
msgid "New Password"
msgstr ""

#: ipalib/plugins/internal.py:313
msgid "Repeat Password"
msgstr ""

#: ipalib/plugins/internal.py:314
msgid "Password change complete"
msgstr ""

#: ipalib/plugins/internal.py:315
msgid "Passwords must match"
msgstr ""

#: ipalib/plugins/internal.py:319
msgid "Add"
msgstr ""

#: ipalib/plugins/internal.py:320
msgid "Add and Add Another"
msgstr ""

#: ipalib/plugins/internal.py:321
msgid "Add and Edit"
msgstr ""

#: ipalib/plugins/internal.py:322
msgid "Add and Close"
msgstr ""

#: ipalib/plugins/internal.py:323
msgid "Add Many"
msgstr ""

#: ipalib/plugins/internal.py:324
msgid "Back to List"
msgstr ""

#: ipalib/plugins/internal.py:325
msgid "Cancel"
msgstr ""

#: ipalib/plugins/internal.py:326
msgid "Close"
msgstr ""

#: ipalib/plugins/internal.py:327
msgid "Enroll"
msgstr ""

#: ipalib/plugins/internal.py:328
msgid "Find"
msgstr ""

#: ipalib/plugins/internal.py:329
msgid "Get"
msgstr ""

#: ipalib/plugins/internal.py:330
msgid "Issue"
msgstr ""

#: ipalib/plugins/internal.py:331
msgid "OK"
msgstr ""

#: ipalib/plugins/internal.py:332
msgid "Reset"
msgstr ""

#: ipalib/plugins/internal.py:333
msgid "Delete"
msgstr ""

#: ipalib/plugins/internal.py:334
msgid "Restore"
msgstr ""

#: ipalib/plugins/internal.py:335
msgid "Retry"
msgstr ""

#: ipalib/plugins/internal.py:336
msgid "Revoke"
msgstr ""

#: ipalib/plugins/internal.py:337
msgid "Update"
msgstr ""

#: ipalib/plugins/internal.py:338
msgid "View"
msgstr ""

#: ipalib/plugins/internal.py:341
msgid "Available"
msgstr ""

#: ipalib/plugins/internal.py:342
msgid "This page has unsaved changes. Please save or revert."
msgstr ""

#: ipalib/plugins/internal.py:343
msgid "Dirty"
msgstr ""

#: ipalib/plugins/internal.py:344
msgid "Hide already enrolled."
msgstr ""

#: ipalib/plugins/internal.py:345
msgid "Select ${entity} to be removed."
msgstr ""

#: ipalib/plugins/internal.py:346
msgid "Remove ${entity}."
msgstr ""

#: ipalib/plugins/internal.py:347
msgid "Prospective"
msgstr ""

#: ipalib/plugins/internal.py:350
msgid "Managed by"
msgstr ""

#: ipalib/plugins/internal.py:351
msgid "Member"
msgstr ""

#: ipalib/plugins/internal.py:352
msgid "Indirect Member"
msgstr ""

#: ipalib/plugins/internal.py:353
msgid "Member Of"
msgstr ""

#: ipalib/plugins/internal.py:354
msgid "Indirect Member Of"
msgstr ""

#: ipalib/plugins/internal.py:355 ipalib/plugins/internal.py:359
msgid "Settings"
msgstr ""

#: ipalib/plugins/internal.py:358
msgid "Search"
msgstr ""

#: ipalib/plugins/internal.py:362
msgid "Quick Links"
msgstr ""

#: ipalib/plugins/internal.py:363
msgid "Select All"
msgstr ""

#: ipalib/plugins/internal.py:364
msgid "Unselect All"
msgstr ""

#: ipalib/plugins/internal.py:365
msgid "Are you sure you want to delete selected entries?"
msgstr ""

#: ipalib/plugins/internal.py:366
msgid ""
"Query returned more results than the configured size limit. Displaying the "
"first ${counter} results."
msgstr ""

#: ipalib/plugins/internal.py:370
msgid "General"
msgstr ""

#: ipalib/plugins/internal.py:371
msgid "Identity Settings"
msgstr ""

#: ipalib/plugins/internal.py:372
msgid "${entity} ${primary_key} Settings"
msgstr ""

#: ipalib/plugins/internal.py:373
msgid "Back to Top"
msgstr ""

#: ipalib/plugins/internal.py:377
msgid "Policy"
msgstr ""

#: ipalib/plugins/internal.py:378
msgid "Audit"
msgstr ""

#: ipalib/plugins/internal.py:379
msgid "IPA Server"
msgstr ""

#: ipalib/plugins/internal.py:380
msgid "Sudo"
msgstr ""

#: ipalib/plugins/internal.py:381
msgid "Host Based Access Control"
msgstr ""

#: ipalib/plugins/internal.py:382
msgid "Role Based Access Control"
msgstr ""

#: ipalib/plugins/internal.py:383
msgid "Automount"
msgstr ""

#: ipalib/plugins/internal.py:386
msgid "Add ${other_entity} into ${entity} ${primary_key}"
msgstr ""

#: ipalib/plugins/internal.py:387
msgid "${other_entity} enrolled in ${entity} ${primary_key}"
msgstr ""

#: ipalib/plugins/internal.py:388
msgid "${entity} ${primary_key} is enrolled in the following ${other_entity}"
msgstr ""

#: ipalib/plugins/internal.py:389
msgid "Remove ${other_entity} from ${entity} ${primary_key}"
msgstr ""

#: ipalib/plugins/internal.py:392
msgid "Text does not match field pattern"
msgstr ""

#: ipalib/plugins/internal.py:395
msgid ""
"Your Kerberos ticket is no longer valid. Please run kinit and then click "
"'Retry'. If this is your first time running the IPA Web UI <a "
"href='/ipa/config/unauthorized.html'>follow these directions</a> to "
"configure your browser."
msgstr ""

#: ipalib/plugins/internal.py:399
msgid "Dict of I18N messages"
msgstr ""

#: ipalib/plugins/kerberos.py:20
msgid ""
"\n"
"Backend plugin for Kerberos.\n"
"\n"
"This wraps the python-kerberos and python-krbV bindings.\n"
msgstr ""

#: ipalib/plugins/kerberos.py:35
msgid ""
"\n"
"    Kerberos backend plugin.\n"
"\n"
"    This wraps the `krbV` bindings (and will eventually wrap the `kerberos`\n"
"    bindings also).  Importantly, this plugin does correct Unicode\n"
"    encoding/decoding of values going-to/coming-from the bindings.\n"
"    "
msgstr ""

#: ipalib/plugins/kerberos.py:44
msgid ""
"\n"
"        Return the ``krbV.CCache`` for the default credential cache.\n"
"        "
msgstr ""

#: ipalib/plugins/kerberos.py:50
msgid ""
"\n"
"        Return the ``krb5.Principal`` for the default credential cache.\n"
"        "
msgstr ""

#: ipalib/plugins/kerberos.py:56
msgid ""
"\n"
"        Return the ``krbV.CCache`` for the ``ccname`` credential ccache.\n"
"        "
msgstr ""

#: ipalib/plugins/kerberos.py:62
msgid ""
"\n"
"        Return the ``krb5.Principal`` for the ``ccname`` credential ccache.\n"
"        "
msgstr ""

#: ipalib/plugins/kerberos.py:68
msgid ""
"\n"
"        Return the default ccache file name.\n"
"\n"
"        This will return something like '/tmp/krb5cc_500'.\n"
"\n"
"        This cannot return anything meaningful if used in the server as a\n"
"        request is processed.\n"
"        "
msgstr ""

#: ipalib/plugins/kerberos.py:79
msgid ""
"\n"
"        Return the principal name in default credential cache.\n"
"\n"
"        This will return something like 'admin@EXAMPLE.COM'.  If no credential\n"
"        cache exists for the invoking user, None is returned.\n"
"\n"
"        This cannot return anything meaningful if used in the server as a\n"
"        request is processed.\n"
"        "
msgstr ""

#: ipalib/plugins/kerberos.py:91
msgid ""
"\n"
"        Return the realm from the default credential cache.\n"
"\n"
"        This will return something like 'EXAMPLE.COM'.  If no credential cache\n"
"        exists for the invoking user, None is returned.\n"
"\n"
"        This cannot return anything meaningful if used in the server as a\n"
"        request is processed.\n"
"        "
msgstr ""

#: ipalib/plugins/kerberos.py:103
msgid ""
"\n"
"        Return the principal from credential cache file at ``ccname``.\n"
"\n"
"        This will return something like 'admin@EXAMPLE.COM'.\n"
"        "
msgstr ""

#: ipalib/plugins/kerberos.py:111
msgid ""
"\n"
"        Return the realm from credential cache file at ``ccname``.\n"
"\n"
"        This will return something like 'EXAMPLE.COM'.\n"
"        "
msgstr ""

#: ipalib/plugins/krbtpolicy.py:19
msgid ""
"\n"
"Kerberos ticket policy\n"
"\n"
"There is a single Kerberos ticket policy. This policy defines the\n"
"maximum ticket lifetime and the maximum renewal age, the period during\n"
"which the ticket is renewable.\n"
"\n"
"You can also create a per-user ticket policy by specifying the user login.\n"
"\n"
"For changes to the global policy to take effect, restarting the KDC service\n"
"is required, which can be achieved using:\n"
"\n"
"service krb5kdc restart\n"
"\n"
"Changes to per-user policies take effect immediately for newly requested\n"
"tickets (e.g. when the user next runs kinit).\n"
"\n"
"EXAMPLES:\n"
"\n"
" Display the current Kerberos ticket policy:\n"
"  ipa krbtpolicy-show\n"
"\n"
" Reset the policy to the default:\n"
"  ipa krbtpolicy-reset\n"
"\n"
" Modify the policy to 8 hours max life, 1-day max renewal:\n"
"  ipa krbtpolicy-mod --maxlife=28800 --maxrenew=86400\n"
"\n"
" Display effective Kerberos ticket policy for user 'admin':\n"
"  ipa krbtpolicy-show admin\n"
"\n"
" Reset per-user policy for user 'admin':\n"
"  ipa krbtpolicy-reset admin\n"
"\n"
" Modify per-user policy for user 'admin':\n"
"  ipa krbtpolicy-mod admin --maxlife=3600\n"
msgstr ""

#: ipalib/plugins/krbtpolicy.py:71
msgid ""
"\n"
"    Kerberos Ticket Policy object\n"
"    "
msgstr ""

#: ipalib/plugins/krbtpolicy.py:79
msgid "Kerberos Ticket Policy"
msgstr ""

#: ipalib/plugins/krbtpolicy.py:84 ipalib/plugins/passwd.py:53
msgid "User name"
msgstr ""

#: ipalib/plugins/krbtpolicy.py:85
msgid "Manage ticket policy for specific user"
msgstr ""

#: ipalib/plugins/krbtpolicy.py:90
msgid "Max life"
msgstr ""

#: ipalib/plugins/krbtpolicy.py:91
msgid "Maximum ticket life (seconds)"
msgstr ""

#: ipalib/plugins/krbtpolicy.py:96
msgid "Max renew"
msgstr ""

#: ipalib/plugins/krbtpolicy.py:97
msgid "Maximum renewable age (seconds)"
msgstr ""

#: ipalib/plugins/krbtpolicy.py:111
msgid ""
"\n"
"    Modify Kerberos ticket policy.\n"
"    "
msgstr ""

#: ipalib/plugins/krbtpolicy.py:125
msgid ""
"\n"
"    Display the current Kerberos ticket policy.\n"
"    "
msgstr ""

#: ipalib/plugins/krbtpolicy.py:149
msgid ""
"\n"
"    Reset Kerberos ticket policy to the default values.\n"
"    "
msgstr ""

#: ipalib/plugins/migration.py:19
msgid ""
"\n"
"Migration to IPA\n"
"\n"
"Migrate users and groups from an LDAP server to IPA.\n"
"\n"
"This performs an LDAP query against the remote server searching for\n"
"users and groups in a container. In order to migrate passwords you need\n"
"to bind as a user that can read the userPassword attribute on the remote\n"
"server. This is generally restricted to high-level admins such as\n"
"cn=Directory Manager in 389-ds (this is the default bind user).\n"
"\n"
"The default user container is ou=People.\n"
"\n"
"The default group container is ou=Groups.\n"
"\n"
"Users and groups that already exist on the IPA server are skipped.\n"
"\n"
"Two LDAP schemas define how group members are stored: RFC2307 and\n"
"RFC2307bis. RFC2307bis uses member and uniquemember to specify group\n"
"members, RFC2307 uses memberUid. The default schema is RFC2307bis.\n"
"\n"
"Migrated users do not have Kerberos credentials, they have only their\n"
"LDAP password. To complete the migration process, users need to go\n"
"to http://ipa.example.com/ipa/migration and authenticate using their\n"
"LDAP password in order to generate their Kerberos credentials.\n"
"\n"
"Migration is disabled by default. Use the command ipa config-mod to\n"
"enable it:\n"
"\n"
" ipa config-mod --enable-migration=TRUE\n"
"\n"
"EXAMPLES:\n"
"\n"
" The simplest migration, accepting all defaults:\n"
"   ipa migrate-ds ldap://ds.example.com:389\n"
"\n"
" Specify the user and group container. This can be used to migrate user and\n"
" group data from an IPA v1 server:\n"
"   ipa migrate-ds --user-container='cn=users,cn=accounts' --group-container='cn=groups,cn=accounts' ldap://ds.example.com:389\n"
msgstr ""

#: ipalib/plugins/migration.py:78
msgid ""
"Kerberos principal %s already exists. Use 'ipa user-mod' to set it manually."
msgstr ""

#: ipalib/plugins/migration.py:79
msgid ""
"Failed to add user to the default group. Use 'ipa group-add-member' to add "
"manually."
msgstr ""

#: ipalib/plugins/migration.py:175
msgid ""
"\n"
"        Convert usernames in member attributes to work in IPA.\n"
"        "
msgstr ""

#: ipalib/plugins/migration.py:220
msgid "Invalid LDAP URI."
msgstr ""

#: ipalib/plugins/migration.py:225
msgid ""
"\n"
"    Migrate users and groups from DS to IPA.\n"
"    "
msgstr ""

#: ipalib/plugins/migration.py:266
msgid "LDAP URI"
msgstr ""

#: ipalib/plugins/migration.py:267
msgid "LDAP URI of DS server to migrate from"
msgstr ""

#: ipalib/plugins/migration.py:272
msgid "bind password"
msgstr ""

#: ipalib/plugins/migration.py:279
msgid "Bind DN"
msgstr ""

#: ipalib/plugins/migration.py:285
msgid "User container"
msgstr ""

#: ipalib/plugins/migration.py:286
msgid "RDN of container for users in DS"
msgstr ""

#: ipalib/plugins/migration.py:292
msgid "Group container"
msgstr ""

#: ipalib/plugins/migration.py:293
msgid "RDN of container for groups in DS"
msgstr ""

#: ipalib/plugins/migration.py:299
msgid "User object class"
msgstr ""

#: ipalib/plugins/migration.py:300
msgid ""
"Comma-separated list of objectclasses used to search for user entries in DS"
msgstr ""

#: ipalib/plugins/migration.py:306
msgid "Group object class"
msgstr ""

#: ipalib/plugins/migration.py:307
msgid ""
"Comma-separated list of objectclasses used to search for group entries in DS"
msgstr ""

#: ipalib/plugins/migration.py:313
msgid "LDAP schema"
msgstr ""

#: ipalib/plugins/migration.py:314
msgid ""
"The schema used on the LDAP server. Supported values are RFC2307 and "
"RFC2307bis. The default is RFC2307bis"
msgstr ""

#: ipalib/plugins/migration.py:320
msgid ""
"Continuous operation mode. Errors are reported but the process continues"
msgstr ""

#: ipalib/plugins/migration.py:328
msgid "Lists of objects migrated; categorized by type."
msgstr ""

#: ipalib/plugins/migration.py:332
msgid "Lists of objects that could not be migrated; categorized by type."
msgstr ""

#: ipalib/plugins/migration.py:336
msgid "False if migration mode was disabled."
msgstr ""

#: ipalib/plugins/migration.py:340
msgid "comma-separated list of %s to exclude from migration"
msgstr ""

#: ipalib/plugins/migration.py:342
msgid ""
"search results for objects to be migrated\n"
"have been truncated by the server;\n"
"migration process might be incomplete\n"
msgstr ""

#: ipalib/plugins/migration.py:347
msgid "Migration mode is disabled. Use 'ipa config-mod' to enable it."
msgstr ""

#: ipalib/plugins/migration.py:350
msgid ""
"Passwords have been migrated in pre-hashed format.\n"
"IPA is unable to generate Kerberos keys unless provided\n"
"with clear text passwords. All migrated users need to\n"
"login at https://your.domain/ipa/migration/ before they\n"
"can use their Kerberos accounts."
msgstr ""

#: ipalib/plugins/migration.py:358
msgid ""
"\n"
"        Call get_options of the baseclass and add \"exclude\" options\n"
"        for each type of object being migrated.\n"
"        "
msgstr ""

#: ipalib/plugins/migration.py:375
msgid ""
"\n"
"        Convert all \"exclude\" option values to lower-case.\n"
"\n"
"        Also, empty List parameters are converted to None, but the migration\n"
"        plugin doesn't like that - convert back to empty lists.\n"
"        "
msgstr ""

#: ipalib/plugins/migration.py:399
msgid ""
"\n"
"        Migrate objects from DS to LDAP.\n"
"        "
msgstr ""

#: ipalib/plugins/migration.py:425
msgid "Container for %(container)s not found"
msgstr ""

#: ipalib/plugins/misc.py:20
msgid ""
"\n"
"Misc plug-ins\n"
msgstr ""

#: ipalib/plugins/misc.py:36
msgid "Show environment variables"
msgstr ""

#: ipalib/plugins/misc.py:38
msgid "%(count)d variables"
msgstr ""

#: ipalib/plugins/misc.py:47 ipalib/plugins/misc.py:115
msgid ""
"retrieve and print all attributes from the server. Affects command output."
msgstr ""

#: ipalib/plugins/misc.py:61
msgid "Total number of variables env (>= count)"
msgstr ""

#: ipalib/plugins/misc.py:66
msgid "Number of variables returned (<= total)"
msgstr ""

#: ipalib/plugins/misc.py:106
msgid "Show all loaded plugins"
msgstr ""

#: ipalib/plugins/misc.py:108
msgid "%(count)d plugin loaded"
msgid_plural "%(count)d plugins loaded"
msgstr[0] ""

#: ipalib/plugins/misc.py:126
msgid "Number of plugins loaded"
msgstr ""

#: ipalib/plugins/netgroup.py:20
msgid ""
"\n"
"Netgroups\n"
"\n"
"A netgroup is a group used for permission checking. It can contain both\n"
"user and host values.\n"
"\n"
"EXAMPLES:\n"
"\n"
" Add a new netgroup:\n"
"   ipa netgroup-add --desc=\"NFS admins\" admins\n"
"\n"
" Add members to the netgroup:\n"
"   ipa netgroup-add-member --users=tuser1,tuser2 admins\n"
"\n"
" Remove a member from the netgroup:\n"
"   ipa netgroup-remove-member --users=tuser2 admins\n"
"\n"
" Display information about a netgroup:\n"
"   ipa netgroup-show admins\n"
"\n"
" Delete a netgroup:\n"
"   ipa netgroup-del admins\n"
msgstr ""

#: ipalib/plugins/netgroup.py:59
msgid "Member Host"
msgstr ""

#: ipalib/plugins/netgroup.py:67
msgid ""
"\n"
"    Netgroup object.\n"
"    "
msgstr ""

#: ipalib/plugins/netgroup.py:98
msgid "Netgroups"
msgstr ""

#: ipalib/plugins/netgroup.py:103
msgid "Netgroup name"
msgstr ""

#: ipalib/plugins/netgroup.py:110
msgid "Netgroup description"
msgstr ""

#: ipalib/plugins/netgroup.py:114
msgid "NIS domain name"
msgstr ""

#: ipalib/plugins/netgroup.py:119
msgid "IPA unique ID"
msgstr ""

#: ipalib/plugins/netgroup.py:140
msgid ""
"\n"
"    Add a new netgroup.\n"
"    "
msgstr ""

#: ipalib/plugins/netgroup.py:144
msgid "Added netgroup \"%(value)s\""
msgstr ""

#: ipalib/plugins/netgroup.py:153
msgid ""
"\n"
"    Delete a netgroup.\n"
"    "
msgstr ""

#: ipalib/plugins/netgroup.py:156
msgid "Deleted netgroup \"%(value)s\""
msgstr ""

#: ipalib/plugins/netgroup.py:162
msgid ""
"\n"
"    Modify a netgroup.\n"
"    "
msgstr ""

#: ipalib/plugins/netgroup.py:166
msgid "Modified netgroup \"%(value)s\""
msgstr ""

#: ipalib/plugins/netgroup.py:180
msgid ""
"\n"
"    Search for a netgroup.\n"
"    "
msgstr ""

#: ipalib/plugins/netgroup.py:185
msgid "%(count)d netgroup matched"
msgid_plural "%(count)d netgroups matched"
msgstr[0] ""

#: ipalib/plugins/netgroup.py:213
msgid ""
"\n"
"    Display information about a netgroup.\n"
"    "
msgstr ""

#: ipalib/plugins/netgroup.py:222
msgid ""
"\n"
"    Add members to a netgroup.\n"
"    "
msgstr ""

#: ipalib/plugins/netgroup.py:258
msgid ""
"\n"
"    Remove members from a netgroup.\n"
"    "
msgstr ""

#: ipalib/plugins/passwd.py:19
msgid ""
"\n"
"Set a user's password\n"
"\n"
"If someone other than a user changes that user's password (e.g., Helpdesk\n"
"resets it) then the password will need to be changed the first time it\n"
"is used. This is so the end-user is the only one who knows the password.\n"
"\n"
"The IPA password policy controls how often a password may be changed,\n"
"what strength requirements exist, and the length of the password history.\n"
"\n"
"EXAMPLES:\n"
"\n"
" To reset your own password:\n"
"   ipa passwd\n"
"\n"
" To change another user's password:\n"
"   ipa passwd tuser1\n"
msgstr ""

#: ipalib/plugins/passwd.py:46
msgid ""
"\n"
"    Set a user's password\n"
"    "
msgstr ""

#: ipalib/plugins/passwd.py:64
msgid "Changed password for \"%(value)s\""
msgstr ""

#: ipalib/plugins/passwd.py:67
msgid ""
"\n"
"        Execute the passwd operation.\n"
"\n"
"        The dn should not be passed as a keyword argument as it is constructed\n"
"        by this method.\n"
"\n"
"        Returns the entry\n"
"\n"
"        :param principal: The login name or principal of the user\n"
"        :param password: the new password\n"
"        "
msgstr ""

#: ipalib/plugins/permission.py:19
msgid ""
"\n"
"Permissions\n"
"\n"
"A permission enables fine-grained delegation of rights. A permission is\n"
"a human-readable form of a 389-ds Access Control Rule, or instruction (ACI).\n"
"A permission grants the right to perform a specific task such as adding a\n"
"user, modifying a group, etc.\n"
"\n"
"A permission may not contain other permissions.\n"
"\n"
"* A permission grants access to read, write, add or delete.\n"
"* A privilege combines similar permissions (for example all the permissions\n"
"  needed to add a user).\n"
"* A role grants a set of privileges to users, groups, hosts or hostgroups.\n"
"\n"
"A permission is made up of a number of different parts:\n"
"\n"
"1. The name of the permission.\n"
"2. The target of the permission.\n"
"3. The rights granted by the permission.\n"
"\n"
"Rights define what operations are allowed, and may be one or more\n"
"of the following:\n"
"1. write - write one or more attributes\n"
"2. read - read one or more attributes\n"
"3. add - add a new entry to the tree\n"
"4. delete - delete an existing entry\n"
"5. all - all permissions are granted\n"
"\n"
"Read permission is granted for most attributes by default so the read\n"
"permission is not expected to be used very often.\n"
"\n"
"Note the distinction between attributes and entries. The permissions are\n"
"independent, so being able to add a user does not mean that the user will\n"
"be editable.\n"
"\n"
"There are a number of allowed targets:\n"
"1. type: a type of object (user, group, etc).\n"
"2. memberof: a member of a group or hostgroup\n"
"3. filter: an LDAP filter\n"
"4. subtree: an LDAP filter specifying part of the LDAP DIT. This is a\n"
"   super-set of the \"type\" target.\n"
"5. targetgroup: grant access to modify a specific group (such as granting\n"
"   the rights to manage group membership)\n"
"\n"
"EXAMPLES:\n"
"\n"
" Add a permission that grants the creation of users:\n"
"   ipa permission-add --type=user --permissions=add \"Add Users\"\n"
"\n"
" Add a permission that grants the ability to manage group membership:\n"
"   ipa permission-add --attrs=member --permissions=write --type=group \"Manage Group Members\"\n"
msgstr ""

#: ipalib/plugins/permission.py:84
msgid "Permission Type"
msgstr ""

#: ipalib/plugins/permission.py:89
msgid ""
"\n"
"    Permission object.\n"
"    "
msgstr ""

#: ipalib/plugins/permission.py:112
msgid "Permission name"
msgstr ""

#: ipalib/plugins/permission.py:119
msgid ""
"Comma-separated list of permissions to grant (read, write, add, delete, all)"
msgstr ""

#: ipalib/plugins/permission.py:132
msgid ""
"Type of IPA object (user, group, host, hostgroup, service, netgroup, dns)"
msgstr ""

#: ipalib/plugins/permission.py:138
msgid "Member of group"
msgstr ""

#: ipalib/plugins/permission.py:139
msgid "Target members of a group"
msgstr ""

#: ipalib/plugins/permission.py:151
msgid "Subtree to apply permissions to"
msgstr ""

#: ipalib/plugins/permission.py:157
msgid "User group to apply permissions to"
msgstr ""

#: ipalib/plugins/permission.py:177
msgid ""
"\n"
"    Add a new permission.\n"
"    "
msgstr ""

#: ipalib/plugins/permission.py:181
msgid "Added permission \"%(value)s\""
msgstr ""

#: ipalib/plugins/permission.py:236
msgid ""
"\n"
"    Delete a permission.\n"
"    "
msgstr ""

#: ipalib/plugins/permission.py:240
msgid "Deleted permission \"%(value)s\""
msgstr ""

#: ipalib/plugins/permission.py:256
msgid ""
"\n"
"    Modify a permission.\n"
"    "
msgstr ""

#: ipalib/plugins/permission.py:260
msgid "Modified permission \"%(value)s\""
msgstr ""

#: ipalib/plugins/permission.py:352
msgid ""
"\n"
"    Search for permissions.\n"
"    "
msgstr ""

#: ipalib/plugins/permission.py:356
msgid "%(count)d permission matched"
msgid_plural "%(count)d permissions matched"
msgstr[0] ""

#: ipalib/plugins/permission.py:405
msgid ""
"\n"
"    Display information about a permission.\n"
"    "
msgstr ""

#: ipalib/plugins/permission.py:428
msgid ""
"\n"
"    Add members to a permission.\n"
"    "
msgstr ""

#: ipalib/plugins/permission.py:437
msgid ""
"\n"
"    Remove members from a permission.\n"
"    "
msgstr ""

#: ipalib/plugins/ping.py:19
msgid ""
"\n"
"Ping the remote IPA server\n"
msgstr ""

#: ipalib/plugins/ping.py:29
msgid ""
"\n"
"    ping a remote server\n"
"    "
msgstr ""

#: ipalib/plugins/ping.py:37
msgid ""
"\n"
"        A possible enhancement would be to take an argument and echo it\n"
"        back but a fixed value works for now.\n"
"        "
msgstr ""

#: ipalib/plugins/pkinit.py:19
msgid ""
"\n"
"Kerberos pkinit options\n"
"\n"
"Enable or disable anonymous pkinit using the principal\n"
"WELLKNOWN/ANONYMOUS@REALM. The server must have been installed with\n"
"pkinit support.\n"
"\n"
"EXAMPLES:\n"
"\n"
" Enable anonymous pkinit:\n"
"  ipa pkinit-anonymous enable\n"
"\n"
" Disable anonymous pkinit:\n"
"  ipa pkinit-anonymous disable\n"
"\n"
"For more information on anonymous pkinit see:\n"
"\n"
"http://k5wiki.kerberos.org/wiki/Projects/Anonymous_pkinit\n"
msgstr ""

#: ipalib/plugins/pkinit.py:46
msgid ""
"\n"
"    PKINIT Options\n"
"    "
msgstr ""

#: ipalib/plugins/pkinit.py:51
msgid "PKINIT"
msgstr ""

#: ipalib/plugins/pkinit.py:56
msgid ""
"\n"
"    Accepts only Enable/Disable.\n"
"    "
msgstr ""

#: ipalib/plugins/pkinit.py:67
msgid ""
"\n"
"    Enable or Disable Anonymous PKINIT\n"
"    "
msgstr ""

#: ipalib/plugins/privilege.py:19
msgid ""
"\n"
"Privileges\n"
"\n"
"A privilege combines permissions into a logical task. A permission provides\n"
"the rights to do a single task. There are some IPA operations that require\n"
"multiple permissions to succeed. A privilege is where permissions are\n"
"combined in order to perform a specific task.\n"
"\n"
"For example, adding a user requires the following permissions:\n"
" * Creating a new user entry\n"
" * Resetting a user password\n"
" * Adding the new user to the default IPA users group\n"
"\n"
"Combining these three low-level tasks into a higher level task in the\n"
"form of a privilege named \"Add User\" makes it easier to manage Roles.\n"
"\n"
"A privilege may not contain other privileges.\n"
"\n"
"See role and permission for additional information.\n"
msgstr ""

#: ipalib/plugins/privilege.py:45
msgid ""
"\n"
"    Privilege object.\n"
"    "
msgstr ""

#: ipalib/plugins/privilege.py:65
msgid "Privileges"
msgstr ""

#: ipalib/plugins/privilege.py:70
msgid "Privilege name"
msgstr ""

#: ipalib/plugins/privilege.py:77
msgid "Privilege description"
msgstr ""

#: ipalib/plugins/privilege.py:85
msgid ""
"\n"
"    Add a new privilege.\n"
"    "
msgstr ""

#: ipalib/plugins/privilege.py:89
msgid "Added privilege \"%(value)s\""
msgstr ""

#: ipalib/plugins/privilege.py:95
msgid ""
"\n"
"    Delete a privilege.\n"
"    "
msgstr ""

#: ipalib/plugins/privilege.py:99
msgid "Deleted privilege \"%(value)s\""
msgstr ""

#: ipalib/plugins/privilege.py:105
msgid ""
"\n"
"    Modify a privilege.\n"
"    "
msgstr ""

#: ipalib/plugins/privilege.py:109
msgid "Modified privilege \"%(value)s\""
msgstr ""

#: ipalib/plugins/privilege.py:115
msgid ""
"\n"
"    Search for privileges.\n"
"    "
msgstr ""

#: ipalib/plugins/privilege.py:119
msgid "%(count)d privilege matched"
msgid_plural "%(count)d privileges matched"
msgstr[0] ""

#: ipalib/plugins/privilege.py:127
msgid ""
"\n"
"    Display information about a privilege.\n"
"    "
msgstr ""

#: ipalib/plugins/privilege.py:135
msgid ""
"\n"
"    Add members to a privilege\n"
"    "
msgstr ""

#: ipalib/plugins/privilege.py:144
msgid ""
"\n"
"    Remove members from a privilege\n"
"    "
msgstr ""

#: ipalib/plugins/privilege.py:153
msgid ""
"\n"
"    Add permissions to a privilege.\n"
"    "
msgstr ""

#: ipalib/plugins/privilege.py:169
msgid "Number of permissions added"
msgstr ""

#: ipalib/plugins/privilege.py:177
msgid ""
"\n"
"    Remove permissions from a privilege.\n"
"    "
msgstr ""

#: ipalib/plugins/privilege.py:195
msgid "Number of permissions removed"
msgstr ""

#: ipalib/plugins/pwpolicy.py:20
msgid ""
"\n"
"Password policy\n"
"\n"
"A password policy sets limitations on IPA passwords, including maximum\n"
"lifetime, minimum lifetime, the number of passwords to save in\n"
"history, the number of character classes required (for stronger passwords)\n"
"and the minimum password length.\n"
"\n"
"By default there is a single, global policy for all users. You can also\n"
"create a password policy to apply to a group. Each user is only subject\n"
"to one password policy, either the group policy or the global policy. A\n"
"group policy stands alone; it is not a super-set of the global policy plus\n"
"custom settings.\n"
"\n"
"Each group password policy requires a unique priority setting. If a user\n"
"is in multiple groups that have password policies, this priority determines\n"
"which password policy is applied. A lower value indicates a higher priority\n"
"policy.\n"
"\n"
"Group password policies are automatically removed when the groups they\n"
"are associated with are removed.\n"
"\n"
"EXAMPLES:\n"
"\n"
" Modify the global policy:\n"
"   ipa pwpolicy-mod --minlength=10\n"
"\n"
" Add a new group password policy:\n"
"   ipa pwpolicy-add --maxlife=90 --minlife=1 --history=10 --minclasses=3 --minlength=8 --priority=10 localadmins\n"
"\n"
" Display the global password policy:\n"
"   ipa pwpolicy-show\n"
"\n"
" Display a group password policy:\n"
"   ipa pwpolicy-show localadmins\n"
"\n"
" Display the policy that would be applied to a given user:\n"
"   ipa pwpolicy-show --user=tuser1\n"
"\n"
" Modify a group password policy:\n"
"   ipa pwpolicy-mod --minclasses=2 localadmins\n"
msgstr ""

#: ipalib/plugins/pwpolicy.py:72
msgid ""
"\n"
"    Class of Service object used for linking policies with groups\n"
"    "
msgstr ""

#: ipalib/plugins/pwpolicy.py:87
msgid "priority must be a unique value (%(prio)d already used by %(gname)s)"
msgstr ""

#: ipalib/plugins/pwpolicy.py:172
msgid ""
"\n"
"    Password Policy object\n"
"    "
msgstr ""

#: ipalib/plugins/pwpolicy.py:201
msgid "Max failures"
msgstr ""

#: ipalib/plugins/pwpolicy.py:202
msgid "Consecutive failures before lockout"
msgstr ""

#: ipalib/plugins/pwpolicy.py:207
msgid "Failure reset interval"
msgstr ""

#: ipalib/plugins/pwpolicy.py:208
msgid "Period after which failure count will be reset (seconds)"
msgstr ""

#: ipalib/plugins/pwpolicy.py:213
msgid "Lockout duration"
msgstr ""

#: ipalib/plugins/pwpolicy.py:214
msgid "Period for which lockout is enforced (seconds)"
msgstr ""

#: ipalib/plugins/pwpolicy.py:224
msgid "Group"
msgstr ""

#: ipalib/plugins/pwpolicy.py:225
msgid "Manage password policy for specific group"
msgstr ""

#: ipalib/plugins/pwpolicy.py:230
msgid "Max lifetime (days)"
msgstr ""

#: ipalib/plugins/pwpolicy.py:231
msgid "Maximum password lifetime (in days)"
msgstr ""

#: ipalib/plugins/pwpolicy.py:236
msgid "Min lifetime (hours)"
msgstr ""

#: ipalib/plugins/pwpolicy.py:237
msgid "Minimum password lifetime (in hours)"
msgstr ""

#: ipalib/plugins/pwpolicy.py:242
msgid "History size"
msgstr ""

#: ipalib/plugins/pwpolicy.py:243
msgid "Password history size"
msgstr ""

#: ipalib/plugins/pwpolicy.py:248
msgid "Character classes"
msgstr ""

#: ipalib/plugins/pwpolicy.py:249
msgid "Minimum number of character classes"
msgstr ""

#: ipalib/plugins/pwpolicy.py:255
msgid "Min length"
msgstr ""

#: ipalib/plugins/pwpolicy.py:256
msgid "Minimum length of password"
msgstr ""

#: ipalib/plugins/pwpolicy.py:261
msgid "Priority"
msgstr ""

#: ipalib/plugins/pwpolicy.py:262
msgid "Priority of the policy (higher number means lower priority"
msgstr ""

#: ipalib/plugins/pwpolicy.py:294
msgid ""
"\n"
"        Ensure that the maximum lifetime is greater than the minimum.\n"
"        If there is no minimum lifetime set then don't return an error.\n"
"        "
msgstr ""

#: ipalib/plugins/pwpolicy.py:314
msgid "Maximum password life must be greater than minimum."
msgstr ""

#: ipalib/plugins/pwpolicy.py:333
msgid ""
"\n"
"    Add a new group password policy.\n"
"    "
msgstr ""

#: ipalib/plugins/pwpolicy.py:361
msgid ""
"\n"
"    Delete a group password policy.\n"
"    "
msgstr ""

#: ipalib/plugins/pwpolicy.py:380
msgid ""
"\n"
"    Modify a group password policy.\n"
"    "
msgstr ""

#: ipalib/plugins/pwpolicy.py:391
msgid "priority cannot be set on global policy"
msgstr ""

#: ipalib/plugins/pwpolicy.py:423
msgid ""
"\n"
"    Display information about password policy.\n"
"    "
msgstr ""

#: ipalib/plugins/pwpolicy.py:428
msgid "User"
msgstr ""

#: ipalib/plugins/pwpolicy.py:429
msgid "Display effective policy for a specific user"
msgstr ""

#: ipalib/plugins/pwpolicy.py:452
msgid ""
"\n"
"    Search for group password policies.\n"
"    "
msgstr ""

#: ipalib/plugins/role.py:20
msgid ""
"\n"
"Roles\n"
"\n"
"A role is used for fine-grained delegation. A permission grants the ability\n"
"to perform given low-level tasks (add a user, modify a group, etc.). A\n"
"privilege combines one or more permissions into a higher-level abstraction\n"
"such as useradmin. A useradmin would be able to add, delete and modify users.\n"
"\n"
"Privileges are assigned to Roles.\n"
"\n"
"Users, groups, hosts and hostgroups may be members of a Role.\n"
"\n"
"Roles can not contain other roles.\n"
"\n"
"EXAMPLES:\n"
"\n"
" Add a new role:\n"
"   ipa role-add --desc=\"Junior-level admin\" junioradmin\n"
"\n"
" Add some privileges to this role:\n"
"   ipa role-add-privilege --privileges=addusers junioradmin\n"
"   ipa role-add-privilege --privileges=change_password junioradmin\n"
"   ipa role-add-privilege --privileges=add_user_to_default_group juioradmin\n"
"\n"
" Add a group of users to this role:\n"
"   ipa group-add --desc=\"User admins\" useradmins\n"
"   ipa role-add-member --groups=useradmins junioradmin\n"
"\n"
" Display information about a role:\n"
"   ipa role-show junioradmin\n"
"\n"
" The result of this is that any users in the group 'useradmins' can\n"
" add users, reset passwords or add a user to the default IPA user group.\n"
msgstr ""

#: ipalib/plugins/role.py:62
msgid ""
"\n"
"    Role object.\n"
"    "
msgstr ""

#: ipalib/plugins/role.py:81
msgid "Role"
msgstr ""

#: ipalib/plugins/role.py:86
msgid "Role name"
msgstr ""

#: ipalib/plugins/role.py:93
msgid "A description of this role-group"
msgstr ""

#: ipalib/plugins/role.py:101
msgid ""
"\n"
"    Add a new role.\n"
"    "
msgstr ""

#: ipalib/plugins/role.py:105
msgid "Added role \"%(value)s\""
msgstr ""

#: ipalib/plugins/role.py:111
msgid ""
"\n"
"    Delete a role.\n"
"    "
msgstr ""

#: ipalib/plugins/role.py:115
msgid "Deleted role \"%(value)s\""
msgstr ""

#: ipalib/plugins/role.py:121
msgid ""
"\n"
"    Modify a role.\n"
"    "
msgstr ""

#: ipalib/plugins/role.py:125
msgid "Modified role \"%(value)s\""
msgstr ""

#: ipalib/plugins/role.py:131
msgid ""
"\n"
"    Search for roles.\n"
"    "
msgstr ""

#: ipalib/plugins/role.py:135
msgid "%(count)d role matched"
msgid_plural "%(count)d roles matched"
msgstr[0] ""

#: ipalib/plugins/role.py:143
msgid ""
"\n"
"    Display information about a role.\n"
"    "
msgstr ""

#: ipalib/plugins/role.py:151
msgid ""
"\n"
"    Add members to a role.\n"
"    "
msgstr ""

#: ipalib/plugins/role.py:159
msgid ""
"\n"
"    Remove members from a role.\n"
"    "
msgstr ""

#: ipalib/plugins/role.py:167
msgid ""
"\n"
"    Add privileges to a role.\n"
"    "
msgstr ""

#: ipalib/plugins/role.py:183
msgid "Number of privileges added"
msgstr ""

#: ipalib/plugins/role.py:191
msgid ""
"\n"
"    Remove privileges from a role.\n"
"    "
msgstr ""

#: ipalib/plugins/role.py:207
msgid "Number of privileges removed"
msgstr ""

#: ipalib/plugins/selfservice.py:19
msgid ""
"\n"
"Self-service Permissions\n"
"\n"
"A permission enables fine-grained delegation of permissions. Access Control\n"
"Rules, or instructions (ACIs), grant permission to permissions to perform\n"
"given tasks such as adding a user, modifying a group, etc.\n"
"\n"
"A Self-service permission defines what an object can change in its own entry.\n"
"\n"
"\n"
"EXAMPLES:\n"
"\n"
" Add a self-service rule to allow users to manage their address:\n"
"   ipa selfservice-add --permissions=write --attrs=street,postalCode,l,c,st \"Users manage their own address\"\n"
"\n"
" When managing the list of attributes you need to include all attributes\n"
" in the list, including existing ones. Add telephoneNumber to the list:\n"
"   ipa selfservice-mod --attrs=street,postalCode,l,c,st,telephoneNumber \"Users manage their own address\"\n"
"\n"
" Display our updated rule:\n"
"   ipa selfservice-show \"Users manage their own address\"\n"
"\n"
" Delete a rule:\n"
"   ipa selfservice-del \"Users manage their own address\"\n"
msgstr ""

#: ipalib/plugins/selfservice.py:56
msgid ""
"\n"
"    Determine if the ACI is a Self-service ACI and raise an exception if it\n"
"    isn't.\n"
"\n"
"    Return the result if it is a self-service ACI.\n"
"    "
msgstr ""

#: ipalib/plugins/selfservice.py:64
msgid "Self-service permission '%(permission)s' not found"
msgstr ""

#: ipalib/plugins/selfservice.py:68
msgid ""
"\n"
"    Selfservice object.\n"
"    "
msgstr ""

#: ipalib/plugins/selfservice.py:75
msgid "Self Service Permissions"
msgstr ""

#: ipalib/plugins/selfservice.py:80 ipalib/plugins/selfservice.py:81
msgid "Self-service name"
msgstr ""

#: ipalib/plugins/selfservice.py:114
msgid ""
"\n"
"    Add a new self-service permission.\n"
"    "
msgstr ""

#: ipalib/plugins/selfservice.py:118
msgid "Added selfservice \"%(value)s\""
msgstr ""

#: ipalib/plugins/selfservice.py:137
msgid ""
"\n"
"    Delete a self-service permission.\n"
"    "
msgstr ""

#: ipalib/plugins/selfservice.py:142
msgid "Deleted selfservice \"%(value)s\""
msgstr ""

#: ipalib/plugins/selfservice.py:158
msgid ""
"\n"
"    Modify a self-service permission.\n"
"    "
msgstr ""

#: ipalib/plugins/selfservice.py:162
msgid "Modified selfservice \"%(value)s\""
msgstr ""

#: ipalib/plugins/selfservice.py:181
msgid ""
"\n"
"    Search for a self-service permission.\n"
"    "
msgstr ""

#: ipalib/plugins/selfservice.py:185
msgid "%(count)d selfservice matched"
msgid_plural "%(count)d selfservices matched"
msgstr[0] ""

#: ipalib/plugins/selfservice.py:207
msgid ""
"\n"
"    Display information about a self-service permission.\n"
"    "
msgstr ""

#: ipalib/plugins/service.py:21
msgid ""
"\n"
"Services\n"
"\n"
"A IPA service represents a service that runs on a host. The IPA service\n"
"record can store a Kerberos principal, an SSL certificate, or both.\n"
"\n"
"An IPA service can be managed directly from a machine, provided that\n"
"machine has been given the correct permission. This is true even for\n"
"machines other than the one the service is associated with. For example,\n"
"requesting an SSL certificate using the host service principal credentials\n"
"of the host. To manage a service using host credentials you need to\n"
"kinit as the host:\n"
"\n"
" # kinit -kt /etc/krb5.keytab host/ipa.example.com@EXAMPLE.COM\n"
"\n"
"Adding an IPA service allows the associated service to request an SSL\n"
"certificate or keytab, but this is performed as a separate step; they\n"
"are not produced as a result of adding the service.\n"
"\n"
"Only the public aspect of a certificate is stored in a service record;\n"
"the private key is not stored.\n"
"\n"
"EXAMPLES:\n"
"\n"
" Add a new IPA service:\n"
"   ipa service-add HTTP/web.example.com\n"
"\n"
" Allow a host to manage an IPA service certificate:\n"
"  ipa service-add-host --hosts=web.example.com HTTP/web.example.com\n"
"  ipa role-add-member --hosts=web.example.com certadmin\n"
"\n"
" Delete an IPA service:\n"
"   ipa service-del HTTP/web.example.com\n"
"\n"
" Find all IPA services associated with a host:\n"
"   ipa service-find web.example.com\n"
"\n"
" Find all HTTP services:\n"
"   ipa service-find HTTP\n"
"\n"
" Disable the service Kerberos key and SSL certificate:\n"
"   ipa service-disable HTTP/web.example.com\n"
"\n"
" Request a certificate for an IPA service:\n"
"   ipa cert-request --principal=HTTP/web.example.com example.csr\n"
"\n"
" Generate and retrieve a keytab for an IPA service:\n"
"   ipa-getkeytab -s ipa.example.com -p HTTP/web.example.com -k /etc/httpd/httpd.keytab\n"
"\n"
msgstr ""

#: ipalib/plugins/service.py:162
msgid ""
"\n"
"    For now just verify that it is properly base64-encoded.\n"
"    "
msgstr ""

#: ipalib/plugins/service.py:175
msgid ""
"\n"
"    Set individual attributes from some values from a certificate.\n"
"\n"
"    entry_attrs is a dict of an entry\n"
"\n"
"    returns nothing\n"
"    "
msgstr ""

#: ipalib/plugins/service.py:199
msgid ""
"\n"
"    Service object.\n"
"    "
msgstr ""

#: ipalib/plugins/service.py:226
msgid "Service principal"
msgstr ""

#: ipalib/plugins/service.py:242
msgid ""
"\n"
"    Add a new IPA new service.\n"
"    "
msgstr ""

#: ipalib/plugins/service.py:245
msgid "Added service \"%(value)s\""
msgstr ""

#: ipalib/plugins/service.py:251
msgid "force principal name even if not in DNS"
msgstr ""

#: ipalib/plugins/service.py:284
msgid ""
"\n"
"    Delete an IPA service.\n"
"    "
msgstr ""

#: ipalib/plugins/service.py:287
msgid "Deleted service \"%(value)s\""
msgstr ""

#: ipalib/plugins/service.py:321
msgid ""
"\n"
"    Modify an existing IPA service.\n"
"    "
msgstr ""

#: ipalib/plugins/service.py:324
msgid "Modified service \"%(value)s\""
msgstr ""

#: ipalib/plugins/service.py:356
msgid ""
"\n"
"    Search for IPA services.\n"
"    "
msgstr ""

#: ipalib/plugins/service.py:359
msgid "%(count)d service matched"
msgid_plural "%(count)d services matched"
msgstr[0] ""

#: ipalib/plugins/service.py:394
msgid ""
"\n"
"    Display information about an IPA service.\n"
"    "
msgstr ""

#: ipalib/plugins/service.py:432
msgid ""
"\n"
"    Add hosts that can manage this service.\n"
"    "
msgstr ""

#: ipalib/plugins/service.py:442
msgid ""
"\n"
"    Remove hosts that can manage this service.\n"
"    "
msgstr ""

#: ipalib/plugins/service.py:452
msgid ""
"\n"
"    Disable the Kerberos key and SSL certificate of a service.\n"
"    "
msgstr ""

#: ipalib/plugins/service.py:456
msgid "Disabled service \"%(value)s\""
msgstr ""

#: ipalib/plugins/sudocmd.py:19
msgid ""
"\n"
"Sudo Commands\n"
"\n"
"Commands used as building blocks for sudo\n"
"\n"
"EXAMPLES:\n"
"\n"
" Create a new command\n"
"   ipa sudocmd-add --desc='For reading log files' /usr/bin/less\n"
"\n"
" Remove a command\n"
"   ipa sudocmd-del /usr/bin/less\n"
"\n"
msgstr ""

#: ipalib/plugins/sudocmd.py:46
msgid ""
"\n"
"    Sudo Command object.\n"
"    "
msgstr ""

#: ipalib/plugins/sudocmd.py:64
msgid "Sudo Commands"
msgstr ""

#: ipalib/plugins/sudocmd.py:69
msgid "Sudo Command"
msgstr ""

#: ipalib/plugins/sudocmd.py:75
msgid "A description of this command"
msgstr ""

#: ipalib/plugins/sudocmd.py:98
msgid ""
"\n"
"    Create new sudo command.\n"
"    "
msgstr ""

#: ipalib/plugins/sudocmd.py:102
msgid "Added sudo command \"%(value)s\""
msgstr ""

#: ipalib/plugins/sudocmd.py:107
msgid ""
"\n"
"    Delete sudo command.\n"
"    "
msgstr ""

#: ipalib/plugins/sudocmd.py:111
msgid "Deleted sudo command \"%(value)s\""
msgstr ""

#: ipalib/plugins/sudocmd.py:116
msgid ""
"\n"
"    Modify command.\n"
"    "
msgstr ""

#: ipalib/plugins/sudocmd.py:120
msgid "Modified sudo command \"%(value)s\""
msgstr ""

#: ipalib/plugins/sudocmd.py:125
msgid ""
"\n"
"    Search for commands.\n"
"    "
msgstr ""

#: ipalib/plugins/sudocmd.py:129
msgid "%(count)d sudo command matched"
msgid_plural "%(count)d sudo command matched"
msgstr[0] ""

#: ipalib/plugins/sudocmd.py:136
msgid ""
"\n"
"    Display sudo command.\n"
"    "
msgstr ""

#: ipalib/plugins/sudocmdgroup.py:19
msgid ""
"\n"
"Groups of Sudo commands\n"
"\n"
"Manage groups of Sudo commands.\n"
"\n"
"EXAMPLES:\n"
"\n"
" Add a new Sudo command group:\n"
"   ipa sudocmdgroup-add --desc='administrators commands' admincmds\n"
"\n"
" Remove a Sudo command group:\n"
"   ipa sudocmdgroup-del admincmds\n"
"\n"
" Manage Sudo command group membership, commands:\n"
"   ipa sudocmdgroup-add-member --sudocmds=/usr/bin/less,/usr/bin/vim admincmds\n"
"\n"
" Manage Sudo command group membership, commands:\n"
"   ipa group-remove-member --sudocmds=/usr/bin/less admincmds\n"
"\n"
" Show a Sudo command group:\n"
"   ipa group-show localadmins\n"
msgstr ""

#: ipalib/plugins/sudocmdgroup.py:50
msgid ""
"\n"
"    Sudo Group object.\n"
"    "
msgstr ""

#: ipalib/plugins/sudocmdgroup.py:70
msgid "Sudo Command Group"
msgstr ""

#: ipalib/plugins/sudocmdgroup.py:93
msgid ""
"\n"
"    Create new sudo command group.\n"
"    "
msgstr ""

#: ipalib/plugins/sudocmdgroup.py:97
msgid "Added sudo command group \"%(value)s\""
msgstr ""

#: ipalib/plugins/sudocmdgroup.py:103
msgid ""
"\n"
"    Delete sudo command group.\n"
"    "
msgstr ""

#: ipalib/plugins/sudocmdgroup.py:107
msgid "Deleted sudo command group \"%(value)s\""
msgstr ""

#: ipalib/plugins/sudocmdgroup.py:113
msgid ""
"\n"
"    Modify group.\n"
"    "
msgstr ""

#: ipalib/plugins/sudocmdgroup.py:117
msgid "Modified sudo command group \"%(value)s\""
msgstr ""

#: ipalib/plugins/sudocmdgroup.py:123
msgid ""
"\n"
"    Search for sudo command groups.\n"
"    "
msgstr ""

#: ipalib/plugins/sudocmdgroup.py:127
msgid "%(count)d sudo command group matched"
msgid_plural "%(count)d sudo command groups matched"
msgstr[0] ""

#: ipalib/plugins/sudocmdgroup.py:136
msgid ""
"\n"
"    Display sudo command group.\n"
"    "
msgstr ""

#: ipalib/plugins/sudocmdgroup.py:144
msgid ""
"\n"
"    Add members to sudo command group.\n"
"    "
msgstr ""

#: ipalib/plugins/sudocmdgroup.py:152
msgid ""
"\n"
"    Remove members from sudo command group.\n"
"    "
msgstr ""

#: ipalib/plugins/sudorule.py:19
msgid ""
"\n"
"Sudo (su \"do\") allows a system administrator to delegate authority to\n"
"give certain users (or groups of users) the ability to run some (or all)\n"
"commands as root or another user while providing an audit trail of the\n"
"commands and their arguments.\n"
"\n"
"FreeIPA provides a designated binddn to use with Sudo located at:\n"
"uid=sudo,cn=sysaccounts,cn=etc,dc=example,dc=com\n"
"\n"
"To enable the binddn run the following command to set the password:\n"
"LDAPTLS_CACERT=/etc/ipa/ca.crt /usr/bin/ldappasswd -S -W -h ipa.example.com -ZZ -D \"cn=Directory Manager\" uid=sudo,cn=sysaccounts,cn=etc,dc=example,dc=com\n"
"\n"
"For more information, see the FreeIPA Documentation to Sudo.\n"
msgstr ""

#: ipalib/plugins/sudorule.py:44
msgid ""
"\n"
"    Sudo Rule management\n"
"    "
msgstr ""

#: ipalib/plugins/sudorule.py:68
msgid "Sudo Rule"
msgstr ""

#: ipalib/plugins/sudorule.py:98
msgid "Command category"
msgstr ""

#: ipalib/plugins/sudorule.py:99
msgid "Command category the rule applies to"
msgstr ""

#: ipalib/plugins/sudorule.py:104
msgid "Run As User category"
msgstr ""

#: ipalib/plugins/sudorule.py:105
msgid "Run As User category the rule applies to"
msgstr ""

#: ipalib/plugins/sudorule.py:110
msgid "Run As Group category"
msgstr ""

#: ipalib/plugins/sudorule.py:111
msgid "Run As Group category the rule applies to"
msgstr ""

#: ipalib/plugins/sudorule.py:131
msgid "Sudo Allow Commands"
msgstr ""

#: ipalib/plugins/sudorule.py:135
msgid "Sudo Deny Commands"
msgstr ""

#: ipalib/plugins/sudorule.py:147
msgid "Run As User"
msgstr ""

#: ipalib/plugins/sudorule.py:151
msgid "Run As Group"
msgstr ""

#: ipalib/plugins/sudorule.py:156
msgid "External User"
msgstr ""

#: ipalib/plugins/sudorule.py:157
msgid "External User the rule applies to"
msgstr ""

#: ipalib/plugins/sudorule.py:161
msgid "RunAs External User"
msgstr ""

#: ipalib/plugins/sudorule.py:162
msgid "External User the commands can run as"
msgstr ""

#: ipalib/plugins/sudorule.py:166
msgid "RunAs External Group"
msgstr ""

#: ipalib/plugins/sudorule.py:167
msgid "External Group the commands can run as"
msgstr ""

#: ipalib/plugins/sudorule.py:175
msgid ""
"\n"
"    Create new Sudo Rule.\n"
"    "
msgstr ""

#: ipalib/plugins/sudorule.py:183
msgid "Added sudo rule \"%(value)s\""
msgstr ""

#: ipalib/plugins/sudorule.py:189
msgid ""
"\n"
"    Delete Sudo Rule.\n"
"    "
msgstr ""

#: ipalib/plugins/sudorule.py:197
msgid ""
"\n"
"    Modify Sudo Rule.\n"
"    "
msgstr ""

#: ipalib/plugins/sudorule.py:205
msgid ""
"\n"
"    Search for Sudo Rule.\n"
"    "
msgstr ""

#: ipalib/plugins/sudorule.py:213
msgid ""
"\n"
"    Display Sudo Rule.\n"
"    "
msgstr ""

#: ipalib/plugins/sudorule.py:221
msgid ""
"\n"
"    Enable a Sudo rule.\n"
"    "
msgstr ""

#: ipalib/plugins/sudorule.py:247
msgid ""
"\n"
"    Disable a Sudo rule.\n"
"    "
msgstr ""

#: ipalib/plugins/sudorule.py:273 ipalib/plugins/sudorule.py:293
msgid ""
"\n"
"    Add commands and sudo command groups affected by Sudo Rule.\n"
"    "
msgstr ""

#: ipalib/plugins/sudorule.py:283 ipalib/plugins/sudorule.py:303
msgid ""
"\n"
"    Remove commands and sudo command groups affected by Sudo Rule.\n"
"    "
msgstr ""

#: ipalib/plugins/sudorule.py:313
msgid ""
"\n"
"    Add users and groups affected by Sudo Rule.\n"
"    "
msgstr ""

#: ipalib/plugins/sudorule.py:349
msgid ""
"\n"
"    Remove users and groups affected by Sudo Rule.\n"
"    "
msgstr ""

#: ipalib/plugins/sudorule.py:383
msgid ""
"\n"
"    Add hosts and hostgroups affected by Sudo Rule.\n"
"    "
msgstr ""

#: ipalib/plugins/sudorule.py:419
msgid ""
"\n"
"    Remove hosts and hostgroups affected by Sudo Rule.\n"
"    "
msgstr ""

#: ipalib/plugins/sudorule.py:453
msgid ""
"\n"
"    Add user for Sudo to execute as.\n"
"    "
msgstr ""

#: ipalib/plugins/sudorule.py:489
msgid ""
"\n"
"    Remove user for Sudo to execute as.\n"
"    "
msgstr ""

#: ipalib/plugins/sudorule.py:523
msgid ""
"\n"
"    Add group for Sudo to execute as.\n"
"    "
msgstr ""

#: ipalib/plugins/sudorule.py:559
msgid ""
"\n"
"    Remove group for Sudo to execute as.\n"
"    "
msgstr ""

#: ipalib/plugins/sudorule.py:593
msgid ""
"\n"
"    Add an option to the Sudo rule.\n"
"    "
msgstr ""

#: ipalib/plugins/sudorule.py:600 ipalib/plugins/sudorule.py:641
msgid "Sudo Option"
msgstr ""

#: ipalib/plugins/sudorule.py:635
msgid ""
"\n"
"    Remove an option from Sudo rule.\n"
"    "
msgstr ""

#: ipalib/plugins/user.py:20
msgid ""
"\n"
"Users\n"
"\n"
"Manage user entries. All users are POSIX users.\n"
"\n"
"IPA supports a wide range of username formats, but you need to be aware of any\n"
"restrictions that may apply to your particular environment. For example,\n"
"usernames that start with a digit or usernames that exceed a certain length\n"
"may cause problems for some UNIX systems.\n"
"Use 'ipa config-mod' to change the username format allowed by IPA tools.\n"
"\n"
"Disabling a user account prevents that user from obtaining new Kerberos\n"
"credentials. It does not invalidate any credentials that have already\n"
"been issued.\n"
"\n"
"Password management is not a part of this module. For more information\n"
"about this topic please see: ipa help passwd\n"
"\n"
"EXAMPLES:\n"
"\n"
" Add a new user:\n"
"   ipa user-add --first=Tim --last=User --password tuser1\n"
"\n"
" Find all users whose entries include the string \"Tim\":\n"
"   ipa user-find Tim\n"
"\n"
" Find all users with \"Tim\" as the first name:\n"
"   ipa user-find --first=Tim\n"
"\n"
" Disable a user account:\n"
"   ipa user-disable tuser1\n"
"\n"
" Enable a user account:\n"
"   ipa user-enable tuser1\n"
"\n"
" Delete a user:\n"
"   ipa user-del tuser1\n"
msgstr ""

#: ipalib/plugins/user.py:79
msgid ""
"\n"
"    User object.\n"
"    "
msgstr ""

#: ipalib/plugins/user.py:116
msgid "User login"
msgstr ""

#: ipalib/plugins/user.py:123
msgid "First name"
msgstr ""

#: ipalib/plugins/user.py:127
msgid "Last name"
msgstr ""

#: ipalib/plugins/user.py:130
msgid "Full name"
msgstr ""

#: ipalib/plugins/user.py:135
msgid "Display name"
msgstr ""

#: ipalib/plugins/user.py:140
msgid "Initials"
msgstr ""

#: ipalib/plugins/user.py:146
msgid "Home directory"
msgstr ""

#: ipalib/plugins/user.py:150
msgid "GECOS field"
msgstr ""

#: ipalib/plugins/user.py:156
msgid "Login shell"
msgstr ""

#: ipalib/plugins/user.py:161
msgid "Kerberos principal"
msgstr ""

#: ipalib/plugins/user.py:168
msgid "Email address"
msgstr ""

#: ipalib/plugins/user.py:173
msgid "Prompt to set the user password"
msgstr ""

#: ipalib/plugins/user.py:180
msgid "UID"
msgstr ""

#: ipalib/plugins/user.py:181
msgid "User ID Number (system will assign one if not provided)"
msgstr ""

#: ipalib/plugins/user.py:188
msgid "Group ID Number"
msgstr ""

#: ipalib/plugins/user.py:193
msgid "Street address"
msgstr ""

#: ipalib/plugins/user.py:197
msgid "City"
msgstr ""

#: ipalib/plugins/user.py:201
msgid "State/Province"
msgstr ""

#: ipalib/plugins/user.py:204
msgid "ZIP"
msgstr ""

#: ipalib/plugins/user.py:208
msgid "Telephone Number"
msgstr ""

#: ipalib/plugins/user.py:211
msgid "Mobile Telephone Number"
msgstr ""

#: ipalib/plugins/user.py:214
msgid "Pager Number"
msgstr ""

#: ipalib/plugins/user.py:218
msgid "Fax Number"
msgstr ""

#: ipalib/plugins/user.py:222
msgid "Org. Unit"
msgstr ""

#: ipalib/plugins/user.py:225
msgid "Job Title"
msgstr ""

#: ipalib/plugins/user.py:228
msgid "Manager"
msgstr ""

#: ipalib/plugins/user.py:231
msgid "Car License"
msgstr ""

#: ipalib/plugins/user.py:234
msgid "Account disabled"
msgstr ""

#: ipalib/plugins/user.py:258
msgid ""
"\n"
"        Given a userid verify the user's existence and return the dn.\n"
"        "
msgstr ""

#: ipalib/plugins/user.py:276
msgid "manager %(manager)s not found"
msgstr ""

#: ipalib/plugins/user.py:281
msgid ""
"\n"
"        Convert a manager dn into a userid\n"
"        "
msgstr ""

#: ipalib/plugins/user.py:295
msgid ""
"\n"
"    Add a new user.\n"
"    "
msgstr ""

#: ipalib/plugins/user.py:298
msgid "Added user \"%(value)s\""
msgstr ""

#: ipalib/plugins/user.py:303
msgid "Don't create user private group"
msgstr ""

#: ipalib/plugins/user.py:333
msgid "can be at most %(len)d characters"
msgstr ""

#: ipalib/plugins/user.py:400
msgid ""
"\n"
"    Delete a user.\n"
"    "
msgstr ""

#: ipalib/plugins/user.py:404
msgid "Deleted user \"%(value)s\""
msgstr ""

#: ipalib/plugins/user.py:413
msgid ""
"\n"
"    Modify a user.\n"
"    "
msgstr ""

#: ipalib/plugins/user.py:417
msgid "Modified user \"%(value)s\""
msgstr ""

#: ipalib/plugins/user.py:437
msgid ""
"\n"
"    Search for users.\n"
"    "
msgstr ""

#: ipalib/plugins/user.py:444
msgid "Self"
msgstr ""

#: ipalib/plugins/user.py:445
msgid "Display user record for current Kerberos principal"
msgstr ""

#: ipalib/plugins/user.py:463
msgid "%(count)d user matched"
msgid_plural "%(count)d users matched"
msgstr[0] ""

#: ipalib/plugins/user.py:471
msgid ""
"\n"
"    Display information about a user.\n"
"    "
msgstr ""

#: ipalib/plugins/user.py:484
msgid ""
"\n"
"    Disable a user account.\n"
"    "
msgstr ""

#: ipalib/plugins/user.py:489
msgid "Disabled user account \"%(value)s\""
msgstr ""

#: ipalib/plugins/user.py:507
msgid ""
"\n"
"    Enable a user account.\n"
"    "
msgstr ""

#: ipalib/plugins/user.py:512
msgid "Enabled user account \"%(value)s\""
msgstr ""

#: ipalib/plugins/user.py:529
msgid ""
"\n"
"    Unlock a user account\n"
"\n"
"    An account may become locked if the password is entered incorrectly too\n"
"    many times within a specific time period as controlled by password\n"
"    policy. A locked account is a temporary condition and may be unlocked by\n"
"    an administrator.\n"
"    "
msgstr ""

#: ipalib/plugins/user.py:538
msgid "Unlocked account \"%(value)s\""
msgstr ""

#: ipalib/plugins/virtual.py:20
msgid ""
"\n"
"Base classes for non-LDAP backend plugins.\n"
msgstr ""

#: ipalib/plugins/virtual.py:28
msgid ""
"\n"
"    A command that doesn't use the LDAP backend but wants to use the\n"
"    LDAP access control system to make authorization decisions.\n"
"\n"
"    The class variable operation is the commonName attribute of the\n"
"    entry to be tested against.\n"
"\n"
"    In advance, you need to create an entry of the form:\n"
"        cn=<operation>, api.env.container_virtual, api.env.basedn\n"
"\n"
"    Ex.\n"
"        cn=request certificate, cn=virtual operations,cn=etc, dc=example, dc=com\n"
"    "
msgstr ""

#: ipalib/plugins/virtual.py:44
msgid ""
"\n"
"        Perform an LDAP query to determine authorization.\n"
"\n"
"        This should be executed before any actual work is done.\n"
"        "
msgstr ""

#: ipalib/plugins/xmlclient.py:21
msgid ""
"\n"
"XML-RPC client plugin.\n"
msgstr ""

#: ipalib/cli.py:581
#, python-format
msgid "Enter %(label)s again to verify: "
msgstr ""

#: ipalib/cli.py:585 ipa-client/ipa-getkeytab.c:751
#, c-format
msgid "Passwords do not match!"
msgstr ""

#: ipalib/cli.py:590
msgid "Cancelled."
msgstr ""

#: ipalib/cli.py:819
msgid "Command name"
msgstr ""

#: ipalib/cli.py:1117
msgid "No file to read"
msgstr ""

#: ipalib/errors.py:300
#, python-format
msgid "%(cver)s client incompatible with %(sver)s server at %(server)r"
msgstr ""

#: ipalib/errors.py:318
#, python-format
msgid "unknown error %(code)d from %(server)s: %(error)s"
msgstr ""

#: ipalib/errors.py:334
msgid "an internal error has occurred"
msgstr ""

#: ipalib/errors.py:356
#, python-format
msgid "an internal error has occurred on server at %(server)r"
msgstr ""

#: ipalib/errors.py:372
#, python-format
msgid "unknown command %(name)r"
msgstr ""

#: ipalib/errors.py:389 ipalib/errors.py:414
#, python-format
msgid "error on server %(server)r: %(error)s"
msgstr ""

#: ipalib/errors.py:405
#, python-format
msgid "cannot connect to %(uri)r: %(error)s"
msgstr ""

#: ipalib/errors.py:423
#, python-format
msgid "Invalid JSON-RPC request: %(error)s"
msgstr ""

#: ipalib/errors.py:439
#, python-format
msgid "error marshalling data for XML-RPC transport: %(error)s"
msgstr ""

#: ipalib/errors.py:465
#, python-format
msgid "Kerberos error: %(major)s/%(minor)s"
msgstr ""

#: ipalib/errors.py:482
msgid "did not receive Kerberos credentials"
msgstr ""

#: ipalib/errors.py:498
#, python-format
msgid "Service %(service)r not found in Kerberos database"
msgstr ""

#: ipalib/errors.py:514
msgid "No credentials cache found"
msgstr ""

#: ipalib/errors.py:530
msgid "Ticket expired"
msgstr ""

#: ipalib/errors.py:546
msgid "Credentials cache permissions incorrect"
msgstr ""

#: ipalib/errors.py:562
msgid "Bad format in credentials cache"
msgstr ""

#: ipalib/errors.py:578
msgid "Cannot resolve KDC for requested realm"
msgstr ""

#: ipalib/errors.py:597
#, python-format
msgid "Insufficient access: %(info)s"
msgstr ""

#: ipalib/errors.py:641
#, python-format
msgid "command %(name)r takes no arguments"
msgstr ""

#: ipalib/errors.py:661
#, python-format
msgid "command %(name)r takes at most %(count)d argument"
msgid_plural "command %(name)r takes at most %(count)d arguments"
msgstr[0] ""

#: ipalib/errors.py:691
#, python-format
msgid "overlapping arguments and options: %(names)r"
msgstr ""

#: ipalib/errors.py:707
#, python-format
msgid "%(name)r is required"
msgstr ""

#: ipalib/errors.py:723 ipalib/errors.py:739
#, python-format
msgid "invalid %(name)r: %(error)s"
msgstr ""

#: ipalib/errors.py:755
#, python-format
msgid "api has no such namespace: %(name)r"
msgstr ""

#: ipalib/errors.py:764
msgid "Passwords do not match"
msgstr ""

#: ipalib/errors.py:773
msgid "Command not implemented"
msgstr ""

#: ipalib/errors.py:782
msgid "Client is not configured. Run ipa-client-install."
msgstr ""

#: ipalib/errors.py:810 ipalib/errors.py:1050 ipalib/errors.py:1144
#: ipalib/errors.py:1424 ipalib/errors.py:1441
#, python-format
msgid "%(reason)s"
msgstr ""

#: ipalib/errors.py:826
msgid "This entry already exists"
msgstr ""

#: ipalib/errors.py:842
msgid "You must enroll a host in order to create a host service"
msgstr ""

#: ipalib/errors.py:858
#, python-format
msgid ""
"Service principal is not of the form: service/fully-qualified host name: "
"%(reason)s"
msgstr ""

#: ipalib/errors.py:874
msgid ""
"The realm for the principal does not match the realm for this IPA server"
msgstr ""

#: ipalib/errors.py:890
msgid "This command requires root access"
msgstr ""

#: ipalib/errors.py:906
msgid "This is already a posix group"
msgstr ""

#: ipalib/errors.py:922
#, python-format
msgid "Principal is not of the form user@REALM: %(principal)r"
msgstr ""

#: ipalib/errors.py:938
msgid "This entry is already enabled"
msgstr ""

#: ipalib/errors.py:954
msgid "This entry is already disabled"
msgstr ""

#: ipalib/errors.py:970
msgid "This entry cannot be enabled or disabled"
msgstr ""

#: ipalib/errors.py:986
msgid "This entry is not a member"
msgstr ""

#: ipalib/errors.py:1002
msgid "A group may not be a member of itself"
msgstr ""

#: ipalib/errors.py:1018
msgid "This entry is already a member"
msgstr ""

#: ipalib/errors.py:1034
#, python-format
msgid "Base64 decoding failed: %(reason)s"
msgstr ""

#: ipalib/errors.py:1066
msgid "A group may not be added as a member of itself"
msgstr ""

#: ipalib/errors.py:1082
msgid "The default users group cannot be removed"
msgstr ""

#: ipalib/errors.py:1098
msgid "Host does not have corresponding DNS A record"
msgstr ""

#: ipalib/errors.py:1113
msgid "Deleting a managed group is not allowed. It must be detached first."
msgstr ""

#: ipalib/errors.py:1128
msgid "A managed group cannot have a password policy."
msgstr ""

#: ipalib/errors.py:1160
#, python-format
msgid "'%(entry)s' doesn't have a certificate."
msgstr ""

#: ipalib/errors.py:1176
#, python-format
msgid "Unable to create private group. A group '%(group)s' already exists."
msgstr ""

#: ipalib/errors.py:1192
#, python-format
msgid ""
"A problem was encountered when verifying that all members were %(verb)s: "
"%(exc)s"
msgstr ""

#: ipalib/errors.py:1216
#, python-format
msgid "no command nor help topic %(topic)r"
msgstr ""

#: ipalib/errors.py:1240
msgid "change collided with another change"
msgstr ""

#: ipalib/errors.py:1256
msgid "no modifications to be performed"
msgstr ""

#: ipalib/errors.py:1272
#, python-format
msgid "%(desc)s: %(info)s"
msgstr ""

#: ipalib/errors.py:1288
msgid "limits exceeded for this query"
msgstr ""

#: ipalib/errors.py:1303
#, python-format
msgid "%(info)s"
msgstr ""

#: ipalib/errors.py:1318
msgid "modifying primary key is not allowed"
msgstr ""

#: ipalib/errors.py:1334
#, python-format
msgid "%(attr)s: Only one value allowed."
msgstr ""

#: ipalib/errors.py:1350
#, python-format
msgid "%(attr)s: Invalid syntax."
msgstr ""

#: ipalib/errors.py:1366
#, python-format
msgid "Bad search filter %(info)s"
msgstr ""

#: ipalib/errors.py:1391
#, python-format
msgid "Certificate operation cannot be completed: %(error)s"
msgstr ""

#: ipalib/errors.py:1407
#, python-format
msgid "Certificate format error: %(error)s"
msgstr ""

#: ipalib/errors.py:1458
msgid "Already registered"
msgstr ""

#: ipalib/errors.py:1474
msgid "Not registered yet"
msgstr ""

#: ipalib/frontend.py:398
msgid "Results are truncated, try a more specific search"
msgstr ""

#: ipalib/frontend.py:850
msgid ""
"Retrieve and print all attributes from the server. Affects command output."
msgstr ""

#: ipalib/frontend.py:856
msgid "Print entries as stored on the server. Only affects output format."
msgstr ""

#: ipalib/frontend.py:985
msgid "Forward to server instead of running locally"
msgstr ""

#: ipalib/output.py:92
msgid "A dictionary representing an LDAP entry"
msgstr ""

#: ipalib/output.py:100
msgid "A list of LDAP entries"
msgstr ""

#: ipalib/output.py:111
msgid "All commands should at least have a result"
msgstr ""

#: ipalib/parameters.py:296
msgid "incorrect type"
msgstr ""

#: ipalib/parameters.py:299
msgid "Only one value is allowed"
msgstr ""

#: ipalib/parameters.py:901
msgid "must be True or False"
msgstr ""

#: ipalib/parameters.py:1002
msgid "must be an integer"
msgstr ""

#: ipalib/parameters.py:1054
#, python-format
msgid "must be at least %(minvalue)d"
msgstr ""

#: ipalib/parameters.py:1064
#, python-format
msgid "can be at most %(maxvalue)d"
msgstr ""

#: ipalib/parameters.py:1074
msgid "must be a decimal number"
msgstr ""

#: ipalib/parameters.py:1097
#, python-format
msgid "must be at least %(minvalue)f"
msgstr ""

#: ipalib/parameters.py:1107
#, python-format
msgid "can be at most %(maxvalue)f"
msgstr ""

#: ipalib/parameters.py:1174
#, python-format
msgid "must match pattern \"%(pattern)s\""
msgstr ""

#: ipalib/parameters.py:1192
msgid "must be binary data"
msgstr ""

#: ipalib/parameters.py:1208
#, python-format
msgid "must be at least %(minlength)d bytes"
msgstr ""

#: ipalib/parameters.py:1218
#, python-format
msgid "can be at most %(maxlength)d bytes"
msgstr ""

#: ipalib/parameters.py:1228
#, python-format
msgid "must be exactly %(length)d bytes"
msgstr ""

#: ipalib/parameters.py:1246
msgid "must be Unicode text"
msgstr ""

#: ipalib/parameters.py:1277
#, python-format
msgid "must be at least %(minlength)d characters"
msgstr ""

#: ipalib/parameters.py:1287
#, python-format
msgid "can be at most %(maxlength)d characters"
msgstr ""

#: ipalib/parameters.py:1297
#, python-format
msgid "must be exactly %(length)d characters"
msgstr ""

#: ipalib/parameters.py:1315
#, python-format
msgid "The character '%(char)r' is not allowed."
msgstr ""

#: ipalib/parameters.py:1355
#, python-format
msgid "must be one of %(values)r"
msgstr ""

#: ipalib/util.py:200
#, python-format
msgid "Permission denied: %(file)s"
msgstr ""

#: ipalib/x509.py:174
#, python-format
msgid "Issuer \"%(issuer)s\" does not match the expected issuer"
msgstr ""

#: ipaserver/plugins/dogtag.py:1313 ipaserver/plugins/dogtag.py:1398
#: ipaserver/plugins/dogtag.py:1463 ipaserver/plugins/dogtag.py:1541
#: ipaserver/plugins/dogtag.py:1600
#, python-format
msgid "Unable to communicate with CMS (%s)"
msgstr ""

#: ipaserver/plugins/join.py:54
msgid "The hostname to register as"
msgstr ""

#: ipaserver/plugins/join.py:62
msgid "The IPA realm"
msgstr ""

#: ipaserver/plugins/join.py:68
msgid "Hardware platform of the host (e.g. Lenovo T61)"
msgstr ""

#: ipaserver/plugins/join.py:72
msgid "Operating System and version of the host (e.g. Fedora 9)"
msgstr ""

#: ipaserver/plugins/selfsign.py:99
#, python-format
msgid ""
"Request subject \"%(request_subject)s\" does not match the form "
"\"%(subject_base)s\""
msgstr ""

#: ipaserver/plugins/selfsign.py:104
#, python-format
msgid "unable to decode csr: %s"
msgstr ""

#: ipaserver/plugins/selfsign.py:125 ipaserver/plugins/selfsign.py:140
msgid "file operation"
msgstr ""

#: ipaserver/plugins/selfsign.py:154
msgid "cannot obtain next serial number"
msgstr ""

#: ipaserver/plugins/selfsign.py:189
msgid "certutil failure"
msgstr ""

#: ipa-client/config.c:55
#, c-format
msgid "cannot open configuration file %s\n"
msgstr ""

#: ipa-client/config.c:62
#, c-format
msgid "cannot stat() configuration file %s\n"
msgstr ""

#: ipa-client/config.c:68
#, c-format
msgid "out of memory\n"
msgstr ""

#: ipa-client/config.c:79
#, c-format
msgid "read error\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:85 ipa-client/ipa-getkeytab.c:821
#: ipa-client/ipa-rmkeytab.c:190
#, c-format
msgid "Kerberos context initialization failed\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:147 ipa-client/ipa-getkeytab.c:834
#, c-format
msgid "No system preferred enctypes ?!\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:155
#, c-format
msgid "Out of memory!?\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:173 ipa-client/ipa-getkeytab.c:188
#, c-format
msgid "Out of memory\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:203
#, c-format
msgid "Warning unrecognized encryption type: [%s]\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:218
#, c-format
msgid "Warning unrecognized salt type: [%s]\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:245
#, c-format
msgid "Enctype comparison failed!\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:307
#, c-format
msgid "Failed to create random key!\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:320 ipa-client/ipa-getkeytab.c:337
#: ipa-client/ipa-getkeytab.c:345 ipa-client/ipa-getkeytab.c:382
#, c-format
msgid "Failed to create key!\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:327 ipa-client/ipa-getkeytab.c:360
#: ipa-client/ipa-join.c:417 ipa-client/ipa-join.c:426
#: ipa-client/ipa-join.c:563 ipa-client/ipa-join.c:751
#: ipa-client/ipa-join.c:819
#, c-format
msgid "Out of memory!\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:371
#, c-format
msgid "Bad or unsupported salt type (%d)!\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:492
#, c-format
msgid "No keys accepted by KDC\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:507
#, c-format
msgid "Out of memory \n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:545
#, c-format
msgid "Out of Memory!\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:552
#, c-format
msgid "Failed to create control!\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:576
#, c-format
msgid "Unable to initialize ldap library!\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:583
#, c-format
msgid "Unable to set ldap options!\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:596
#, c-format
msgid "Simple bind failed\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:606
#, c-format
msgid "SASL Bind failed!\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:622 ipa-client/ipa-getkeytab.c:635
#: ipa-client/ipa-getkeytab.c:642 ipa-client/ipa-getkeytab.c:649
#, c-format
msgid "Operation failed! %s\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:655 ipa-client/ipa-getkeytab.c:665
#, c-format
msgid "Missing reply control!\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:672
#, c-format
msgid "ber_init() failed, Invalid control ?!\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:691 ipa-client/ipa-getkeytab.c:698
#, c-format
msgid "ber_scanf() failed, Invalid control ?!\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:736
msgid "New Principal Password"
msgstr ""

#: ipa-client/ipa-getkeytab.c:742
msgid "Verify Principal Password"
msgstr ""

#: ipa-client/ipa-getkeytab.c:776
msgid "Print as little as possible"
msgstr ""

#: ipa-client/ipa-getkeytab.c:776
msgid "Output only on errors"
msgstr ""

#: ipa-client/ipa-getkeytab.c:778
msgid "Contact this specific KDC Server"
msgstr ""

#: ipa-client/ipa-getkeytab.c:779
msgid "Server Name"
msgstr ""

#: ipa-client/ipa-getkeytab.c:781 ipa-client/ipa-rmkeytab.c:171
msgid ""
"The principal to get a keytab for (ex: ftp/ftp.example.com@EXAMPLE.COM)"
msgstr ""

#: ipa-client/ipa-getkeytab.c:782 ipa-client/ipa-rmkeytab.c:172
msgid "Kerberos Service Principal Name"
msgstr ""

#: ipa-client/ipa-getkeytab.c:784 ipa-client/ipa-rmkeytab.c:174
msgid "File were to store the keytab information"
msgstr ""

#: ipa-client/ipa-getkeytab.c:785 ipa-client/ipa-rmkeytab.c:174
msgid "Keytab File Name"
msgstr ""

#: ipa-client/ipa-getkeytab.c:787
msgid "Encryption types to request"
msgstr ""

#: ipa-client/ipa-getkeytab.c:788
msgid "Comma separated encryption types list"
msgstr ""

#: ipa-client/ipa-getkeytab.c:790
msgid "Show the list of permitted encryption types and exit"
msgstr ""

#: ipa-client/ipa-getkeytab.c:791
msgid "Permitted Encryption Types"
msgstr ""

#: ipa-client/ipa-getkeytab.c:793
msgid "Asks for a non-random password to use for the principal"
msgstr ""

#: ipa-client/ipa-getkeytab.c:795
msgid "LDAP DN"
msgstr ""

#: ipa-client/ipa-getkeytab.c:795
msgid "DN to bind as if not using kerberos"
msgstr ""

#: ipa-client/ipa-getkeytab.c:797
msgid "LDAP password"
msgstr ""

#: ipa-client/ipa-getkeytab.c:797
msgid "password to use if not using kerberos"
msgstr ""

#: ipa-client/ipa-getkeytab.c:837
#, c-format
msgid "Supported encryption types:\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:841
#, c-format
msgid "Warning: failed to convert type (#%d)\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:860
#, c-format
msgid "Bind password required when using a bind DN.\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:873
#, c-format
msgid ""
"Warning: salt types are not honored with randomized passwords (see opt. "
"-P)\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:885
#, c-format
msgid "Invalid Service Principal Name\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:893
#, c-format
msgid "Kerberos Credential Cache not found. Do you have a Kerberos Ticket?\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:901
#, c-format
msgid ""
"Kerberos User Principal not found. Do you have a valid Credential Cache?\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:909
#, c-format
msgid "Failed to open Keytab\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:916
#, c-format
msgid "Failed to create key material\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:935
#, c-format
msgid "Failed to add key to the keytab\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:944
#, c-format
msgid "Failed to close the keytab\n"
msgstr ""

#: ipa-client/ipa-getkeytab.c:950
#, c-format
msgid "Keytab successfully retrieved and stored in: %s\n"
msgstr ""

#: ipa-client/ipa-join.c:65
#, c-format
msgid "No permission to join this host to the IPA domain.\n"
msgstr ""

#: ipa-client/ipa-join.c:94 ipa-client/ipa-join.c:106
#, c-format
msgid "No write permissions on keytab file '%s'\n"
msgstr ""

#: ipa-client/ipa-join.c:111
#, c-format
msgid "access() on %s failed: errno = %d\n"
msgstr ""

#: ipa-client/ipa-join.c:143 ipa-client/ipa-join.c:197
#, c-format
msgid "Out of memory!"
msgstr ""

#: ipa-client/ipa-join.c:204
#, c-format
msgid "Unable to initialize connection to ldap server: %s"
msgstr ""

#: ipa-client/ipa-join.c:210
#, c-format
msgid "Unable to enable SSL in LDAP\n"
msgstr ""

#: ipa-client/ipa-join.c:216
#, c-format
msgid "Unable to set LDAP version\n"
msgstr ""

#: ipa-client/ipa-join.c:236
#, c-format
msgid "Bind failed: %s\n"
msgstr ""

#: ipa-client/ipa-join.c:269
#, c-format
msgid "Search for %s on rootdse failed with error %d"
msgstr ""

#: ipa-client/ipa-join.c:279 ipa-client/ipa-join.c:331
#, c-format
msgid "No values for %s"
msgstr ""

#: ipa-client/ipa-join.c:322
#, c-format
msgid "Search for ipaCertificateSubjectBase failed with error %d"
msgstr ""

#: ipa-client/ipa-join.c:390
#, c-format
msgid "Unable to determine root DN of %s\n"
msgstr ""

#: ipa-client/ipa-join.c:399
#, c-format
msgid "Unable to determine certificate subject of %s\n"
msgstr ""

#: ipa-client/ipa-join.c:407
#, c-format
msgid "Unable to make an LDAP connection to %s\n"
msgstr ""

#: ipa-client/ipa-join.c:432
#, c-format
msgid "Searching with %s in %s\n"
msgstr ""

#: ipa-client/ipa-join.c:438
#, c-format
msgid "ldap_search_ext_s: %s\n"
msgstr ""

#: ipa-client/ipa-join.c:446
#, c-format
msgid "Unable to find host '%s'\n"
msgstr ""

#: ipa-client/ipa-join.c:453
#, c-format
msgid "Unable to get binddn for host '%s'\n"
msgstr ""

#: ipa-client/ipa-join.c:466
#, c-format
msgid "Host already has principal, trying bind anyway\n"
msgstr ""

#: ipa-client/ipa-join.c:480 ipa-client/ipa-join.c:633
#, c-format
msgid "Host is already joined.\n"
msgstr ""

#: ipa-client/ipa-join.c:484
#, c-format
msgid "Incorrect password.\n"
msgstr ""

#: ipa-client/ipa-join.c:495
#, c-format
msgid "principal not found in host entry\n"
msgstr ""

#: ipa-client/ipa-join.c:618
#, c-format
msgid "principal not found in XML-RPC response\n"
msgstr ""

#: ipa-client/ipa-join.c:699 ipa-client/ipa-join.c:900
#, c-format
msgid "Unable to determine IPA server from %s\n"
msgstr ""

#: ipa-client/ipa-join.c:715 ipa-client/ipa-join.c:915
#, c-format
msgid "The hostname must be fully-qualified: %s\n"
msgstr ""

#: ipa-client/ipa-join.c:724 ipa-client/ipa-join.c:925
#, c-format
msgid "Unable to join host: Kerberos context initialization failed\n"
msgstr ""

#: ipa-client/ipa-join.c:732
#, c-format
msgid "Error resolving keytab: %s.\n"
msgstr ""

#: ipa-client/ipa-join.c:741
#, c-format
msgid "Error getting default Kerberos realm: %s.\n"
msgstr ""

#: ipa-client/ipa-join.c:759
#, c-format
msgid "Error parsing \"%s\": %s.\n"
msgstr ""

#: ipa-client/ipa-join.c:777
#, c-format
msgid "Error obtaining initial credentials: %s.\n"
msgstr ""

#: ipa-client/ipa-join.c:788
#, c-format
msgid "Unable to generate Kerberos Credential Cache\n"
msgstr ""

#: ipa-client/ipa-join.c:796
#, c-format
msgid "Error storing creds in credential cache: %s.\n"
msgstr ""

#: ipa-client/ipa-join.c:846
#, c-format
msgid "Unenrollment successful.\n"
msgstr ""

#: ipa-client/ipa-join.c:849
#, c-format
msgid "Unenrollment failed.\n"
msgstr ""

#: ipa-client/ipa-join.c:854
#, c-format
msgid "result not found in XML-RPC response\n"
msgstr ""

#: ipa-client/ipa-join.c:932
#, c-format
msgid "Unable to join host: Kerberos Credential Cache not found\n"
msgstr ""

#: ipa-client/ipa-join.c:940
#, c-format
msgid ""
"Unable to join host: Kerberos User Principal not found and host password not"
" provided.\n"
msgstr ""

#: ipa-client/ipa-join.c:954
#, c-format
msgid "fork() failed\n"
msgstr ""

#: ipa-client/ipa-join.c:983
#, c-format
msgid "ipa-getkeytab not found\n"
msgstr ""

#: ipa-client/ipa-join.c:986
#, c-format
msgid "ipa-getkeytab has bad permissions?\n"
msgstr ""

#: ipa-client/ipa-join.c:989
#, c-format
msgid "executing ipa-getkeytab failed, errno %d\n"
msgstr ""

#: ipa-client/ipa-join.c:1001
#, c-format
msgid "child exited with %d\n"
msgstr ""

#: ipa-client/ipa-join.c:1007
#, c-format
msgid "Certificate subject base is: %s\n"
msgstr ""

#: ipa-client/ipa-join.c:1042
msgid "Print the raw XML-RPC output in GSSAPI mode"
msgstr ""

#: ipa-client/ipa-join.c:1044
msgid "Quiet mode. Only errors are displayed."
msgstr ""

#: ipa-client/ipa-join.c:1046
msgid "Unenroll this host from IPA server"
msgstr ""

#: ipa-client/ipa-join.c:1048
msgid "Hostname of this server"
msgstr ""

#: ipa-client/ipa-join.c:1048 ipa-client/ipa-join.c:1050
msgid "hostname"
msgstr ""

#: ipa-client/ipa-join.c:1050
msgid "IPA Server to use"
msgstr ""

#: ipa-client/ipa-join.c:1052
msgid "Specifies where to store keytab information."
msgstr ""

#: ipa-client/ipa-join.c:1052
msgid "filename"
msgstr ""

#: ipa-client/ipa-join.c:1054
msgid "LDAP password (if not using Kerberos)"
msgstr ""

#: ipa-client/ipa-join.c:1054
msgid "password"
msgstr ""

#: ipa-client/ipa-rmkeytab.c:43
#, c-format
msgid "Unable to parse principal name\n"
msgstr ""

#: ipa-client/ipa-rmkeytab.c:45
#, c-format
msgid "krb5_parse_name %d: %s\n"
msgstr ""

#: ipa-client/ipa-rmkeytab.c:55
#, c-format
msgid "Removing principal %s\n"
msgstr ""

#: ipa-client/ipa-rmkeytab.c:68
#, c-format
msgid "Failed to open keytab\n"
msgstr ""

#: ipa-client/ipa-rmkeytab.c:72
#, c-format
msgid "principal not found\n"
msgstr ""

#: ipa-client/ipa-rmkeytab.c:74
#, c-format
msgid "krb5_kt_get_entry %d: %s\n"
msgstr ""

#: ipa-client/ipa-rmkeytab.c:82
#, c-format
msgid "Unable to remove entry\n"
msgstr ""

#: ipa-client/ipa-rmkeytab.c:84
#, c-format
msgid "kvno %d\n"
msgstr ""

#: ipa-client/ipa-rmkeytab.c:85
#, c-format
msgid "krb5_kt_remove_entry %d: %s\n"
msgstr ""

#: ipa-client/ipa-rmkeytab.c:119
#, c-format
msgid "Unable to parse principal\n"
msgstr ""

#: ipa-client/ipa-rmkeytab.c:121
#, c-format
msgid "krb5_unparse_name %d: %s\n"
msgstr ""

#: ipa-client/ipa-rmkeytab.c:143
#, c-format
msgid "realm not found\n"
msgstr ""

#: ipa-client/ipa-rmkeytab.c:169
msgid "Print debugging information"
msgstr ""

#: ipa-client/ipa-rmkeytab.c:169
msgid "Debugging output"
msgstr ""

#: ipa-client/ipa-rmkeytab.c:176
msgid "Remove all principals in this realm"
msgstr ""

#: ipa-client/ipa-rmkeytab.c:176
msgid "Realm name"
msgstr ""

#: ipa-client/ipa-rmkeytab.c:230 ipa-client/ipa-rmkeytab.c:237
#, c-format
msgid "Failed to open keytab '%s': %s\n"
msgstr ""

#: ipa-client/ipa-rmkeytab.c:253
#, c-format
msgid "Closing keytab failed\n"
msgstr ""

#: ipa-client/ipa-rmkeytab.c:255
#, c-format
msgid "krb5_kt_close %d: %s\n"
msgstr ""