powerhome-activeldap 3.2.3

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