activeldap 1.1.0 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (68) hide show
  1. data/CHANGES +15 -0
  2. data/README +4 -1
  3. data/Rakefile +1 -1
  4. data/TODO +1 -2
  5. data/data/locale/en/LC_MESSAGES/active-ldap.mo +0 -0
  6. data/data/locale/ja/LC_MESSAGES/active-ldap.mo +0 -0
  7. data/examples/al-admin/app/models/user.rb +1 -1
  8. data/examples/al-admin/config/boot.rb +1 -1
  9. data/examples/al-admin/config/environment.rb +1 -15
  10. data/examples/al-admin/config/initializers/session_store.rb +23 -0
  11. data/examples/al-admin/config/session_secret.txt +1 -0
  12. data/examples/al-admin/db/schema.rb +23 -0
  13. data/examples/al-admin/locale/en/LC_MESSAGES/al-admin.mo +0 -0
  14. data/examples/al-admin/locale/ja/LC_MESSAGES/al-admin.mo +0 -0
  15. data/examples/al-admin/locale/nl/LC_MESSAGES/al-admin.mo +0 -0
  16. data/lib/active_ldap.rb +3 -3
  17. data/lib/active_ldap/acts/tree.rb +1 -1
  18. data/lib/active_ldap/adapter/base.rb +9 -1
  19. data/lib/active_ldap/adapter/ldap.rb +7 -1
  20. data/lib/active_ldap/association/belongs_to_many.rb +6 -2
  21. data/lib/active_ldap/association/children.rb +1 -1
  22. data/lib/active_ldap/association/has_many_utils.rb +2 -2
  23. data/lib/active_ldap/association/has_many_wrap.rb +6 -2
  24. data/lib/active_ldap/attributes.rb +5 -1
  25. data/lib/active_ldap/base.rb +133 -59
  26. data/lib/active_ldap/connection.rb +10 -3
  27. data/lib/active_ldap/distinguished_name.rb +33 -1
  28. data/lib/active_ldap/ldif.rb +1 -0
  29. data/lib/active_ldap/operations.rb +33 -14
  30. data/lib/active_ldap/populate.rb +21 -12
  31. data/lib/active_ldap/schema.rb +21 -0
  32. data/lib/active_ldap/validations.rb +49 -4
  33. data/po/active-ldap.pot +4030 -0
  34. data/po/en/active-ldap.po +57 -37
  35. data/po/ja/active-ldap.po +58 -38
  36. data/test-unit/History.txt +1 -1
  37. data/test-unit/Manifest.txt +2 -0
  38. data/test-unit/README.txt +1 -1
  39. data/test-unit/lib/test/unit/assertions.rb +1 -1
  40. data/test-unit/lib/test/unit/autorunner.rb +19 -4
  41. data/test-unit/lib/test/unit/collector/load.rb +3 -1
  42. data/test-unit/lib/test/unit/color-scheme.rb +5 -1
  43. data/test-unit/lib/test/unit/error.rb +7 -5
  44. data/test-unit/lib/test/unit/runner/tap.rb +8 -0
  45. data/test-unit/lib/test/unit/ui/console/testrunner.rb +63 -8
  46. data/test-unit/lib/test/unit/ui/tap/testrunner.rb +92 -0
  47. data/test-unit/test/collector/test-load.rb +1 -5
  48. data/test-unit/test/test-color-scheme.rb +4 -0
  49. data/test/al-test-utils.rb +30 -2
  50. data/test/test_acts_as_tree.rb +6 -3
  51. data/test/test_associations.rb +3 -2
  52. data/test/test_base.rb +104 -5
  53. data/test/test_dn.rb +10 -0
  54. data/test/test_groupls.rb +1 -1
  55. data/test/test_lpasswd.rb +1 -1
  56. data/test/test_reflection.rb +23 -16
  57. data/test/test_schema.rb +33 -1
  58. data/test/test_useradd-binary.rb +1 -1
  59. data/test/test_useradd.rb +1 -1
  60. data/test/test_userdel.rb +1 -1
  61. data/test/test_userls.rb +1 -1
  62. data/test/test_usermod-binary-add-time.rb +1 -1
  63. data/test/test_usermod-binary-add.rb +1 -1
  64. data/test/test_usermod-binary-del.rb +1 -1
  65. data/test/test_usermod-lang-add.rb +1 -1
  66. data/test/test_usermod.rb +1 -1
  67. data/test/test_validation.rb +48 -10
  68. metadata +44 -35
@@ -203,10 +203,17 @@ module ActiveLdap
203
203
  if Object.respond_to?(:java)
204
204
  "jndi"
205
205
  else
206
- ldap_ldif_path = $LOAD_PATH.find do |path|
207
- File.exist?(File.join(path, "ldap", "ldif.rb"))
206
+ ruby_ldap_available = false
207
+ $LOAD_PATH.each do |path|
208
+ if File.exist?(File.join(path, "ldap", "ldif.rb"))
209
+ ruby_ldap_available = true
210
+ break
211
+ end
208
212
  end
209
- if ldap_ldif_path
213
+ if !ruby_ldap_available and Object.const_defined?(:Gem)
214
+ ruby_ldap_available = Gem.available?("ruby-ldap")
215
+ end
216
+ if ruby_ldap_available
210
217
  "ldap"
211
218
  else
212
219
  "net-ldap"
@@ -178,6 +178,14 @@ module ActiveLdap
178
178
  end
179
179
  end
180
180
 
181
+ def blank?
182
+ @rdns.blank?
183
+ end
184
+
185
+ def +(other)
186
+ self.class.new(*(@rdns + other.rdns))
187
+ end
188
+
181
189
  def -(other)
182
190
  rdns = @rdns.dup
183
191
  normalized_rdns = normalize(@rdns)
@@ -193,20 +201,40 @@ module ActiveLdap
193
201
 
194
202
  def <<(rdn)
195
203
  @rdns << rdn
204
+ self
196
205
  end
197
206
 
198
207
  def unshift(rdn)
199
208
  @rdns.unshift(rdn)
200
209
  end
201
210
 
211
+ def parent
212
+ return nil if @rdns.size <= 1
213
+ self.class.new(*@rdns[1..-1])
214
+ end
215
+
202
216
  def <=>(other)
217
+ other = DN.parse(other) if other.is_a?(String)
218
+ return nil unless other.is_a?(self.class)
203
219
  normalize_for_comparing(@rdns) <=>
204
220
  normalize_for_comparing(other.rdns)
205
221
  end
206
222
 
207
223
  def ==(other)
208
- other.is_a?(self.class) and
224
+ case other
225
+ when self.class
209
226
  normalize(@rdns) == normalize(other.rdns)
227
+ when String
228
+ parsed_other = nil
229
+ begin
230
+ parsed_other = self.class.parse(other)
231
+ rescue DistinguishedNameInvalid
232
+ return false
233
+ end
234
+ self == parsed_other
235
+ else
236
+ false
237
+ end
210
238
  end
211
239
 
212
240
  def eql?(other)
@@ -232,6 +260,10 @@ module ActiveLdap
232
260
  end.join(",")
233
261
  end
234
262
 
263
+ def to_str
264
+ to_s
265
+ end
266
+
235
267
  def to_human_readable_format
236
268
  to_s.inspect
237
269
  end
@@ -46,6 +46,7 @@ module ActiveLdap
46
46
  return "#{name}:\n" if value.blank?
47
47
  result = "#{name}:"
48
48
 
49
+ value = value.to_s if value.is_a?(DN)
49
50
  if value[-1, 1] == ' ' or binary_value?(value)
50
51
  result << ":"
51
52
  value = [value].pack("m").gsub(/\n/, '')
@@ -121,16 +121,23 @@ module ActiveLdap
121
121
  end
122
122
 
123
123
  def ensure_base(target)
124
- [truncate_base(target), base].reject do |component|
124
+ [truncate_base(target), base.to_s].reject do |component|
125
125
  component.blank?
126
126
  end.join(',')
127
127
  end
128
128
 
129
129
  def truncate_base(target)
130
+ return nil if target.blank?
131
+ return target if base.nil?
130
132
  if /,/ =~ target
131
133
  begin
132
- (DN.parse(target) - DN.parse(base)).to_s
133
- rescue DistinguishedNameInvalid, ArgumentError
134
+ parsed_target = DN.parse(target)
135
+ begin
136
+ (parsed_target - base).to_s
137
+ rescue ArgumentError
138
+ target
139
+ end
140
+ rescue DistinguishedNameInvalid
134
141
  target
135
142
  end
136
143
  else
@@ -140,8 +147,11 @@ module ActiveLdap
140
147
 
141
148
  def prepare_search_base(components)
142
149
  components.compact.collect do |component|
143
- if component.is_a?(String)
150
+ case component
151
+ when String
144
152
  component
153
+ when DN
154
+ component.to_s
145
155
  else
146
156
  DN.new(*component).to_s
147
157
  end
@@ -470,16 +480,20 @@ module ActiveLdap
470
480
  end
471
481
  end
472
482
 
473
- def destroy_all(filter=nil, options={})
474
- targets = []
475
- if filter.is_a?(Hash)
476
- options = options.merge(filter)
477
- filter = nil
483
+ def destroy_all(options_or_filter=nil, deprecated_options=nil)
484
+ if deprecated_options.nil?
485
+ if options_or_filter.is_a?(String)
486
+ options = {:filter => options_or_filter}
487
+ else
488
+ options = (options_or_filter || {}).dup
489
+ end
490
+ else
491
+ options = deprecated_options.merge(:filter => options_or_filter)
478
492
  end
479
- options = options.merge(:filter => filter) if filter
493
+
480
494
  find(:all, options).sort_by do |target|
481
- target.dn.reverse
482
- end.reverse.each do |target|
495
+ target.dn
496
+ end.each do |target|
483
497
  target.destroy
484
498
  end
485
499
  end
@@ -494,7 +508,12 @@ module ActiveLdap
494
508
 
495
509
  def delete_entry(dn, options={})
496
510
  options[:connection] ||= connection
497
- options[:connection].delete(dn, options)
511
+ begin
512
+ options[:connection].delete(dn, options)
513
+ rescue Error
514
+ format = _("Failed to delete LDAP entry: <%s>: %s")
515
+ raise DeleteError.new(format % [dn.inspect, $!.message])
516
+ end
498
517
  end
499
518
 
500
519
  def delete_all(options_or_filter=nil, deprecated_options=nil)
@@ -513,7 +532,7 @@ module ActiveLdap
513
532
  dn.upcase.reverse
514
533
  end.reverse
515
534
 
516
- options[:connection].delete(targets)
535
+ delete_entry(targets, options)
517
536
  end
518
537
  end
519
538
 
@@ -13,17 +13,8 @@ module ActiveLdap
13
13
  prefix = suffixes.join(",")
14
14
  suffixes.unshift("#{name}=#{value}")
15
15
  next unless name == "dc"
16
- dc_class = Class.new(base_class)
17
- dc_class.ldap_mapping :dn_attribute => "dc",
18
- :prefix => "",
19
- :scope => :base,
20
- :classes => ["top", "dcObject", "organization"]
21
- dc_class.base = prefix
22
- next if dc_class.exist?(value)
23
- dc = dc_class.new(value)
24
- dc.o = dc.dc
25
16
  begin
26
- dc.save
17
+ ensure_dc(value, prefix, base_class)
27
18
  rescue ActiveLdap::OperationNotPermitted
28
19
  end
29
20
  end
@@ -31,14 +22,32 @@ module ActiveLdap
31
22
 
32
23
  def ensure_ou(name, base_class=nil)
33
24
  base_class ||= Base
34
- name = name.gsub(/\Aou\s*=\s*/, '')
25
+ name = name.to_s if name.is_a?(DN)
26
+ name = name.gsub(/\Aou\s*=\s*/i, '')
35
27
 
36
28
  ou_class = Class.new(base_class)
37
29
  ou_class.ldap_mapping(:dn_attribute => "ou",
38
30
  :prefix => "",
39
31
  :classes => ["top", "organizationalUnit"])
40
32
  return if ou_class.exist?(name)
41
- ou_class.new(name).save
33
+ ou_class.new(name).save!
34
+ end
35
+
36
+ def ensure_dc(name, prefix, base_class=nil)
37
+ base_class ||= Base
38
+ name = name.to_s if name.is_a?(DN)
39
+ name = name.gsub(/\Adc\s*=\s*/i, '')
40
+
41
+ dc_class = Class.new(base_class)
42
+ dc_class.ldap_mapping(:dn_attribute => "dc",
43
+ :prefix => "",
44
+ :scope => :base,
45
+ :classes => ["top", "dcObject", "organization"])
46
+ dc_class.base = prefix
47
+ return if dc_class.exist?(name)
48
+ dc = dc_class.new(name)
49
+ dc.o = dc.dc
50
+ dc.save!
42
51
  end
43
52
  end
44
53
  end
@@ -423,6 +423,14 @@ module ActiveLdap
423
423
  @binary_required
424
424
  end
425
425
 
426
+ # directory_operation?
427
+ #
428
+ # Returns true if an attribute is directory operation.
429
+ # It means that USAGE contains directoryOperation.
430
+ def directory_operation?
431
+ @directory_operation
432
+ end
433
+
426
434
  def syntax
427
435
  @derived_syntax
428
436
  end
@@ -462,6 +470,18 @@ module ActiveLdap
462
470
  self.class.human_attribute_description(self)
463
471
  end
464
472
 
473
+ def to_hash
474
+ {
475
+ :read_only => read_only?,
476
+ :single_value => single_value?,
477
+ :binary => binary?,
478
+ :binary_required => binary_required?,
479
+ :directory_operation => directory_operation?,
480
+ :syntax => syntax,
481
+ :syntax_description => syntax_description,
482
+ }
483
+ end
484
+
465
485
  private
466
486
  def attribute(attribute_name, name=@name)
467
487
  @schema.attribute_type(name, attribute_name)
@@ -488,6 +508,7 @@ module ActiveLdap
488
508
  @derived_syntax = nil
489
509
  @derived_syntax = @super_attribute.syntax if @super_attribute
490
510
  end
511
+ @directory_operation = attribute("USAGE").include?("directoryOperation")
491
512
  end
492
513
 
493
514
  def send_to_syntax(default_value, method_name, *args)
@@ -22,6 +22,10 @@ module ActiveLdap
22
22
  end
23
23
  end
24
24
 
25
+ class_local_attr_accessor true, :validation_skip_attributes
26
+ remove_method :validation_skip_attributes
27
+ self.validation_skip_attributes = []
28
+
25
29
  # Workaround for GetText's ugly implementation
26
30
  begin
27
31
  instance_method(:save_without_validation)
@@ -32,6 +36,7 @@ module ActiveLdap
32
36
  end
33
37
 
34
38
  validate_on_create :validate_duplicated_dn_creation
39
+ validate_on_update :validate_duplicated_dn_rename
35
40
  validate :validate_dn
36
41
  validate :validate_excluded_classes
37
42
  validate :validate_required_ldap_values
@@ -73,6 +78,14 @@ module ActiveLdap
73
78
  end
74
79
  end
75
80
 
81
+ def validation_skip_attributes
82
+ @validation_skip_attributes ||= []
83
+ end
84
+
85
+ def validation_skip_attributes=(attributes)
86
+ @validation_skip_attributes = attributes
87
+ end
88
+
76
89
  private
77
90
  def validate_duplicated_dn_creation
78
91
  _dn = nil
@@ -86,7 +99,29 @@ module ActiveLdap
86
99
  unless ActiveLdap.get_text_supported?
87
100
  format = format.sub(/^%\{fn\} /, '')
88
101
  end
89
- errors.add("dn", format % _dn)
102
+ errors.add("distinguishedName", format % _dn)
103
+ end
104
+ end
105
+
106
+ def validate_duplicated_dn_rename
107
+ _dn_attribute = dn_attribute_with_fallback
108
+ original_dn_value = @ldap_data[_dn_attribute]
109
+ current_dn_value = @data[_dn_attribute]
110
+ return if original_dn_value == current_dn_value
111
+ return if original_dn_value == [current_dn_value]
112
+
113
+ _dn = nil
114
+ begin
115
+ _dn = dn
116
+ rescue DistinguishedNameInvalid, DistinguishedNameNotSetError
117
+ return
118
+ end
119
+ if _dn and exist?
120
+ format = _("%{fn} is duplicated: %s")
121
+ unless ActiveLdap.get_text_supported?
122
+ format = format.sub(/^%\{fn\} /, '')
123
+ end
124
+ errors.add("distinguishedName", format % _dn)
90
125
  end
91
126
  end
92
127
 
@@ -95,11 +130,11 @@ module ActiveLdap
95
130
  rescue DistinguishedNameInvalid
96
131
  format = _("%{fn} is invalid: %s")
97
132
  format = format.sub(/^%\{fn\} /, '') unless ActiveLdap.get_text_supported?
98
- errors.add("dn", format % $!.message)
133
+ errors.add("distinguishedName", format % $!.message)
99
134
  rescue DistinguishedNameNotSetError
100
135
  format = _("%{fn} isn't set: %s")
101
136
  format = format.sub(/^%\{fn\} /, '') unless ActiveLdap.get_text_supported?
102
- errors.add("dn", format % $!.message)
137
+ errors.add("distinguishedName", format % $!.message)
103
138
  end
104
139
 
105
140
  def validate_excluded_classes
@@ -130,6 +165,10 @@ module ActiveLdap
130
165
  # - Verify that every 'MUST' specified in the schema has a value defined
131
166
  def validate_required_ldap_values
132
167
  _schema = nil
168
+ @validation_skip_attributes ||= []
169
+ _validation_skip_attributes =
170
+ @validation_skip_attributes +
171
+ (self.class.validation_skip_attributes || [])
133
172
  # Make sure all MUST attributes have a value
134
173
  entry_attribute.object_classes.each do |object_class|
135
174
  object_class.must.each do |required_attribute|
@@ -139,6 +178,7 @@ module ActiveLdap
139
178
  raise UnknownAttribute.new(required_attribute) if real_name.nil?
140
179
 
141
180
  next if required_attribute.read_only?
181
+ next if _validation_skip_attributes.include?(real_name)
142
182
 
143
183
  value = @data[real_name] || []
144
184
  next unless self.class.blank_value?(value)
@@ -174,7 +214,12 @@ module ActiveLdap
174
214
  def validate_ldap_value(attribute, name, value)
175
215
  failed_reason, option = attribute.validate(value)
176
216
  return if failed_reason.nil?
177
- params = [self.class.human_readable_format(value),
217
+ if attribute.binary?
218
+ inspected_value = _("<binary-value>")
219
+ else
220
+ inspected_value = self.class.human_readable_format(value)
221
+ end
222
+ params = [inspected_value,
178
223
  self.class.human_syntax_description(attribute.syntax),
179
224
  failed_reason]
180
225
  if option
@@ -0,0 +1,4030 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the PACKAGE package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ #, fuzzy
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: Ruby/ActiveLdap 1.1.1\n"
10
+ "POT-Creation-Date: 2009-08-04 23:26+0900\n"
11
+ "PO-Revision-Date: 2009-08-04 22:43+0900\n"
12
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
+ "Language-Team: LANGUAGE <LL@li.org>\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
18
+
19
+ #: -:-
20
+ msgid "LDAP|Attribute|aRecord"
21
+ msgstr ""
22
+
23
+ #: -:-
24
+ msgid "LDAP|Attribute|aliasedEntryName"
25
+ msgstr ""
26
+
27
+ #: -:-
28
+ msgid "LDAP|Attribute|aliasedObjectName"
29
+ msgstr ""
30
+
31
+ #: -:-
32
+ msgid "LDAP|Attribute|altServer"
33
+ msgstr ""
34
+
35
+ #: -:-
36
+ msgid "LDAP|Attribute|associatedDomain"
37
+ msgstr ""
38
+
39
+ #: -:-
40
+ msgid "LDAP|Attribute|associatedName"
41
+ msgstr ""
42
+
43
+ #: -:-
44
+ msgid "LDAP|Attribute|attributeTypes"
45
+ msgstr ""
46
+
47
+ #: -:-
48
+ msgid "LDAP|Attribute|audio"
49
+ msgstr ""
50
+
51
+ #: -:-
52
+ msgid "LDAP|Attribute|authorityRevocationList"
53
+ msgstr ""
54
+
55
+ #: -:-
56
+ msgid "LDAP|Attribute|bootFile"
57
+ msgstr ""
58
+
59
+ #: -:-
60
+ msgid "LDAP|Attribute|bootParameter"
61
+ msgstr ""
62
+
63
+ #: -:-
64
+ msgid "LDAP|Attribute|buildingName"
65
+ msgstr ""
66
+
67
+ #: -:-
68
+ msgid "LDAP|Attribute|businessCategory"
69
+ msgstr ""
70
+
71
+ #: -:-
72
+ msgid "LDAP|Attribute|c"
73
+ msgstr ""
74
+
75
+ #: -:-
76
+ msgid "LDAP|Attribute|cACertificate"
77
+ msgstr ""
78
+
79
+ #: -:-
80
+ msgid "LDAP|Attribute|cNAMERecord"
81
+ msgstr ""
82
+
83
+ #: -:-
84
+ msgid "LDAP|Attribute|carLicense"
85
+ msgstr ""
86
+
87
+ #: -:-
88
+ msgid "LDAP|Attribute|certificateRevocationList"
89
+ msgstr ""
90
+
91
+ #: -:-
92
+ msgid "LDAP|Attribute|cn"
93
+ msgstr ""
94
+
95
+ #: -:-
96
+ msgid "LDAP|Attribute|co"
97
+ msgstr ""
98
+
99
+ #: -:-
100
+ msgid "LDAP|Attribute|commonName"
101
+ msgstr ""
102
+
103
+ #: -:-
104
+ msgid "LDAP|Attribute|countryName"
105
+ msgstr ""
106
+
107
+ #: -:-
108
+ msgid "LDAP|Attribute|createTimestamp"
109
+ msgstr ""
110
+
111
+ #: -:-
112
+ msgid "LDAP|Attribute|creatorsName"
113
+ msgstr ""
114
+
115
+ #: -:-
116
+ msgid "LDAP|Attribute|crossCertificatePair"
117
+ msgstr ""
118
+
119
+ #: -:-
120
+ msgid "LDAP|Attribute|dITRedirect"
121
+ msgstr ""
122
+
123
+ #: -:-
124
+ msgid "LDAP|Attribute|dSAQuality"
125
+ msgstr ""
126
+
127
+ #: -:-
128
+ msgid "LDAP|Attribute|dc"
129
+ msgstr ""
130
+
131
+ #: -:-
132
+ msgid "LDAP|Attribute|deltaRevocationList"
133
+ msgstr ""
134
+
135
+ #: -:-
136
+ msgid "LDAP|Attribute|departmentNumber"
137
+ msgstr ""
138
+
139
+ #: -:-
140
+ msgid "LDAP|Attribute|description"
141
+ msgstr ""
142
+
143
+ #: -:-
144
+ msgid "LDAP|Attribute|destinationIndicator"
145
+ msgstr ""
146
+
147
+ #: -:-
148
+ msgid "LDAP|Attribute|displayName"
149
+ msgstr ""
150
+
151
+ #: -:-
152
+ msgid "LDAP|Attribute|distinguishedName"
153
+ msgstr ""
154
+
155
+ #: -:-
156
+ msgid "LDAP|Attribute|dmdName"
157
+ msgstr ""
158
+
159
+ #: -:-
160
+ msgid "LDAP|Attribute|dnQualifier"
161
+ msgstr ""
162
+
163
+ #: -:-
164
+ msgid "LDAP|Attribute|documentAuthor"
165
+ msgstr ""
166
+
167
+ #: -:-
168
+ msgid "LDAP|Attribute|documentIdentifier"
169
+ msgstr ""
170
+
171
+ #: -:-
172
+ msgid "LDAP|Attribute|documentLocation"
173
+ msgstr ""
174
+
175
+ #: -:-
176
+ msgid "LDAP|Attribute|documentPublisher"
177
+ msgstr ""
178
+
179
+ #: -:-
180
+ msgid "LDAP|Attribute|documentTitle"
181
+ msgstr ""
182
+
183
+ #: -:-
184
+ msgid "LDAP|Attribute|documentVersion"
185
+ msgstr ""
186
+
187
+ #: -:-
188
+ msgid "LDAP|Attribute|domainComponent"
189
+ msgstr ""
190
+
191
+ #: -:-
192
+ msgid "LDAP|Attribute|drink"
193
+ msgstr ""
194
+
195
+ #: -:-
196
+ msgid "LDAP|Attribute|dynamicSubtrees"
197
+ msgstr ""
198
+
199
+ #: -:-
200
+ msgid "LDAP|Attribute|email"
201
+ msgstr ""
202
+
203
+ #: -:-
204
+ msgid "LDAP|Attribute|emailAddress"
205
+ msgstr ""
206
+
207
+ #: -:-
208
+ msgid "LDAP|Attribute|employeeNumber"
209
+ msgstr ""
210
+
211
+ #: -:-
212
+ msgid "LDAP|Attribute|employeeType"
213
+ msgstr ""
214
+
215
+ #: -:-
216
+ msgid "LDAP|Attribute|enhancedSearchGuide"
217
+ msgstr ""
218
+
219
+ #: -:-
220
+ msgid "LDAP|Attribute|entryDN"
221
+ msgstr ""
222
+
223
+ #: -:-
224
+ msgid "LDAP|Attribute|entryTtl"
225
+ msgstr ""
226
+
227
+ #: -:-
228
+ msgid "LDAP|Attribute|entryUUID"
229
+ msgstr ""
230
+
231
+ #: -:-
232
+ msgid "LDAP|Attribute|facsimileTelephoneNumber"
233
+ msgstr ""
234
+
235
+ #: -:-
236
+ msgid "LDAP|Attribute|favouriteDrink"
237
+ msgstr ""
238
+
239
+ #: -:-
240
+ msgid "LDAP|Attribute|fax"
241
+ msgstr ""
242
+
243
+ #: -:-
244
+ msgid "LDAP|Attribute|friendlyCountryName"
245
+ msgstr ""
246
+
247
+ #: -:-
248
+ msgid "LDAP|Attribute|gecos"
249
+ msgstr ""
250
+
251
+ #: -:-
252
+ msgid "LDAP|Attribute|generationQualifier"
253
+ msgstr ""
254
+
255
+ #: -:-
256
+ msgid "LDAP|Attribute|gidNumber"
257
+ msgstr ""
258
+
259
+ #: -:-
260
+ msgid "LDAP|Attribute|givenName"
261
+ msgstr ""
262
+
263
+ #: -:-
264
+ msgid "LDAP|Attribute|gn"
265
+ msgstr ""
266
+
267
+ #: -:-
268
+ msgid "LDAP|Attribute|hasSubordinates"
269
+ msgstr ""
270
+
271
+ #: -:-
272
+ msgid "LDAP|Attribute|homeDirectory"
273
+ msgstr ""
274
+
275
+ #: -:-
276
+ msgid "LDAP|Attribute|homePhone"
277
+ msgstr ""
278
+
279
+ #: -:-
280
+ msgid "LDAP|Attribute|homePostalAddress"
281
+ msgstr ""
282
+
283
+ #: -:-
284
+ msgid "LDAP|Attribute|homeTelephoneNumber"
285
+ msgstr ""
286
+
287
+ #: -:-
288
+ msgid "LDAP|Attribute|host"
289
+ msgstr ""
290
+
291
+ #: -:-
292
+ msgid "LDAP|Attribute|houseIdentifier"
293
+ msgstr ""
294
+
295
+ #: -:-
296
+ msgid "LDAP|Attribute|info"
297
+ msgstr ""
298
+
299
+ #: -:-
300
+ msgid "LDAP|Attribute|initials"
301
+ msgstr ""
302
+
303
+ #: -:-
304
+ msgid "LDAP|Attribute|internationaliSDNNumber"
305
+ msgstr ""
306
+
307
+ #: -:-
308
+ msgid "LDAP|Attribute|ipHostNumber"
309
+ msgstr ""
310
+
311
+ #: -:-
312
+ msgid "LDAP|Attribute|ipNetmaskNumber"
313
+ msgstr ""
314
+
315
+ #: -:-
316
+ msgid "LDAP|Attribute|ipNetworkNumber"
317
+ msgstr ""
318
+
319
+ #: -:-
320
+ msgid "LDAP|Attribute|ipProtocolNumber"
321
+ msgstr ""
322
+
323
+ #: -:-
324
+ msgid "LDAP|Attribute|ipServicePort"
325
+ msgstr ""
326
+
327
+ #: -:-
328
+ msgid "LDAP|Attribute|ipServiceProtocol"
329
+ msgstr ""
330
+
331
+ #: -:-
332
+ msgid "LDAP|Attribute|janetMailbox"
333
+ msgstr ""
334
+
335
+ #: -:-
336
+ msgid "LDAP|Attribute|jpegPhoto"
337
+ msgstr ""
338
+
339
+ #: -:-
340
+ msgid "LDAP|Attribute|knowledgeInformation"
341
+ msgstr ""
342
+
343
+ #: -:-
344
+ msgid "LDAP|Attribute|l"
345
+ msgstr ""
346
+
347
+ #: -:-
348
+ msgid "LDAP|Attribute|labeledURI"
349
+ msgstr ""
350
+
351
+ #: -:-
352
+ msgid "LDAP|Attribute|ldapSyntaxes"
353
+ msgstr ""
354
+
355
+ #: -:-
356
+ msgid "LDAP|Attribute|localityName"
357
+ msgstr ""
358
+
359
+ #: -:-
360
+ msgid "LDAP|Attribute|loginShell"
361
+ msgstr ""
362
+
363
+ #: -:-
364
+ msgid "LDAP|Attribute|mDRecord"
365
+ msgstr ""
366
+
367
+ #: -:-
368
+ msgid "LDAP|Attribute|mXRecord"
369
+ msgstr ""
370
+
371
+ #: -:-
372
+ msgid "LDAP|Attribute|macAddress"
373
+ msgstr ""
374
+
375
+ #: -:-
376
+ msgid "LDAP|Attribute|mail"
377
+ msgstr ""
378
+
379
+ #: -:-
380
+ msgid "LDAP|Attribute|mailPreferenceOption"
381
+ msgstr ""
382
+
383
+ #: -:-
384
+ msgid "LDAP|Attribute|manager"
385
+ msgstr ""
386
+
387
+ #: -:-
388
+ msgid "LDAP|Attribute|matchingRuleUse"
389
+ msgstr ""
390
+
391
+ #: -:-
392
+ msgid "LDAP|Attribute|matchingRules"
393
+ msgstr ""
394
+
395
+ #: -:-
396
+ msgid "LDAP|Attribute|member"
397
+ msgstr ""
398
+
399
+ #: -:-
400
+ msgid "LDAP|Attribute|memberNisNetgroup"
401
+ msgstr ""
402
+
403
+ #: -:-
404
+ msgid "LDAP|Attribute|memberUid"
405
+ msgstr ""
406
+
407
+ #: -:-
408
+ msgid "LDAP|Attribute|mobile"
409
+ msgstr ""
410
+
411
+ #: -:-
412
+ msgid "LDAP|Attribute|mobileTelephoneNumber"
413
+ msgstr ""
414
+
415
+ #: -:-
416
+ msgid "LDAP|Attribute|modifiersName"
417
+ msgstr ""
418
+
419
+ #: -:-
420
+ msgid "LDAP|Attribute|modifyTimestamp"
421
+ msgstr ""
422
+
423
+ #: -:-
424
+ msgid "LDAP|Attribute|nSRecord"
425
+ msgstr ""
426
+
427
+ #: -:-
428
+ msgid "LDAP|Attribute|name"
429
+ msgstr ""
430
+
431
+ #: -:-
432
+ msgid "LDAP|Attribute|namingContexts"
433
+ msgstr ""
434
+
435
+ #: -:-
436
+ msgid "LDAP|Attribute|nisMapEntry"
437
+ msgstr ""
438
+
439
+ #: -:-
440
+ msgid "LDAP|Attribute|nisMapName"
441
+ msgstr ""
442
+
443
+ #: -:-
444
+ msgid "LDAP|Attribute|nisNetgroupTriple"
445
+ msgstr ""
446
+
447
+ #: -:-
448
+ msgid "LDAP|Attribute|o"
449
+ msgstr ""
450
+
451
+ #: -:-
452
+ msgid "LDAP|Attribute|objectClass"
453
+ msgstr ""
454
+
455
+ #: -:-
456
+ msgid "LDAP|Attribute|objectClasses"
457
+ msgstr ""
458
+
459
+ #: -:-
460
+ msgid "LDAP|Attribute|olcAccess"
461
+ msgstr ""
462
+
463
+ #: -:-
464
+ msgid "LDAP|Attribute|olcAddContentAcl"
465
+ msgstr ""
466
+
467
+ #: -:-
468
+ msgid "LDAP|Attribute|olcAllows"
469
+ msgstr ""
470
+
471
+ #: -:-
472
+ msgid "LDAP|Attribute|olcArgsFile"
473
+ msgstr ""
474
+
475
+ #: -:-
476
+ msgid "LDAP|Attribute|olcAttributeOptions"
477
+ msgstr ""
478
+
479
+ #: -:-
480
+ msgid "LDAP|Attribute|olcAttributeTypes"
481
+ msgstr ""
482
+
483
+ #: -:-
484
+ msgid "LDAP|Attribute|olcAuthIDRewrite"
485
+ msgstr ""
486
+
487
+ #: -:-
488
+ msgid "LDAP|Attribute|olcAuthzPolicy"
489
+ msgstr ""
490
+
491
+ #: -:-
492
+ msgid "LDAP|Attribute|olcAuthzRegexp"
493
+ msgstr ""
494
+
495
+ #: -:-
496
+ msgid "LDAP|Attribute|olcBackend"
497
+ msgstr ""
498
+
499
+ #: -:-
500
+ msgid "LDAP|Attribute|olcConcurrency"
501
+ msgstr ""
502
+
503
+ #: -:-
504
+ msgid "LDAP|Attribute|olcConfigDir"
505
+ msgstr ""
506
+
507
+ #: -:-
508
+ msgid "LDAP|Attribute|olcConfigFile"
509
+ msgstr ""
510
+
511
+ #: -:-
512
+ msgid "LDAP|Attribute|olcConnMaxPending"
513
+ msgstr ""
514
+
515
+ #: -:-
516
+ msgid "LDAP|Attribute|olcConnMaxPendingAuth"
517
+ msgstr ""
518
+
519
+ #: -:-
520
+ msgid "LDAP|Attribute|olcDatabase"
521
+ msgstr ""
522
+
523
+ #: -:-
524
+ msgid "LDAP|Attribute|olcDbCacheFree"
525
+ msgstr ""
526
+
527
+ #: -:-
528
+ msgid "LDAP|Attribute|olcDbCacheSize"
529
+ msgstr ""
530
+
531
+ #: -:-
532
+ msgid "LDAP|Attribute|olcDbCheckpoint"
533
+ msgstr ""
534
+
535
+ #: -:-
536
+ msgid "LDAP|Attribute|olcDbChecksum"
537
+ msgstr ""
538
+
539
+ #: -:-
540
+ msgid "LDAP|Attribute|olcDbConfig"
541
+ msgstr ""
542
+
543
+ #: -:-
544
+ msgid "LDAP|Attribute|olcDbCryptFile"
545
+ msgstr ""
546
+
547
+ #: -:-
548
+ msgid "LDAP|Attribute|olcDbCryptKey"
549
+ msgstr ""
550
+
551
+ #: -:-
552
+ msgid "LDAP|Attribute|olcDbDNcacheSize"
553
+ msgstr ""
554
+
555
+ #: -:-
556
+ msgid "LDAP|Attribute|olcDbDirectory"
557
+ msgstr ""
558
+
559
+ #: -:-
560
+ msgid "LDAP|Attribute|olcDbDirtyRead"
561
+ msgstr ""
562
+
563
+ #: -:-
564
+ msgid "LDAP|Attribute|olcDbIDLcacheSize"
565
+ msgstr ""
566
+
567
+ #: -:-
568
+ msgid "LDAP|Attribute|olcDbIndex"
569
+ msgstr ""
570
+
571
+ #: -:-
572
+ msgid "LDAP|Attribute|olcDbLinearIndex"
573
+ msgstr ""
574
+
575
+ #: -:-
576
+ msgid "LDAP|Attribute|olcDbLockDetect"
577
+ msgstr ""
578
+
579
+ #: -:-
580
+ msgid "LDAP|Attribute|olcDbMode"
581
+ msgstr ""
582
+
583
+ #: -:-
584
+ msgid "LDAP|Attribute|olcDbNoSync"
585
+ msgstr ""
586
+
587
+ #: -:-
588
+ msgid "LDAP|Attribute|olcDbPageSize"
589
+ msgstr ""
590
+
591
+ #: -:-
592
+ msgid "LDAP|Attribute|olcDbSearchStack"
593
+ msgstr ""
594
+
595
+ #: -:-
596
+ msgid "LDAP|Attribute|olcDbShmKey"
597
+ msgstr ""
598
+
599
+ #: -:-
600
+ msgid "LDAP|Attribute|olcDefaultSearchBase"
601
+ msgstr ""
602
+
603
+ #: -:-
604
+ msgid "LDAP|Attribute|olcDisallows"
605
+ msgstr ""
606
+
607
+ #: -:-
608
+ msgid "LDAP|Attribute|olcDitContentRules"
609
+ msgstr ""
610
+
611
+ #: -:-
612
+ msgid "LDAP|Attribute|olcGentleHUP"
613
+ msgstr ""
614
+
615
+ #: -:-
616
+ msgid "LDAP|Attribute|olcHidden"
617
+ msgstr ""
618
+
619
+ #: -:-
620
+ msgid "LDAP|Attribute|olcIdleTimeout"
621
+ msgstr ""
622
+
623
+ #: -:-
624
+ msgid "LDAP|Attribute|olcInclude"
625
+ msgstr ""
626
+
627
+ #: -:-
628
+ msgid "LDAP|Attribute|olcIndexIntLen"
629
+ msgstr ""
630
+
631
+ #: -:-
632
+ msgid "LDAP|Attribute|olcIndexSubstrAnyLen"
633
+ msgstr ""
634
+
635
+ #: -:-
636
+ msgid "LDAP|Attribute|olcIndexSubstrAnyStep"
637
+ msgstr ""
638
+
639
+ #: -:-
640
+ msgid "LDAP|Attribute|olcIndexSubstrIfMaxLen"
641
+ msgstr ""
642
+
643
+ #: -:-
644
+ msgid "LDAP|Attribute|olcIndexSubstrIfMinLen"
645
+ msgstr ""
646
+
647
+ #: -:-
648
+ msgid "LDAP|Attribute|olcLastMod"
649
+ msgstr ""
650
+
651
+ #: -:-
652
+ msgid "LDAP|Attribute|olcLdapSyntaxes"
653
+ msgstr ""
654
+
655
+ #: -:-
656
+ msgid "LDAP|Attribute|olcLimits"
657
+ msgstr ""
658
+
659
+ #: -:-
660
+ msgid "LDAP|Attribute|olcLocalSSF"
661
+ msgstr ""
662
+
663
+ #: -:-
664
+ msgid "LDAP|Attribute|olcLogFile"
665
+ msgstr ""
666
+
667
+ #: -:-
668
+ msgid "LDAP|Attribute|olcLogLevel"
669
+ msgstr ""
670
+
671
+ #: -:-
672
+ msgid "LDAP|Attribute|olcMaxDerefDepth"
673
+ msgstr ""
674
+
675
+ #: -:-
676
+ msgid "LDAP|Attribute|olcMirrorMode"
677
+ msgstr ""
678
+
679
+ #: -:-
680
+ msgid "LDAP|Attribute|olcModuleLoad"
681
+ msgstr ""
682
+
683
+ #: -:-
684
+ msgid "LDAP|Attribute|olcModulePath"
685
+ msgstr ""
686
+
687
+ #: -:-
688
+ msgid "LDAP|Attribute|olcMonitoring"
689
+ msgstr ""
690
+
691
+ #: -:-
692
+ msgid "LDAP|Attribute|olcObjectClasses"
693
+ msgstr ""
694
+
695
+ #: -:-
696
+ msgid "LDAP|Attribute|olcObjectIdentifier"
697
+ msgstr ""
698
+
699
+ #: -:-
700
+ msgid "LDAP|Attribute|olcOverlay"
701
+ msgstr ""
702
+
703
+ #: -:-
704
+ msgid "LDAP|Attribute|olcPasswordCryptSaltFormat"
705
+ msgstr ""
706
+
707
+ #: -:-
708
+ msgid "LDAP|Attribute|olcPasswordHash"
709
+ msgstr ""
710
+
711
+ #: -:-
712
+ msgid "LDAP|Attribute|olcPidFile"
713
+ msgstr ""
714
+
715
+ #: -:-
716
+ msgid "LDAP|Attribute|olcPlugin"
717
+ msgstr ""
718
+
719
+ #: -:-
720
+ msgid "LDAP|Attribute|olcPluginLogFile"
721
+ msgstr ""
722
+
723
+ #: -:-
724
+ msgid "LDAP|Attribute|olcReadOnly"
725
+ msgstr ""
726
+
727
+ #: -:-
728
+ msgid "LDAP|Attribute|olcReferral"
729
+ msgstr ""
730
+
731
+ #: -:-
732
+ msgid "LDAP|Attribute|olcReplica"
733
+ msgstr ""
734
+
735
+ #: -:-
736
+ msgid "LDAP|Attribute|olcReplicaArgsFile"
737
+ msgstr ""
738
+
739
+ #: -:-
740
+ msgid "LDAP|Attribute|olcReplicaPidFile"
741
+ msgstr ""
742
+
743
+ #: -:-
744
+ msgid "LDAP|Attribute|olcReplicationInterval"
745
+ msgstr ""
746
+
747
+ #: -:-
748
+ msgid "LDAP|Attribute|olcReplogFile"
749
+ msgstr ""
750
+
751
+ #: -:-
752
+ msgid "LDAP|Attribute|olcRequires"
753
+ msgstr ""
754
+
755
+ #: -:-
756
+ msgid "LDAP|Attribute|olcRestrict"
757
+ msgstr ""
758
+
759
+ #: -:-
760
+ msgid "LDAP|Attribute|olcReverseLookup"
761
+ msgstr ""
762
+
763
+ #: -:-
764
+ msgid "LDAP|Attribute|olcRootDN"
765
+ msgstr ""
766
+
767
+ #: -:-
768
+ msgid "LDAP|Attribute|olcRootDSE"
769
+ msgstr ""
770
+
771
+ #: -:-
772
+ msgid "LDAP|Attribute|olcRootPW"
773
+ msgstr ""
774
+
775
+ #: -:-
776
+ msgid "LDAP|Attribute|olcSaslAuxprops"
777
+ msgstr ""
778
+
779
+ #: -:-
780
+ msgid "LDAP|Attribute|olcSaslHost"
781
+ msgstr ""
782
+
783
+ #: -:-
784
+ msgid "LDAP|Attribute|olcSaslRealm"
785
+ msgstr ""
786
+
787
+ #: -:-
788
+ msgid "LDAP|Attribute|olcSaslSecProps"
789
+ msgstr ""
790
+
791
+ #: -:-
792
+ msgid "LDAP|Attribute|olcSchemaDN"
793
+ msgstr ""
794
+
795
+ #: -:-
796
+ msgid "LDAP|Attribute|olcSecurity"
797
+ msgstr ""
798
+
799
+ #: -:-
800
+ msgid "LDAP|Attribute|olcServerID"
801
+ msgstr ""
802
+
803
+ #: -:-
804
+ msgid "LDAP|Attribute|olcSizeLimit"
805
+ msgstr ""
806
+
807
+ #: -:-
808
+ msgid "LDAP|Attribute|olcSockbufMaxIncoming"
809
+ msgstr ""
810
+
811
+ #: -:-
812
+ msgid "LDAP|Attribute|olcSockbufMaxIncomingAuth"
813
+ msgstr ""
814
+
815
+ #: -:-
816
+ msgid "LDAP|Attribute|olcSortVals"
817
+ msgstr ""
818
+
819
+ #: -:-
820
+ msgid "LDAP|Attribute|olcSubordinate"
821
+ msgstr ""
822
+
823
+ #: -:-
824
+ msgid "LDAP|Attribute|olcSuffix"
825
+ msgstr ""
826
+
827
+ #: -:-
828
+ msgid "LDAP|Attribute|olcSyncrepl"
829
+ msgstr ""
830
+
831
+ #: -:-
832
+ msgid "LDAP|Attribute|olcTLSCACertificateFile"
833
+ msgstr ""
834
+
835
+ #: -:-
836
+ msgid "LDAP|Attribute|olcTLSCACertificatePath"
837
+ msgstr ""
838
+
839
+ #: -:-
840
+ msgid "LDAP|Attribute|olcTLSCRLCheck"
841
+ msgstr ""
842
+
843
+ #: -:-
844
+ msgid "LDAP|Attribute|olcTLSCRLFile"
845
+ msgstr ""
846
+
847
+ #: -:-
848
+ msgid "LDAP|Attribute|olcTLSCertificateFile"
849
+ msgstr ""
850
+
851
+ #: -:-
852
+ msgid "LDAP|Attribute|olcTLSCertificateKeyFile"
853
+ msgstr ""
854
+
855
+ #: -:-
856
+ msgid "LDAP|Attribute|olcTLSCipherSuite"
857
+ msgstr ""
858
+
859
+ #: -:-
860
+ msgid "LDAP|Attribute|olcTLSDHParamFile"
861
+ msgstr ""
862
+
863
+ #: -:-
864
+ msgid "LDAP|Attribute|olcTLSProtocolMin"
865
+ msgstr ""
866
+
867
+ #: -:-
868
+ msgid "LDAP|Attribute|olcTLSRandFile"
869
+ msgstr ""
870
+
871
+ #: -:-
872
+ msgid "LDAP|Attribute|olcTLSVerifyClient"
873
+ msgstr ""
874
+
875
+ #: -:-
876
+ msgid "LDAP|Attribute|olcThreads"
877
+ msgstr ""
878
+
879
+ #: -:-
880
+ msgid "LDAP|Attribute|olcTimeLimit"
881
+ msgstr ""
882
+
883
+ #: -:-
884
+ msgid "LDAP|Attribute|olcToolThreads"
885
+ msgstr ""
886
+
887
+ #: -:-
888
+ msgid "LDAP|Attribute|olcUpdateDN"
889
+ msgstr ""
890
+
891
+ #: -:-
892
+ msgid "LDAP|Attribute|olcUpdateRef"
893
+ msgstr ""
894
+
895
+ #: -:-
896
+ msgid "LDAP|Attribute|olcWriteTimeout"
897
+ msgstr ""
898
+
899
+ #: -:-
900
+ msgid "LDAP|Attribute|oncRpcNumber"
901
+ msgstr ""
902
+
903
+ #: -:-
904
+ msgid "LDAP|Attribute|organizationName"
905
+ msgstr ""
906
+
907
+ #: -:-
908
+ msgid "LDAP|Attribute|organizationalStatus"
909
+ msgstr ""
910
+
911
+ #: -:-
912
+ msgid "LDAP|Attribute|organizationalUnitName"
913
+ msgstr ""
914
+
915
+ #: -:-
916
+ msgid "LDAP|Attribute|otherMailbox"
917
+ msgstr ""
918
+
919
+ #: -:-
920
+ msgid "LDAP|Attribute|ou"
921
+ msgstr ""
922
+
923
+ #: -:-
924
+ msgid "LDAP|Attribute|owner"
925
+ msgstr ""
926
+
927
+ #: -:-
928
+ msgid "LDAP|Attribute|pager"
929
+ msgstr ""
930
+
931
+ #: -:-
932
+ msgid "LDAP|Attribute|pagerTelephoneNumber"
933
+ msgstr ""
934
+
935
+ #: -:-
936
+ msgid "LDAP|Attribute|personalSignature"
937
+ msgstr ""
938
+
939
+ #: -:-
940
+ msgid "LDAP|Attribute|personalTitle"
941
+ msgstr ""
942
+
943
+ #: -:-
944
+ msgid "LDAP|Attribute|photo"
945
+ msgstr ""
946
+
947
+ #: -:-
948
+ msgid "LDAP|Attribute|physicalDeliveryOfficeName"
949
+ msgstr ""
950
+
951
+ #: -:-
952
+ msgid "LDAP|Attribute|pkcs9email"
953
+ msgstr ""
954
+
955
+ #: -:-
956
+ msgid "LDAP|Attribute|postOfficeBox"
957
+ msgstr ""
958
+
959
+ #: -:-
960
+ msgid "LDAP|Attribute|postalAddress"
961
+ msgstr ""
962
+
963
+ #: -:-
964
+ msgid "LDAP|Attribute|postalCode"
965
+ msgstr ""
966
+
967
+ #: -:-
968
+ msgid "LDAP|Attribute|preferredDeliveryMethod"
969
+ msgstr ""
970
+
971
+ #: -:-
972
+ msgid "LDAP|Attribute|preferredLanguage"
973
+ msgstr ""
974
+
975
+ #: -:-
976
+ msgid "LDAP|Attribute|presentationAddress"
977
+ msgstr ""
978
+
979
+ #: -:-
980
+ msgid "LDAP|Attribute|protocolInformation"
981
+ msgstr ""
982
+
983
+ #: -:-
984
+ msgid "LDAP|Attribute|pseudonym"
985
+ msgstr ""
986
+
987
+ #: -:-
988
+ msgid "LDAP|Attribute|ref"
989
+ msgstr ""
990
+
991
+ #: -:-
992
+ msgid "LDAP|Attribute|registeredAddress"
993
+ msgstr ""
994
+
995
+ #: -:-
996
+ msgid "LDAP|Attribute|rfc822Mailbox"
997
+ msgstr ""
998
+
999
+ #: -:-
1000
+ msgid "LDAP|Attribute|roleOccupant"
1001
+ msgstr ""
1002
+
1003
+ #: -:-
1004
+ msgid "LDAP|Attribute|roomNumber"
1005
+ msgstr ""
1006
+
1007
+ #: -:-
1008
+ msgid "LDAP|Attribute|sOARecord"
1009
+ msgstr ""
1010
+
1011
+ #: -:-
1012
+ msgid "LDAP|Attribute|sambaAcctFlags"
1013
+ msgstr ""
1014
+
1015
+ #: -:-
1016
+ msgid "LDAP|Attribute|sambaAlgorithmicRidBase"
1017
+ msgstr ""
1018
+
1019
+ #: -:-
1020
+ msgid "LDAP|Attribute|sambaBadPasswordCount"
1021
+ msgstr ""
1022
+
1023
+ #: -:-
1024
+ msgid "LDAP|Attribute|sambaBadPasswordTime"
1025
+ msgstr ""
1026
+
1027
+ #: -:-
1028
+ msgid "LDAP|Attribute|sambaBoolOption"
1029
+ msgstr ""
1030
+
1031
+ #: -:-
1032
+ msgid "LDAP|Attribute|sambaDomainName"
1033
+ msgstr ""
1034
+
1035
+ #: -:-
1036
+ msgid "LDAP|Attribute|sambaForceLogoff"
1037
+ msgstr ""
1038
+
1039
+ #: -:-
1040
+ msgid "LDAP|Attribute|sambaGroupType"
1041
+ msgstr ""
1042
+
1043
+ #: -:-
1044
+ msgid "LDAP|Attribute|sambaHomeDrive"
1045
+ msgstr ""
1046
+
1047
+ #: -:-
1048
+ msgid "LDAP|Attribute|sambaHomePath"
1049
+ msgstr ""
1050
+
1051
+ #: -:-
1052
+ msgid "LDAP|Attribute|sambaIntegerOption"
1053
+ msgstr ""
1054
+
1055
+ #: -:-
1056
+ msgid "LDAP|Attribute|sambaKickoffTime"
1057
+ msgstr ""
1058
+
1059
+ #: -:-
1060
+ msgid "LDAP|Attribute|sambaLMPassword"
1061
+ msgstr ""
1062
+
1063
+ #: -:-
1064
+ msgid "LDAP|Attribute|sambaLockoutDuration"
1065
+ msgstr ""
1066
+
1067
+ #: -:-
1068
+ msgid "LDAP|Attribute|sambaLockoutObservationWindow"
1069
+ msgstr ""
1070
+
1071
+ #: -:-
1072
+ msgid "LDAP|Attribute|sambaLockoutThreshold"
1073
+ msgstr ""
1074
+
1075
+ #: -:-
1076
+ msgid "LDAP|Attribute|sambaLogoffTime"
1077
+ msgstr ""
1078
+
1079
+ #: -:-
1080
+ msgid "LDAP|Attribute|sambaLogonHours"
1081
+ msgstr ""
1082
+
1083
+ #: -:-
1084
+ msgid "LDAP|Attribute|sambaLogonScript"
1085
+ msgstr ""
1086
+
1087
+ #: -:-
1088
+ msgid "LDAP|Attribute|sambaLogonTime"
1089
+ msgstr ""
1090
+
1091
+ #: -:-
1092
+ msgid "LDAP|Attribute|sambaLogonToChgPwd"
1093
+ msgstr ""
1094
+
1095
+ #: -:-
1096
+ msgid "LDAP|Attribute|sambaMaxPwdAge"
1097
+ msgstr ""
1098
+
1099
+ #: -:-
1100
+ msgid "LDAP|Attribute|sambaMinPwdAge"
1101
+ msgstr ""
1102
+
1103
+ #: -:-
1104
+ msgid "LDAP|Attribute|sambaMinPwdLength"
1105
+ msgstr ""
1106
+
1107
+ #: -:-
1108
+ msgid "LDAP|Attribute|sambaMungedDial"
1109
+ msgstr ""
1110
+
1111
+ #: -:-
1112
+ msgid "LDAP|Attribute|sambaNTPassword"
1113
+ msgstr ""
1114
+
1115
+ #: -:-
1116
+ msgid "LDAP|Attribute|sambaNextGroupRid"
1117
+ msgstr ""
1118
+
1119
+ #: -:-
1120
+ msgid "LDAP|Attribute|sambaNextRid"
1121
+ msgstr ""
1122
+
1123
+ #: -:-
1124
+ msgid "LDAP|Attribute|sambaNextUserRid"
1125
+ msgstr ""
1126
+
1127
+ #: -:-
1128
+ msgid "LDAP|Attribute|sambaOptionName"
1129
+ msgstr ""
1130
+
1131
+ #: -:-
1132
+ msgid "LDAP|Attribute|sambaPasswordHistory"
1133
+ msgstr ""
1134
+
1135
+ #: -:-
1136
+ msgid "LDAP|Attribute|sambaPrimaryGroupSID"
1137
+ msgstr ""
1138
+
1139
+ #: -:-
1140
+ msgid "LDAP|Attribute|sambaProfilePath"
1141
+ msgstr ""
1142
+
1143
+ #: -:-
1144
+ msgid "LDAP|Attribute|sambaPwdCanChange"
1145
+ msgstr ""
1146
+
1147
+ #: -:-
1148
+ msgid "LDAP|Attribute|sambaPwdHistoryLength"
1149
+ msgstr ""
1150
+
1151
+ #: -:-
1152
+ msgid "LDAP|Attribute|sambaPwdLastSet"
1153
+ msgstr ""
1154
+
1155
+ #: -:-
1156
+ msgid "LDAP|Attribute|sambaPwdMustChange"
1157
+ msgstr ""
1158
+
1159
+ #: -:-
1160
+ msgid "LDAP|Attribute|sambaRefuseMachinePwdChange"
1161
+ msgstr ""
1162
+
1163
+ #: -:-
1164
+ msgid "LDAP|Attribute|sambaSID"
1165
+ msgstr ""
1166
+
1167
+ #: -:-
1168
+ msgid "LDAP|Attribute|sambaSIDList"
1169
+ msgstr ""
1170
+
1171
+ #: -:-
1172
+ msgid "LDAP|Attribute|sambaShareName"
1173
+ msgstr ""
1174
+
1175
+ #: -:-
1176
+ msgid "LDAP|Attribute|sambaStringListOption"
1177
+ msgstr ""
1178
+
1179
+ #: -:-
1180
+ msgid "LDAP|Attribute|sambaStringOption"
1181
+ msgstr ""
1182
+
1183
+ #: -:-
1184
+ msgid "LDAP|Attribute|sambaTrustFlags"
1185
+ msgstr ""
1186
+
1187
+ #: -:-
1188
+ msgid "LDAP|Attribute|sambaUserWorkstations"
1189
+ msgstr ""
1190
+
1191
+ #: -:-
1192
+ msgid "LDAP|Attribute|searchGuide"
1193
+ msgstr ""
1194
+
1195
+ #: -:-
1196
+ msgid "LDAP|Attribute|secretary"
1197
+ msgstr ""
1198
+
1199
+ #: -:-
1200
+ msgid "LDAP|Attribute|seeAlso"
1201
+ msgstr ""
1202
+
1203
+ #: -:-
1204
+ msgid "LDAP|Attribute|serialNumber"
1205
+ msgstr ""
1206
+
1207
+ #: -:-
1208
+ msgid "LDAP|Attribute|shadowExpire"
1209
+ msgstr ""
1210
+
1211
+ #: -:-
1212
+ msgid "LDAP|Attribute|shadowFlag"
1213
+ msgstr ""
1214
+
1215
+ #: -:-
1216
+ msgid "LDAP|Attribute|shadowInactive"
1217
+ msgstr ""
1218
+
1219
+ #: -:-
1220
+ msgid "LDAP|Attribute|shadowLastChange"
1221
+ msgstr ""
1222
+
1223
+ #: -:-
1224
+ msgid "LDAP|Attribute|shadowMax"
1225
+ msgstr ""
1226
+
1227
+ #: -:-
1228
+ msgid "LDAP|Attribute|shadowMin"
1229
+ msgstr ""
1230
+
1231
+ #: -:-
1232
+ msgid "LDAP|Attribute|shadowWarning"
1233
+ msgstr ""
1234
+
1235
+ #: -:-
1236
+ msgid "LDAP|Attribute|singleLevelQuality"
1237
+ msgstr ""
1238
+
1239
+ #: -:-
1240
+ msgid "LDAP|Attribute|sn"
1241
+ msgstr ""
1242
+
1243
+ #: -:-
1244
+ msgid "LDAP|Attribute|st"
1245
+ msgstr ""
1246
+
1247
+ #: -:-
1248
+ msgid "LDAP|Attribute|stateOrProvinceName"
1249
+ msgstr ""
1250
+
1251
+ #: -:-
1252
+ msgid "LDAP|Attribute|street"
1253
+ msgstr ""
1254
+
1255
+ #: -:-
1256
+ msgid "LDAP|Attribute|streetAddress"
1257
+ msgstr ""
1258
+
1259
+ #: -:-
1260
+ msgid "LDAP|Attribute|structuralObjectClass"
1261
+ msgstr ""
1262
+
1263
+ #: -:-
1264
+ msgid "LDAP|Attribute|subschemaSubentry"
1265
+ msgstr ""
1266
+
1267
+ #: -:-
1268
+ msgid "LDAP|Attribute|subtreeMaximumQuality"
1269
+ msgstr ""
1270
+
1271
+ #: -:-
1272
+ msgid "LDAP|Attribute|subtreeMinimumQuality"
1273
+ msgstr ""
1274
+
1275
+ #: -:-
1276
+ msgid "LDAP|Attribute|supportedAlgorithms"
1277
+ msgstr ""
1278
+
1279
+ #: -:-
1280
+ msgid "LDAP|Attribute|supportedApplicationContext"
1281
+ msgstr ""
1282
+
1283
+ #: -:-
1284
+ msgid "LDAP|Attribute|supportedControl"
1285
+ msgstr ""
1286
+
1287
+ #: -:-
1288
+ msgid "LDAP|Attribute|supportedExtension"
1289
+ msgstr ""
1290
+
1291
+ #: -:-
1292
+ msgid "LDAP|Attribute|supportedFeatures"
1293
+ msgstr ""
1294
+
1295
+ #: -:-
1296
+ msgid "LDAP|Attribute|supportedLDAPVersion"
1297
+ msgstr ""
1298
+
1299
+ #: -:-
1300
+ msgid "LDAP|Attribute|supportedSASLMechanisms"
1301
+ msgstr ""
1302
+
1303
+ #: -:-
1304
+ msgid "LDAP|Attribute|surname"
1305
+ msgstr ""
1306
+
1307
+ #: -:-
1308
+ msgid "LDAP|Attribute|telephoneNumber"
1309
+ msgstr ""
1310
+
1311
+ #: -:-
1312
+ msgid "LDAP|Attribute|teletexTerminalIdentifier"
1313
+ msgstr ""
1314
+
1315
+ #: -:-
1316
+ msgid "LDAP|Attribute|telexNumber"
1317
+ msgstr ""
1318
+
1319
+ #: -:-
1320
+ msgid "LDAP|Attribute|textEncodedORAddress"
1321
+ msgstr ""
1322
+
1323
+ #: -:-
1324
+ msgid "LDAP|Attribute|title"
1325
+ msgstr ""
1326
+
1327
+ #: -:-
1328
+ msgid "LDAP|Attribute|uid"
1329
+ msgstr ""
1330
+
1331
+ #: -:-
1332
+ msgid "LDAP|Attribute|uidNumber"
1333
+ msgstr ""
1334
+
1335
+ #: -:-
1336
+ msgid "LDAP|Attribute|uniqueIdentifier"
1337
+ msgstr ""
1338
+
1339
+ #: -:-
1340
+ msgid "LDAP|Attribute|uniqueMember"
1341
+ msgstr ""
1342
+
1343
+ #: -:-
1344
+ msgid "LDAP|Attribute|userCertificate"
1345
+ msgstr ""
1346
+
1347
+ #: -:-
1348
+ msgid "LDAP|Attribute|userClass"
1349
+ msgstr ""
1350
+
1351
+ #: -:-
1352
+ msgid "LDAP|Attribute|userPKCS12"
1353
+ msgstr ""
1354
+
1355
+ #: -:-
1356
+ msgid "LDAP|Attribute|userPassword"
1357
+ msgstr ""
1358
+
1359
+ #: -:-
1360
+ msgid "LDAP|Attribute|userSMIMECertificate"
1361
+ msgstr ""
1362
+
1363
+ #: -:-
1364
+ msgid "LDAP|Attribute|userid"
1365
+ msgstr ""
1366
+
1367
+ #: -:-
1368
+ msgid "LDAP|Attribute|vendorName"
1369
+ msgstr ""
1370
+
1371
+ #: -:-
1372
+ msgid "LDAP|Attribute|vendorVersion"
1373
+ msgstr ""
1374
+
1375
+ #: -:-
1376
+ msgid "LDAP|Attribute|x121Address"
1377
+ msgstr ""
1378
+
1379
+ #: -:-
1380
+ msgid "LDAP|Attribute|x500UniqueIdentifier"
1381
+ msgstr ""
1382
+
1383
+ #: -:-
1384
+ msgid ""
1385
+ "LDAP|Description|Attribute|aliasedObjectName|RFC4512: name of aliased object"
1386
+ msgstr ""
1387
+
1388
+ #: -:-
1389
+ msgid "LDAP|Description|Attribute|altServer|RFC4512: alternative servers"
1390
+ msgstr ""
1391
+
1392
+ #: -:-
1393
+ msgid ""
1394
+ "LDAP|Description|Attribute|associatedDomain|RFC1274: domain associated with "
1395
+ "object"
1396
+ msgstr ""
1397
+
1398
+ #: -:-
1399
+ msgid ""
1400
+ "LDAP|Description|Attribute|associatedName|RFC1274: DN of entry associated "
1401
+ "with domain"
1402
+ msgstr ""
1403
+
1404
+ #: -:-
1405
+ msgid "LDAP|Description|Attribute|attributeTypes|RFC4512: attribute types"
1406
+ msgstr ""
1407
+
1408
+ #: -:-
1409
+ msgid "LDAP|Description|Attribute|audio|RFC1274: audio (u-law)"
1410
+ msgstr ""
1411
+
1412
+ #: -:-
1413
+ msgid ""
1414
+ "LDAP|Description|Attribute|authorityRevocationList|RFC2256: X.509 authority "
1415
+ "revocation list, use ;binary"
1416
+ msgstr ""
1417
+
1418
+ #: -:-
1419
+ msgid "LDAP|Description|Attribute|bootFile|Boot image name"
1420
+ msgstr ""
1421
+
1422
+ #: -:-
1423
+ msgid "LDAP|Description|Attribute|bootParameter|rpc.bootparamd parameter"
1424
+ msgstr ""
1425
+
1426
+ #: -:-
1427
+ msgid "LDAP|Description|Attribute|buildingName|RFC1274: name of building"
1428
+ msgstr ""
1429
+
1430
+ #: -:-
1431
+ msgid "LDAP|Description|Attribute|businessCategory|RFC2256: business category"
1432
+ msgstr ""
1433
+
1434
+ #: -:-
1435
+ msgid ""
1436
+ "LDAP|Description|Attribute|cACertificate|RFC2256: X.509 CA certificate, use ;"
1437
+ "binary"
1438
+ msgstr ""
1439
+
1440
+ #: -:-
1441
+ msgid ""
1442
+ "LDAP|Description|Attribute|carLicense|RFC2798: vehicle license or "
1443
+ "registration plate"
1444
+ msgstr ""
1445
+
1446
+ #: -:-
1447
+ msgid ""
1448
+ "LDAP|Description|Attribute|certificateRevocationList|RFC2256: X.509 "
1449
+ "certificate revocation list, use ;binary"
1450
+ msgstr ""
1451
+
1452
+ #: -:-
1453
+ msgid ""
1454
+ "LDAP|Description|Attribute|cn|RFC4519: common name(s) for which the entity "
1455
+ "is known by"
1456
+ msgstr ""
1457
+
1458
+ #: -:-
1459
+ msgid "LDAP|Description|Attribute|co|RFC1274: friendly country name"
1460
+ msgstr ""
1461
+
1462
+ #: -:-
1463
+ msgid ""
1464
+ "LDAP|Description|Attribute|createTimestamp|RFC4512: time which object was "
1465
+ "created"
1466
+ msgstr ""
1467
+
1468
+ #: -:-
1469
+ msgid "LDAP|Description|Attribute|creatorsName|RFC4512: name of creator"
1470
+ msgstr ""
1471
+
1472
+ #: -:-
1473
+ msgid ""
1474
+ "LDAP|Description|Attribute|crossCertificatePair|RFC2256: X.509 cross "
1475
+ "certificate pair, use ;binary"
1476
+ msgstr ""
1477
+
1478
+ #: -:-
1479
+ msgid "LDAP|Description|Attribute|c|RFC2256: ISO-3166 country 2-letter code"
1480
+ msgstr ""
1481
+
1482
+ #: -:-
1483
+ msgid "LDAP|Description|Attribute|dITRedirect|RFC1274: DIT Redirect"
1484
+ msgstr ""
1485
+
1486
+ #: -:-
1487
+ msgid "LDAP|Description|Attribute|dSAQuality|RFC1274: DSA Quality"
1488
+ msgstr ""
1489
+
1490
+ #: -:-
1491
+ msgid "LDAP|Description|Attribute|dc|RFC1274/2247: domain component"
1492
+ msgstr ""
1493
+
1494
+ #: -:-
1495
+ msgid ""
1496
+ "LDAP|Description|Attribute|deltaRevocationList|RFC2256: delta revocation "
1497
+ "list; use ;binary"
1498
+ msgstr ""
1499
+
1500
+ #: -:-
1501
+ msgid ""
1502
+ "LDAP|Description|Attribute|departmentNumber|RFC2798: identifies a department "
1503
+ "within an organization"
1504
+ msgstr ""
1505
+
1506
+ #: -:-
1507
+ msgid "LDAP|Description|Attribute|description|RFC4519: descriptive information"
1508
+ msgstr ""
1509
+
1510
+ #: -:-
1511
+ msgid ""
1512
+ "LDAP|Description|Attribute|destinationIndicator|RFC2256: destination "
1513
+ "indicator"
1514
+ msgstr ""
1515
+
1516
+ #: -:-
1517
+ msgid ""
1518
+ "LDAP|Description|Attribute|displayName|RFC2798: preferred name to be used "
1519
+ "when displaying entries"
1520
+ msgstr ""
1521
+
1522
+ #: -:-
1523
+ msgid ""
1524
+ "LDAP|Description|Attribute|distinguishedName|RFC4519: common supertype of DN "
1525
+ "attributes"
1526
+ msgstr ""
1527
+
1528
+ #: -:-
1529
+ msgid "LDAP|Description|Attribute|dmdName|RFC2256: name of DMD"
1530
+ msgstr ""
1531
+
1532
+ #: -:-
1533
+ msgid "LDAP|Description|Attribute|dnQualifier|RFC2256: DN qualifier"
1534
+ msgstr ""
1535
+
1536
+ #: -:-
1537
+ msgid ""
1538
+ "LDAP|Description|Attribute|documentAuthor|RFC1274: DN of author of document"
1539
+ msgstr ""
1540
+
1541
+ #: -:-
1542
+ msgid ""
1543
+ "LDAP|Description|Attribute|documentIdentifier|RFC1274: unique identifier of "
1544
+ "document"
1545
+ msgstr ""
1546
+
1547
+ #: -:-
1548
+ msgid ""
1549
+ "LDAP|Description|Attribute|documentLocation|RFC1274: location of document "
1550
+ "original"
1551
+ msgstr ""
1552
+
1553
+ #: -:-
1554
+ msgid ""
1555
+ "LDAP|Description|Attribute|documentPublisher|RFC1274: publisher of document"
1556
+ msgstr ""
1557
+
1558
+ #: -:-
1559
+ msgid "LDAP|Description|Attribute|documentTitle|RFC1274: title of document"
1560
+ msgstr ""
1561
+
1562
+ #: -:-
1563
+ msgid "LDAP|Description|Attribute|documentVersion|RFC1274: version of document"
1564
+ msgstr ""
1565
+
1566
+ #: -:-
1567
+ msgid "LDAP|Description|Attribute|drink|RFC1274: favorite drink"
1568
+ msgstr ""
1569
+
1570
+ #: -:-
1571
+ msgid "LDAP|Description|Attribute|dynamicSubtrees|RFC2589: dynamic subtrees"
1572
+ msgstr ""
1573
+
1574
+ #: -:-
1575
+ msgid ""
1576
+ "LDAP|Description|Attribute|email|RFC3280: legacy attribute for email "
1577
+ "addresses in DNs"
1578
+ msgstr ""
1579
+
1580
+ #: -:-
1581
+ msgid ""
1582
+ "LDAP|Description|Attribute|employeeNumber|RFC2798: numerically identifies an "
1583
+ "employee within an organization"
1584
+ msgstr ""
1585
+
1586
+ #: -:-
1587
+ msgid ""
1588
+ "LDAP|Description|Attribute|employeeType|RFC2798: type of employment for a "
1589
+ "person"
1590
+ msgstr ""
1591
+
1592
+ #: -:-
1593
+ msgid ""
1594
+ "LDAP|Description|Attribute|enhancedSearchGuide|RFC2256: enhanced search guide"
1595
+ msgstr ""
1596
+
1597
+ #: -:-
1598
+ msgid "LDAP|Description|Attribute|entryDN|DN of the entry"
1599
+ msgstr ""
1600
+
1601
+ #: -:-
1602
+ msgid "LDAP|Description|Attribute|entryTtl|RFC2589: entry time-to-live"
1603
+ msgstr ""
1604
+
1605
+ #: -:-
1606
+ msgid "LDAP|Description|Attribute|entryUUID|UUID of the entry"
1607
+ msgstr ""
1608
+
1609
+ #: -:-
1610
+ msgid ""
1611
+ "LDAP|Description|Attribute|facsimileTelephoneNumber|RFC2256: Facsimile (Fax) "
1612
+ "Telephone Number"
1613
+ msgstr ""
1614
+
1615
+ #: -:-
1616
+ msgid "LDAP|Description|Attribute|gecos|The GECOS field; the common name"
1617
+ msgstr ""
1618
+
1619
+ #: -:-
1620
+ msgid ""
1621
+ "LDAP|Description|Attribute|generationQualifier|RFC2256: name qualifier "
1622
+ "indicating a generation"
1623
+ msgstr ""
1624
+
1625
+ #: -:-
1626
+ msgid ""
1627
+ "LDAP|Description|Attribute|gidNumber|RFC2307: An integer uniquely "
1628
+ "identifying a group in an administrative domain"
1629
+ msgstr ""
1630
+
1631
+ #: -:-
1632
+ msgid ""
1633
+ "LDAP|Description|Attribute|givenName|RFC2256: first name(s) for which the "
1634
+ "entity is known by"
1635
+ msgstr ""
1636
+
1637
+ #: -:-
1638
+ msgid "LDAP|Description|Attribute|hasSubordinates|X.501: entry has children"
1639
+ msgstr ""
1640
+
1641
+ #: -:-
1642
+ msgid ""
1643
+ "LDAP|Description|Attribute|homeDirectory|The absolute path to the home "
1644
+ "directory"
1645
+ msgstr ""
1646
+
1647
+ #: -:-
1648
+ msgid "LDAP|Description|Attribute|homePhone|RFC1274: home telephone number"
1649
+ msgstr ""
1650
+
1651
+ #: -:-
1652
+ msgid ""
1653
+ "LDAP|Description|Attribute|homePostalAddress|RFC1274: home postal address"
1654
+ msgstr ""
1655
+
1656
+ #: -:-
1657
+ msgid "LDAP|Description|Attribute|host|RFC1274: host computer"
1658
+ msgstr ""
1659
+
1660
+ #: -:-
1661
+ msgid "LDAP|Description|Attribute|houseIdentifier|RFC2256: house identifier"
1662
+ msgstr ""
1663
+
1664
+ #: -:-
1665
+ msgid "LDAP|Description|Attribute|info|RFC1274: general information"
1666
+ msgstr ""
1667
+
1668
+ #: -:-
1669
+ msgid ""
1670
+ "LDAP|Description|Attribute|initials|RFC2256: initials of some or all of "
1671
+ "names, but not the surname(s)."
1672
+ msgstr ""
1673
+
1674
+ #: -:-
1675
+ msgid ""
1676
+ "LDAP|Description|Attribute|internationaliSDNNumber|RFC2256: international "
1677
+ "ISDN number"
1678
+ msgstr ""
1679
+
1680
+ #: -:-
1681
+ msgid "LDAP|Description|Attribute|ipHostNumber|IP address"
1682
+ msgstr ""
1683
+
1684
+ #: -:-
1685
+ msgid "LDAP|Description|Attribute|ipNetmaskNumber|IP netmask"
1686
+ msgstr ""
1687
+
1688
+ #: -:-
1689
+ msgid "LDAP|Description|Attribute|ipNetworkNumber|IP network"
1690
+ msgstr ""
1691
+
1692
+ #: -:-
1693
+ msgid "LDAP|Description|Attribute|janetMailbox|RFC1274: Janet mailbox"
1694
+ msgstr ""
1695
+
1696
+ #: -:-
1697
+ msgid "LDAP|Description|Attribute|jpegPhoto|RFC2798: a JPEG image"
1698
+ msgstr ""
1699
+
1700
+ #: -:-
1701
+ msgid ""
1702
+ "LDAP|Description|Attribute|knowledgeInformation|RFC2256: knowledge "
1703
+ "information"
1704
+ msgstr ""
1705
+
1706
+ #: -:-
1707
+ msgid ""
1708
+ "LDAP|Description|Attribute|labeledURI|RFC2079: Uniform Resource Identifier "
1709
+ "with optional label"
1710
+ msgstr ""
1711
+
1712
+ #: -:-
1713
+ msgid "LDAP|Description|Attribute|ldapSyntaxes|RFC4512: LDAP syntaxes"
1714
+ msgstr ""
1715
+
1716
+ #: -:-
1717
+ msgid "LDAP|Description|Attribute|loginShell|The path to the login shell"
1718
+ msgstr ""
1719
+
1720
+ #: -:-
1721
+ msgid ""
1722
+ "LDAP|Description|Attribute|l|RFC2256: locality which this object resides in"
1723
+ msgstr ""
1724
+
1725
+ #: -:-
1726
+ msgid "LDAP|Description|Attribute|macAddress|MAC address"
1727
+ msgstr ""
1728
+
1729
+ #: -:-
1730
+ msgid ""
1731
+ "LDAP|Description|Attribute|mailPreferenceOption|RFC1274: mail preference "
1732
+ "option"
1733
+ msgstr ""
1734
+
1735
+ #: -:-
1736
+ msgid "LDAP|Description|Attribute|mail|RFC1274: RFC822 Mailbox"
1737
+ msgstr ""
1738
+
1739
+ #: -:-
1740
+ msgid "LDAP|Description|Attribute|manager|RFC1274: DN of manager"
1741
+ msgstr ""
1742
+
1743
+ #: -:-
1744
+ msgid "LDAP|Description|Attribute|matchingRuleUse|RFC4512: matching rule uses"
1745
+ msgstr ""
1746
+
1747
+ #: -:-
1748
+ msgid "LDAP|Description|Attribute|matchingRules|RFC4512: matching rules"
1749
+ msgstr ""
1750
+
1751
+ #: -:-
1752
+ msgid "LDAP|Description|Attribute|member|RFC2256: member of a group"
1753
+ msgstr ""
1754
+
1755
+ #: -:-
1756
+ msgid "LDAP|Description|Attribute|mobile|RFC1274: mobile telephone number"
1757
+ msgstr ""
1758
+
1759
+ #: -:-
1760
+ msgid "LDAP|Description|Attribute|modifiersName|RFC4512: name of last modifier"
1761
+ msgstr ""
1762
+
1763
+ #: -:-
1764
+ msgid ""
1765
+ "LDAP|Description|Attribute|modifyTimestamp|RFC4512: time which object was "
1766
+ "last modified"
1767
+ msgstr ""
1768
+
1769
+ #: -:-
1770
+ msgid ""
1771
+ "LDAP|Description|Attribute|name|RFC4519: common supertype of name attributes"
1772
+ msgstr ""
1773
+
1774
+ #: -:-
1775
+ msgid "LDAP|Description|Attribute|namingContexts|RFC4512: naming contexts"
1776
+ msgstr ""
1777
+
1778
+ #: -:-
1779
+ msgid "LDAP|Description|Attribute|nisNetgroupTriple|Netgroup triple"
1780
+ msgstr ""
1781
+
1782
+ #: -:-
1783
+ msgid "LDAP|Description|Attribute|objectClasses|RFC4512: object classes"
1784
+ msgstr ""
1785
+
1786
+ #: -:-
1787
+ msgid ""
1788
+ "LDAP|Description|Attribute|objectClass|RFC4512: object classes of the entity"
1789
+ msgstr ""
1790
+
1791
+ #: -:-
1792
+ msgid "LDAP|Description|Attribute|olcAccess|Access Control List"
1793
+ msgstr ""
1794
+
1795
+ #: -:-
1796
+ msgid ""
1797
+ "LDAP|Description|Attribute|olcAddContentAcl|Check ACLs against content of "
1798
+ "Add ops"
1799
+ msgstr ""
1800
+
1801
+ #: -:-
1802
+ msgid "LDAP|Description|Attribute|olcAllows|Allowed set of deprecated features"
1803
+ msgstr ""
1804
+
1805
+ #: -:-
1806
+ msgid ""
1807
+ "LDAP|Description|Attribute|olcArgsFile|File for slapd command line options"
1808
+ msgstr ""
1809
+
1810
+ #: -:-
1811
+ msgid "LDAP|Description|Attribute|olcAttributeTypes|OpenLDAP attributeTypes"
1812
+ msgstr ""
1813
+
1814
+ #: -:-
1815
+ msgid "LDAP|Description|Attribute|olcBackend|A type of backend"
1816
+ msgstr ""
1817
+
1818
+ #: -:-
1819
+ msgid ""
1820
+ "LDAP|Description|Attribute|olcConfigDir|Directory for slapd configuration "
1821
+ "backend"
1822
+ msgstr ""
1823
+
1824
+ #: -:-
1825
+ msgid ""
1826
+ "LDAP|Description|Attribute|olcConfigFile|File for slapd configuration "
1827
+ "directives"
1828
+ msgstr ""
1829
+
1830
+ #: -:-
1831
+ msgid ""
1832
+ "LDAP|Description|Attribute|olcDatabase|The backend type for a database "
1833
+ "instance"
1834
+ msgstr ""
1835
+
1836
+ #: -:-
1837
+ msgid ""
1838
+ "LDAP|Description|Attribute|olcDbCacheFree|Number of extra entries to free "
1839
+ "when max is reached"
1840
+ msgstr ""
1841
+
1842
+ #: -:-
1843
+ msgid "LDAP|Description|Attribute|olcDbCacheSize|Entry cache size in entries"
1844
+ msgstr ""
1845
+
1846
+ #: -:-
1847
+ msgid ""
1848
+ "LDAP|Description|Attribute|olcDbCheckpoint|Database checkpoint interval in "
1849
+ "kbytes and minutes"
1850
+ msgstr ""
1851
+
1852
+ #: -:-
1853
+ msgid ""
1854
+ "LDAP|Description|Attribute|olcDbChecksum|Enable database checksum validation"
1855
+ msgstr ""
1856
+
1857
+ #: -:-
1858
+ msgid ""
1859
+ "LDAP|Description|Attribute|olcDbConfig|BerkeleyDB DB_CONFIG configuration "
1860
+ "directives"
1861
+ msgstr ""
1862
+
1863
+ #: -:-
1864
+ msgid ""
1865
+ "LDAP|Description|Attribute|olcDbCryptFile|Pathname of file containing the DB "
1866
+ "encryption key"
1867
+ msgstr ""
1868
+
1869
+ #: -:-
1870
+ msgid "LDAP|Description|Attribute|olcDbCryptKey|DB encryption key"
1871
+ msgstr ""
1872
+
1873
+ #: -:-
1874
+ msgid "LDAP|Description|Attribute|olcDbDNcacheSize|DN cache size"
1875
+ msgstr ""
1876
+
1877
+ #: -:-
1878
+ msgid ""
1879
+ "LDAP|Description|Attribute|olcDbDirectory|Directory for database content"
1880
+ msgstr ""
1881
+
1882
+ #: -:-
1883
+ msgid ""
1884
+ "LDAP|Description|Attribute|olcDbDirtyRead|Allow reads of uncommitted data"
1885
+ msgstr ""
1886
+
1887
+ #: -:-
1888
+ msgid "LDAP|Description|Attribute|olcDbIDLcacheSize|IDL cache size in IDLs"
1889
+ msgstr ""
1890
+
1891
+ #: -:-
1892
+ msgid "LDAP|Description|Attribute|olcDbIndex|Attribute index parameters"
1893
+ msgstr ""
1894
+
1895
+ #: -:-
1896
+ msgid ""
1897
+ "LDAP|Description|Attribute|olcDbLinearIndex|Index attributes one at a time"
1898
+ msgstr ""
1899
+
1900
+ #: -:-
1901
+ msgid "LDAP|Description|Attribute|olcDbLockDetect|Deadlock detection algorithm"
1902
+ msgstr ""
1903
+
1904
+ #: -:-
1905
+ msgid "LDAP|Description|Attribute|olcDbMode|Unix permissions of database files"
1906
+ msgstr ""
1907
+
1908
+ #: -:-
1909
+ msgid ""
1910
+ "LDAP|Description|Attribute|olcDbNoSync|Disable synchronous database writes"
1911
+ msgstr ""
1912
+
1913
+ #: -:-
1914
+ msgid ""
1915
+ "LDAP|Description|Attribute|olcDbPageSize|Page size of specified DB, in Kbytes"
1916
+ msgstr ""
1917
+
1918
+ #: -:-
1919
+ msgid ""
1920
+ "LDAP|Description|Attribute|olcDbSearchStack|Depth of search stack in IDLs"
1921
+ msgstr ""
1922
+
1923
+ #: -:-
1924
+ msgid "LDAP|Description|Attribute|olcDbShmKey|Key for shared memory region"
1925
+ msgstr ""
1926
+
1927
+ #: -:-
1928
+ msgid ""
1929
+ "LDAP|Description|Attribute|olcDitContentRules|OpenLDAP DIT content rules"
1930
+ msgstr ""
1931
+
1932
+ #: -:-
1933
+ msgid "LDAP|Description|Attribute|olcLdapSyntaxes|OpenLDAP ldapSyntax"
1934
+ msgstr ""
1935
+
1936
+ #: -:-
1937
+ msgid "LDAP|Description|Attribute|olcObjectClasses|OpenLDAP object classes"
1938
+ msgstr ""
1939
+
1940
+ #: -:-
1941
+ msgid ""
1942
+ "LDAP|Description|Attribute|olcSortVals|Attributes whose values will always "
1943
+ "be sorted"
1944
+ msgstr ""
1945
+
1946
+ #: -:-
1947
+ msgid ""
1948
+ "LDAP|Description|Attribute|organizationalStatus|RFC1274: organizational "
1949
+ "status"
1950
+ msgstr ""
1951
+
1952
+ #: -:-
1953
+ msgid ""
1954
+ "LDAP|Description|Attribute|ou|RFC2256: organizational unit this object "
1955
+ "belongs to"
1956
+ msgstr ""
1957
+
1958
+ #: -:-
1959
+ msgid "LDAP|Description|Attribute|owner|RFC2256: owner (of the object)"
1960
+ msgstr ""
1961
+
1962
+ #: -:-
1963
+ msgid ""
1964
+ "LDAP|Description|Attribute|o|RFC2256: organization this object belongs to"
1965
+ msgstr ""
1966
+
1967
+ #: -:-
1968
+ msgid "LDAP|Description|Attribute|pager|RFC1274: pager telephone number"
1969
+ msgstr ""
1970
+
1971
+ #: -:-
1972
+ msgid ""
1973
+ "LDAP|Description|Attribute|personalSignature|RFC1274: Personal Signature (G3 "
1974
+ "fax)"
1975
+ msgstr ""
1976
+
1977
+ #: -:-
1978
+ msgid "LDAP|Description|Attribute|personalTitle|RFC1274: personal title"
1979
+ msgstr ""
1980
+
1981
+ #: -:-
1982
+ msgid "LDAP|Description|Attribute|photo|RFC1274: photo (G3 fax)"
1983
+ msgstr ""
1984
+
1985
+ #: -:-
1986
+ msgid ""
1987
+ "LDAP|Description|Attribute|physicalDeliveryOfficeName|RFC2256: Physical "
1988
+ "Delivery Office Name"
1989
+ msgstr ""
1990
+
1991
+ #: -:-
1992
+ msgid "LDAP|Description|Attribute|postOfficeBox|RFC2256: Post Office Box"
1993
+ msgstr ""
1994
+
1995
+ #: -:-
1996
+ msgid "LDAP|Description|Attribute|postalAddress|RFC2256: postal address"
1997
+ msgstr ""
1998
+
1999
+ #: -:-
2000
+ msgid "LDAP|Description|Attribute|postalCode|RFC2256: postal code"
2001
+ msgstr ""
2002
+
2003
+ #: -:-
2004
+ msgid ""
2005
+ "LDAP|Description|Attribute|preferredDeliveryMethod|RFC2256: preferred "
2006
+ "delivery method"
2007
+ msgstr ""
2008
+
2009
+ #: -:-
2010
+ msgid ""
2011
+ "LDAP|Description|Attribute|preferredLanguage|RFC2798: preferred written or "
2012
+ "spoken language for a person"
2013
+ msgstr ""
2014
+
2015
+ #: -:-
2016
+ msgid ""
2017
+ "LDAP|Description|Attribute|presentationAddress|RFC2256: presentation address"
2018
+ msgstr ""
2019
+
2020
+ #: -:-
2021
+ msgid ""
2022
+ "LDAP|Description|Attribute|protocolInformation|RFC2256: protocol information"
2023
+ msgstr ""
2024
+
2025
+ #: -:-
2026
+ msgid ""
2027
+ "LDAP|Description|Attribute|pseudonym|X.520(4th): pseudonym for the object"
2028
+ msgstr ""
2029
+
2030
+ #: -:-
2031
+ msgid "LDAP|Description|Attribute|ref|RFC3296: subordinate referral URL"
2032
+ msgstr ""
2033
+
2034
+ #: -:-
2035
+ msgid ""
2036
+ "LDAP|Description|Attribute|registeredAddress|RFC2256: registered postal "
2037
+ "address"
2038
+ msgstr ""
2039
+
2040
+ #: -:-
2041
+ msgid "LDAP|Description|Attribute|roleOccupant|RFC2256: occupant of role"
2042
+ msgstr ""
2043
+
2044
+ #: -:-
2045
+ msgid "LDAP|Description|Attribute|roomNumber|RFC1274: room number"
2046
+ msgstr ""
2047
+
2048
+ #: -:-
2049
+ msgid "LDAP|Description|Attribute|sambaAcctFlags|Account Flags"
2050
+ msgstr ""
2051
+
2052
+ #: -:-
2053
+ msgid ""
2054
+ "LDAP|Description|Attribute|sambaAlgorithmicRidBase|Base at which the samba "
2055
+ "RID generation algorithm should operate"
2056
+ msgstr ""
2057
+
2058
+ #: -:-
2059
+ msgid ""
2060
+ "LDAP|Description|Attribute|sambaBadPasswordCount|Bad password attempt count"
2061
+ msgstr ""
2062
+
2063
+ #: -:-
2064
+ msgid ""
2065
+ "LDAP|Description|Attribute|sambaBadPasswordTime|Time of the last bad "
2066
+ "password attempt"
2067
+ msgstr ""
2068
+
2069
+ #: -:-
2070
+ msgid "LDAP|Description|Attribute|sambaBoolOption|A boolean option"
2071
+ msgstr ""
2072
+
2073
+ #: -:-
2074
+ msgid ""
2075
+ "LDAP|Description|Attribute|sambaDomainName|Windows NT domain to which the "
2076
+ "user belongs"
2077
+ msgstr ""
2078
+
2079
+ #: -:-
2080
+ msgid ""
2081
+ "LDAP|Description|Attribute|sambaForceLogoff|Disconnect Users outside logon "
2082
+ "hours (default: -1 => off, 0 => on)"
2083
+ msgstr ""
2084
+
2085
+ #: -:-
2086
+ msgid "LDAP|Description|Attribute|sambaGroupType|NT Group Type"
2087
+ msgstr ""
2088
+
2089
+ #: -:-
2090
+ msgid ""
2091
+ "LDAP|Description|Attribute|sambaHomeDrive|Driver letter of home directory "
2092
+ "mapping"
2093
+ msgstr ""
2094
+
2095
+ #: -:-
2096
+ msgid "LDAP|Description|Attribute|sambaHomePath|Home directory UNC path"
2097
+ msgstr ""
2098
+
2099
+ #: -:-
2100
+ msgid "LDAP|Description|Attribute|sambaIntegerOption|An integer option"
2101
+ msgstr ""
2102
+
2103
+ #: -:-
2104
+ msgid ""
2105
+ "LDAP|Description|Attribute|sambaKickoffTime|Timestamp of when the user will "
2106
+ "be logged off automatically"
2107
+ msgstr ""
2108
+
2109
+ #: -:-
2110
+ msgid "LDAP|Description|Attribute|sambaLMPassword|LanManager Password"
2111
+ msgstr ""
2112
+
2113
+ #: -:-
2114
+ msgid ""
2115
+ "LDAP|Description|Attribute|sambaLockoutDuration|Lockout duration in minutes "
2116
+ "(default: 30, -1 => forever)"
2117
+ msgstr ""
2118
+
2119
+ #: -:-
2120
+ msgid ""
2121
+ "LDAP|Description|Attribute|sambaLockoutObservationWindow|Reset time after "
2122
+ "lockout in minutes (default: 30)"
2123
+ msgstr ""
2124
+
2125
+ #: -:-
2126
+ msgid ""
2127
+ "LDAP|Description|Attribute|sambaLockoutThreshold|Lockout users after bad "
2128
+ "logon attempts (default: 0 => off)"
2129
+ msgstr ""
2130
+
2131
+ #: -:-
2132
+ msgid "LDAP|Description|Attribute|sambaLogoffTime|Timestamp of last logoff"
2133
+ msgstr ""
2134
+
2135
+ #: -:-
2136
+ msgid "LDAP|Description|Attribute|sambaLogonHours|Logon Hours"
2137
+ msgstr ""
2138
+
2139
+ #: -:-
2140
+ msgid "LDAP|Description|Attribute|sambaLogonScript|Logon script path"
2141
+ msgstr ""
2142
+
2143
+ #: -:-
2144
+ msgid "LDAP|Description|Attribute|sambaLogonTime|Timestamp of last logon"
2145
+ msgstr ""
2146
+
2147
+ #: -:-
2148
+ msgid ""
2149
+ "LDAP|Description|Attribute|sambaLogonToChgPwd|Force Users to logon for "
2150
+ "password change (default: 0 => off, 2 => on)"
2151
+ msgstr ""
2152
+
2153
+ #: -:-
2154
+ msgid ""
2155
+ "LDAP|Description|Attribute|sambaMaxPwdAge|Maximum password age, in seconds "
2156
+ "(default: -1 => never expire passwords)"
2157
+ msgstr ""
2158
+
2159
+ #: -:-
2160
+ msgid ""
2161
+ "LDAP|Description|Attribute|sambaMinPwdAge|Minimum password age, in seconds "
2162
+ "(default: 0 => allow immediate password change)"
2163
+ msgstr ""
2164
+
2165
+ #: -:-
2166
+ msgid ""
2167
+ "LDAP|Description|Attribute|sambaMinPwdLength|Minimal password length "
2168
+ "(default: 5)"
2169
+ msgstr ""
2170
+
2171
+ #: -:-
2172
+ msgid ""
2173
+ "LDAP|Description|Attribute|sambaMungedDial|Base64 encoded user parameter "
2174
+ "string"
2175
+ msgstr ""
2176
+
2177
+ #: -:-
2178
+ msgid ""
2179
+ "LDAP|Description|Attribute|sambaNTPassword|MD4 hash of the unicode password"
2180
+ msgstr ""
2181
+
2182
+ #: -:-
2183
+ msgid ""
2184
+ "LDAP|Description|Attribute|sambaNextGroupRid|Next NT rid to give out for "
2185
+ "groups"
2186
+ msgstr ""
2187
+
2188
+ #: -:-
2189
+ msgid ""
2190
+ "LDAP|Description|Attribute|sambaNextRid|Next NT rid to give out for anything"
2191
+ msgstr ""
2192
+
2193
+ #: -:-
2194
+ msgid ""
2195
+ "LDAP|Description|Attribute|sambaNextUserRid|Next NT rid to give our for users"
2196
+ msgstr ""
2197
+
2198
+ #: -:-
2199
+ msgid "LDAP|Description|Attribute|sambaOptionName|Option Name"
2200
+ msgstr ""
2201
+
2202
+ #: -:-
2203
+ msgid ""
2204
+ "LDAP|Description|Attribute|sambaPasswordHistory|Concatenated MD4 hashes of "
2205
+ "the unicode passwords used on this account"
2206
+ msgstr ""
2207
+
2208
+ #: -:-
2209
+ msgid ""
2210
+ "LDAP|Description|Attribute|sambaPrimaryGroupSID|Primary Group Security ID"
2211
+ msgstr ""
2212
+
2213
+ #: -:-
2214
+ msgid "LDAP|Description|Attribute|sambaProfilePath|Roaming profile path"
2215
+ msgstr ""
2216
+
2217
+ #: -:-
2218
+ msgid ""
2219
+ "LDAP|Description|Attribute|sambaPwdCanChange|Timestamp of when the user is "
2220
+ "allowed to update the password"
2221
+ msgstr ""
2222
+
2223
+ #: -:-
2224
+ msgid ""
2225
+ "LDAP|Description|Attribute|sambaPwdHistoryLength|Length of Password History "
2226
+ "Entries (default: 0 => off)"
2227
+ msgstr ""
2228
+
2229
+ #: -:-
2230
+ msgid ""
2231
+ "LDAP|Description|Attribute|sambaPwdLastSet|Timestamp of the last password "
2232
+ "update"
2233
+ msgstr ""
2234
+
2235
+ #: -:-
2236
+ msgid ""
2237
+ "LDAP|Description|Attribute|sambaPwdMustChange|Timestamp of when the password "
2238
+ "will expire"
2239
+ msgstr ""
2240
+
2241
+ #: -:-
2242
+ msgid ""
2243
+ "LDAP|Description|Attribute|sambaRefuseMachinePwdChange|Allow Machine "
2244
+ "Password changes (default: 0 => off)"
2245
+ msgstr ""
2246
+
2247
+ #: -:-
2248
+ msgid "LDAP|Description|Attribute|sambaSIDList|Security ID List"
2249
+ msgstr ""
2250
+
2251
+ #: -:-
2252
+ msgid "LDAP|Description|Attribute|sambaSID|Security ID"
2253
+ msgstr ""
2254
+
2255
+ #: -:-
2256
+ msgid "LDAP|Description|Attribute|sambaShareName|Share Name"
2257
+ msgstr ""
2258
+
2259
+ #: -:-
2260
+ msgid "LDAP|Description|Attribute|sambaStringListOption|A string list option"
2261
+ msgstr ""
2262
+
2263
+ #: -:-
2264
+ msgid "LDAP|Description|Attribute|sambaStringOption|A string option"
2265
+ msgstr ""
2266
+
2267
+ #: -:-
2268
+ msgid "LDAP|Description|Attribute|sambaTrustFlags|Trust Password Flags"
2269
+ msgstr ""
2270
+
2271
+ #: -:-
2272
+ msgid ""
2273
+ "LDAP|Description|Attribute|sambaUserWorkstations|List of user workstations "
2274
+ "the user is allowed to logon to"
2275
+ msgstr ""
2276
+
2277
+ #: -:-
2278
+ msgid ""
2279
+ "LDAP|Description|Attribute|searchGuide|RFC2256: search guide, deprecated by "
2280
+ "enhancedSearchGuide"
2281
+ msgstr ""
2282
+
2283
+ #: -:-
2284
+ msgid "LDAP|Description|Attribute|secretary|RFC1274: DN of secretary"
2285
+ msgstr ""
2286
+
2287
+ #: -:-
2288
+ msgid "LDAP|Description|Attribute|seeAlso|RFC4519: DN of related object"
2289
+ msgstr ""
2290
+
2291
+ #: -:-
2292
+ msgid ""
2293
+ "LDAP|Description|Attribute|serialNumber|RFC2256: serial number of the entity"
2294
+ msgstr ""
2295
+
2296
+ #: -:-
2297
+ msgid ""
2298
+ "LDAP|Description|Attribute|singleLevelQuality|RFC1274: Single Level Quality"
2299
+ msgstr ""
2300
+
2301
+ #: -:-
2302
+ msgid ""
2303
+ "LDAP|Description|Attribute|sn|RFC2256: last (family) name(s) for which the "
2304
+ "entity is known by"
2305
+ msgstr ""
2306
+
2307
+ #: -:-
2308
+ msgid ""
2309
+ "LDAP|Description|Attribute|street|RFC2256: street address of this object"
2310
+ msgstr ""
2311
+
2312
+ #: -:-
2313
+ msgid ""
2314
+ "LDAP|Description|Attribute|structuralObjectClass|RFC4512: structural object "
2315
+ "class of entry"
2316
+ msgstr ""
2317
+
2318
+ #: -:-
2319
+ msgid ""
2320
+ "LDAP|Description|Attribute|st|RFC2256: state or province which this object "
2321
+ "resides in"
2322
+ msgstr ""
2323
+
2324
+ #: -:-
2325
+ msgid ""
2326
+ "LDAP|Description|Attribute|subschemaSubentry|RFC4512: name of controlling "
2327
+ "subschema entry"
2328
+ msgstr ""
2329
+
2330
+ #: -:-
2331
+ msgid ""
2332
+ "LDAP|Description|Attribute|subtreeMaximumQuality|RFC1274: Subtree Maximun "
2333
+ "Quality"
2334
+ msgstr ""
2335
+
2336
+ #: -:-
2337
+ msgid ""
2338
+ "LDAP|Description|Attribute|subtreeMinimumQuality|RFC1274: Subtree Mininum "
2339
+ "Quality"
2340
+ msgstr ""
2341
+
2342
+ #: -:-
2343
+ msgid ""
2344
+ "LDAP|Description|Attribute|supportedAlgorithms|RFC2256: supported algorithms"
2345
+ msgstr ""
2346
+
2347
+ #: -:-
2348
+ msgid ""
2349
+ "LDAP|Description|Attribute|supportedApplicationContext|RFC2256: supported "
2350
+ "application context"
2351
+ msgstr ""
2352
+
2353
+ #: -:-
2354
+ msgid "LDAP|Description|Attribute|supportedControl|RFC4512: supported controls"
2355
+ msgstr ""
2356
+
2357
+ #: -:-
2358
+ msgid ""
2359
+ "LDAP|Description|Attribute|supportedExtension|RFC4512: supported extended "
2360
+ "operations"
2361
+ msgstr ""
2362
+
2363
+ #: -:-
2364
+ msgid ""
2365
+ "LDAP|Description|Attribute|supportedFeatures|RFC4512: features supported by "
2366
+ "the server"
2367
+ msgstr ""
2368
+
2369
+ #: -:-
2370
+ msgid ""
2371
+ "LDAP|Description|Attribute|supportedLDAPVersion|RFC4512: supported LDAP "
2372
+ "versions"
2373
+ msgstr ""
2374
+
2375
+ #: -:-
2376
+ msgid ""
2377
+ "LDAP|Description|Attribute|supportedSASLMechanisms|RFC4512: supported SASL "
2378
+ "mechanisms"
2379
+ msgstr ""
2380
+
2381
+ #: -:-
2382
+ msgid "LDAP|Description|Attribute|telephoneNumber|RFC2256: Telephone Number"
2383
+ msgstr ""
2384
+
2385
+ #: -:-
2386
+ msgid ""
2387
+ "LDAP|Description|Attribute|teletexTerminalIdentifier|RFC2256: Teletex "
2388
+ "Terminal Identifier"
2389
+ msgstr ""
2390
+
2391
+ #: -:-
2392
+ msgid "LDAP|Description|Attribute|telexNumber|RFC2256: Telex Number"
2393
+ msgstr ""
2394
+
2395
+ #: -:-
2396
+ msgid ""
2397
+ "LDAP|Description|Attribute|title|RFC2256: title associated with the entity"
2398
+ msgstr ""
2399
+
2400
+ #: -:-
2401
+ msgid ""
2402
+ "LDAP|Description|Attribute|uidNumber|RFC2307: An integer uniquely "
2403
+ "identifying a user in an administrative domain"
2404
+ msgstr ""
2405
+
2406
+ #: -:-
2407
+ msgid "LDAP|Description|Attribute|uid|RFC4519: user identifier"
2408
+ msgstr ""
2409
+
2410
+ #: -:-
2411
+ msgid "LDAP|Description|Attribute|uniqueIdentifier|RFC1274: unique identifer"
2412
+ msgstr ""
2413
+
2414
+ #: -:-
2415
+ msgid ""
2416
+ "LDAP|Description|Attribute|uniqueMember|RFC2256: unique member of a group"
2417
+ msgstr ""
2418
+
2419
+ #: -:-
2420
+ msgid ""
2421
+ "LDAP|Description|Attribute|userCertificate|RFC2256: X.509 user certificate, "
2422
+ "use ;binary"
2423
+ msgstr ""
2424
+
2425
+ #: -:-
2426
+ msgid "LDAP|Description|Attribute|userClass|RFC1274: category of user"
2427
+ msgstr ""
2428
+
2429
+ #: -:-
2430
+ msgid ""
2431
+ "LDAP|Description|Attribute|userPKCS12|RFC2798: personal identity "
2432
+ "information, a PKCS #12 PFX"
2433
+ msgstr ""
2434
+
2435
+ #: -:-
2436
+ msgid "LDAP|Description|Attribute|userPassword|RFC4519/2307: password of user"
2437
+ msgstr ""
2438
+
2439
+ #: -:-
2440
+ msgid ""
2441
+ "LDAP|Description|Attribute|userSMIMECertificate|RFC2798: PKCS#7 SignedData "
2442
+ "used to support S/MIME"
2443
+ msgstr ""
2444
+
2445
+ #: -:-
2446
+ msgid ""
2447
+ "LDAP|Description|Attribute|vendorName|RFC3045: name of implementation vendor"
2448
+ msgstr ""
2449
+
2450
+ #: -:-
2451
+ msgid ""
2452
+ "LDAP|Description|Attribute|vendorVersion|RFC3045: version of implementation"
2453
+ msgstr ""
2454
+
2455
+ #: -:-
2456
+ msgid "LDAP|Description|Attribute|x121Address|RFC2256: X.121 Address"
2457
+ msgstr ""
2458
+
2459
+ #: -:-
2460
+ msgid ""
2461
+ "LDAP|Description|Attribute|x500UniqueIdentifier|RFC2256: X.500 unique "
2462
+ "identifier"
2463
+ msgstr ""
2464
+
2465
+ #: -:-
2466
+ msgid ""
2467
+ "LDAP|Description|ObjectClass|OpenLDAPdisplayableObject|OpenLDAP Displayable "
2468
+ "Object"
2469
+ msgstr ""
2470
+
2471
+ #: -:-
2472
+ msgid "LDAP|Description|ObjectClass|OpenLDAPorg|OpenLDAP Organizational Object"
2473
+ msgstr ""
2474
+
2475
+ #: -:-
2476
+ msgid ""
2477
+ "LDAP|Description|ObjectClass|OpenLDAPou|OpenLDAP Organizational Unit Object"
2478
+ msgstr ""
2479
+
2480
+ #: -:-
2481
+ msgid "LDAP|Description|ObjectClass|OpenLDAPperson|OpenLDAP Person"
2482
+ msgstr ""
2483
+
2484
+ #: -:-
2485
+ msgid "LDAP|Description|ObjectClass|OpenLDAProotDSE|OpenLDAP Root DSE object"
2486
+ msgstr ""
2487
+
2488
+ #: -:-
2489
+ msgid "LDAP|Description|ObjectClass|alias|RFC4512: an alias"
2490
+ msgstr ""
2491
+
2492
+ #: -:-
2493
+ msgid ""
2494
+ "LDAP|Description|ObjectClass|applicationEntity|RFC2256: an application entity"
2495
+ msgstr ""
2496
+
2497
+ #: -:-
2498
+ msgid ""
2499
+ "LDAP|Description|ObjectClass|applicationProcess|RFC2256: an application "
2500
+ "process"
2501
+ msgstr ""
2502
+
2503
+ #: -:-
2504
+ msgid ""
2505
+ "LDAP|Description|ObjectClass|bootableDevice|A device with boot parameters"
2506
+ msgstr ""
2507
+
2508
+ #: -:-
2509
+ msgid ""
2510
+ "LDAP|Description|ObjectClass|certificationAuthority|RFC2256: a certificate "
2511
+ "authority"
2512
+ msgstr ""
2513
+
2514
+ #: -:-
2515
+ msgid "LDAP|Description|ObjectClass|country|RFC2256: a country"
2516
+ msgstr ""
2517
+
2518
+ #: -:-
2519
+ msgid ""
2520
+ "LDAP|Description|ObjectClass|dSA|RFC2256: a directory system agent (a server)"
2521
+ msgstr ""
2522
+
2523
+ #: -:-
2524
+ msgid "LDAP|Description|ObjectClass|dcObject|RFC2247: domain component object"
2525
+ msgstr ""
2526
+
2527
+ #: -:-
2528
+ msgid "LDAP|Description|ObjectClass|deltaCRL|RFC2587: PKI user"
2529
+ msgstr ""
2530
+
2531
+ #: -:-
2532
+ msgid "LDAP|Description|ObjectClass|device|RFC2256: a device"
2533
+ msgstr ""
2534
+
2535
+ #: -:-
2536
+ msgid ""
2537
+ "LDAP|Description|ObjectClass|domainRelatedObject|RFC1274: an object related "
2538
+ "to an domain"
2539
+ msgstr ""
2540
+
2541
+ #: -:-
2542
+ msgid "LDAP|Description|ObjectClass|dynamicObject|RFC2589: Dynamic Object"
2543
+ msgstr ""
2544
+
2545
+ #: -:-
2546
+ msgid ""
2547
+ "LDAP|Description|ObjectClass|extensibleObject|RFC4512: extensible object"
2548
+ msgstr ""
2549
+
2550
+ #: -:-
2551
+ msgid ""
2552
+ "LDAP|Description|ObjectClass|groupOfNames|RFC2256: a group of names (DNs)"
2553
+ msgstr ""
2554
+
2555
+ #: -:-
2556
+ msgid ""
2557
+ "LDAP|Description|ObjectClass|groupOfUniqueNames|RFC2256: a group of unique "
2558
+ "names (DN and Unique Identifier)"
2559
+ msgstr ""
2560
+
2561
+ #: -:-
2562
+ msgid "LDAP|Description|ObjectClass|ieee802Device|A device with a MAC address"
2563
+ msgstr ""
2564
+
2565
+ #: -:-
2566
+ msgid ""
2567
+ "LDAP|Description|ObjectClass|inetOrgPerson|RFC2798: Internet Organizational "
2568
+ "Person"
2569
+ msgstr ""
2570
+
2571
+ #: -:-
2572
+ msgid "LDAP|Description|ObjectClass|ipHost|Abstraction of a host, an IP device"
2573
+ msgstr ""
2574
+
2575
+ #: -:-
2576
+ msgid "LDAP|Description|ObjectClass|ipNetwork|Abstraction of an IP network"
2577
+ msgstr ""
2578
+
2579
+ #: -:-
2580
+ msgid "LDAP|Description|ObjectClass|ipProtocol|Abstraction of an IP protocol"
2581
+ msgstr ""
2582
+
2583
+ #: -:-
2584
+ msgid ""
2585
+ "LDAP|Description|ObjectClass|ipService|Abstraction an Internet Protocol "
2586
+ "service"
2587
+ msgstr ""
2588
+
2589
+ #: -:-
2590
+ msgid ""
2591
+ "LDAP|Description|ObjectClass|labeledURIObject|RFC2079: object that contains "
2592
+ "the URI attribute type"
2593
+ msgstr ""
2594
+
2595
+ #: -:-
2596
+ msgid "LDAP|Description|ObjectClass|locality|RFC2256: a locality"
2597
+ msgstr ""
2598
+
2599
+ #: -:-
2600
+ msgid "LDAP|Description|ObjectClass|nisMap|A generic abstraction of a NIS map"
2601
+ msgstr ""
2602
+
2603
+ #: -:-
2604
+ msgid "LDAP|Description|ObjectClass|nisNetgroup|Abstraction of a netgroup"
2605
+ msgstr ""
2606
+
2607
+ #: -:-
2608
+ msgid "LDAP|Description|ObjectClass|nisObject|An entry in a NIS map"
2609
+ msgstr ""
2610
+
2611
+ #: -:-
2612
+ msgid ""
2613
+ "LDAP|Description|ObjectClass|olcBackendConfig|OpenLDAP Backend-specific "
2614
+ "options"
2615
+ msgstr ""
2616
+
2617
+ #: -:-
2618
+ msgid "LDAP|Description|ObjectClass|olcBdbConfig|BDB backend configuration"
2619
+ msgstr ""
2620
+
2621
+ #: -:-
2622
+ msgid "LDAP|Description|ObjectClass|olcConfig|OpenLDAP configuration object"
2623
+ msgstr ""
2624
+
2625
+ #: -:-
2626
+ msgid ""
2627
+ "LDAP|Description|ObjectClass|olcDatabaseConfig|OpenLDAP Database-specific "
2628
+ "options"
2629
+ msgstr ""
2630
+
2631
+ #: -:-
2632
+ msgid ""
2633
+ "LDAP|Description|ObjectClass|olcFrontendConfig|OpenLDAP frontend "
2634
+ "configuration"
2635
+ msgstr ""
2636
+
2637
+ #: -:-
2638
+ msgid ""
2639
+ "LDAP|Description|ObjectClass|olcGlobal|OpenLDAP Global configuration options"
2640
+ msgstr ""
2641
+
2642
+ #: -:-
2643
+ msgid ""
2644
+ "LDAP|Description|ObjectClass|olcIncludeFile|OpenLDAP configuration include "
2645
+ "file"
2646
+ msgstr ""
2647
+
2648
+ #: -:-
2649
+ msgid "LDAP|Description|ObjectClass|olcLdifConfig|LDIF backend configuration"
2650
+ msgstr ""
2651
+
2652
+ #: -:-
2653
+ msgid "LDAP|Description|ObjectClass|olcModuleList|OpenLDAP dynamic module info"
2654
+ msgstr ""
2655
+
2656
+ #: -:-
2657
+ msgid ""
2658
+ "LDAP|Description|ObjectClass|olcOverlayConfig|OpenLDAP Overlay-specific "
2659
+ "options"
2660
+ msgstr ""
2661
+
2662
+ #: -:-
2663
+ msgid "LDAP|Description|ObjectClass|olcSchemaConfig|OpenLDAP schema object"
2664
+ msgstr ""
2665
+
2666
+ #: -:-
2667
+ msgid "LDAP|Description|ObjectClass|oncRpc|Abstraction of an ONC/RPC binding"
2668
+ msgstr ""
2669
+
2670
+ #: -:-
2671
+ msgid ""
2672
+ "LDAP|Description|ObjectClass|organizationalPerson|RFC2256: an organizational "
2673
+ "person"
2674
+ msgstr ""
2675
+
2676
+ #: -:-
2677
+ msgid ""
2678
+ "LDAP|Description|ObjectClass|organizationalRole|RFC2256: an organizational "
2679
+ "role"
2680
+ msgstr ""
2681
+
2682
+ #: -:-
2683
+ msgid ""
2684
+ "LDAP|Description|ObjectClass|organizationalUnit|RFC2256: an organizational "
2685
+ "unit"
2686
+ msgstr ""
2687
+
2688
+ #: -:-
2689
+ msgid "LDAP|Description|ObjectClass|organization|RFC2256: an organization"
2690
+ msgstr ""
2691
+
2692
+ #: -:-
2693
+ msgid "LDAP|Description|ObjectClass|person|RFC2256: a person"
2694
+ msgstr ""
2695
+
2696
+ #: -:-
2697
+ msgid "LDAP|Description|ObjectClass|pkiCA|RFC2587: PKI certificate authority"
2698
+ msgstr ""
2699
+
2700
+ #: -:-
2701
+ msgid "LDAP|Description|ObjectClass|pkiUser|RFC2587: a PKI user"
2702
+ msgstr ""
2703
+
2704
+ #: -:-
2705
+ msgid ""
2706
+ "LDAP|Description|ObjectClass|posixAccount|Abstraction of an account with "
2707
+ "POSIX attributes"
2708
+ msgstr ""
2709
+
2710
+ #: -:-
2711
+ msgid ""
2712
+ "LDAP|Description|ObjectClass|posixGroup|Abstraction of a group of accounts"
2713
+ msgstr ""
2714
+
2715
+ #: -:-
2716
+ msgid ""
2717
+ "LDAP|Description|ObjectClass|referral|namedref: named subordinate referral"
2718
+ msgstr ""
2719
+
2720
+ #: -:-
2721
+ msgid ""
2722
+ "LDAP|Description|ObjectClass|residentialPerson|RFC2256: an residential person"
2723
+ msgstr ""
2724
+
2725
+ #: -:-
2726
+ msgid ""
2727
+ "LDAP|Description|ObjectClass|sambaConfigOption|Samba Configuration Option"
2728
+ msgstr ""
2729
+
2730
+ #: -:-
2731
+ msgid "LDAP|Description|ObjectClass|sambaConfig|Samba Configuration Section"
2732
+ msgstr ""
2733
+
2734
+ #: -:-
2735
+ msgid "LDAP|Description|ObjectClass|sambaDomain|Samba Domain Information"
2736
+ msgstr ""
2737
+
2738
+ #: -:-
2739
+ msgid "LDAP|Description|ObjectClass|sambaGroupMapping|Samba Group Mapping"
2740
+ msgstr ""
2741
+
2742
+ #: -:-
2743
+ msgid ""
2744
+ "LDAP|Description|ObjectClass|sambaIdmapEntry|Mapping from a SID to an ID"
2745
+ msgstr ""
2746
+
2747
+ #: -:-
2748
+ msgid ""
2749
+ "LDAP|Description|ObjectClass|sambaSamAccount|Samba 3.0 Auxilary SAM Account"
2750
+ msgstr ""
2751
+
2752
+ #: -:-
2753
+ msgid "LDAP|Description|ObjectClass|sambaShare|Samba Share Section"
2754
+ msgstr ""
2755
+
2756
+ #: -:-
2757
+ msgid "LDAP|Description|ObjectClass|sambaSidEntry|Structural Class for a SID"
2758
+ msgstr ""
2759
+
2760
+ #: -:-
2761
+ msgid "LDAP|Description|ObjectClass|sambaTrustPassword|Samba Trust Password"
2762
+ msgstr ""
2763
+
2764
+ #: -:-
2765
+ msgid ""
2766
+ "LDAP|Description|ObjectClass|sambaUnixIdPool|Pool for allocating UNIX uids/"
2767
+ "gids"
2768
+ msgstr ""
2769
+
2770
+ #: -:-
2771
+ msgid ""
2772
+ "LDAP|Description|ObjectClass|shadowAccount|Additional attributes for shadow "
2773
+ "passwords"
2774
+ msgstr ""
2775
+
2776
+ #: -:-
2777
+ msgid ""
2778
+ "LDAP|Description|ObjectClass|simpleSecurityObject|RFC1274: simple security "
2779
+ "object"
2780
+ msgstr ""
2781
+
2782
+ #: -:-
2783
+ msgid ""
2784
+ "LDAP|Description|ObjectClass|strongAuthenticationUser|RFC2256: a strong "
2785
+ "authentication user"
2786
+ msgstr ""
2787
+
2788
+ #: -:-
2789
+ msgid "LDAP|Description|ObjectClass|subentry|RFC3672: subentry"
2790
+ msgstr ""
2791
+
2792
+ #: -:-
2793
+ msgid ""
2794
+ "LDAP|Description|ObjectClass|subschema|RFC4512: controlling subschema (sub)"
2795
+ "entry"
2796
+ msgstr ""
2797
+
2798
+ #: -:-
2799
+ msgid "LDAP|Description|ObjectClass|top|top of the superclass chain"
2800
+ msgstr ""
2801
+
2802
+ #: -:-
2803
+ msgid "LDAP|Description|ObjectClass|uidObject|RFC2377: uid object"
2804
+ msgstr ""
2805
+
2806
+ #: -:-
2807
+ msgid ""
2808
+ "LDAP|Description|ObjectClass|userSecurityInformation|RFC2256: a user "
2809
+ "security information"
2810
+ msgstr ""
2811
+
2812
+ #: -:-
2813
+ msgid "LDAP|Description|Syntax|1.2.36.79672281.1.5.0|RDN"
2814
+ msgstr ""
2815
+
2816
+ #: -:-
2817
+ msgid "LDAP|Description|Syntax|1.3.6.1.1.1.0.0|RFC2307 NIS Netgroup Triple"
2818
+ msgstr ""
2819
+
2820
+ #: -:-
2821
+ msgid "LDAP|Description|Syntax|1.3.6.1.1.1.0.1|RFC2307 Boot Parameter"
2822
+ msgstr ""
2823
+
2824
+ #: -:-
2825
+ msgid "LDAP|Description|Syntax|1.3.6.1.1.16.1|UUID"
2826
+ msgstr ""
2827
+
2828
+ #: -:-
2829
+ msgid "LDAP|Description|Syntax|1.3.6.1.4.1.1466.115.121.1.10|Certificate Pair"
2830
+ msgstr ""
2831
+
2832
+ #: -:-
2833
+ msgid "LDAP|Description|Syntax|1.3.6.1.4.1.1466.115.121.1.11|Country String"
2834
+ msgstr ""
2835
+
2836
+ #: -:-
2837
+ msgid ""
2838
+ "LDAP|Description|Syntax|1.3.6.1.4.1.1466.115.121.1.12|Distinguished Name"
2839
+ msgstr ""
2840
+
2841
+ #: -:-
2842
+ msgid "LDAP|Description|Syntax|1.3.6.1.4.1.1466.115.121.1.14|Delivery Method"
2843
+ msgstr ""
2844
+
2845
+ #: -:-
2846
+ msgid "LDAP|Description|Syntax|1.3.6.1.4.1.1466.115.121.1.15|Directory String"
2847
+ msgstr ""
2848
+
2849
+ #: -:-
2850
+ msgid ""
2851
+ "LDAP|Description|Syntax|1.3.6.1.4.1.1466.115.121.1.22|Facsimile Telephone "
2852
+ "Number"
2853
+ msgstr ""
2854
+
2855
+ #: -:-
2856
+ msgid "LDAP|Description|Syntax|1.3.6.1.4.1.1466.115.121.1.24|Generalized Time"
2857
+ msgstr ""
2858
+
2859
+ #: -:-
2860
+ msgid "LDAP|Description|Syntax|1.3.6.1.4.1.1466.115.121.1.26|IA5 String"
2861
+ msgstr ""
2862
+
2863
+ #: -:-
2864
+ msgid "LDAP|Description|Syntax|1.3.6.1.4.1.1466.115.121.1.27|Integer"
2865
+ msgstr ""
2866
+
2867
+ #: -:-
2868
+ msgid "LDAP|Description|Syntax|1.3.6.1.4.1.1466.115.121.1.28|JPEG"
2869
+ msgstr ""
2870
+
2871
+ #: -:-
2872
+ msgid ""
2873
+ "LDAP|Description|Syntax|1.3.6.1.4.1.1466.115.121.1.34|Name And Optional UID"
2874
+ msgstr ""
2875
+
2876
+ #: -:-
2877
+ msgid "LDAP|Description|Syntax|1.3.6.1.4.1.1466.115.121.1.36|Numeric String"
2878
+ msgstr ""
2879
+
2880
+ #: -:-
2881
+ msgid "LDAP|Description|Syntax|1.3.6.1.4.1.1466.115.121.1.38|OID"
2882
+ msgstr ""
2883
+
2884
+ #: -:-
2885
+ msgid "LDAP|Description|Syntax|1.3.6.1.4.1.1466.115.121.1.39|Other Mailbox"
2886
+ msgstr ""
2887
+
2888
+ #: -:-
2889
+ msgid "LDAP|Description|Syntax|1.3.6.1.4.1.1466.115.121.1.40|Octet String"
2890
+ msgstr ""
2891
+
2892
+ #: -:-
2893
+ msgid "LDAP|Description|Syntax|1.3.6.1.4.1.1466.115.121.1.41|Postal Address"
2894
+ msgstr ""
2895
+
2896
+ #: -:-
2897
+ msgid "LDAP|Description|Syntax|1.3.6.1.4.1.1466.115.121.1.44|Printable String"
2898
+ msgstr ""
2899
+
2900
+ #: -:-
2901
+ msgid ""
2902
+ "LDAP|Description|Syntax|1.3.6.1.4.1.1466.115.121.1.45|SubtreeSpecification"
2903
+ msgstr ""
2904
+
2905
+ #: -:-
2906
+ msgid ""
2907
+ "LDAP|Description|Syntax|1.3.6.1.4.1.1466.115.121.1.49|Supported Algorithm"
2908
+ msgstr ""
2909
+
2910
+ #: -:-
2911
+ msgid "LDAP|Description|Syntax|1.3.6.1.4.1.1466.115.121.1.4|Audio"
2912
+ msgstr ""
2913
+
2914
+ #: -:-
2915
+ msgid "LDAP|Description|Syntax|1.3.6.1.4.1.1466.115.121.1.50|Telephone Number"
2916
+ msgstr ""
2917
+
2918
+ #: -:-
2919
+ msgid "LDAP|Description|Syntax|1.3.6.1.4.1.1466.115.121.1.52|Telex Number"
2920
+ msgstr ""
2921
+
2922
+ #: -:-
2923
+ msgid "LDAP|Description|Syntax|1.3.6.1.4.1.1466.115.121.1.5|Binary"
2924
+ msgstr ""
2925
+
2926
+ #: -:-
2927
+ msgid "LDAP|Description|Syntax|1.3.6.1.4.1.1466.115.121.1.6|Bit String"
2928
+ msgstr ""
2929
+
2930
+ #: -:-
2931
+ msgid "LDAP|Description|Syntax|1.3.6.1.4.1.1466.115.121.1.7|Boolean"
2932
+ msgstr ""
2933
+
2934
+ #: -:-
2935
+ msgid "LDAP|Description|Syntax|1.3.6.1.4.1.1466.115.121.1.8|Certificate"
2936
+ msgstr ""
2937
+
2938
+ #: -:-
2939
+ msgid "LDAP|Description|Syntax|1.3.6.1.4.1.1466.115.121.1.9|Certificate List"
2940
+ msgstr ""
2941
+
2942
+ #: -:-
2943
+ msgid ""
2944
+ "LDAP|Description|Syntax|1.3.6.1.4.1.4203.666.11.10.2.1|X.509 "
2945
+ "AttributeCertificate"
2946
+ msgstr ""
2947
+
2948
+ #: -:-
2949
+ msgid "LDAP|ObjectClass|LDAProotDSE"
2950
+ msgstr ""
2951
+
2952
+ #: -:-
2953
+ msgid "LDAP|ObjectClass|OpenLDAPdisplayableObject"
2954
+ msgstr ""
2955
+
2956
+ #: -:-
2957
+ msgid "LDAP|ObjectClass|OpenLDAPorg"
2958
+ msgstr ""
2959
+
2960
+ #: -:-
2961
+ msgid "LDAP|ObjectClass|OpenLDAPou"
2962
+ msgstr ""
2963
+
2964
+ #: -:-
2965
+ msgid "LDAP|ObjectClass|OpenLDAPperson"
2966
+ msgstr ""
2967
+
2968
+ #: -:-
2969
+ msgid "LDAP|ObjectClass|OpenLDAProotDSE"
2970
+ msgstr ""
2971
+
2972
+ #: -:-
2973
+ msgid "LDAP|ObjectClass|RFC822localPart"
2974
+ msgstr ""
2975
+
2976
+ #: -:-
2977
+ msgid "LDAP|ObjectClass|account"
2978
+ msgstr ""
2979
+
2980
+ #: -:-
2981
+ msgid "LDAP|ObjectClass|alias"
2982
+ msgstr ""
2983
+
2984
+ #: -:-
2985
+ msgid "LDAP|ObjectClass|applicationEntity"
2986
+ msgstr ""
2987
+
2988
+ #: -:-
2989
+ msgid "LDAP|ObjectClass|applicationProcess"
2990
+ msgstr ""
2991
+
2992
+ #: -:-
2993
+ msgid "LDAP|ObjectClass|bootableDevice"
2994
+ msgstr ""
2995
+
2996
+ #: -:-
2997
+ msgid "LDAP|ObjectClass|cRLDistributionPoint"
2998
+ msgstr ""
2999
+
3000
+ #: -:-
3001
+ msgid "LDAP|ObjectClass|certificationAuthority"
3002
+ msgstr ""
3003
+
3004
+ #: -:-
3005
+ msgid "LDAP|ObjectClass|certificationAuthority-V2"
3006
+ msgstr ""
3007
+
3008
+ #: -:-
3009
+ msgid "LDAP|ObjectClass|country"
3010
+ msgstr ""
3011
+
3012
+ #: -:-
3013
+ msgid "LDAP|ObjectClass|dNSDomain"
3014
+ msgstr ""
3015
+
3016
+ #: -:-
3017
+ msgid "LDAP|ObjectClass|dSA"
3018
+ msgstr ""
3019
+
3020
+ #: -:-
3021
+ msgid "LDAP|ObjectClass|dcObject"
3022
+ msgstr ""
3023
+
3024
+ #: -:-
3025
+ msgid "LDAP|ObjectClass|deltaCRL"
3026
+ msgstr ""
3027
+
3028
+ #: -:-
3029
+ msgid "LDAP|ObjectClass|device"
3030
+ msgstr ""
3031
+
3032
+ #: -:-
3033
+ msgid "LDAP|ObjectClass|dmd"
3034
+ msgstr ""
3035
+
3036
+ #: -:-
3037
+ msgid "LDAP|ObjectClass|document"
3038
+ msgstr ""
3039
+
3040
+ #: -:-
3041
+ msgid "LDAP|ObjectClass|documentSeries"
3042
+ msgstr ""
3043
+
3044
+ #: -:-
3045
+ msgid "LDAP|ObjectClass|domain"
3046
+ msgstr ""
3047
+
3048
+ #: -:-
3049
+ msgid "LDAP|ObjectClass|domainRelatedObject"
3050
+ msgstr ""
3051
+
3052
+ #: -:-
3053
+ msgid "LDAP|ObjectClass|dynamicObject"
3054
+ msgstr ""
3055
+
3056
+ #: -:-
3057
+ msgid "LDAP|ObjectClass|extensibleObject"
3058
+ msgstr ""
3059
+
3060
+ #: -:-
3061
+ msgid "LDAP|ObjectClass|friendlyCountry"
3062
+ msgstr ""
3063
+
3064
+ #: -:-
3065
+ msgid "LDAP|ObjectClass|groupOfNames"
3066
+ msgstr ""
3067
+
3068
+ #: -:-
3069
+ msgid "LDAP|ObjectClass|groupOfUniqueNames"
3070
+ msgstr ""
3071
+
3072
+ #: -:-
3073
+ msgid "LDAP|ObjectClass|ieee802Device"
3074
+ msgstr ""
3075
+
3076
+ #: -:-
3077
+ msgid "LDAP|ObjectClass|inetOrgPerson"
3078
+ msgstr ""
3079
+
3080
+ #: -:-
3081
+ msgid "LDAP|ObjectClass|ipHost"
3082
+ msgstr ""
3083
+
3084
+ #: -:-
3085
+ msgid "LDAP|ObjectClass|ipNetwork"
3086
+ msgstr ""
3087
+
3088
+ #: -:-
3089
+ msgid "LDAP|ObjectClass|ipProtocol"
3090
+ msgstr ""
3091
+
3092
+ #: -:-
3093
+ msgid "LDAP|ObjectClass|ipService"
3094
+ msgstr ""
3095
+
3096
+ #: -:-
3097
+ msgid "LDAP|ObjectClass|labeledURIObject"
3098
+ msgstr ""
3099
+
3100
+ #: -:-
3101
+ msgid "LDAP|ObjectClass|locality"
3102
+ msgstr ""
3103
+
3104
+ #: -:-
3105
+ msgid "LDAP|ObjectClass|newPilotPerson"
3106
+ msgstr ""
3107
+
3108
+ #: -:-
3109
+ msgid "LDAP|ObjectClass|nisMap"
3110
+ msgstr ""
3111
+
3112
+ #: -:-
3113
+ msgid "LDAP|ObjectClass|nisNetgroup"
3114
+ msgstr ""
3115
+
3116
+ #: -:-
3117
+ msgid "LDAP|ObjectClass|nisObject"
3118
+ msgstr ""
3119
+
3120
+ #: -:-
3121
+ msgid "LDAP|ObjectClass|olcBackendConfig"
3122
+ msgstr ""
3123
+
3124
+ #: -:-
3125
+ msgid "LDAP|ObjectClass|olcBdbConfig"
3126
+ msgstr ""
3127
+
3128
+ #: -:-
3129
+ msgid "LDAP|ObjectClass|olcConfig"
3130
+ msgstr ""
3131
+
3132
+ #: -:-
3133
+ msgid "LDAP|ObjectClass|olcDatabaseConfig"
3134
+ msgstr ""
3135
+
3136
+ #: -:-
3137
+ msgid "LDAP|ObjectClass|olcFrontendConfig"
3138
+ msgstr ""
3139
+
3140
+ #: -:-
3141
+ msgid "LDAP|ObjectClass|olcGlobal"
3142
+ msgstr ""
3143
+
3144
+ #: -:-
3145
+ msgid "LDAP|ObjectClass|olcIncludeFile"
3146
+ msgstr ""
3147
+
3148
+ #: -:-
3149
+ msgid "LDAP|ObjectClass|olcLdifConfig"
3150
+ msgstr ""
3151
+
3152
+ #: -:-
3153
+ msgid "LDAP|ObjectClass|olcModuleList"
3154
+ msgstr ""
3155
+
3156
+ #: -:-
3157
+ msgid "LDAP|ObjectClass|olcOverlayConfig"
3158
+ msgstr ""
3159
+
3160
+ #: -:-
3161
+ msgid "LDAP|ObjectClass|olcSchemaConfig"
3162
+ msgstr ""
3163
+
3164
+ #: -:-
3165
+ msgid "LDAP|ObjectClass|oncRpc"
3166
+ msgstr ""
3167
+
3168
+ #: -:-
3169
+ msgid "LDAP|ObjectClass|organization"
3170
+ msgstr ""
3171
+
3172
+ #: -:-
3173
+ msgid "LDAP|ObjectClass|organizationalPerson"
3174
+ msgstr ""
3175
+
3176
+ #: -:-
3177
+ msgid "LDAP|ObjectClass|organizationalRole"
3178
+ msgstr ""
3179
+
3180
+ #: -:-
3181
+ msgid "LDAP|ObjectClass|organizationalUnit"
3182
+ msgstr ""
3183
+
3184
+ #: -:-
3185
+ msgid "LDAP|ObjectClass|person"
3186
+ msgstr ""
3187
+
3188
+ #: -:-
3189
+ msgid "LDAP|ObjectClass|pilotDSA"
3190
+ msgstr ""
3191
+
3192
+ #: -:-
3193
+ msgid "LDAP|ObjectClass|pilotOrganization"
3194
+ msgstr ""
3195
+
3196
+ #: -:-
3197
+ msgid "LDAP|ObjectClass|pilotPerson"
3198
+ msgstr ""
3199
+
3200
+ #: -:-
3201
+ msgid "LDAP|ObjectClass|pkiCA"
3202
+ msgstr ""
3203
+
3204
+ #: -:-
3205
+ msgid "LDAP|ObjectClass|pkiUser"
3206
+ msgstr ""
3207
+
3208
+ #: -:-
3209
+ msgid "LDAP|ObjectClass|posixAccount"
3210
+ msgstr ""
3211
+
3212
+ #: -:-
3213
+ msgid "LDAP|ObjectClass|posixGroup"
3214
+ msgstr ""
3215
+
3216
+ #: -:-
3217
+ msgid "LDAP|ObjectClass|qualityLabelledData"
3218
+ msgstr ""
3219
+
3220
+ #: -:-
3221
+ msgid "LDAP|ObjectClass|referral"
3222
+ msgstr ""
3223
+
3224
+ #: -:-
3225
+ msgid "LDAP|ObjectClass|residentialPerson"
3226
+ msgstr ""
3227
+
3228
+ #: -:-
3229
+ msgid "LDAP|ObjectClass|room"
3230
+ msgstr ""
3231
+
3232
+ #: -:-
3233
+ msgid "LDAP|ObjectClass|sambaConfig"
3234
+ msgstr ""
3235
+
3236
+ #: -:-
3237
+ msgid "LDAP|ObjectClass|sambaConfigOption"
3238
+ msgstr ""
3239
+
3240
+ #: -:-
3241
+ msgid "LDAP|ObjectClass|sambaDomain"
3242
+ msgstr ""
3243
+
3244
+ #: -:-
3245
+ msgid "LDAP|ObjectClass|sambaGroupMapping"
3246
+ msgstr ""
3247
+
3248
+ #: -:-
3249
+ msgid "LDAP|ObjectClass|sambaIdmapEntry"
3250
+ msgstr ""
3251
+
3252
+ #: -:-
3253
+ msgid "LDAP|ObjectClass|sambaSamAccount"
3254
+ msgstr ""
3255
+
3256
+ #: -:-
3257
+ msgid "LDAP|ObjectClass|sambaShare"
3258
+ msgstr ""
3259
+
3260
+ #: -:-
3261
+ msgid "LDAP|ObjectClass|sambaSidEntry"
3262
+ msgstr ""
3263
+
3264
+ #: -:-
3265
+ msgid "LDAP|ObjectClass|sambaTrustPassword"
3266
+ msgstr ""
3267
+
3268
+ #: -:-
3269
+ msgid "LDAP|ObjectClass|sambaUnixIdPool"
3270
+ msgstr ""
3271
+
3272
+ #: -:-
3273
+ msgid "LDAP|ObjectClass|shadowAccount"
3274
+ msgstr ""
3275
+
3276
+ #: -:-
3277
+ msgid "LDAP|ObjectClass|simpleSecurityObject"
3278
+ msgstr ""
3279
+
3280
+ #: -:-
3281
+ msgid "LDAP|ObjectClass|strongAuthenticationUser"
3282
+ msgstr ""
3283
+
3284
+ #: -:-
3285
+ msgid "LDAP|ObjectClass|subentry"
3286
+ msgstr ""
3287
+
3288
+ #: -:-
3289
+ msgid "LDAP|ObjectClass|subschema"
3290
+ msgstr ""
3291
+
3292
+ #: -:-
3293
+ msgid "LDAP|ObjectClass|top"
3294
+ msgstr ""
3295
+
3296
+ #: -:-
3297
+ msgid "LDAP|ObjectClass|uidObject"
3298
+ msgstr ""
3299
+
3300
+ #: -:-
3301
+ msgid "LDAP|ObjectClass|userSecurityInformation"
3302
+ msgstr ""
3303
+
3304
+ #: -:-
3305
+ msgid "LDAP|Syntax|1.2.36.79672281.1.5.0"
3306
+ msgstr ""
3307
+
3308
+ #: -:-
3309
+ msgid "LDAP|Syntax|1.3.6.1.1.1.0.0"
3310
+ msgstr ""
3311
+
3312
+ #: -:-
3313
+ msgid "LDAP|Syntax|1.3.6.1.1.1.0.1"
3314
+ msgstr ""
3315
+
3316
+ #: -:-
3317
+ msgid "LDAP|Syntax|1.3.6.1.1.16.1"
3318
+ msgstr ""
3319
+
3320
+ #: -:-
3321
+ msgid "LDAP|Syntax|1.3.6.1.4.1.1466.115.121.1.10"
3322
+ msgstr ""
3323
+
3324
+ #: -:-
3325
+ msgid "LDAP|Syntax|1.3.6.1.4.1.1466.115.121.1.11"
3326
+ msgstr ""
3327
+
3328
+ #: -:-
3329
+ msgid "LDAP|Syntax|1.3.6.1.4.1.1466.115.121.1.12"
3330
+ msgstr ""
3331
+
3332
+ #: -:-
3333
+ msgid "LDAP|Syntax|1.3.6.1.4.1.1466.115.121.1.14"
3334
+ msgstr ""
3335
+
3336
+ #: -:-
3337
+ msgid "LDAP|Syntax|1.3.6.1.4.1.1466.115.121.1.15"
3338
+ msgstr ""
3339
+
3340
+ #: -:-
3341
+ msgid "LDAP|Syntax|1.3.6.1.4.1.1466.115.121.1.22"
3342
+ msgstr ""
3343
+
3344
+ #: -:-
3345
+ msgid "LDAP|Syntax|1.3.6.1.4.1.1466.115.121.1.24"
3346
+ msgstr ""
3347
+
3348
+ #: -:-
3349
+ msgid "LDAP|Syntax|1.3.6.1.4.1.1466.115.121.1.26"
3350
+ msgstr ""
3351
+
3352
+ #: -:-
3353
+ msgid "LDAP|Syntax|1.3.6.1.4.1.1466.115.121.1.27"
3354
+ msgstr ""
3355
+
3356
+ #: -:-
3357
+ msgid "LDAP|Syntax|1.3.6.1.4.1.1466.115.121.1.28"
3358
+ msgstr ""
3359
+
3360
+ #: -:-
3361
+ msgid "LDAP|Syntax|1.3.6.1.4.1.1466.115.121.1.34"
3362
+ msgstr ""
3363
+
3364
+ #: -:-
3365
+ msgid "LDAP|Syntax|1.3.6.1.4.1.1466.115.121.1.36"
3366
+ msgstr ""
3367
+
3368
+ #: -:-
3369
+ msgid "LDAP|Syntax|1.3.6.1.4.1.1466.115.121.1.38"
3370
+ msgstr ""
3371
+
3372
+ #: -:-
3373
+ msgid "LDAP|Syntax|1.3.6.1.4.1.1466.115.121.1.39"
3374
+ msgstr ""
3375
+
3376
+ #: -:-
3377
+ msgid "LDAP|Syntax|1.3.6.1.4.1.1466.115.121.1.4"
3378
+ msgstr ""
3379
+
3380
+ #: -:-
3381
+ msgid "LDAP|Syntax|1.3.6.1.4.1.1466.115.121.1.40"
3382
+ msgstr ""
3383
+
3384
+ #: -:-
3385
+ msgid "LDAP|Syntax|1.3.6.1.4.1.1466.115.121.1.41"
3386
+ msgstr ""
3387
+
3388
+ #: -:-
3389
+ msgid "LDAP|Syntax|1.3.6.1.4.1.1466.115.121.1.44"
3390
+ msgstr ""
3391
+
3392
+ #: -:-
3393
+ msgid "LDAP|Syntax|1.3.6.1.4.1.1466.115.121.1.45"
3394
+ msgstr ""
3395
+
3396
+ #: -:-
3397
+ msgid "LDAP|Syntax|1.3.6.1.4.1.1466.115.121.1.49"
3398
+ msgstr ""
3399
+
3400
+ #: -:-
3401
+ msgid "LDAP|Syntax|1.3.6.1.4.1.1466.115.121.1.5"
3402
+ msgstr ""
3403
+
3404
+ #: -:-
3405
+ msgid "LDAP|Syntax|1.3.6.1.4.1.1466.115.121.1.50"
3406
+ msgstr ""
3407
+
3408
+ #: -:-
3409
+ msgid "LDAP|Syntax|1.3.6.1.4.1.1466.115.121.1.52"
3410
+ msgstr ""
3411
+
3412
+ #: -:-
3413
+ msgid "LDAP|Syntax|1.3.6.1.4.1.1466.115.121.1.6"
3414
+ msgstr ""
3415
+
3416
+ #: -:-
3417
+ msgid "LDAP|Syntax|1.3.6.1.4.1.1466.115.121.1.7"
3418
+ msgstr ""
3419
+
3420
+ #: -:-
3421
+ msgid "LDAP|Syntax|1.3.6.1.4.1.1466.115.121.1.8"
3422
+ msgstr ""
3423
+
3424
+ #: -:-
3425
+ msgid "LDAP|Syntax|1.3.6.1.4.1.1466.115.121.1.9"
3426
+ msgstr ""
3427
+
3428
+ #: -:-
3429
+ msgid "LDAP|Syntax|1.3.6.1.4.1.4203.666.11.10.2.1"
3430
+ msgstr ""
3431
+
3432
+ #: lib/active_ldap/object_class.rb:53
3433
+ msgid "Value in objectClass array is not a String: %s"
3434
+ msgstr ""
3435
+
3436
+ #: lib/active_ldap/object_class.rb:67
3437
+ msgid "unknown objectClass in LDAP server: %s"
3438
+ msgstr ""
3439
+
3440
+ #: lib/active_ldap/object_class.rb:85
3441
+ msgid "Can't remove required objectClass: %s"
3442
+ msgstr ""
3443
+
3444
+ #: lib/active_ldap/adapter/jndi.rb:105 lib/active_ldap/adapter/ldap.rb:203
3445
+ #: lib/active_ldap/adapter/net_ldap.rb:155
3446
+ msgid "%s is not one of the available connect methods: %s"
3447
+ msgstr ""
3448
+
3449
+ #: lib/active_ldap/adapter/jndi.rb:118 lib/active_ldap/adapter/ldap.rb:216
3450
+ #: lib/active_ldap/adapter/net_ldap.rb:168
3451
+ msgid "%s is not one of the available LDAP scope: %s"
3452
+ msgstr ""
3453
+
3454
+ #: lib/active_ldap/adapter/jndi.rb:176 lib/active_ldap/adapter/ldap.rb:280
3455
+ #: lib/active_ldap/adapter/net_ldap.rb:290
3456
+ msgid "unknown type: %s"
3457
+ msgstr ""
3458
+
3459
+ #: lib/active_ldap/adapter/ldap.rb:108
3460
+ msgid "No matches: filter: %s: attributes: %s"
3461
+ msgstr ""
3462
+
3463
+ #: lib/active_ldap/adapter/ldap.rb:162
3464
+ msgid "modify RDN with new superior"
3465
+ msgstr ""
3466
+
3467
+ #: lib/active_ldap/adapter/net_ldap.rb:211
3468
+ msgid "unsupported qops: %s"
3469
+ msgstr ""
3470
+
3471
+ #: lib/active_ldap/adapter/base.rb:84
3472
+ msgid "Bound to %s by SASL as %s"
3473
+ msgstr ""
3474
+
3475
+ #: lib/active_ldap/adapter/base.rb:86
3476
+ msgid "Bound to %s by simple as %s"
3477
+ msgstr ""
3478
+
3479
+ #: lib/active_ldap/adapter/base.rb:88
3480
+ msgid "Bound to %s as anonymous"
3481
+ msgstr ""
3482
+
3483
+ #: lib/active_ldap/adapter/base.rb:91
3484
+ msgid "All authentication methods for %s exhausted."
3485
+ msgstr ""
3486
+
3487
+ #: lib/active_ldap/adapter/base.rb:171
3488
+ msgid "Ignore error %s(%s): filter %s: attributes: %s"
3489
+ msgstr ""
3490
+
3491
+ #: lib/active_ldap/adapter/base.rb:187 lib/active_ldap/adapter/base.rb:206
3492
+ #: lib/active_ldap/adapter/base.rb:208 lib/active_ldap/adapter/base.rb:210
3493
+ #: lib/active_ldap/adapter/base.rb:212 lib/active_ldap/adapter/base.rb:222
3494
+ #: lib/active_ldap/adapter/base.rb:228
3495
+ msgid "%s: %s"
3496
+ msgstr ""
3497
+
3498
+ #: lib/active_ldap/adapter/base.rb:192 lib/active_ldap/adapter/base.rb:202
3499
+ msgid "No such entry: %s"
3500
+ msgstr ""
3501
+
3502
+ #: lib/active_ldap/adapter/base.rb:293
3503
+ msgid "password_block not nil or Proc object. Ignoring."
3504
+ msgstr ""
3505
+
3506
+ #: lib/active_ldap/adapter/base.rb:314
3507
+ msgid "Requested action timed out."
3508
+ msgstr ""
3509
+
3510
+ #: lib/active_ldap/adapter/base.rb:355
3511
+ msgid "Skip simple bind with empty password."
3512
+ msgstr ""
3513
+
3514
+ #: lib/active_ldap/adapter/base.rb:359
3515
+ msgid "Can't use empty password for simple bind."
3516
+ msgstr ""
3517
+
3518
+ #: lib/active_ldap/adapter/base.rb:551
3519
+ msgid "invalid logical operator: %s: available operators: %s"
3520
+ msgstr ""
3521
+
3522
+ #: lib/active_ldap/adapter/base.rb:566
3523
+ msgid "Attempting to reconnect"
3524
+ msgstr ""
3525
+
3526
+ #: lib/active_ldap/adapter/base.rb:579
3527
+ msgid ""
3528
+ "Reconnect to server failed: %s\n"
3529
+ "Reconnect to server failed backtrace:\n"
3530
+ "%s"
3531
+ msgstr ""
3532
+
3533
+ #: lib/active_ldap/adapter/base.rb:589
3534
+ msgid "Giving up trying to reconnect to LDAP server."
3535
+ msgstr ""
3536
+
3537
+ #: lib/active_ldap/acts/tree.rb:66
3538
+ msgid "parent must be an entry or parent DN: %s"
3539
+ msgstr ""
3540
+
3541
+ #: lib/active_ldap/operations.rb:49
3542
+ msgid ":ldap_scope search option is deprecated. Use :scope instead."
3543
+ msgstr ""
3544
+
3545
+ #: lib/active_ldap/operations.rb:258
3546
+ msgid "Invalid order: %s"
3547
+ msgstr ""
3548
+
3549
+ #: lib/active_ldap/operations.rb:294
3550
+ msgid "Couldn't find %s without a DN"
3551
+ msgstr ""
3552
+
3553
+ #: lib/active_ldap/operations.rb:316
3554
+ msgid "Couldn't find %s: DN: %s: filter: %s"
3555
+ msgstr ""
3556
+
3557
+ #: lib/active_ldap/operations.rb:319
3558
+ msgid "Couldn't find %s: DN: %s"
3559
+ msgstr ""
3560
+
3561
+ #: lib/active_ldap/operations.rb:346
3562
+ msgid "Couldn't find all %s: DNs (%s): filter: %s"
3563
+ msgstr ""
3564
+
3565
+ #: lib/active_ldap/operations.rb:349
3566
+ msgid "Couldn't find all %s: DNs (%s)"
3567
+ msgstr ""
3568
+
3569
+ #: lib/active_ldap/operations.rb:504
3570
+ msgid "Failed to delete LDAP entry: <%s>: %s"
3571
+ msgstr ""
3572
+
3573
+ #: lib/active_ldap/associations.rb:68
3574
+ msgid ""
3575
+ ":foreign_key belongs_to(:many) option is deprecated since 1.1.0. Use :"
3576
+ "primary_key instead."
3577
+ msgstr ""
3578
+
3579
+ #: lib/active_ldap/associations.rb:136
3580
+ msgid ""
3581
+ ":primary_key and :foreign_key has_many options are inverted their mean since "
3582
+ "1.1.0. Please invert them."
3583
+ msgstr ""
3584
+
3585
+ #: lib/active_ldap/ldif.rb:396
3586
+ msgid "version spec is missing"
3587
+ msgstr ""
3588
+
3589
+ #: lib/active_ldap/ldif.rb:400
3590
+ msgid "version number is missing"
3591
+ msgstr ""
3592
+
3593
+ #: lib/active_ldap/ldif.rb:404
3594
+ msgid "unsupported version: %d"
3595
+ msgstr ""
3596
+
3597
+ #: lib/active_ldap/ldif.rb:408
3598
+ msgid "separator is missing"
3599
+ msgstr ""
3600
+
3601
+ #: lib/active_ldap/ldif.rb:412
3602
+ msgid "'dn:' is missing"
3603
+ msgstr ""
3604
+
3605
+ #: lib/active_ldap/ldif.rb:416
3606
+ msgid "DN is missing"
3607
+ msgstr ""
3608
+
3609
+ #: lib/active_ldap/ldif.rb:420
3610
+ msgid "DN is invalid: %s: %s"
3611
+ msgstr ""
3612
+
3613
+ #: lib/active_ldap/ldif.rb:424
3614
+ msgid "DN has an invalid character: %s"
3615
+ msgstr ""
3616
+
3617
+ #: lib/active_ldap/ldif.rb:428 lib/active_ldap/distinguished_name.rb:144
3618
+ msgid "attribute type is missing"
3619
+ msgstr ""
3620
+
3621
+ #: lib/active_ldap/ldif.rb:432
3622
+ msgid "option is missing"
3623
+ msgstr ""
3624
+
3625
+ #: lib/active_ldap/ldif.rb:436
3626
+ msgid "':' is missing"
3627
+ msgstr ""
3628
+
3629
+ #: lib/active_ldap/ldif.rb:440
3630
+ msgid "URI is invalid: %s: %s"
3631
+ msgstr ""
3632
+
3633
+ #: lib/active_ldap/ldif.rb:444
3634
+ msgid "'-' is missing"
3635
+ msgstr ""
3636
+
3637
+ #: lib/active_ldap/ldif.rb:448
3638
+ msgid "unknown change type: %s"
3639
+ msgstr ""
3640
+
3641
+ #: lib/active_ldap/ldif.rb:452
3642
+ msgid "change type is missing"
3643
+ msgstr ""
3644
+
3645
+ #: lib/active_ldap/ldif.rb:456
3646
+ msgid "control type is missing"
3647
+ msgstr ""
3648
+
3649
+ #: lib/active_ldap/ldif.rb:460
3650
+ msgid "criticality is missing"
3651
+ msgstr ""
3652
+
3653
+ #: lib/active_ldap/ldif.rb:464
3654
+ msgid "change type value is missing"
3655
+ msgstr ""
3656
+
3657
+ #: lib/active_ldap/ldif.rb:468
3658
+ msgid "attribute spec is missing"
3659
+ msgstr ""
3660
+
3661
+ #: lib/active_ldap/ldif.rb:472
3662
+ msgid "'newrdn:' is missing"
3663
+ msgstr ""
3664
+
3665
+ #: lib/active_ldap/ldif.rb:476
3666
+ msgid "new RDN value is missing"
3667
+ msgstr ""
3668
+
3669
+ #: lib/active_ldap/ldif.rb:480
3670
+ msgid "'deleteoldrdn:' is missing"
3671
+ msgstr ""
3672
+
3673
+ #: lib/active_ldap/ldif.rb:484
3674
+ msgid "delete old RDN value is missing"
3675
+ msgstr ""
3676
+
3677
+ #: lib/active_ldap/ldif.rb:488
3678
+ msgid "new superior value is missing"
3679
+ msgstr ""
3680
+
3681
+ #: lib/active_ldap/ldif.rb:492
3682
+ msgid "unknown modify type: %s"
3683
+ msgstr ""
3684
+
3685
+ #: lib/active_ldap/ldif.rb:765
3686
+ msgid "invalid criticality value: %s"
3687
+ msgstr ""
3688
+
3689
+ #: lib/active_ldap/ldif.rb:808
3690
+ msgid "invalid deleteoldrdn value: %s"
3691
+ msgstr ""
3692
+
3693
+ #: lib/active_ldap/distinguished_name.rb:136
3694
+ msgid "name component is missing"
3695
+ msgstr ""
3696
+
3697
+ #: lib/active_ldap/distinguished_name.rb:140
3698
+ msgid "relative distinguished name (RDN) is missing"
3699
+ msgstr ""
3700
+
3701
+ #: lib/active_ldap/distinguished_name.rb:148
3702
+ msgid "attribute value is missing"
3703
+ msgstr ""
3704
+
3705
+ #: lib/active_ldap/distinguished_name.rb:152
3706
+ msgid "found unmatched quotation"
3707
+ msgstr ""
3708
+
3709
+ #: lib/active_ldap/distinguished_name.rb:188
3710
+ msgid "%s isn't sub DN of %s"
3711
+ msgstr ""
3712
+
3713
+ #: lib/active_ldap/validations.rb:97
3714
+ msgid "%{fn} is duplicated: %s"
3715
+ msgstr ""
3716
+
3717
+ #: lib/active_ldap/validations.rb:108
3718
+ msgid "%{fn} is invalid: %s"
3719
+ msgstr ""
3720
+
3721
+ #: lib/active_ldap/validations.rb:112
3722
+ msgid "%{fn} isn't set: %s"
3723
+ msgstr ""
3724
+
3725
+ #: lib/active_ldap/validations.rb:134
3726
+ msgid "%{fn} has excluded value: %s"
3727
+ msgid_plural "%{fn} has excluded values: %s"
3728
+ msgstr[0] ""
3729
+ msgstr[1] ""
3730
+
3731
+ #: lib/active_ldap/validations.rb:169
3732
+ msgid "%{fn} is required attribute by objectClass '%s'"
3733
+ msgstr ""
3734
+
3735
+ #: lib/active_ldap/validations.rb:171
3736
+ msgid "%{fn} is required attribute by objectClass '%s': aliases: %s"
3737
+ msgstr ""
3738
+
3739
+ #: lib/active_ldap/validations.rb:195
3740
+ msgid "<binary-value>"
3741
+ msgstr ""
3742
+
3743
+ #: lib/active_ldap/validations.rb:203
3744
+ msgid "%{fn}(%s) has invalid format: %s: required syntax: %s: %s"
3745
+ msgstr ""
3746
+
3747
+ #: lib/active_ldap/validations.rb:205
3748
+ msgid "%{fn} has invalid format: %s: required syntax: %s: %s"
3749
+ msgstr ""
3750
+
3751
+ #: lib/active_ldap/command.rb:16
3752
+ msgid "Common options:"
3753
+ msgstr ""
3754
+
3755
+ #: lib/active_ldap/command.rb:19
3756
+ msgid "Specify configuration file written as YAML"
3757
+ msgstr ""
3758
+
3759
+ #: lib/active_ldap/command.rb:26
3760
+ msgid "Show this message"
3761
+ msgstr ""
3762
+
3763
+ #: lib/active_ldap/command.rb:31
3764
+ msgid "Show version"
3765
+ msgstr ""
3766
+
3767
+ #: lib/active_ldap/base.rb:53
3768
+ msgid ""
3769
+ "ActiveLdap::ConnectionNotEstablished has been deprecated since 1.1.0. Please "
3770
+ "use ActiveLdap::ConnectionNotSetup instead."
3771
+ msgstr ""
3772
+
3773
+ #: lib/active_ldap/base.rb:131
3774
+ msgid "invalid distinguished name (DN) to parse: %s"
3775
+ msgstr ""
3776
+
3777
+ #: lib/active_ldap/base.rb:141
3778
+ msgid "%s is invalid distinguished name (DN): %s"
3779
+ msgstr ""
3780
+
3781
+ #: lib/active_ldap/base.rb:143
3782
+ msgid "%s is invalid distinguished name (DN)"
3783
+ msgstr ""
3784
+
3785
+ #: lib/active_ldap/base.rb:161
3786
+ msgid "invalid LDIF: %s:"
3787
+ msgstr ""
3788
+
3789
+ #: lib/active_ldap/base.rb:163
3790
+ msgid "invalid LDIF:"
3791
+ msgstr ""
3792
+
3793
+ #: lib/active_ldap/base.rb:241
3794
+ msgid "LDAP configuration specifies nonexistent %s adapter"
3795
+ msgstr ""
3796
+
3797
+ #: lib/active_ldap/base.rb:249
3798
+ msgid "%s is unknown attribute"
3799
+ msgstr ""
3800
+
3801
+ #: lib/active_ldap/base.rb:266
3802
+ msgid "not implemented: %s"
3803
+ msgstr ""
3804
+
3805
+ #: lib/active_ldap/base.rb:382
3806
+ msgid ""
3807
+ "ActiveLdap::Base.establish_connection has been deprecated since 1.1.0. "
3808
+ "Please use ActiveLdap::Base.setup_connection instead."
3809
+ msgstr ""
3810
+
3811
+ #: lib/active_ldap/base.rb:463
3812
+ msgid "scope '%s' must be a Symbol"
3813
+ msgstr ""
3814
+
3815
+ #: lib/active_ldap/base.rb:514
3816
+ msgid "%s doesn't belong in a hierarchy descending from ActiveLdap"
3817
+ msgstr ""
3818
+
3819
+ #: lib/active_ldap/base.rb:669
3820
+ msgid ""
3821
+ "'%s' must be either nil, DN value as ActiveLdap::DN, String or Array or "
3822
+ "attributes as Hash"
3823
+ msgstr ""
3824
+
3825
+ #: lib/active_ldap/base.rb:799
3826
+ msgid "entry %s can't be saved"
3827
+ msgstr ""
3828
+
3829
+ #: lib/active_ldap/base.rb:832 lib/active_ldap/base.rb:843
3830
+ msgid "wrong number of arguments (%d for 1)"
3831
+ msgstr ""
3832
+
3833
+ #: lib/active_ldap/base.rb:964
3834
+ msgid "Can't find DN '%s' to reload"
3835
+ msgstr ""
3836
+
3837
+ #: lib/active_ldap/base.rb:1369
3838
+ msgid "%s's DN attribute (%s) isn't set"
3839
+ msgstr ""
3840
+
3841
+ #: lib/active_ldap/attributes.rb:80
3842
+ msgid "The first argument, name, must not be nil. Please report this as a bug!"
3843
+ msgstr ""
3844
+
3845
+ #: lib/active_ldap/schema.rb:52
3846
+ msgid "Unknown schema group: %s"
3847
+ msgstr ""
3848
+
3849
+ #: lib/active_ldap/schema.rb:547
3850
+ msgid "Attribute %s can only have a single value: %s"
3851
+ msgstr ""
3852
+
3853
+ #: lib/active_ldap/schema.rb:566
3854
+ msgid "Attribute %s: Hash must have one key-value pair only: %s"
3855
+ msgstr ""
3856
+
3857
+ #: lib/active_ldap/connection.rb:98
3858
+ msgid ":ldap_scope connection option is deprecated. Use :scope instead."
3859
+ msgstr ""
3860
+
3861
+ #: lib/active_ldap/connection.rb:156
3862
+ msgid ""
3863
+ "ActiveLdap::Connection.establish_connection has been deprecated since 1.1.0. "
3864
+ "Please use ActiveLdap::Connection.setup_connection instead."
3865
+ msgstr ""
3866
+
3867
+ #: lib/active_ldap/connection.rb:236
3868
+ msgid "since 1.1.0. "
3869
+ msgstr ""
3870
+
3871
+ #: lib/active_ldap/user_password.rb:10
3872
+ msgid "Invalid hashed password: %s"
3873
+ msgstr ""
3874
+
3875
+ #: lib/active_ldap/user_password.rb:16
3876
+ msgid "Unknown Hash type: %s"
3877
+ msgstr ""
3878
+
3879
+ #: lib/active_ldap/user_password.rb:23
3880
+ msgid "Can't extract salt from hashed password: %s"
3881
+ msgstr ""
3882
+
3883
+ #: lib/active_ldap/user_password.rb:51 lib/active_ldap/user_password.rb:68
3884
+ msgid "salt size must be == 4: %s"
3885
+ msgstr ""
3886
+
3887
+ #: lib/active_ldap/schema/syntaxes.rb:63
3888
+ msgid "%s doesn't have the first \"'\""
3889
+ msgstr ""
3890
+
3891
+ #: lib/active_ldap/schema/syntaxes.rb:67
3892
+ msgid "%s doesn't have the last \"'B\""
3893
+ msgstr ""
3894
+
3895
+ #: lib/active_ldap/schema/syntaxes.rb:71
3896
+ msgid "%s has invalid character '%s'"
3897
+ msgstr ""
3898
+
3899
+ #: lib/active_ldap/schema/syntaxes.rb:108
3900
+ msgid "%s should be TRUE or FALSE"
3901
+ msgstr ""
3902
+
3903
+ #: lib/active_ldap/schema/syntaxes.rb:121
3904
+ msgid "%s should be just 2 printable characters"
3905
+ msgstr ""
3906
+
3907
+ #: lib/active_ldap/schema/syntaxes.rb:162
3908
+ #: lib/active_ldap/schema/syntaxes.rb:381
3909
+ msgid "%s has invalid UTF-8 character"
3910
+ msgstr ""
3911
+
3912
+ #: lib/active_ldap/schema/syntaxes.rb:237
3913
+ msgid "%s has missing components: %s"
3914
+ msgstr ""
3915
+
3916
+ #: lib/active_ldap/schema/syntaxes.rb:240
3917
+ msgid "%s is invalid time format"
3918
+ msgstr ""
3919
+
3920
+ #: lib/active_ldap/schema/syntaxes.rb:270
3921
+ msgid "%s is invalid integer format"
3922
+ msgstr ""
3923
+
3924
+ #: lib/active_ldap/schema/syntaxes.rb:282
3925
+ msgid "invalid JPEG format"
3926
+ msgstr ""
3927
+
3928
+ #: lib/active_ldap/schema/syntaxes.rb:323
3929
+ msgid "%s is invalid numeric format"
3930
+ msgstr ""
3931
+
3932
+ #: lib/active_ldap/schema/syntaxes.rb:338
3933
+ msgid "%s is invalid OID format: %s"
3934
+ msgstr ""
3935
+
3936
+ #: lib/active_ldap/schema/syntaxes.rb:340
3937
+ msgid "%s is invalid OID format"
3938
+ msgstr ""
3939
+
3940
+ #: lib/active_ldap/schema/syntaxes.rb:353
3941
+ msgid "%s has no mailbox type"
3942
+ msgstr ""
3943
+
3944
+ #: lib/active_ldap/schema/syntaxes.rb:357
3945
+ msgid "%s has unprintable character in mailbox type: '%s'"
3946
+ msgstr ""
3947
+
3948
+ #: lib/active_ldap/schema/syntaxes.rb:362
3949
+ msgid "%s has no mailbox"
3950
+ msgstr ""
3951
+
3952
+ #: lib/active_ldap/schema/syntaxes.rb:375
3953
+ #: lib/active_ldap/schema/syntaxes.rb:394
3954
+ msgid "empty string"
3955
+ msgstr ""
3956
+
3957
+ #: lib/active_ldap/schema/syntaxes.rb:398
3958
+ msgid "%s has unprintable character: '%s'"
3959
+ msgstr ""
3960
+
3961
+ #: lib/active_ldap/get_text/parser.rb:96
3962
+ msgid "Ignored '%{file}'. Solve dependencies first."
3963
+ msgstr ""
3964
+
3965
+ #: lib/active_ldap/configuration.rb:70
3966
+ msgid "%s connection is not configured"
3967
+ msgstr ""
3968
+
3969
+ #: lib/active_ldap/configuration.rb:110
3970
+ msgid ":ldap_scope configuration option is deprecated. Use :scope instead."
3971
+ msgstr ""
3972
+
3973
+ #: lib/active_ldap/configuration.rb:131
3974
+ msgid "invalid URI: %s"
3975
+ msgstr ""
3976
+
3977
+ #: lib/active_ldap/configuration.rb:134
3978
+ msgid "not a LDAP URI: %s"
3979
+ msgstr ""
3980
+
3981
+ #: rails/init.rb:7
3982
+ msgid "You need ActiveLdap %s or later"
3983
+ msgstr ""
3984
+
3985
+ #: rails/init.rb:19
3986
+ msgid "You should run 'script/generator scaffold_active_ldap' to make %s."
3987
+ msgstr ""
3988
+
3989
+ #: benchmark/bench-al.rb:14
3990
+ msgid "Specify prefix for benchmarking"
3991
+ msgstr ""
3992
+
3993
+ #: benchmark/bench-al.rb:15
3994
+ msgid "(default: %s)"
3995
+ msgstr ""
3996
+
3997
+ #: benchmark/bench-al.rb:186
3998
+ msgid "Populating..."
3999
+ msgstr ""
4000
+
4001
+ #: benchmark/bench-al.rb:243
4002
+ msgid "Entries processed by Ruby/ActiveLdap + LDAP: %d"
4003
+ msgstr ""
4004
+
4005
+ #: benchmark/bench-al.rb:244
4006
+ msgid "Entries processed by Ruby/ActiveLdap + Net::LDAP: %d"
4007
+ msgstr ""
4008
+
4009
+ #: benchmark/bench-al.rb:246
4010
+ msgid ""
4011
+ "Entries processed by Ruby/ActiveLdap + LDAP: (without object creation): %d"
4012
+ msgstr ""
4013
+
4014
+ #: benchmark/bench-al.rb:249
4015
+ msgid ""
4016
+ "Entries processed by Ruby/ActiveLdap + Net::LDAP: (without object creation): "
4017
+ "%d"
4018
+ msgstr ""
4019
+
4020
+ #: benchmark/bench-al.rb:252
4021
+ msgid "Entries processed by Ruby/LDAP: %d"
4022
+ msgstr ""
4023
+
4024
+ #: benchmark/bench-al.rb:253
4025
+ msgid "Entries processed by Net::LDAP: %d"
4026
+ msgstr ""
4027
+
4028
+ #: benchmark/bench-al.rb:257
4029
+ msgid "Cleaning..."
4030
+ msgstr ""