ruby-activeldap 0.8.3 → 0.8.3.1

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 (177) hide show
  1. data/CHANGES +431 -0
  2. data/COPYING +340 -0
  3. data/LICENSE +58 -0
  4. data/README +104 -0
  5. data/Rakefile +165 -0
  6. data/TODO +22 -0
  7. data/benchmark/bench-al.rb +202 -0
  8. data/benchmark/config.yaml.sample +5 -0
  9. data/data/locale/en/LC_MESSAGES/active-ldap.mo +0 -0
  10. data/data/locale/ja/LC_MESSAGES/active-ldap.mo +0 -0
  11. data/examples/al-admin/README +182 -0
  12. data/examples/al-admin/Rakefile +10 -0
  13. data/examples/al-admin/app/controllers/account_controller.rb +50 -0
  14. data/examples/al-admin/app/controllers/application.rb +15 -0
  15. data/examples/al-admin/app/controllers/directory_controller.rb +22 -0
  16. data/examples/al-admin/app/controllers/users_controller.rb +38 -0
  17. data/examples/al-admin/app/controllers/welcome_controller.rb +4 -0
  18. data/examples/al-admin/app/helpers/account_helper.rb +2 -0
  19. data/examples/al-admin/app/helpers/application_helper.rb +6 -0
  20. data/examples/al-admin/app/helpers/directory_helper.rb +2 -0
  21. data/examples/al-admin/app/helpers/users_helper.rb +13 -0
  22. data/examples/al-admin/app/helpers/welcome_helper.rb +2 -0
  23. data/examples/al-admin/app/models/entry.rb +19 -0
  24. data/examples/al-admin/app/models/ldap_user.rb +49 -0
  25. data/examples/al-admin/app/models/user.rb +91 -0
  26. data/examples/al-admin/app/views/account/login.rhtml +12 -0
  27. data/examples/al-admin/app/views/account/sign_up.rhtml +22 -0
  28. data/examples/al-admin/app/views/directory/index.rhtml +5 -0
  29. data/examples/al-admin/app/views/directory/populate.rhtml +2 -0
  30. data/examples/al-admin/app/views/layouts/application.rhtml +41 -0
  31. data/examples/al-admin/app/views/users/_attribute_information.rhtml +22 -0
  32. data/examples/al-admin/app/views/users/_entry.rhtml +12 -0
  33. data/examples/al-admin/app/views/users/_form.rhtml +29 -0
  34. data/examples/al-admin/app/views/users/_object_class_information.rhtml +23 -0
  35. data/examples/al-admin/app/views/users/edit.rhtml +10 -0
  36. data/examples/al-admin/app/views/users/index.rhtml +9 -0
  37. data/examples/al-admin/app/views/users/show.rhtml +3 -0
  38. data/examples/al-admin/app/views/welcome/index.rhtml +16 -0
  39. data/examples/al-admin/config/boot.rb +45 -0
  40. data/examples/al-admin/config/database.yml.example +19 -0
  41. data/examples/al-admin/config/environment.rb +68 -0
  42. data/examples/al-admin/config/environments/development.rb +21 -0
  43. data/examples/al-admin/config/environments/production.rb +18 -0
  44. data/examples/al-admin/config/environments/test.rb +19 -0
  45. data/examples/al-admin/config/ldap.yml.example +21 -0
  46. data/examples/al-admin/config/routes.rb +26 -0
  47. data/examples/al-admin/db/migrate/001_create_users.rb +16 -0
  48. data/examples/al-admin/lib/accept_http_rails_relative_url_root.rb +9 -0
  49. data/examples/al-admin/lib/authenticated_system.rb +131 -0
  50. data/examples/al-admin/lib/authenticated_test_helper.rb +113 -0
  51. data/examples/al-admin/lib/tasks/gettext.rake +35 -0
  52. data/examples/al-admin/po/en/al-admin.po +190 -0
  53. data/examples/al-admin/po/ja/al-admin.po +190 -0
  54. data/examples/al-admin/po/nl/al-admin.po +202 -0
  55. data/examples/al-admin/public/.htaccess +40 -0
  56. data/examples/al-admin/public/404.html +30 -0
  57. data/examples/al-admin/public/500.html +30 -0
  58. data/examples/al-admin/public/dispatch.cgi +10 -0
  59. data/examples/al-admin/public/dispatch.fcgi +24 -0
  60. data/examples/al-admin/public/dispatch.rb +10 -0
  61. data/examples/al-admin/public/favicon.ico +0 -0
  62. data/examples/al-admin/public/images/rails.png +0 -0
  63. data/examples/al-admin/public/javascripts/application.js +2 -0
  64. data/examples/al-admin/public/javascripts/controls.js +833 -0
  65. data/examples/al-admin/public/javascripts/dragdrop.js +942 -0
  66. data/examples/al-admin/public/javascripts/effects.js +1088 -0
  67. data/examples/al-admin/public/javascripts/prototype.js +2515 -0
  68. data/examples/al-admin/public/robots.txt +1 -0
  69. data/examples/al-admin/public/stylesheets/rails.css +35 -0
  70. data/examples/al-admin/public/stylesheets/screen.css +52 -0
  71. data/examples/al-admin/script/about +3 -0
  72. data/examples/al-admin/script/breakpointer +3 -0
  73. data/examples/al-admin/script/console +3 -0
  74. data/examples/al-admin/script/destroy +3 -0
  75. data/examples/al-admin/script/generate +3 -0
  76. data/examples/al-admin/script/performance/benchmarker +3 -0
  77. data/examples/al-admin/script/performance/profiler +3 -0
  78. data/examples/al-admin/script/plugin +3 -0
  79. data/examples/al-admin/script/process/inspector +3 -0
  80. data/examples/al-admin/script/process/reaper +3 -0
  81. data/examples/al-admin/script/process/spawner +3 -0
  82. data/examples/al-admin/script/runner +3 -0
  83. data/examples/al-admin/script/server +3 -0
  84. data/examples/al-admin/test/fixtures/users.yml +9 -0
  85. data/examples/al-admin/test/functional/account_controller_test.rb +24 -0
  86. data/examples/al-admin/test/functional/directory_controller_test.rb +18 -0
  87. data/examples/al-admin/test/functional/users_controller_test.rb +18 -0
  88. data/examples/al-admin/test/functional/welcome_controller_test.rb +18 -0
  89. data/examples/al-admin/test/run-test.sh +3 -0
  90. data/examples/al-admin/test/test_helper.rb +28 -0
  91. data/examples/al-admin/test/unit/user_test.rb +13 -0
  92. data/examples/al-admin/vendor/plugins/exception_notification/README +111 -0
  93. data/examples/al-admin/vendor/plugins/exception_notification/init.rb +1 -0
  94. data/examples/al-admin/vendor/plugins/exception_notification/lib/exception_notifiable.rb +99 -0
  95. data/examples/al-admin/vendor/plugins/exception_notification/lib/exception_notifier.rb +67 -0
  96. data/examples/al-admin/vendor/plugins/exception_notification/lib/exception_notifier_helper.rb +77 -0
  97. data/examples/al-admin/vendor/plugins/exception_notification/test/exception_notifier_helper_test.rb +61 -0
  98. data/examples/al-admin/vendor/plugins/exception_notification/test/test_helper.rb +7 -0
  99. data/examples/al-admin/vendor/plugins/exception_notification/views/exception_notifier/_backtrace.rhtml +1 -0
  100. data/examples/al-admin/vendor/plugins/exception_notification/views/exception_notifier/_environment.rhtml +7 -0
  101. data/examples/al-admin/vendor/plugins/exception_notification/views/exception_notifier/_inspect_model.rhtml +16 -0
  102. data/examples/al-admin/vendor/plugins/exception_notification/views/exception_notifier/_request.rhtml +3 -0
  103. data/examples/al-admin/vendor/plugins/exception_notification/views/exception_notifier/_session.rhtml +2 -0
  104. data/examples/al-admin/vendor/plugins/exception_notification/views/exception_notifier/_title.rhtml +3 -0
  105. data/examples/al-admin/vendor/plugins/exception_notification/views/exception_notifier/exception_notification.rhtml +6 -0
  106. data/examples/config.yaml.example +5 -0
  107. data/examples/example.der +0 -0
  108. data/examples/example.jpg +0 -0
  109. data/examples/groupadd +41 -0
  110. data/examples/groupdel +35 -0
  111. data/examples/groupls +49 -0
  112. data/examples/groupmod +42 -0
  113. data/examples/lpasswd +55 -0
  114. data/examples/objects/group.rb +13 -0
  115. data/examples/objects/ou.rb +4 -0
  116. data/examples/objects/user.rb +20 -0
  117. data/examples/ouadd +38 -0
  118. data/examples/useradd +45 -0
  119. data/examples/useradd-binary +50 -0
  120. data/examples/userdel +34 -0
  121. data/examples/userls +50 -0
  122. data/examples/usermod +42 -0
  123. data/examples/usermod-binary-add +47 -0
  124. data/examples/usermod-binary-add-time +51 -0
  125. data/examples/usermod-binary-del +48 -0
  126. data/examples/usermod-lang-add +43 -0
  127. data/lib/active_ldap.rb +978 -0
  128. data/lib/active_ldap/adapter/base.rb +512 -0
  129. data/lib/active_ldap/adapter/ldap.rb +233 -0
  130. data/lib/active_ldap/adapter/ldap_ext.rb +69 -0
  131. data/lib/active_ldap/adapter/net_ldap.rb +290 -0
  132. data/lib/active_ldap/adapter/net_ldap_ext.rb +29 -0
  133. data/lib/active_ldap/association/belongs_to.rb +47 -0
  134. data/lib/active_ldap/association/belongs_to_many.rb +42 -0
  135. data/lib/active_ldap/association/collection.rb +83 -0
  136. data/lib/active_ldap/association/has_many.rb +31 -0
  137. data/lib/active_ldap/association/has_many_utils.rb +35 -0
  138. data/lib/active_ldap/association/has_many_wrap.rb +46 -0
  139. data/lib/active_ldap/association/proxy.rb +102 -0
  140. data/lib/active_ldap/associations.rb +172 -0
  141. data/lib/active_ldap/attributes.rb +211 -0
  142. data/lib/active_ldap/base.rb +1256 -0
  143. data/lib/active_ldap/callbacks.rb +19 -0
  144. data/lib/active_ldap/command.rb +48 -0
  145. data/lib/active_ldap/configuration.rb +114 -0
  146. data/lib/active_ldap/connection.rb +234 -0
  147. data/lib/active_ldap/distinguished_name.rb +250 -0
  148. data/lib/active_ldap/escape.rb +12 -0
  149. data/lib/active_ldap/get_text/parser.rb +142 -0
  150. data/lib/active_ldap/get_text_fallback.rb +53 -0
  151. data/lib/active_ldap/get_text_support.rb +12 -0
  152. data/lib/active_ldap/helper.rb +23 -0
  153. data/lib/active_ldap/ldap_error.rb +74 -0
  154. data/lib/active_ldap/object_class.rb +93 -0
  155. data/lib/active_ldap/operations.rb +419 -0
  156. data/lib/active_ldap/populate.rb +44 -0
  157. data/lib/active_ldap/schema.rb +427 -0
  158. data/lib/active_ldap/timeout.rb +75 -0
  159. data/lib/active_ldap/timeout_stub.rb +17 -0
  160. data/lib/active_ldap/user_password.rb +93 -0
  161. data/lib/active_ldap/validations.rb +112 -0
  162. data/po/en/active-ldap.po +3011 -0
  163. data/po/ja/active-ldap.po +3044 -0
  164. data/rails/plugin/active_ldap/README +54 -0
  165. data/rails/plugin/active_ldap/generators/scaffold_al/scaffold_al_generator.rb +7 -0
  166. data/rails/plugin/active_ldap/generators/scaffold_al/templates/ldap.yml +21 -0
  167. data/rails/plugin/active_ldap/init.rb +19 -0
  168. data/test/al-test-utils.rb +362 -0
  169. data/test/command.rb +62 -0
  170. data/test/config.yaml.sample +6 -0
  171. data/test/run-test.rb +31 -0
  172. data/test/test-unit-ext.rb +4 -0
  173. data/test/test-unit-ext/always-show-result.rb +28 -0
  174. data/test/test-unit-ext/backtrace-filter.rb +17 -0
  175. data/test/test-unit-ext/long-display-for-emacs.rb +25 -0
  176. data/test/test-unit-ext/priority.rb +163 -0
  177. metadata +211 -4
@@ -0,0 +1,75 @@
1
+ require 'timeout'
2
+
3
+ module Timeout
4
+
5
+ # A forking timeout implementation that relies on
6
+ # signals to interrupt blocking I/O instead of passing
7
+ # that code to run in a separate process.
8
+ #
9
+ # A process is fork()ed, sleeps for _sec_,
10
+ # then sends a ALRM signal to the Process.ppid
11
+ # process. ALRM is used to avoid conflicts with sleep()
12
+ #
13
+ # This overwrites any signal
14
+ def Timeout.alarm(sec, exception=Timeout::Error, &block)
15
+ return block.call if sec == nil or sec.zero?
16
+
17
+
18
+ # Trap an alarm in case it comes before we're ready
19
+ orig_alrm = trap(:ALRM, 'IGNORE')
20
+
21
+ # Setup a fallback in case of a race condition of an
22
+ # alarm before we set the other trap
23
+ trap(:ALRM) do
24
+ # Don't leave zombies
25
+ Process.wait2()
26
+ # Restore the original handler
27
+ trap('ALRM', orig_alrm)
28
+ # Now raise an exception!
29
+ raise exception, 'execution expired'
30
+ end
31
+
32
+ # Spawn the sleeper
33
+ pid = Process.fork {
34
+ begin
35
+ # Sleep x seconds then send SIGALRM
36
+ sleep(sec)
37
+ # Send alarm!
38
+ Process.kill(:ALRM, Process.ppid)
39
+ end
40
+ exit! 0
41
+ }
42
+
43
+ # Setup the real handler
44
+ trap(:ALRM) do
45
+ # Make sure we clean up any zombies
46
+ Process.waitpid(pid)
47
+ # Restore the original handler
48
+ trap(:ALRM, orig_alrm)
49
+ # Now raise an exception!
50
+ raise exception, 'execution expired'
51
+ end
52
+
53
+ begin
54
+ # Run the code!
55
+ return block.call
56
+ ensure
57
+ # Restore old alarm handler since we're done
58
+ trap(:ALRM, orig_alrm)
59
+ # Make sure the process is dead
60
+ # This may be run twice (trap occurs during execution) so ignore ESRCH
61
+ Process.kill(:TERM, pid) rescue Errno::ESRCH
62
+ # Don't leave zombies
63
+ Process.waitpid(pid) rescue Errno::ECHILD
64
+ end
65
+ end
66
+ end # Timeout
67
+
68
+ if __FILE__ == $0
69
+ require 'time'
70
+ Timeout.alarm(2) do
71
+ loop do
72
+ p Time.now
73
+ end
74
+ end
75
+ end
@@ -0,0 +1,17 @@
1
+ require 'timeout'
2
+
3
+ module Timeout
4
+ # STUB
5
+ def Timeout.alarm(sec, exception=Timeout::Error, &block)
6
+ return block.call
7
+ end
8
+ end # Timeout
9
+
10
+ if __FILE__ == $0
11
+ require 'time'
12
+ Timeout.alarm(2) do
13
+ loop do
14
+ p Time.now
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,93 @@
1
+ require 'English'
2
+ require 'base64'
3
+ require 'md5'
4
+ require 'sha1'
5
+
6
+ module ActiveLdap
7
+ module UserPassword
8
+ module_function
9
+ def valid?(password, hashed_password)
10
+ unless /^\{([A-Z][A-Z\d]+)\}/ =~ hashed_password
11
+ raise ArgumentError, _("Invalid hashed password: %s") % hashed_password
12
+ end
13
+ type = $1
14
+ hashed_password_without_type = $POSTMATCH
15
+ normalized_type = type.downcase
16
+ unless respond_to?(normalized_type)
17
+ raise ArgumentError, _("Unknown Hash type: %s") % type
18
+ end
19
+ salt_extractor = "extract_salt_for_#{normalized_type}"
20
+ if respond_to?(salt_extractor)
21
+ salt = send(salt_extractor, hashed_password_without_type)
22
+ if salt.nil?
23
+ raise ArgumentError,
24
+ _("Can't extract salt from hashed password: %s") % hashed_password
25
+ end
26
+ generated_password = send(normalized_type, password, salt)
27
+ else
28
+ generated_password = send(normalized_type, password)
29
+ end
30
+ hashed_password == generated_password
31
+ end
32
+
33
+ def crypt(password, salt=nil)
34
+ salt ||= "$1$#{Salt.generate(8)}"
35
+ "{CRYPT}#{password.crypt(salt)}"
36
+ end
37
+
38
+ def extract_salt_for_crypt(crypted_password)
39
+ if /^\$1\$/ =~ crypted_password
40
+ $MATCH + $POSTMATCH[0, 8].sub(/\$.*/, '') + "$"
41
+ else
42
+ crypted_password[0, 2]
43
+ end
44
+ end
45
+
46
+ def md5(password)
47
+ "{MD5}#{Base64.encode64(MD5.md5(password).digest).chomp}"
48
+ end
49
+
50
+ def smd5(password, salt=nil)
51
+ if salt and salt.size != 4
52
+ raise ArgumentError, _("salt size must be == 4: %s") % salt.inspect
53
+ end
54
+ salt ||= Salt.generate(4)
55
+ md5_hash_with_salt = "#{MD5.md5(password + salt).digest}#{salt}"
56
+ "{SMD5}#{Base64.encode64(md5_hash_with_salt).chomp}"
57
+ end
58
+
59
+ def extract_salt_for_smd5(smd5ed_password)
60
+ Base64.decode64(smd5ed_password)[-4, 4]
61
+ end
62
+
63
+ def sha(password)
64
+ "{SHA}#{Base64.encode64(SHA1.sha1(password).digest).chomp}"
65
+ end
66
+
67
+ def ssha(password, salt=nil)
68
+ if salt and salt.size != 4
69
+ raise ArgumentError, _("salt size must be == 4: %s") % salt.inspect
70
+ end
71
+ salt ||= Salt.generate(4)
72
+ sha1_hash_with_salt = "#{SHA1.sha1(password + salt).digest}#{salt}"
73
+ "{SSHA}#{Base64.encode64(sha1_hash_with_salt).chomp}"
74
+ end
75
+
76
+ def extract_salt_for_ssha(sshaed_password)
77
+ extract_salt_for_smd5(sshaed_password)
78
+ end
79
+
80
+ module Salt
81
+ CHARS = ['.', '/', '0'..'9', 'A'..'Z', 'a'..'z'].collect do |x|
82
+ x.to_a
83
+ end.flatten
84
+
85
+ module_function
86
+ def generate(length)
87
+ salt = ""
88
+ length.times {salt << CHARS[rand(CHARS.length)]}
89
+ salt
90
+ end
91
+ end
92
+ end
93
+ end
@@ -0,0 +1,112 @@
1
+ require 'active_record/validations'
2
+
3
+ module ActiveLdap
4
+ module Validations
5
+ def self.append_features(base)
6
+ super
7
+
8
+ base.class_eval do
9
+ alias_method :new_record?, :new_entry?
10
+ class << self
11
+ alias_method :human_attribute_name_active_ldap,
12
+ :human_attribute_name
13
+ end
14
+ include ActiveRecord::Validations
15
+ class << self
16
+ alias_method :human_attribute_name,
17
+ :human_attribute_name_active_ldap
18
+ unless method_defined?(:human_attribute_name_with_gettext)
19
+ def human_attribute_name_with_gettext(attribute_key_name)
20
+ s_("#{self}|#{attribute_key_name.humanize}")
21
+ end
22
+ end
23
+ end
24
+
25
+ # Workaround for GetText's ugly implementation
26
+ begin
27
+ instance_method(:save_without_validation)
28
+ rescue NameError
29
+ alias_method_chain :save, :validation
30
+ alias_method_chain :save!, :validation
31
+ alias_method_chain :update_attribute, :validation_skipping
32
+ end
33
+
34
+ validate :validate_required_values
35
+
36
+ class << self
37
+ def evaluate_condition_with_active_ldap_support(condition, entry)
38
+ evaluate_condition_without_active_ldap_support(condition, entry)
39
+ rescue ActiveRecord::ActiveRecordError
40
+ raise Error, $!.message
41
+ end
42
+ alias_method_chain :evaluate_condition, :active_ldap_support
43
+ end
44
+
45
+ def save_with_active_ldap_support!
46
+ save_without_active_ldap_support!
47
+ rescue ActiveRecord::RecordInvalid
48
+ raise EntryInvalid, $!.message
49
+ end
50
+ alias_method_chain :save!, :active_ldap_support
51
+
52
+ def valid?
53
+ ensure_apply_object_class
54
+ super
55
+ end
56
+
57
+ # validate_required_values
58
+ #
59
+ # Basic validation:
60
+ # - Verify that every 'MUST' specified in the schema has a value defined
61
+ def validate_required_values
62
+ # Make sure all MUST attributes have a value
63
+ @object_classes.each do |object_class|
64
+ object_class.must.each do |required_attribute|
65
+ # Normalize to ensure we catch schema problems
66
+ # needed?
67
+ real_name = to_real_attribute_name(required_attribute.name, true)
68
+ raise UnknownAttribute.new(required_attribute) if real_name.nil?
69
+ # # Set default if it wasn't yet set.
70
+ # @data[real_name] ||= [] # need?
71
+ value = @data[real_name] || []
72
+ # Check for missing requirements.
73
+ if value.empty?
74
+ _schema = schema
75
+ aliases = required_attribute.aliases.collect do |name|
76
+ self.class.human_attribute_name(name)
77
+ end
78
+ args = [self.class.human_object_class_name(object_class)]
79
+ if ActiveLdap.const_defined?(:GetTextFallback)
80
+ if aliases.empty?
81
+ format = "is required attribute by objectClass '%s'"
82
+ else
83
+ format = "is required attribute by objectClass '%s'" \
84
+ ": aliases: %s"
85
+ args << aliases.join(', ')
86
+ end
87
+ else
88
+ if aliases.empty?
89
+ format = _("%{fn} is required attribute by objectClass '%s'")
90
+ else
91
+ format = _("%{fn} is required attribute by objectClass " \
92
+ "'%s': aliases: %s")
93
+ args << aliases.join(', ')
94
+ end
95
+ end
96
+ errors.add(real_name, format % args)
97
+ end
98
+ end
99
+ end
100
+ end
101
+
102
+ private
103
+ def run_validations_with_active_ldap_support(validation_method)
104
+ run_validations_without_active_ldap_support(validation_method)
105
+ rescue ActiveRecord::ActiveRecordError
106
+ raise Error, $!.message
107
+ end
108
+ alias_method_chain :run_validations, :active_ldap_support
109
+ end
110
+ end
111
+ end
112
+ end
@@ -0,0 +1,3011 @@
1
+ # English translations for Ruby/ActiveLdap package.
2
+ # Copyright (C) 2007 Kouhei Sutou
3
+ # This file is distributed under the same license as the Ruby/ActiveLdap package.
4
+ # Kouhei Sutou <kou@cozmixng.org>, 2007.
5
+ #
6
+ msgid ""
7
+ msgstr ""
8
+ "Project-Id-Version: Ruby/ActiveLdap 0.8.3\n"
9
+ "POT-Creation-Date: 2007-08-26 19:05+0900\n"
10
+ "PO-Revision-Date: 2007-08-19 09:49+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|associatedDomain"
32
+ msgstr ""
33
+
34
+ #: -:-
35
+ msgid "LDAP|Attribute|associatedName"
36
+ msgstr ""
37
+
38
+ #: -:-
39
+ msgid "LDAP|Attribute|attributeTypes"
40
+ msgstr ""
41
+
42
+ #: -:-
43
+ msgid "LDAP|Attribute|audio"
44
+ msgstr ""
45
+
46
+ #: -:-
47
+ msgid "LDAP|Attribute|authorityRevocationList"
48
+ msgstr ""
49
+
50
+ #: -:-
51
+ msgid "LDAP|Attribute|bootFile"
52
+ msgstr ""
53
+
54
+ #: -:-
55
+ msgid "LDAP|Attribute|bootParameter"
56
+ msgstr ""
57
+
58
+ #: -:-
59
+ msgid "LDAP|Attribute|buildingName"
60
+ msgstr ""
61
+
62
+ #: -:-
63
+ msgid "LDAP|Attribute|businessCategory"
64
+ msgstr ""
65
+
66
+ #: -:-
67
+ msgid "LDAP|Attribute|c"
68
+ msgstr ""
69
+
70
+ #: -:-
71
+ msgid "LDAP|Attribute|cACertificate"
72
+ msgstr ""
73
+
74
+ #: -:-
75
+ msgid "LDAP|Attribute|cNAMERecord"
76
+ msgstr ""
77
+
78
+ #: -:-
79
+ msgid "LDAP|Attribute|carLicense"
80
+ msgstr ""
81
+
82
+ #: -:-
83
+ msgid "LDAP|Attribute|certificateRevocationList"
84
+ msgstr ""
85
+
86
+ #: -:-
87
+ msgid "LDAP|Attribute|cn"
88
+ msgstr ""
89
+
90
+ #: -:-
91
+ msgid "LDAP|Attribute|co"
92
+ msgstr ""
93
+
94
+ #: -:-
95
+ msgid "LDAP|Attribute|commonName"
96
+ msgstr ""
97
+
98
+ #: -:-
99
+ msgid "LDAP|Attribute|countryName"
100
+ msgstr ""
101
+
102
+ #: -:-
103
+ msgid "LDAP|Attribute|crossCertificatePair"
104
+ msgstr ""
105
+
106
+ #: -:-
107
+ msgid "LDAP|Attribute|dSAQuality"
108
+ msgstr ""
109
+
110
+ #: -:-
111
+ msgid "LDAP|Attribute|dc"
112
+ msgstr ""
113
+
114
+ #: -:-
115
+ msgid "LDAP|Attribute|deltaRevocationList"
116
+ msgstr ""
117
+
118
+ #: -:-
119
+ msgid "LDAP|Attribute|departmentNumber"
120
+ msgstr ""
121
+
122
+ #: -:-
123
+ msgid "LDAP|Attribute|description"
124
+ msgstr ""
125
+
126
+ #: -:-
127
+ msgid "LDAP|Attribute|destinationIndicator"
128
+ msgstr ""
129
+
130
+ #: -:-
131
+ msgid "LDAP|Attribute|displayName"
132
+ msgstr ""
133
+
134
+ #: -:-
135
+ msgid "LDAP|Attribute|dmdName"
136
+ msgstr ""
137
+
138
+ #: -:-
139
+ msgid "LDAP|Attribute|documentAuthor"
140
+ msgstr ""
141
+
142
+ #: -:-
143
+ msgid "LDAP|Attribute|documentIdentifier"
144
+ msgstr ""
145
+
146
+ #: -:-
147
+ msgid "LDAP|Attribute|documentLocation"
148
+ msgstr ""
149
+
150
+ #: -:-
151
+ msgid "LDAP|Attribute|documentPublisher"
152
+ msgstr ""
153
+
154
+ #: -:-
155
+ msgid "LDAP|Attribute|documentTitle"
156
+ msgstr ""
157
+
158
+ #: -:-
159
+ msgid "LDAP|Attribute|documentVersion"
160
+ msgstr ""
161
+
162
+ #: -:-
163
+ msgid "LDAP|Attribute|domainComponent"
164
+ msgstr ""
165
+
166
+ #: -:-
167
+ msgid "LDAP|Attribute|drink"
168
+ msgstr ""
169
+
170
+ #: -:-
171
+ msgid "LDAP|Attribute|employeeNumber"
172
+ msgstr ""
173
+
174
+ #: -:-
175
+ msgid "LDAP|Attribute|employeeType"
176
+ msgstr ""
177
+
178
+ #: -:-
179
+ msgid "LDAP|Attribute|facsimileTelephoneNumber"
180
+ msgstr ""
181
+
182
+ #: -:-
183
+ msgid "LDAP|Attribute|favouriteDrink"
184
+ msgstr ""
185
+
186
+ #: -:-
187
+ msgid "LDAP|Attribute|fax"
188
+ msgstr ""
189
+
190
+ #: -:-
191
+ msgid "LDAP|Attribute|friendlyCountryName"
192
+ msgstr ""
193
+
194
+ #: -:-
195
+ msgid "LDAP|Attribute|gecos"
196
+ msgstr ""
197
+
198
+ #: -:-
199
+ msgid "LDAP|Attribute|gidNumber"
200
+ msgstr ""
201
+
202
+ #: -:-
203
+ msgid "LDAP|Attribute|givenName"
204
+ msgstr ""
205
+
206
+ #: -:-
207
+ msgid "LDAP|Attribute|gn"
208
+ msgstr ""
209
+
210
+ #: -:-
211
+ msgid "LDAP|Attribute|homeDirectory"
212
+ msgstr ""
213
+
214
+ #: -:-
215
+ msgid "LDAP|Attribute|homePhone"
216
+ msgstr ""
217
+
218
+ #: -:-
219
+ msgid "LDAP|Attribute|homePostalAddress"
220
+ msgstr ""
221
+
222
+ #: -:-
223
+ msgid "LDAP|Attribute|homeTelephoneNumber"
224
+ msgstr ""
225
+
226
+ #: -:-
227
+ msgid "LDAP|Attribute|host"
228
+ msgstr ""
229
+
230
+ #: -:-
231
+ msgid "LDAP|Attribute|initials"
232
+ msgstr ""
233
+
234
+ #: -:-
235
+ msgid "LDAP|Attribute|internationaliSDNNumber"
236
+ msgstr ""
237
+
238
+ #: -:-
239
+ msgid "LDAP|Attribute|ipHostNumber"
240
+ msgstr ""
241
+
242
+ #: -:-
243
+ msgid "LDAP|Attribute|ipNetmaskNumber"
244
+ msgstr ""
245
+
246
+ #: -:-
247
+ msgid "LDAP|Attribute|ipNetworkNumber"
248
+ msgstr ""
249
+
250
+ #: -:-
251
+ msgid "LDAP|Attribute|ipProtocolNumber"
252
+ msgstr ""
253
+
254
+ #: -:-
255
+ msgid "LDAP|Attribute|ipServicePort"
256
+ msgstr ""
257
+
258
+ #: -:-
259
+ msgid "LDAP|Attribute|ipServiceProtocol"
260
+ msgstr ""
261
+
262
+ #: -:-
263
+ msgid "LDAP|Attribute|janetMailbox"
264
+ msgstr ""
265
+
266
+ #: -:-
267
+ msgid "LDAP|Attribute|jpegPhoto"
268
+ msgstr ""
269
+
270
+ #: -:-
271
+ msgid "LDAP|Attribute|knowledgeInformation"
272
+ msgstr ""
273
+
274
+ #: -:-
275
+ msgid "LDAP|Attribute|l"
276
+ msgstr ""
277
+
278
+ #: -:-
279
+ msgid "LDAP|Attribute|labeledURI"
280
+ msgstr ""
281
+
282
+ #: -:-
283
+ msgid "LDAP|Attribute|localityName"
284
+ msgstr ""
285
+
286
+ #: -:-
287
+ msgid "LDAP|Attribute|loginShell"
288
+ msgstr ""
289
+
290
+ #: -:-
291
+ msgid "LDAP|Attribute|mDRecord"
292
+ msgstr ""
293
+
294
+ #: -:-
295
+ msgid "LDAP|Attribute|mXRecord"
296
+ msgstr ""
297
+
298
+ #: -:-
299
+ msgid "LDAP|Attribute|macAddress"
300
+ msgstr ""
301
+
302
+ #: -:-
303
+ msgid "LDAP|Attribute|mail"
304
+ msgstr ""
305
+
306
+ #: -:-
307
+ msgid "LDAP|Attribute|mailPreferenceOption"
308
+ msgstr ""
309
+
310
+ #: -:-
311
+ msgid "LDAP|Attribute|manager"
312
+ msgstr ""
313
+
314
+ #: -:-
315
+ msgid "LDAP|Attribute|matchingRuleUse"
316
+ msgstr ""
317
+
318
+ #: -:-
319
+ msgid "LDAP|Attribute|matchingRules"
320
+ msgstr ""
321
+
322
+ #: -:-
323
+ msgid "LDAP|Attribute|member"
324
+ msgstr ""
325
+
326
+ #: -:-
327
+ msgid "LDAP|Attribute|memberNisNetgroup"
328
+ msgstr ""
329
+
330
+ #: -:-
331
+ msgid "LDAP|Attribute|memberUid"
332
+ msgstr ""
333
+
334
+ #: -:-
335
+ msgid "LDAP|Attribute|mobile"
336
+ msgstr ""
337
+
338
+ #: -:-
339
+ msgid "LDAP|Attribute|mobileTelephoneNumber"
340
+ msgstr ""
341
+
342
+ #: -:-
343
+ msgid "LDAP|Attribute|nSRecord"
344
+ msgstr ""
345
+
346
+ #: -:-
347
+ msgid "LDAP|Attribute|nisMapEntry"
348
+ msgstr ""
349
+
350
+ #: -:-
351
+ msgid "LDAP|Attribute|nisMapName"
352
+ msgstr ""
353
+
354
+ #: -:-
355
+ msgid "LDAP|Attribute|nisNetgroupTriple"
356
+ msgstr ""
357
+
358
+ #: -:-
359
+ msgid "LDAP|Attribute|o"
360
+ msgstr ""
361
+
362
+ #: -:-
363
+ msgid "LDAP|Attribute|objectClass"
364
+ msgstr ""
365
+
366
+ #: -:-
367
+ msgid "LDAP|Attribute|objectClasses"
368
+ msgstr ""
369
+
370
+ #: -:-
371
+ msgid "LDAP|Attribute|olcAccess"
372
+ msgstr ""
373
+
374
+ #: -:-
375
+ msgid "LDAP|Attribute|olcAllows"
376
+ msgstr ""
377
+
378
+ #: -:-
379
+ msgid "LDAP|Attribute|olcArgsFile"
380
+ msgstr ""
381
+
382
+ #: -:-
383
+ msgid "LDAP|Attribute|olcAttributeOptions"
384
+ msgstr ""
385
+
386
+ #: -:-
387
+ msgid "LDAP|Attribute|olcAttributeTypes"
388
+ msgstr ""
389
+
390
+ #: -:-
391
+ msgid "LDAP|Attribute|olcAuthIDRewrite"
392
+ msgstr ""
393
+
394
+ #: -:-
395
+ msgid "LDAP|Attribute|olcAuthzPolicy"
396
+ msgstr ""
397
+
398
+ #: -:-
399
+ msgid "LDAP|Attribute|olcAuthzRegexp"
400
+ msgstr ""
401
+
402
+ #: -:-
403
+ msgid "LDAP|Attribute|olcBackend"
404
+ msgstr ""
405
+
406
+ #: -:-
407
+ msgid "LDAP|Attribute|olcConcurrency"
408
+ msgstr ""
409
+
410
+ #: -:-
411
+ msgid "LDAP|Attribute|olcConfigDir"
412
+ msgstr ""
413
+
414
+ #: -:-
415
+ msgid "LDAP|Attribute|olcConfigFile"
416
+ msgstr ""
417
+
418
+ #: -:-
419
+ msgid "LDAP|Attribute|olcConnMaxPending"
420
+ msgstr ""
421
+
422
+ #: -:-
423
+ msgid "LDAP|Attribute|olcConnMaxPendingAuth"
424
+ msgstr ""
425
+
426
+ #: -:-
427
+ msgid "LDAP|Attribute|olcDatabase"
428
+ msgstr ""
429
+
430
+ #: -:-
431
+ msgid "LDAP|Attribute|olcDbCacheFree"
432
+ msgstr ""
433
+
434
+ #: -:-
435
+ msgid "LDAP|Attribute|olcDbCacheSize"
436
+ msgstr ""
437
+
438
+ #: -:-
439
+ msgid "LDAP|Attribute|olcDbCheckpoint"
440
+ msgstr ""
441
+
442
+ #: -:-
443
+ msgid "LDAP|Attribute|olcDbConfig"
444
+ msgstr ""
445
+
446
+ #: -:-
447
+ msgid "LDAP|Attribute|olcDbDirectory"
448
+ msgstr ""
449
+
450
+ #: -:-
451
+ msgid "LDAP|Attribute|olcDbDirtyRead"
452
+ msgstr ""
453
+
454
+ #: -:-
455
+ msgid "LDAP|Attribute|olcDbIDLcacheSize"
456
+ msgstr ""
457
+
458
+ #: -:-
459
+ msgid "LDAP|Attribute|olcDbIndex"
460
+ msgstr ""
461
+
462
+ #: -:-
463
+ msgid "LDAP|Attribute|olcDbLinearIndex"
464
+ msgstr ""
465
+
466
+ #: -:-
467
+ msgid "LDAP|Attribute|olcDbLockDetect"
468
+ msgstr ""
469
+
470
+ #: -:-
471
+ msgid "LDAP|Attribute|olcDbMode"
472
+ msgstr ""
473
+
474
+ #: -:-
475
+ msgid "LDAP|Attribute|olcDbNoSync"
476
+ msgstr ""
477
+
478
+ #: -:-
479
+ msgid "LDAP|Attribute|olcDbSearchStack"
480
+ msgstr ""
481
+
482
+ #: -:-
483
+ msgid "LDAP|Attribute|olcDbShmKey"
484
+ msgstr ""
485
+
486
+ #: -:-
487
+ msgid "LDAP|Attribute|olcDefaultSearchBase"
488
+ msgstr ""
489
+
490
+ #: -:-
491
+ msgid "LDAP|Attribute|olcDisallows"
492
+ msgstr ""
493
+
494
+ #: -:-
495
+ msgid "LDAP|Attribute|olcDitContentRules"
496
+ msgstr ""
497
+
498
+ #: -:-
499
+ msgid "LDAP|Attribute|olcGentleHUP"
500
+ msgstr ""
501
+
502
+ #: -:-
503
+ msgid "LDAP|Attribute|olcIdleTimeout"
504
+ msgstr ""
505
+
506
+ #: -:-
507
+ msgid "LDAP|Attribute|olcInclude"
508
+ msgstr ""
509
+
510
+ #: -:-
511
+ msgid "LDAP|Attribute|olcIndexSubstrAnyLen"
512
+ msgstr ""
513
+
514
+ #: -:-
515
+ msgid "LDAP|Attribute|olcIndexSubstrAnyStep"
516
+ msgstr ""
517
+
518
+ #: -:-
519
+ msgid "LDAP|Attribute|olcIndexSubstrIfMaxLen"
520
+ msgstr ""
521
+
522
+ #: -:-
523
+ msgid "LDAP|Attribute|olcIndexSubstrIfMinLen"
524
+ msgstr ""
525
+
526
+ #: -:-
527
+ msgid "LDAP|Attribute|olcLastMod"
528
+ msgstr ""
529
+
530
+ #: -:-
531
+ msgid "LDAP|Attribute|olcLimits"
532
+ msgstr ""
533
+
534
+ #: -:-
535
+ msgid "LDAP|Attribute|olcLocalSSF"
536
+ msgstr ""
537
+
538
+ #: -:-
539
+ msgid "LDAP|Attribute|olcLogLevel"
540
+ msgstr ""
541
+
542
+ #: -:-
543
+ msgid "LDAP|Attribute|olcMaxDerefDepth"
544
+ msgstr ""
545
+
546
+ #: -:-
547
+ msgid "LDAP|Attribute|olcModuleLoad"
548
+ msgstr ""
549
+
550
+ #: -:-
551
+ msgid "LDAP|Attribute|olcModulePath"
552
+ msgstr ""
553
+
554
+ #: -:-
555
+ msgid "LDAP|Attribute|olcObjectClasses"
556
+ msgstr ""
557
+
558
+ #: -:-
559
+ msgid "LDAP|Attribute|olcObjectIdentifier"
560
+ msgstr ""
561
+
562
+ #: -:-
563
+ msgid "LDAP|Attribute|olcOverlay"
564
+ msgstr ""
565
+
566
+ #: -:-
567
+ msgid "LDAP|Attribute|olcPasswordCryptSaltFormat"
568
+ msgstr ""
569
+
570
+ #: -:-
571
+ msgid "LDAP|Attribute|olcPasswordHash"
572
+ msgstr ""
573
+
574
+ #: -:-
575
+ msgid "LDAP|Attribute|olcPidFile"
576
+ msgstr ""
577
+
578
+ #: -:-
579
+ msgid "LDAP|Attribute|olcPlugin"
580
+ msgstr ""
581
+
582
+ #: -:-
583
+ msgid "LDAP|Attribute|olcPluginLogFile"
584
+ msgstr ""
585
+
586
+ #: -:-
587
+ msgid "LDAP|Attribute|olcReadOnly"
588
+ msgstr ""
589
+
590
+ #: -:-
591
+ msgid "LDAP|Attribute|olcReferral"
592
+ msgstr ""
593
+
594
+ #: -:-
595
+ msgid "LDAP|Attribute|olcReplica"
596
+ msgstr ""
597
+
598
+ #: -:-
599
+ msgid "LDAP|Attribute|olcReplicaArgsFile"
600
+ msgstr ""
601
+
602
+ #: -:-
603
+ msgid "LDAP|Attribute|olcReplicaPidFile"
604
+ msgstr ""
605
+
606
+ #: -:-
607
+ msgid "LDAP|Attribute|olcReplicationInterval"
608
+ msgstr ""
609
+
610
+ #: -:-
611
+ msgid "LDAP|Attribute|olcReplogFile"
612
+ msgstr ""
613
+
614
+ #: -:-
615
+ msgid "LDAP|Attribute|olcRequires"
616
+ msgstr ""
617
+
618
+ #: -:-
619
+ msgid "LDAP|Attribute|olcRestrict"
620
+ msgstr ""
621
+
622
+ #: -:-
623
+ msgid "LDAP|Attribute|olcReverseLookup"
624
+ msgstr ""
625
+
626
+ #: -:-
627
+ msgid "LDAP|Attribute|olcRootDN"
628
+ msgstr ""
629
+
630
+ #: -:-
631
+ msgid "LDAP|Attribute|olcRootDSE"
632
+ msgstr ""
633
+
634
+ #: -:-
635
+ msgid "LDAP|Attribute|olcRootPW"
636
+ msgstr ""
637
+
638
+ #: -:-
639
+ msgid "LDAP|Attribute|olcSaslHost"
640
+ msgstr ""
641
+
642
+ #: -:-
643
+ msgid "LDAP|Attribute|olcSaslRealm"
644
+ msgstr ""
645
+
646
+ #: -:-
647
+ msgid "LDAP|Attribute|olcSaslSecProps"
648
+ msgstr ""
649
+
650
+ #: -:-
651
+ msgid "LDAP|Attribute|olcSchemaDN"
652
+ msgstr ""
653
+
654
+ #: -:-
655
+ msgid "LDAP|Attribute|olcSecurity"
656
+ msgstr ""
657
+
658
+ #: -:-
659
+ msgid "LDAP|Attribute|olcSizeLimit"
660
+ msgstr ""
661
+
662
+ #: -:-
663
+ msgid "LDAP|Attribute|olcSockbufMaxIncoming"
664
+ msgstr ""
665
+
666
+ #: -:-
667
+ msgid "LDAP|Attribute|olcSockbufMaxIncomingAuth"
668
+ msgstr ""
669
+
670
+ #: -:-
671
+ msgid "LDAP|Attribute|olcSrvtab"
672
+ msgstr ""
673
+
674
+ #: -:-
675
+ msgid "LDAP|Attribute|olcSubordinate"
676
+ msgstr ""
677
+
678
+ #: -:-
679
+ msgid "LDAP|Attribute|olcSuffix"
680
+ msgstr ""
681
+
682
+ #: -:-
683
+ msgid "LDAP|Attribute|olcSyncrepl"
684
+ msgstr ""
685
+
686
+ #: -:-
687
+ msgid "LDAP|Attribute|olcTLSCACertificateFile"
688
+ msgstr ""
689
+
690
+ #: -:-
691
+ msgid "LDAP|Attribute|olcTLSCACertificatePath"
692
+ msgstr ""
693
+
694
+ #: -:-
695
+ msgid "LDAP|Attribute|olcTLSCRLCheck"
696
+ msgstr ""
697
+
698
+ #: -:-
699
+ msgid "LDAP|Attribute|olcTLSCertificateFile"
700
+ msgstr ""
701
+
702
+ #: -:-
703
+ msgid "LDAP|Attribute|olcTLSCertificateKeyFile"
704
+ msgstr ""
705
+
706
+ #: -:-
707
+ msgid "LDAP|Attribute|olcTLSCipherSuite"
708
+ msgstr ""
709
+
710
+ #: -:-
711
+ msgid "LDAP|Attribute|olcTLSDHParamFile"
712
+ msgstr ""
713
+
714
+ #: -:-
715
+ msgid "LDAP|Attribute|olcTLSRandFile"
716
+ msgstr ""
717
+
718
+ #: -:-
719
+ msgid "LDAP|Attribute|olcTLSVerifyClient"
720
+ msgstr ""
721
+
722
+ #: -:-
723
+ msgid "LDAP|Attribute|olcThreads"
724
+ msgstr ""
725
+
726
+ #: -:-
727
+ msgid "LDAP|Attribute|olcTimeLimit"
728
+ msgstr ""
729
+
730
+ #: -:-
731
+ msgid "LDAP|Attribute|olcToolThreads"
732
+ msgstr ""
733
+
734
+ #: -:-
735
+ msgid "LDAP|Attribute|olcUpdateDN"
736
+ msgstr ""
737
+
738
+ #: -:-
739
+ msgid "LDAP|Attribute|olcUpdateRef"
740
+ msgstr ""
741
+
742
+ #: -:-
743
+ msgid "LDAP|Attribute|oncRpcNumber"
744
+ msgstr ""
745
+
746
+ #: -:-
747
+ msgid "LDAP|Attribute|organizationName"
748
+ msgstr ""
749
+
750
+ #: -:-
751
+ msgid "LDAP|Attribute|organizationalStatus"
752
+ msgstr ""
753
+
754
+ #: -:-
755
+ msgid "LDAP|Attribute|organizationalUnitName"
756
+ msgstr ""
757
+
758
+ #: -:-
759
+ msgid "LDAP|Attribute|otherMailbox"
760
+ msgstr ""
761
+
762
+ #: -:-
763
+ msgid "LDAP|Attribute|ou"
764
+ msgstr ""
765
+
766
+ #: -:-
767
+ msgid "LDAP|Attribute|owner"
768
+ msgstr ""
769
+
770
+ #: -:-
771
+ msgid "LDAP|Attribute|pager"
772
+ msgstr ""
773
+
774
+ #: -:-
775
+ msgid "LDAP|Attribute|pagerTelephoneNumber"
776
+ msgstr ""
777
+
778
+ #: -:-
779
+ msgid "LDAP|Attribute|personalSignature"
780
+ msgstr ""
781
+
782
+ #: -:-
783
+ msgid "LDAP|Attribute|personalTitle"
784
+ msgstr ""
785
+
786
+ #: -:-
787
+ msgid "LDAP|Attribute|photo"
788
+ msgstr ""
789
+
790
+ #: -:-
791
+ msgid "LDAP|Attribute|physicalDeliveryOfficeName"
792
+ msgstr ""
793
+
794
+ #: -:-
795
+ msgid "LDAP|Attribute|postOfficeBox"
796
+ msgstr ""
797
+
798
+ #: -:-
799
+ msgid "LDAP|Attribute|postalAddress"
800
+ msgstr ""
801
+
802
+ #: -:-
803
+ msgid "LDAP|Attribute|postalCode"
804
+ msgstr ""
805
+
806
+ #: -:-
807
+ msgid "LDAP|Attribute|preferredDeliveryMethod"
808
+ msgstr ""
809
+
810
+ #: -:-
811
+ msgid "LDAP|Attribute|preferredLanguage"
812
+ msgstr ""
813
+
814
+ #: -:-
815
+ msgid "LDAP|Attribute|presentationAddress"
816
+ msgstr ""
817
+
818
+ #: -:-
819
+ msgid "LDAP|Attribute|ref"
820
+ msgstr ""
821
+
822
+ #: -:-
823
+ msgid "LDAP|Attribute|registeredAddress"
824
+ msgstr ""
825
+
826
+ #: -:-
827
+ msgid "LDAP|Attribute|rfc822Mailbox"
828
+ msgstr ""
829
+
830
+ #: -:-
831
+ msgid "LDAP|Attribute|roleOccupant"
832
+ msgstr ""
833
+
834
+ #: -:-
835
+ msgid "LDAP|Attribute|roomNumber"
836
+ msgstr ""
837
+
838
+ #: -:-
839
+ msgid "LDAP|Attribute|sOARecord"
840
+ msgstr ""
841
+
842
+ #: -:-
843
+ msgid "LDAP|Attribute|sambaAcctFlags"
844
+ msgstr ""
845
+
846
+ #: -:-
847
+ msgid "LDAP|Attribute|sambaAlgorithmicRidBase"
848
+ msgstr ""
849
+
850
+ #: -:-
851
+ msgid "LDAP|Attribute|sambaBadPasswordCount"
852
+ msgstr ""
853
+
854
+ #: -:-
855
+ msgid "LDAP|Attribute|sambaBadPasswordTime"
856
+ msgstr ""
857
+
858
+ #: -:-
859
+ msgid "LDAP|Attribute|sambaBoolOption"
860
+ msgstr ""
861
+
862
+ #: -:-
863
+ msgid "LDAP|Attribute|sambaDomainName"
864
+ msgstr ""
865
+
866
+ #: -:-
867
+ msgid "LDAP|Attribute|sambaForceLogoff"
868
+ msgstr ""
869
+
870
+ #: -:-
871
+ msgid "LDAP|Attribute|sambaGroupType"
872
+ msgstr ""
873
+
874
+ #: -:-
875
+ msgid "LDAP|Attribute|sambaHomeDrive"
876
+ msgstr ""
877
+
878
+ #: -:-
879
+ msgid "LDAP|Attribute|sambaHomePath"
880
+ msgstr ""
881
+
882
+ #: -:-
883
+ msgid "LDAP|Attribute|sambaIntegerOption"
884
+ msgstr ""
885
+
886
+ #: -:-
887
+ msgid "LDAP|Attribute|sambaKickoffTime"
888
+ msgstr ""
889
+
890
+ #: -:-
891
+ msgid "LDAP|Attribute|sambaLMPassword"
892
+ msgstr ""
893
+
894
+ #: -:-
895
+ msgid "LDAP|Attribute|sambaLockoutDuration"
896
+ msgstr ""
897
+
898
+ #: -:-
899
+ msgid "LDAP|Attribute|sambaLockoutObservationWindow"
900
+ msgstr ""
901
+
902
+ #: -:-
903
+ msgid "LDAP|Attribute|sambaLockoutThreshold"
904
+ msgstr ""
905
+
906
+ #: -:-
907
+ msgid "LDAP|Attribute|sambaLogoffTime"
908
+ msgstr ""
909
+
910
+ #: -:-
911
+ msgid "LDAP|Attribute|sambaLogonHours"
912
+ msgstr ""
913
+
914
+ #: -:-
915
+ msgid "LDAP|Attribute|sambaLogonScript"
916
+ msgstr ""
917
+
918
+ #: -:-
919
+ msgid "LDAP|Attribute|sambaLogonTime"
920
+ msgstr ""
921
+
922
+ #: -:-
923
+ msgid "LDAP|Attribute|sambaLogonToChgPwd"
924
+ msgstr ""
925
+
926
+ #: -:-
927
+ msgid "LDAP|Attribute|sambaMaxPwdAge"
928
+ msgstr ""
929
+
930
+ #: -:-
931
+ msgid "LDAP|Attribute|sambaMinPwdAge"
932
+ msgstr ""
933
+
934
+ #: -:-
935
+ msgid "LDAP|Attribute|sambaMinPwdLength"
936
+ msgstr ""
937
+
938
+ #: -:-
939
+ msgid "LDAP|Attribute|sambaMungedDial"
940
+ msgstr ""
941
+
942
+ #: -:-
943
+ msgid "LDAP|Attribute|sambaNTPassword"
944
+ msgstr ""
945
+
946
+ #: -:-
947
+ msgid "LDAP|Attribute|sambaNextGroupRid"
948
+ msgstr ""
949
+
950
+ #: -:-
951
+ msgid "LDAP|Attribute|sambaNextRid"
952
+ msgstr ""
953
+
954
+ #: -:-
955
+ msgid "LDAP|Attribute|sambaNextUserRid"
956
+ msgstr ""
957
+
958
+ #: -:-
959
+ msgid "LDAP|Attribute|sambaOptionName"
960
+ msgstr ""
961
+
962
+ #: -:-
963
+ msgid "LDAP|Attribute|sambaPasswordHistory"
964
+ msgstr ""
965
+
966
+ #: -:-
967
+ msgid "LDAP|Attribute|sambaPrimaryGroupSID"
968
+ msgstr ""
969
+
970
+ #: -:-
971
+ msgid "LDAP|Attribute|sambaProfilePath"
972
+ msgstr ""
973
+
974
+ #: -:-
975
+ msgid "LDAP|Attribute|sambaPwdCanChange"
976
+ msgstr ""
977
+
978
+ #: -:-
979
+ msgid "LDAP|Attribute|sambaPwdHistoryLength"
980
+ msgstr ""
981
+
982
+ #: -:-
983
+ msgid "LDAP|Attribute|sambaPwdLastSet"
984
+ msgstr ""
985
+
986
+ #: -:-
987
+ msgid "LDAP|Attribute|sambaPwdMustChange"
988
+ msgstr ""
989
+
990
+ #: -:-
991
+ msgid "LDAP|Attribute|sambaRefuseMachinePwdChange"
992
+ msgstr ""
993
+
994
+ #: -:-
995
+ msgid "LDAP|Attribute|sambaSID"
996
+ msgstr ""
997
+
998
+ #: -:-
999
+ msgid "LDAP|Attribute|sambaSIDList"
1000
+ msgstr ""
1001
+
1002
+ #: -:-
1003
+ msgid "LDAP|Attribute|sambaShareName"
1004
+ msgstr ""
1005
+
1006
+ #: -:-
1007
+ msgid "LDAP|Attribute|sambaStringListOption"
1008
+ msgstr ""
1009
+
1010
+ #: -:-
1011
+ msgid "LDAP|Attribute|sambaStringOption"
1012
+ msgstr ""
1013
+
1014
+ #: -:-
1015
+ msgid "LDAP|Attribute|sambaTrustFlags"
1016
+ msgstr ""
1017
+
1018
+ #: -:-
1019
+ msgid "LDAP|Attribute|sambaUserWorkstations"
1020
+ msgstr ""
1021
+
1022
+ #: -:-
1023
+ msgid "LDAP|Attribute|searchGuide"
1024
+ msgstr ""
1025
+
1026
+ #: -:-
1027
+ msgid "LDAP|Attribute|secretary"
1028
+ msgstr ""
1029
+
1030
+ #: -:-
1031
+ msgid "LDAP|Attribute|seeAlso"
1032
+ msgstr ""
1033
+
1034
+ #: -:-
1035
+ msgid "LDAP|Attribute|serialNumber"
1036
+ msgstr ""
1037
+
1038
+ #: -:-
1039
+ msgid "LDAP|Attribute|shadowExpire"
1040
+ msgstr ""
1041
+
1042
+ #: -:-
1043
+ msgid "LDAP|Attribute|shadowFlag"
1044
+ msgstr ""
1045
+
1046
+ #: -:-
1047
+ msgid "LDAP|Attribute|shadowInactive"
1048
+ msgstr ""
1049
+
1050
+ #: -:-
1051
+ msgid "LDAP|Attribute|shadowLastChange"
1052
+ msgstr ""
1053
+
1054
+ #: -:-
1055
+ msgid "LDAP|Attribute|shadowMax"
1056
+ msgstr ""
1057
+
1058
+ #: -:-
1059
+ msgid "LDAP|Attribute|shadowMin"
1060
+ msgstr ""
1061
+
1062
+ #: -:-
1063
+ msgid "LDAP|Attribute|shadowWarning"
1064
+ msgstr ""
1065
+
1066
+ #: -:-
1067
+ msgid "LDAP|Attribute|sn"
1068
+ msgstr ""
1069
+
1070
+ #: -:-
1071
+ msgid "LDAP|Attribute|st"
1072
+ msgstr ""
1073
+
1074
+ #: -:-
1075
+ msgid "LDAP|Attribute|stateOrProvinceName"
1076
+ msgstr ""
1077
+
1078
+ #: -:-
1079
+ msgid "LDAP|Attribute|street"
1080
+ msgstr ""
1081
+
1082
+ #: -:-
1083
+ msgid "LDAP|Attribute|streetAddress"
1084
+ msgstr ""
1085
+
1086
+ #: -:-
1087
+ msgid "LDAP|Attribute|subtreeMaximumQuality"
1088
+ msgstr ""
1089
+
1090
+ #: -:-
1091
+ msgid "LDAP|Attribute|subtreeMinimumQuality"
1092
+ msgstr ""
1093
+
1094
+ #: -:-
1095
+ msgid "LDAP|Attribute|supportedAlgorithms"
1096
+ msgstr ""
1097
+
1098
+ #: -:-
1099
+ msgid "LDAP|Attribute|supportedApplicationContext"
1100
+ msgstr ""
1101
+
1102
+ #: -:-
1103
+ msgid "LDAP|Attribute|surname"
1104
+ msgstr ""
1105
+
1106
+ #: -:-
1107
+ msgid "LDAP|Attribute|telephoneNumber"
1108
+ msgstr ""
1109
+
1110
+ #: -:-
1111
+ msgid "LDAP|Attribute|teletexTerminalIdentifier"
1112
+ msgstr ""
1113
+
1114
+ #: -:-
1115
+ msgid "LDAP|Attribute|telexNumber"
1116
+ msgstr ""
1117
+
1118
+ #: -:-
1119
+ msgid "LDAP|Attribute|textEncodedORAddress"
1120
+ msgstr ""
1121
+
1122
+ #: -:-
1123
+ msgid "LDAP|Attribute|title"
1124
+ msgstr ""
1125
+
1126
+ #: -:-
1127
+ msgid "LDAP|Attribute|uid"
1128
+ msgstr ""
1129
+
1130
+ #: -:-
1131
+ msgid "LDAP|Attribute|uidNumber"
1132
+ msgstr ""
1133
+
1134
+ #: -:-
1135
+ msgid "LDAP|Attribute|uniqueMember"
1136
+ msgstr ""
1137
+
1138
+ #: -:-
1139
+ msgid "LDAP|Attribute|userCertificate"
1140
+ msgstr ""
1141
+
1142
+ #: -:-
1143
+ msgid "LDAP|Attribute|userClass"
1144
+ msgstr ""
1145
+
1146
+ #: -:-
1147
+ msgid "LDAP|Attribute|userPKCS12"
1148
+ msgstr ""
1149
+
1150
+ #: -:-
1151
+ msgid "LDAP|Attribute|userPassword"
1152
+ msgstr ""
1153
+
1154
+ #: -:-
1155
+ msgid "LDAP|Attribute|userSMIMECertificate"
1156
+ msgstr ""
1157
+
1158
+ #: -:-
1159
+ msgid "LDAP|Attribute|userid"
1160
+ msgstr ""
1161
+
1162
+ #: -:-
1163
+ msgid "LDAP|Attribute|x121Address"
1164
+ msgstr ""
1165
+
1166
+ #: -:-
1167
+ msgid "LDAP|Attribute|x500UniqueIdentifier"
1168
+ msgstr ""
1169
+
1170
+ #: -:-
1171
+ msgid ""
1172
+ "LDAP|Description|Attribute|aliasedObjectName|RFC2256: name of aliased object"
1173
+ msgstr ""
1174
+
1175
+ #: -:-
1176
+ msgid ""
1177
+ "LDAP|Description|Attribute|associatedDomain|RFC1274: domain associated with "
1178
+ "object"
1179
+ msgstr ""
1180
+
1181
+ #: -:-
1182
+ msgid ""
1183
+ "LDAP|Description|Attribute|associatedName|RFC1274: DN of entry associated "
1184
+ "with domain"
1185
+ msgstr ""
1186
+
1187
+ #: -:-
1188
+ msgid "LDAP|Description|Attribute|attributeTypes|RFC2252: attribute types"
1189
+ msgstr ""
1190
+
1191
+ #: -:-
1192
+ msgid "LDAP|Description|Attribute|audio|RFC1274: audio (u-law)"
1193
+ msgstr ""
1194
+
1195
+ #: -:-
1196
+ msgid ""
1197
+ "LDAP|Description|Attribute|authorityRevocationList|RFC2256: X.509 authority "
1198
+ "revocation list, use ;binary"
1199
+ msgstr ""
1200
+
1201
+ #: -:-
1202
+ msgid "LDAP|Description|Attribute|bootFile|Boot image name"
1203
+ msgstr ""
1204
+
1205
+ #: -:-
1206
+ msgid "LDAP|Description|Attribute|bootParameter|rpc.bootparamd parameter"
1207
+ msgstr ""
1208
+
1209
+ #: -:-
1210
+ msgid "LDAP|Description|Attribute|buildingName|RFC1274: name of building"
1211
+ msgstr ""
1212
+
1213
+ #: -:-
1214
+ msgid "LDAP|Description|Attribute|businessCategory|RFC2256: business category"
1215
+ msgstr ""
1216
+
1217
+ #: -:-
1218
+ msgid ""
1219
+ "LDAP|Description|Attribute|cACertificate|RFC2256: X.509 CA certificate, use ;"
1220
+ "binary"
1221
+ msgstr ""
1222
+
1223
+ #: -:-
1224
+ msgid ""
1225
+ "LDAP|Description|Attribute|carLicense|RFC2798: vehicle license or "
1226
+ "registration plate"
1227
+ msgstr ""
1228
+
1229
+ #: -:-
1230
+ msgid ""
1231
+ "LDAP|Description|Attribute|certificateRevocationList|RFC2256: X.509 "
1232
+ "certificate revocation list, use ;binary"
1233
+ msgstr ""
1234
+
1235
+ #: -:-
1236
+ msgid ""
1237
+ "LDAP|Description|Attribute|cn|RFC2256: common name(s) for which the entity "
1238
+ "is known by"
1239
+ msgstr ""
1240
+
1241
+ #: -:-
1242
+ msgid "LDAP|Description|Attribute|co|RFC1274: friendly country name"
1243
+ msgstr ""
1244
+
1245
+ #: -:-
1246
+ msgid ""
1247
+ "LDAP|Description|Attribute|crossCertificatePair|RFC2256: X.509 cross "
1248
+ "certificate pair, use ;binary"
1249
+ msgstr ""
1250
+
1251
+ #: -:-
1252
+ msgid "LDAP|Description|Attribute|c|RFC2256: ISO-3166 country 2-letter code"
1253
+ msgstr ""
1254
+
1255
+ #: -:-
1256
+ msgid "LDAP|Description|Attribute|dSAQuality|RFC1274: DSA Quality"
1257
+ msgstr ""
1258
+
1259
+ #: -:-
1260
+ msgid "LDAP|Description|Attribute|dc|RFC1274/2247: domain component"
1261
+ msgstr ""
1262
+
1263
+ #: -:-
1264
+ msgid ""
1265
+ "LDAP|Description|Attribute|deltaRevocationList|RFC2256: delta revocation "
1266
+ "list; use ;binary"
1267
+ msgstr ""
1268
+
1269
+ #: -:-
1270
+ msgid ""
1271
+ "LDAP|Description|Attribute|departmentNumber|RFC2798: identifies a department "
1272
+ "within an organization"
1273
+ msgstr ""
1274
+
1275
+ #: -:-
1276
+ msgid "LDAP|Description|Attribute|description|RFC2256: descriptive information"
1277
+ msgstr ""
1278
+
1279
+ #: -:-
1280
+ msgid ""
1281
+ "LDAP|Description|Attribute|destinationIndicator|RFC2256: destination "
1282
+ "indicator"
1283
+ msgstr ""
1284
+
1285
+ #: -:-
1286
+ msgid ""
1287
+ "LDAP|Description|Attribute|displayName|RFC2798: preferred name to be used "
1288
+ "when displaying entries"
1289
+ msgstr ""
1290
+
1291
+ #: -:-
1292
+ msgid "LDAP|Description|Attribute|dmdName|RFC2256: name of DMD"
1293
+ msgstr ""
1294
+
1295
+ #: -:-
1296
+ msgid ""
1297
+ "LDAP|Description|Attribute|documentAuthor|RFC1274: DN of author of document"
1298
+ msgstr ""
1299
+
1300
+ #: -:-
1301
+ msgid ""
1302
+ "LDAP|Description|Attribute|documentIdentifier|RFC1274: unique identifier of "
1303
+ "document"
1304
+ msgstr ""
1305
+
1306
+ #: -:-
1307
+ msgid ""
1308
+ "LDAP|Description|Attribute|documentLocation|RFC1274: location of document "
1309
+ "original"
1310
+ msgstr ""
1311
+
1312
+ #: -:-
1313
+ msgid ""
1314
+ "LDAP|Description|Attribute|documentPublisher|RFC1274: publisher of document"
1315
+ msgstr ""
1316
+
1317
+ #: -:-
1318
+ msgid "LDAP|Description|Attribute|documentTitle|RFC1274: title of document"
1319
+ msgstr ""
1320
+
1321
+ #: -:-
1322
+ msgid "LDAP|Description|Attribute|documentVersion|RFC1274: version of document"
1323
+ msgstr ""
1324
+
1325
+ #: -:-
1326
+ msgid "LDAP|Description|Attribute|drink|RFC1274: favorite drink"
1327
+ msgstr ""
1328
+
1329
+ #: -:-
1330
+ msgid ""
1331
+ "LDAP|Description|Attribute|employeeNumber|RFC2798: numerically identifies an "
1332
+ "employee within an organization"
1333
+ msgstr ""
1334
+
1335
+ #: -:-
1336
+ msgid ""
1337
+ "LDAP|Description|Attribute|employeeType|RFC2798: type of employment for a "
1338
+ "person"
1339
+ msgstr ""
1340
+
1341
+ #: -:-
1342
+ msgid ""
1343
+ "LDAP|Description|Attribute|facsimileTelephoneNumber|RFC2256: Facsimile (Fax) "
1344
+ "Telephone Number"
1345
+ msgstr ""
1346
+
1347
+ #: -:-
1348
+ msgid "LDAP|Description|Attribute|gecos|The GECOS field; the common name"
1349
+ msgstr ""
1350
+
1351
+ #: -:-
1352
+ msgid ""
1353
+ "LDAP|Description|Attribute|gidNumber|An integer uniquely identifying a group "
1354
+ "in an administrative domain"
1355
+ msgstr ""
1356
+
1357
+ #: -:-
1358
+ msgid ""
1359
+ "LDAP|Description|Attribute|givenName|RFC2256: first name(s) for which the "
1360
+ "entity is known by"
1361
+ msgstr ""
1362
+
1363
+ #: -:-
1364
+ msgid ""
1365
+ "LDAP|Description|Attribute|homeDirectory|The absolute path to the home "
1366
+ "directory"
1367
+ msgstr ""
1368
+
1369
+ #: -:-
1370
+ msgid "LDAP|Description|Attribute|homePhone|RFC1274: home telephone number"
1371
+ msgstr ""
1372
+
1373
+ #: -:-
1374
+ msgid ""
1375
+ "LDAP|Description|Attribute|homePostalAddress|RFC1274: home postal address"
1376
+ msgstr ""
1377
+
1378
+ #: -:-
1379
+ msgid "LDAP|Description|Attribute|host|RFC1274: host computer"
1380
+ msgstr ""
1381
+
1382
+ #: -:-
1383
+ msgid ""
1384
+ "LDAP|Description|Attribute|initials|RFC2256: initials of some or all of "
1385
+ "names, but not the surname(s)."
1386
+ msgstr ""
1387
+
1388
+ #: -:-
1389
+ msgid ""
1390
+ "LDAP|Description|Attribute|internationaliSDNNumber|RFC2256: international "
1391
+ "ISDN number"
1392
+ msgstr ""
1393
+
1394
+ #: -:-
1395
+ msgid "LDAP|Description|Attribute|ipHostNumber|IP address"
1396
+ msgstr ""
1397
+
1398
+ #: -:-
1399
+ msgid "LDAP|Description|Attribute|ipNetmaskNumber|IP netmask"
1400
+ msgstr ""
1401
+
1402
+ #: -:-
1403
+ msgid "LDAP|Description|Attribute|ipNetworkNumber|IP network"
1404
+ msgstr ""
1405
+
1406
+ #: -:-
1407
+ msgid "LDAP|Description|Attribute|janetMailbox|RFC1274: Janet mailbox"
1408
+ msgstr ""
1409
+
1410
+ #: -:-
1411
+ msgid "LDAP|Description|Attribute|jpegPhoto|RFC2798: a JPEG image"
1412
+ msgstr ""
1413
+
1414
+ #: -:-
1415
+ msgid ""
1416
+ "LDAP|Description|Attribute|knowledgeInformation|RFC2256: knowledge "
1417
+ "information"
1418
+ msgstr ""
1419
+
1420
+ #: -:-
1421
+ msgid ""
1422
+ "LDAP|Description|Attribute|labeledURI|RFC2079: Uniform Resource Identifier "
1423
+ "with optional label"
1424
+ msgstr ""
1425
+
1426
+ #: -:-
1427
+ msgid "LDAP|Description|Attribute|loginShell|The path to the login shell"
1428
+ msgstr ""
1429
+
1430
+ #: -:-
1431
+ msgid ""
1432
+ "LDAP|Description|Attribute|l|RFC2256: locality which this object resides in"
1433
+ msgstr ""
1434
+
1435
+ #: -:-
1436
+ msgid "LDAP|Description|Attribute|macAddress|MAC address"
1437
+ msgstr ""
1438
+
1439
+ #: -:-
1440
+ msgid ""
1441
+ "LDAP|Description|Attribute|mailPreferenceOption|RFC1274: mail preference "
1442
+ "option"
1443
+ msgstr ""
1444
+
1445
+ #: -:-
1446
+ msgid "LDAP|Description|Attribute|mail|RFC1274: RFC822 Mailbox"
1447
+ msgstr ""
1448
+
1449
+ #: -:-
1450
+ msgid "LDAP|Description|Attribute|manager|RFC1274: DN of manager"
1451
+ msgstr ""
1452
+
1453
+ #: -:-
1454
+ msgid "LDAP|Description|Attribute|matchingRuleUse|RFC2252: matching rule uses"
1455
+ msgstr ""
1456
+
1457
+ #: -:-
1458
+ msgid "LDAP|Description|Attribute|matchingRules|RFC2252: matching rules"
1459
+ msgstr ""
1460
+
1461
+ #: -:-
1462
+ msgid "LDAP|Description|Attribute|member|RFC2256: member of a group"
1463
+ msgstr ""
1464
+
1465
+ #: -:-
1466
+ msgid "LDAP|Description|Attribute|mobile|RFC1274: mobile telephone number"
1467
+ msgstr ""
1468
+
1469
+ #: -:-
1470
+ msgid "LDAP|Description|Attribute|nisNetgroupTriple|Netgroup triple"
1471
+ msgstr ""
1472
+
1473
+ #: -:-
1474
+ msgid "LDAP|Description|Attribute|objectClasses|RFC2252: object classes"
1475
+ msgstr ""
1476
+
1477
+ #: -:-
1478
+ msgid ""
1479
+ "LDAP|Description|Attribute|objectClass|RFC2256: object classes of the entity"
1480
+ msgstr ""
1481
+
1482
+ #: -:-
1483
+ msgid "LDAP|Description|Attribute|olcAccess|Access Control List"
1484
+ msgstr ""
1485
+
1486
+ #: -:-
1487
+ msgid "LDAP|Description|Attribute|olcAllows|Allowed set of deprecated features"
1488
+ msgstr ""
1489
+
1490
+ #: -:-
1491
+ msgid ""
1492
+ "LDAP|Description|Attribute|olcArgsFile|File for slapd command line options"
1493
+ msgstr ""
1494
+
1495
+ #: -:-
1496
+ msgid "LDAP|Description|Attribute|olcAttributeTypes|OpenLDAP attributeTypes"
1497
+ msgstr ""
1498
+
1499
+ #: -:-
1500
+ msgid "LDAP|Description|Attribute|olcBackend|A type of backend"
1501
+ msgstr ""
1502
+
1503
+ #: -:-
1504
+ msgid ""
1505
+ "LDAP|Description|Attribute|olcConfigDir|Directory for slapd configuration "
1506
+ "backend"
1507
+ msgstr ""
1508
+
1509
+ #: -:-
1510
+ msgid ""
1511
+ "LDAP|Description|Attribute|olcConfigFile|File for slapd configuration "
1512
+ "directives"
1513
+ msgstr ""
1514
+
1515
+ #: -:-
1516
+ msgid ""
1517
+ "LDAP|Description|Attribute|olcDatabase|The backend type for a database "
1518
+ "instance"
1519
+ msgstr ""
1520
+
1521
+ #: -:-
1522
+ msgid ""
1523
+ "LDAP|Description|Attribute|olcDbCacheFree|Number of extra entries to free "
1524
+ "when max is reached"
1525
+ msgstr ""
1526
+
1527
+ #: -:-
1528
+ msgid "LDAP|Description|Attribute|olcDbCacheSize|Entry cache size in entries"
1529
+ msgstr ""
1530
+
1531
+ #: -:-
1532
+ msgid ""
1533
+ "LDAP|Description|Attribute|olcDbCheckpoint|Database checkpoint interval in "
1534
+ "kbytes and minutes"
1535
+ msgstr ""
1536
+
1537
+ #: -:-
1538
+ msgid ""
1539
+ "LDAP|Description|Attribute|olcDbConfig|BerkeleyDB DB_CONFIG configuration "
1540
+ "directives"
1541
+ msgstr ""
1542
+
1543
+ #: -:-
1544
+ msgid ""
1545
+ "LDAP|Description|Attribute|olcDbDirectory|Directory for database content"
1546
+ msgstr ""
1547
+
1548
+ #: -:-
1549
+ msgid ""
1550
+ "LDAP|Description|Attribute|olcDbDirtyRead|Allow reads of uncommitted data"
1551
+ msgstr ""
1552
+
1553
+ #: -:-
1554
+ msgid "LDAP|Description|Attribute|olcDbIDLcacheSize|IDL cache size in IDLs"
1555
+ msgstr ""
1556
+
1557
+ #: -:-
1558
+ msgid "LDAP|Description|Attribute|olcDbIndex|Attribute index parameters"
1559
+ msgstr ""
1560
+
1561
+ #: -:-
1562
+ msgid ""
1563
+ "LDAP|Description|Attribute|olcDbLinearIndex|Index attributes one at a time"
1564
+ msgstr ""
1565
+
1566
+ #: -:-
1567
+ msgid "LDAP|Description|Attribute|olcDbLockDetect|Deadlock detection algorithm"
1568
+ msgstr ""
1569
+
1570
+ #: -:-
1571
+ msgid "LDAP|Description|Attribute|olcDbMode|Unix permissions of database files"
1572
+ msgstr ""
1573
+
1574
+ #: -:-
1575
+ msgid ""
1576
+ "LDAP|Description|Attribute|olcDbNoSync|Disable synchronous database writes"
1577
+ msgstr ""
1578
+
1579
+ #: -:-
1580
+ msgid ""
1581
+ "LDAP|Description|Attribute|olcDbSearchStack|Depth of search stack in IDLs"
1582
+ msgstr ""
1583
+
1584
+ #: -:-
1585
+ msgid "LDAP|Description|Attribute|olcDbShmKey|Key for shared memory region"
1586
+ msgstr ""
1587
+
1588
+ #: -:-
1589
+ msgid ""
1590
+ "LDAP|Description|Attribute|olcDitContentRules|OpenLDAP DIT content rules"
1591
+ msgstr ""
1592
+
1593
+ #: -:-
1594
+ msgid "LDAP|Description|Attribute|olcObjectClasses|OpenLDAP object classes"
1595
+ msgstr ""
1596
+
1597
+ #: -:-
1598
+ msgid ""
1599
+ "LDAP|Description|Attribute|organizationalStatus|RFC1274: organizational "
1600
+ "status"
1601
+ msgstr ""
1602
+
1603
+ #: -:-
1604
+ msgid ""
1605
+ "LDAP|Description|Attribute|ou|RFC2256: organizational unit this object "
1606
+ "belongs to"
1607
+ msgstr ""
1608
+
1609
+ #: -:-
1610
+ msgid "LDAP|Description|Attribute|owner|RFC2256: owner (of the object)"
1611
+ msgstr ""
1612
+
1613
+ #: -:-
1614
+ msgid ""
1615
+ "LDAP|Description|Attribute|o|RFC2256: organization this object belongs to"
1616
+ msgstr ""
1617
+
1618
+ #: -:-
1619
+ msgid "LDAP|Description|Attribute|pager|RFC1274: pager telephone number"
1620
+ msgstr ""
1621
+
1622
+ #: -:-
1623
+ msgid ""
1624
+ "LDAP|Description|Attribute|personalSignature|RFC1274: Personal Signature (G3 "
1625
+ "fax)"
1626
+ msgstr ""
1627
+
1628
+ #: -:-
1629
+ msgid "LDAP|Description|Attribute|personalTitle|RFC1274: personal title"
1630
+ msgstr ""
1631
+
1632
+ #: -:-
1633
+ msgid "LDAP|Description|Attribute|photo|RFC1274: photo (G3 fax)"
1634
+ msgstr ""
1635
+
1636
+ #: -:-
1637
+ msgid ""
1638
+ "LDAP|Description|Attribute|physicalDeliveryOfficeName|RFC2256: Physical "
1639
+ "Delivery Office Name"
1640
+ msgstr ""
1641
+
1642
+ #: -:-
1643
+ msgid "LDAP|Description|Attribute|postOfficeBox|RFC2256: Post Office Box"
1644
+ msgstr ""
1645
+
1646
+ #: -:-
1647
+ msgid "LDAP|Description|Attribute|postalAddress|RFC2256: postal address"
1648
+ msgstr ""
1649
+
1650
+ #: -:-
1651
+ msgid "LDAP|Description|Attribute|postalCode|RFC2256: postal code"
1652
+ msgstr ""
1653
+
1654
+ #: -:-
1655
+ msgid ""
1656
+ "LDAP|Description|Attribute|preferredDeliveryMethod|RFC2256: preferred "
1657
+ "delivery method"
1658
+ msgstr ""
1659
+
1660
+ #: -:-
1661
+ msgid ""
1662
+ "LDAP|Description|Attribute|preferredLanguage|RFC2798: preferred written or "
1663
+ "spoken language for a person"
1664
+ msgstr ""
1665
+
1666
+ #: -:-
1667
+ msgid ""
1668
+ "LDAP|Description|Attribute|presentationAddress|RFC2256: presentation address"
1669
+ msgstr ""
1670
+
1671
+ #: -:-
1672
+ msgid "LDAP|Description|Attribute|ref|namedref: subordinate referral URL"
1673
+ msgstr ""
1674
+
1675
+ #: -:-
1676
+ msgid ""
1677
+ "LDAP|Description|Attribute|registeredAddress|RFC2256: registered postal "
1678
+ "address"
1679
+ msgstr ""
1680
+
1681
+ #: -:-
1682
+ msgid "LDAP|Description|Attribute|roleOccupant|RFC2256: occupant of role"
1683
+ msgstr ""
1684
+
1685
+ #: -:-
1686
+ msgid "LDAP|Description|Attribute|roomNumber|RFC1274: room number"
1687
+ msgstr ""
1688
+
1689
+ #: -:-
1690
+ msgid "LDAP|Description|Attribute|sambaAcctFlags|Account Flags"
1691
+ msgstr ""
1692
+
1693
+ #: -:-
1694
+ msgid ""
1695
+ "LDAP|Description|Attribute|sambaAlgorithmicRidBase|Base at which the samba "
1696
+ "RID generation algorithm should operate"
1697
+ msgstr ""
1698
+
1699
+ #: -:-
1700
+ msgid ""
1701
+ "LDAP|Description|Attribute|sambaBadPasswordCount|Bad password attempt count"
1702
+ msgstr ""
1703
+
1704
+ #: -:-
1705
+ msgid ""
1706
+ "LDAP|Description|Attribute|sambaBadPasswordTime|Time of the last bad "
1707
+ "password attempt"
1708
+ msgstr ""
1709
+
1710
+ #: -:-
1711
+ msgid "LDAP|Description|Attribute|sambaBoolOption|A boolean option"
1712
+ msgstr ""
1713
+
1714
+ #: -:-
1715
+ msgid ""
1716
+ "LDAP|Description|Attribute|sambaDomainName|Windows NT domain to which the "
1717
+ "user belongs"
1718
+ msgstr ""
1719
+
1720
+ #: -:-
1721
+ msgid ""
1722
+ "LDAP|Description|Attribute|sambaForceLogoff|Disconnect Users outside logon "
1723
+ "hours (default: -1 => off, 0 => on)"
1724
+ msgstr ""
1725
+
1726
+ #: -:-
1727
+ msgid "LDAP|Description|Attribute|sambaGroupType|NT Group Type"
1728
+ msgstr ""
1729
+
1730
+ #: -:-
1731
+ msgid ""
1732
+ "LDAP|Description|Attribute|sambaHomeDrive|Driver letter of home directory "
1733
+ "mapping"
1734
+ msgstr ""
1735
+
1736
+ #: -:-
1737
+ msgid "LDAP|Description|Attribute|sambaHomePath|Home directory UNC path"
1738
+ msgstr ""
1739
+
1740
+ #: -:-
1741
+ msgid "LDAP|Description|Attribute|sambaIntegerOption|An integer option"
1742
+ msgstr ""
1743
+
1744
+ #: -:-
1745
+ msgid ""
1746
+ "LDAP|Description|Attribute|sambaKickoffTime|Timestamp of when the user will "
1747
+ "be logged off automatically"
1748
+ msgstr ""
1749
+
1750
+ #: -:-
1751
+ msgid "LDAP|Description|Attribute|sambaLMPassword|LanManager Password"
1752
+ msgstr ""
1753
+
1754
+ #: -:-
1755
+ msgid ""
1756
+ "LDAP|Description|Attribute|sambaLockoutDuration|Lockout duration in minutes "
1757
+ "(default: 30, -1 => forever)"
1758
+ msgstr ""
1759
+
1760
+ #: -:-
1761
+ msgid ""
1762
+ "LDAP|Description|Attribute|sambaLockoutObservationWindow|Reset time after "
1763
+ "lockout in minutes (default: 30)"
1764
+ msgstr ""
1765
+
1766
+ #: -:-
1767
+ msgid ""
1768
+ "LDAP|Description|Attribute|sambaLockoutThreshold|Lockout users after bad "
1769
+ "logon attempts (default: 0 => off)"
1770
+ msgstr ""
1771
+
1772
+ #: -:-
1773
+ msgid "LDAP|Description|Attribute|sambaLogoffTime|Timestamp of last logoff"
1774
+ msgstr ""
1775
+
1776
+ #: -:-
1777
+ msgid "LDAP|Description|Attribute|sambaLogonHours|Logon Hours"
1778
+ msgstr ""
1779
+
1780
+ #: -:-
1781
+ msgid "LDAP|Description|Attribute|sambaLogonScript|Logon script path"
1782
+ msgstr ""
1783
+
1784
+ #: -:-
1785
+ msgid "LDAP|Description|Attribute|sambaLogonTime|Timestamp of last logon"
1786
+ msgstr ""
1787
+
1788
+ #: -:-
1789
+ msgid ""
1790
+ "LDAP|Description|Attribute|sambaLogonToChgPwd|Force Users to logon for "
1791
+ "password change (default: 0 => off, 2 => on)"
1792
+ msgstr ""
1793
+
1794
+ #: -:-
1795
+ msgid ""
1796
+ "LDAP|Description|Attribute|sambaMaxPwdAge|Maximum password age, in seconds "
1797
+ "(default: -1 => never expire passwords)"
1798
+ msgstr ""
1799
+
1800
+ #: -:-
1801
+ msgid ""
1802
+ "LDAP|Description|Attribute|sambaMinPwdAge|Minimum password age, in seconds "
1803
+ "(default: 0 => allow immediate password change)"
1804
+ msgstr ""
1805
+
1806
+ #: -:-
1807
+ msgid ""
1808
+ "LDAP|Description|Attribute|sambaMinPwdLength|Minimal password length "
1809
+ "(default: 5)"
1810
+ msgstr ""
1811
+
1812
+ #: -:-
1813
+ msgid ""
1814
+ "LDAP|Description|Attribute|sambaMungedDial|Base64 encoded user parameter "
1815
+ "string"
1816
+ msgstr ""
1817
+
1818
+ #: -:-
1819
+ msgid ""
1820
+ "LDAP|Description|Attribute|sambaNTPassword|MD4 hash of the unicode password"
1821
+ msgstr ""
1822
+
1823
+ #: -:-
1824
+ msgid ""
1825
+ "LDAP|Description|Attribute|sambaNextGroupRid|Next NT rid to give out for "
1826
+ "groups"
1827
+ msgstr ""
1828
+
1829
+ #: -:-
1830
+ msgid ""
1831
+ "LDAP|Description|Attribute|sambaNextRid|Next NT rid to give out for anything"
1832
+ msgstr ""
1833
+
1834
+ #: -:-
1835
+ msgid ""
1836
+ "LDAP|Description|Attribute|sambaNextUserRid|Next NT rid to give our for users"
1837
+ msgstr ""
1838
+
1839
+ #: -:-
1840
+ msgid "LDAP|Description|Attribute|sambaOptionName|Option Name"
1841
+ msgstr ""
1842
+
1843
+ #: -:-
1844
+ msgid ""
1845
+ "LDAP|Description|Attribute|sambaPasswordHistory|Concatenated MD4 hashes of "
1846
+ "the unicode passwords used on this account"
1847
+ msgstr ""
1848
+
1849
+ #: -:-
1850
+ msgid ""
1851
+ "LDAP|Description|Attribute|sambaPrimaryGroupSID|Primary Group Security ID"
1852
+ msgstr ""
1853
+
1854
+ #: -:-
1855
+ msgid "LDAP|Description|Attribute|sambaProfilePath|Roaming profile path"
1856
+ msgstr ""
1857
+
1858
+ #: -:-
1859
+ msgid ""
1860
+ "LDAP|Description|Attribute|sambaPwdCanChange|Timestamp of when the user is "
1861
+ "allowed to update the password"
1862
+ msgstr ""
1863
+
1864
+ #: -:-
1865
+ msgid ""
1866
+ "LDAP|Description|Attribute|sambaPwdHistoryLength|Length of Password History "
1867
+ "Entries (default: 0 => off)"
1868
+ msgstr ""
1869
+
1870
+ #: -:-
1871
+ msgid ""
1872
+ "LDAP|Description|Attribute|sambaPwdLastSet|Timestamp of the last password "
1873
+ "update"
1874
+ msgstr ""
1875
+
1876
+ #: -:-
1877
+ msgid ""
1878
+ "LDAP|Description|Attribute|sambaPwdMustChange|Timestamp of when the password "
1879
+ "will expire"
1880
+ msgstr ""
1881
+
1882
+ #: -:-
1883
+ msgid ""
1884
+ "LDAP|Description|Attribute|sambaRefuseMachinePwdChange|Allow Machine "
1885
+ "Password changes (default: 0 => off)"
1886
+ msgstr ""
1887
+
1888
+ #: -:-
1889
+ msgid "LDAP|Description|Attribute|sambaSIDList|Security ID List"
1890
+ msgstr ""
1891
+
1892
+ #: -:-
1893
+ msgid "LDAP|Description|Attribute|sambaSID|Security ID"
1894
+ msgstr ""
1895
+
1896
+ #: -:-
1897
+ msgid "LDAP|Description|Attribute|sambaShareName|Share Name"
1898
+ msgstr ""
1899
+
1900
+ #: -:-
1901
+ msgid "LDAP|Description|Attribute|sambaStringListOption|A string list option"
1902
+ msgstr ""
1903
+
1904
+ #: -:-
1905
+ msgid "LDAP|Description|Attribute|sambaStringOption|A string option"
1906
+ msgstr ""
1907
+
1908
+ #: -:-
1909
+ msgid "LDAP|Description|Attribute|sambaTrustFlags|Trust Password Flags"
1910
+ msgstr ""
1911
+
1912
+ #: -:-
1913
+ msgid ""
1914
+ "LDAP|Description|Attribute|sambaUserWorkstations|List of user workstations "
1915
+ "the user is allowed to logon to"
1916
+ msgstr ""
1917
+
1918
+ #: -:-
1919
+ msgid ""
1920
+ "LDAP|Description|Attribute|searchGuide|RFC2256: search guide, deprecated by "
1921
+ "enhancedSearchGuide"
1922
+ msgstr ""
1923
+
1924
+ #: -:-
1925
+ msgid "LDAP|Description|Attribute|secretary|RFC1274: DN of secretary"
1926
+ msgstr ""
1927
+
1928
+ #: -:-
1929
+ msgid "LDAP|Description|Attribute|seeAlso|RFC2256: DN of related object"
1930
+ msgstr ""
1931
+
1932
+ #: -:-
1933
+ msgid ""
1934
+ "LDAP|Description|Attribute|serialNumber|RFC2256: serial number of the entity"
1935
+ msgstr ""
1936
+
1937
+ #: -:-
1938
+ msgid ""
1939
+ "LDAP|Description|Attribute|sn|RFC2256: last (family) name(s) for which the "
1940
+ "entity is known by"
1941
+ msgstr ""
1942
+
1943
+ #: -:-
1944
+ msgid ""
1945
+ "LDAP|Description|Attribute|street|RFC2256: street address of this object"
1946
+ msgstr ""
1947
+
1948
+ #: -:-
1949
+ msgid ""
1950
+ "LDAP|Description|Attribute|st|RFC2256: state or province which this object "
1951
+ "resides in"
1952
+ msgstr ""
1953
+
1954
+ #: -:-
1955
+ msgid ""
1956
+ "LDAP|Description|Attribute|subtreeMaximumQuality|RFC1274: Subtree Maximun "
1957
+ "Quality"
1958
+ msgstr ""
1959
+
1960
+ #: -:-
1961
+ msgid ""
1962
+ "LDAP|Description|Attribute|subtreeMinimumQuality|RFC1274: Subtree Mininum "
1963
+ "Quality"
1964
+ msgstr ""
1965
+
1966
+ #: -:-
1967
+ msgid ""
1968
+ "LDAP|Description|Attribute|supportedAlgorithms|RFC2256: supported algorithms"
1969
+ msgstr ""
1970
+
1971
+ #: -:-
1972
+ msgid ""
1973
+ "LDAP|Description|Attribute|supportedApplicationContext|RFC2256: supported "
1974
+ "application context"
1975
+ msgstr ""
1976
+
1977
+ #: -:-
1978
+ msgid "LDAP|Description|Attribute|telephoneNumber|RFC2256: Telephone Number"
1979
+ msgstr ""
1980
+
1981
+ #: -:-
1982
+ msgid ""
1983
+ "LDAP|Description|Attribute|teletexTerminalIdentifier|RFC2256: Teletex "
1984
+ "Terminal Identifier"
1985
+ msgstr ""
1986
+
1987
+ #: -:-
1988
+ msgid "LDAP|Description|Attribute|telexNumber|RFC2256: Telex Number"
1989
+ msgstr ""
1990
+
1991
+ #: -:-
1992
+ msgid ""
1993
+ "LDAP|Description|Attribute|title|RFC2256: title associated with the entity"
1994
+ msgstr ""
1995
+
1996
+ #: -:-
1997
+ msgid ""
1998
+ "LDAP|Description|Attribute|uidNumber|An integer uniquely identifying a user "
1999
+ "in an administrative domain"
2000
+ msgstr ""
2001
+
2002
+ #: -:-
2003
+ msgid "LDAP|Description|Attribute|uid|RFC1274: user identifier"
2004
+ msgstr ""
2005
+
2006
+ #: -:-
2007
+ msgid ""
2008
+ "LDAP|Description|Attribute|uniqueMember|RFC2256: unique member of a group"
2009
+ msgstr ""
2010
+
2011
+ #: -:-
2012
+ msgid ""
2013
+ "LDAP|Description|Attribute|userCertificate|RFC2256: X.509 user certificate, "
2014
+ "use ;binary"
2015
+ msgstr ""
2016
+
2017
+ #: -:-
2018
+ msgid "LDAP|Description|Attribute|userClass|RFC1274: category of user"
2019
+ msgstr ""
2020
+
2021
+ #: -:-
2022
+ msgid ""
2023
+ "LDAP|Description|Attribute|userPKCS12|RFC2798: personal identity "
2024
+ "information, a PKCS #12 PFX"
2025
+ msgstr ""
2026
+
2027
+ #: -:-
2028
+ msgid "LDAP|Description|Attribute|userPassword|RFC2256/2307: password of user"
2029
+ msgstr ""
2030
+
2031
+ #: -:-
2032
+ msgid ""
2033
+ "LDAP|Description|Attribute|userSMIMECertificate|RFC2798: PKCS#7 SignedData "
2034
+ "used to support S/MIME"
2035
+ msgstr ""
2036
+
2037
+ #: -:-
2038
+ msgid "LDAP|Description|Attribute|x121Address|RFC2256: X.121 Address"
2039
+ msgstr ""
2040
+
2041
+ #: -:-
2042
+ msgid ""
2043
+ "LDAP|Description|Attribute|x500UniqueIdentifier|RFC2256: X.500 unique "
2044
+ "identifier"
2045
+ msgstr ""
2046
+
2047
+ #: -:-
2048
+ msgid "LDAP|Description|ObjectClass|OpenLDAProotDSE|OpenLDAP Root DSE object"
2049
+ msgstr ""
2050
+
2051
+ #: -:-
2052
+ msgid "LDAP|Description|ObjectClass|alias|RFC2256: an alias"
2053
+ msgstr ""
2054
+
2055
+ #: -:-
2056
+ msgid ""
2057
+ "LDAP|Description|ObjectClass|applicationEntity|RFC2256: an application entity"
2058
+ msgstr ""
2059
+
2060
+ #: -:-
2061
+ msgid ""
2062
+ "LDAP|Description|ObjectClass|applicationProcess|RFC2256: an application "
2063
+ "process"
2064
+ msgstr ""
2065
+
2066
+ #: -:-
2067
+ msgid ""
2068
+ "LDAP|Description|ObjectClass|bootableDevice|A device with boot parameters"
2069
+ msgstr ""
2070
+
2071
+ #: -:-
2072
+ msgid ""
2073
+ "LDAP|Description|ObjectClass|certificationAuthority|RFC2256: a certificate "
2074
+ "authority"
2075
+ msgstr ""
2076
+
2077
+ #: -:-
2078
+ msgid "LDAP|Description|ObjectClass|country|RFC2256: a country"
2079
+ msgstr ""
2080
+
2081
+ #: -:-
2082
+ msgid ""
2083
+ "LDAP|Description|ObjectClass|dSA|RFC2256: a directory system agent (a server)"
2084
+ msgstr ""
2085
+
2086
+ #: -:-
2087
+ msgid "LDAP|Description|ObjectClass|dcObject|RFC2247: domain component object"
2088
+ msgstr ""
2089
+
2090
+ #: -:-
2091
+ msgid "LDAP|Description|ObjectClass|deltaCRL|RFC2587: PKI user"
2092
+ msgstr ""
2093
+
2094
+ #: -:-
2095
+ msgid "LDAP|Description|ObjectClass|device|RFC2256: a device"
2096
+ msgstr ""
2097
+
2098
+ #: -:-
2099
+ msgid ""
2100
+ "LDAP|Description|ObjectClass|domainRelatedObject|RFC1274: an object related "
2101
+ "to an domain"
2102
+ msgstr ""
2103
+
2104
+ #: -:-
2105
+ msgid ""
2106
+ "LDAP|Description|ObjectClass|extensibleObject|RFC2252: extensible object"
2107
+ msgstr ""
2108
+
2109
+ #: -:-
2110
+ msgid ""
2111
+ "LDAP|Description|ObjectClass|groupOfNames|RFC2256: a group of names (DNs)"
2112
+ msgstr ""
2113
+
2114
+ #: -:-
2115
+ msgid ""
2116
+ "LDAP|Description|ObjectClass|groupOfUniqueNames|RFC2256: a group of unique "
2117
+ "names (DN and Unique Identifier)"
2118
+ msgstr ""
2119
+
2120
+ #: -:-
2121
+ msgid "LDAP|Description|ObjectClass|ieee802Device|A device with a MAC address"
2122
+ msgstr ""
2123
+
2124
+ #: -:-
2125
+ msgid ""
2126
+ "LDAP|Description|ObjectClass|inetOrgPerson|RFC2798: Internet Organizational "
2127
+ "Person"
2128
+ msgstr ""
2129
+
2130
+ #: -:-
2131
+ msgid "LDAP|Description|ObjectClass|ipHost|Abstraction of a host, an IP device"
2132
+ msgstr ""
2133
+
2134
+ #: -:-
2135
+ msgid "LDAP|Description|ObjectClass|ipNetwork|Abstraction of an IP network"
2136
+ msgstr ""
2137
+
2138
+ #: -:-
2139
+ msgid "LDAP|Description|ObjectClass|ipProtocol|Abstraction of an IP protocol"
2140
+ msgstr ""
2141
+
2142
+ #: -:-
2143
+ msgid ""
2144
+ "LDAP|Description|ObjectClass|ipService|Abstraction an Internet Protocol "
2145
+ "service"
2146
+ msgstr ""
2147
+
2148
+ #: -:-
2149
+ msgid ""
2150
+ "LDAP|Description|ObjectClass|labeledURIObject|RFC2079: object that contains "
2151
+ "the URI attribute type"
2152
+ msgstr ""
2153
+
2154
+ #: -:-
2155
+ msgid "LDAP|Description|ObjectClass|locality|RFC2256: a locality"
2156
+ msgstr ""
2157
+
2158
+ #: -:-
2159
+ msgid "LDAP|Description|ObjectClass|nisMap|A generic abstraction of a NIS map"
2160
+ msgstr ""
2161
+
2162
+ #: -:-
2163
+ msgid "LDAP|Description|ObjectClass|nisNetgroup|Abstraction of a netgroup"
2164
+ msgstr ""
2165
+
2166
+ #: -:-
2167
+ msgid "LDAP|Description|ObjectClass|nisObject|An entry in a NIS map"
2168
+ msgstr ""
2169
+
2170
+ #: -:-
2171
+ msgid ""
2172
+ "LDAP|Description|ObjectClass|olcBackendConfig|OpenLDAP Backend-specific "
2173
+ "options"
2174
+ msgstr ""
2175
+
2176
+ #: -:-
2177
+ msgid "LDAP|Description|ObjectClass|olcConfig|OpenLDAP configuration object"
2178
+ msgstr ""
2179
+
2180
+ #: -:-
2181
+ msgid ""
2182
+ "LDAP|Description|ObjectClass|olcDatabaseConfig|OpenLDAP Database-specific "
2183
+ "options"
2184
+ msgstr ""
2185
+
2186
+ #: -:-
2187
+ msgid ""
2188
+ "LDAP|Description|ObjectClass|olcFrontendConfig|OpenLDAP frontend "
2189
+ "configuration"
2190
+ msgstr ""
2191
+
2192
+ #: -:-
2193
+ msgid ""
2194
+ "LDAP|Description|ObjectClass|olcGlobal|OpenLDAP Global configuration options"
2195
+ msgstr ""
2196
+
2197
+ #: -:-
2198
+ msgid "LDAP|Description|ObjectClass|olcHdbConfig|HDB backend configuration"
2199
+ msgstr ""
2200
+
2201
+ #: -:-
2202
+ msgid ""
2203
+ "LDAP|Description|ObjectClass|olcIncludeFile|OpenLDAP configuration include "
2204
+ "file"
2205
+ msgstr ""
2206
+
2207
+ #: -:-
2208
+ msgid "LDAP|Description|ObjectClass|olcLdifConfig|LDIF backend configuration"
2209
+ msgstr ""
2210
+
2211
+ #: -:-
2212
+ msgid "LDAP|Description|ObjectClass|olcModuleList|OpenLDAP dynamic module info"
2213
+ msgstr ""
2214
+
2215
+ #: -:-
2216
+ msgid ""
2217
+ "LDAP|Description|ObjectClass|olcOverlayConfig|OpenLDAP Overlay-specific "
2218
+ "options"
2219
+ msgstr ""
2220
+
2221
+ #: -:-
2222
+ msgid "LDAP|Description|ObjectClass|olcSchemaConfig|OpenLDAP schema object"
2223
+ msgstr ""
2224
+
2225
+ #: -:-
2226
+ msgid "LDAP|Description|ObjectClass|oncRpc|Abstraction of an ONC/RPC binding"
2227
+ msgstr ""
2228
+
2229
+ #: -:-
2230
+ msgid ""
2231
+ "LDAP|Description|ObjectClass|organizationalPerson|RFC2256: an organizational "
2232
+ "person"
2233
+ msgstr ""
2234
+
2235
+ #: -:-
2236
+ msgid ""
2237
+ "LDAP|Description|ObjectClass|organizationalRole|RFC2256: an organizational "
2238
+ "role"
2239
+ msgstr ""
2240
+
2241
+ #: -:-
2242
+ msgid ""
2243
+ "LDAP|Description|ObjectClass|organizationalUnit|RFC2256: an organizational "
2244
+ "unit"
2245
+ msgstr ""
2246
+
2247
+ #: -:-
2248
+ msgid "LDAP|Description|ObjectClass|organization|RFC2256: an organization"
2249
+ msgstr ""
2250
+
2251
+ #: -:-
2252
+ msgid "LDAP|Description|ObjectClass|person|RFC2256: a person"
2253
+ msgstr ""
2254
+
2255
+ #: -:-
2256
+ msgid "LDAP|Description|ObjectClass|pkiCA|RFC2587: PKI certificate authority"
2257
+ msgstr ""
2258
+
2259
+ #: -:-
2260
+ msgid "LDAP|Description|ObjectClass|pkiUser|RFC2587: a PKI user"
2261
+ msgstr ""
2262
+
2263
+ #: -:-
2264
+ msgid ""
2265
+ "LDAP|Description|ObjectClass|posixAccount|Abstraction of an account with "
2266
+ "POSIX attributes"
2267
+ msgstr ""
2268
+
2269
+ #: -:-
2270
+ msgid ""
2271
+ "LDAP|Description|ObjectClass|posixGroup|Abstraction of a group of accounts"
2272
+ msgstr ""
2273
+
2274
+ #: -:-
2275
+ msgid ""
2276
+ "LDAP|Description|ObjectClass|referral|namedref: named subordinate referral"
2277
+ msgstr ""
2278
+
2279
+ #: -:-
2280
+ msgid ""
2281
+ "LDAP|Description|ObjectClass|residentialPerson|RFC2256: an residential person"
2282
+ msgstr ""
2283
+
2284
+ #: -:-
2285
+ msgid ""
2286
+ "LDAP|Description|ObjectClass|sambaConfigOption|Samba Configuration Option"
2287
+ msgstr ""
2288
+
2289
+ #: -:-
2290
+ msgid "LDAP|Description|ObjectClass|sambaConfig|Samba Configuration Section"
2291
+ msgstr ""
2292
+
2293
+ #: -:-
2294
+ msgid "LDAP|Description|ObjectClass|sambaDomain|Samba Domain Information"
2295
+ msgstr ""
2296
+
2297
+ #: -:-
2298
+ msgid "LDAP|Description|ObjectClass|sambaGroupMapping|Samba Group Mapping"
2299
+ msgstr ""
2300
+
2301
+ #: -:-
2302
+ msgid ""
2303
+ "LDAP|Description|ObjectClass|sambaIdmapEntry|Mapping from a SID to an ID"
2304
+ msgstr ""
2305
+
2306
+ #: -:-
2307
+ msgid ""
2308
+ "LDAP|Description|ObjectClass|sambaSamAccount|Samba 3.0 Auxilary SAM Account"
2309
+ msgstr ""
2310
+
2311
+ #: -:-
2312
+ msgid "LDAP|Description|ObjectClass|sambaShare|Samba Share Section"
2313
+ msgstr ""
2314
+
2315
+ #: -:-
2316
+ msgid "LDAP|Description|ObjectClass|sambaSidEntry|Structural Class for a SID"
2317
+ msgstr ""
2318
+
2319
+ #: -:-
2320
+ msgid "LDAP|Description|ObjectClass|sambaTrustPassword|Samba Trust Password"
2321
+ msgstr ""
2322
+
2323
+ #: -:-
2324
+ msgid ""
2325
+ "LDAP|Description|ObjectClass|sambaUnixIdPool|Pool for allocating UNIX uids/"
2326
+ "gids"
2327
+ msgstr ""
2328
+
2329
+ #: -:-
2330
+ msgid ""
2331
+ "LDAP|Description|ObjectClass|shadowAccount|Additional attributes for shadow "
2332
+ "passwords"
2333
+ msgstr ""
2334
+
2335
+ #: -:-
2336
+ msgid ""
2337
+ "LDAP|Description|ObjectClass|simpleSecurityObject|RFC1274: simple security "
2338
+ "object"
2339
+ msgstr ""
2340
+
2341
+ #: -:-
2342
+ msgid ""
2343
+ "LDAP|Description|ObjectClass|strongAuthenticationUser|RFC2256: a strong "
2344
+ "authentication user"
2345
+ msgstr ""
2346
+
2347
+ #: -:-
2348
+ msgid ""
2349
+ "LDAP|Description|ObjectClass|subschema|RFC2252: controlling subschema (sub)"
2350
+ "entry"
2351
+ msgstr ""
2352
+
2353
+ #: -:-
2354
+ msgid "LDAP|Description|ObjectClass|top|top of the superclass chain"
2355
+ msgstr ""
2356
+
2357
+ #: -:-
2358
+ msgid "LDAP|Description|ObjectClass|uidObject|RFC2377: uid object"
2359
+ msgstr ""
2360
+
2361
+ #: -:-
2362
+ msgid ""
2363
+ "LDAP|Description|ObjectClass|userSecurityInformation|RFC2256: a user "
2364
+ "security information"
2365
+ msgstr ""
2366
+
2367
+ #: -:-
2368
+ msgid "LDAP|ObjectClass|LDAProotDSE"
2369
+ msgstr ""
2370
+
2371
+ #: -:-
2372
+ msgid "LDAP|ObjectClass|OpenLDAProotDSE"
2373
+ msgstr ""
2374
+
2375
+ #: -:-
2376
+ msgid "LDAP|ObjectClass|RFC822localPart"
2377
+ msgstr ""
2378
+
2379
+ #: -:-
2380
+ msgid "LDAP|ObjectClass|account"
2381
+ msgstr ""
2382
+
2383
+ #: -:-
2384
+ msgid "LDAP|ObjectClass|alias"
2385
+ msgstr ""
2386
+
2387
+ #: -:-
2388
+ msgid "LDAP|ObjectClass|applicationEntity"
2389
+ msgstr ""
2390
+
2391
+ #: -:-
2392
+ msgid "LDAP|ObjectClass|applicationProcess"
2393
+ msgstr ""
2394
+
2395
+ #: -:-
2396
+ msgid "LDAP|ObjectClass|bootableDevice"
2397
+ msgstr ""
2398
+
2399
+ #: -:-
2400
+ msgid "LDAP|ObjectClass|cRLDistributionPoint"
2401
+ msgstr ""
2402
+
2403
+ #: -:-
2404
+ msgid "LDAP|ObjectClass|certificationAuthority"
2405
+ msgstr ""
2406
+
2407
+ #: -:-
2408
+ msgid "LDAP|ObjectClass|certificationAuthority-V2"
2409
+ msgstr ""
2410
+
2411
+ #: -:-
2412
+ msgid "LDAP|ObjectClass|country"
2413
+ msgstr ""
2414
+
2415
+ #: -:-
2416
+ msgid "LDAP|ObjectClass|dNSDomain"
2417
+ msgstr ""
2418
+
2419
+ #: -:-
2420
+ msgid "LDAP|ObjectClass|dSA"
2421
+ msgstr ""
2422
+
2423
+ #: -:-
2424
+ msgid "LDAP|ObjectClass|dcObject"
2425
+ msgstr ""
2426
+
2427
+ #: -:-
2428
+ msgid "LDAP|ObjectClass|deltaCRL"
2429
+ msgstr ""
2430
+
2431
+ #: -:-
2432
+ msgid "LDAP|ObjectClass|device"
2433
+ msgstr ""
2434
+
2435
+ #: -:-
2436
+ msgid "LDAP|ObjectClass|dmd"
2437
+ msgstr ""
2438
+
2439
+ #: -:-
2440
+ msgid "LDAP|ObjectClass|document"
2441
+ msgstr ""
2442
+
2443
+ #: -:-
2444
+ msgid "LDAP|ObjectClass|documentSeries"
2445
+ msgstr ""
2446
+
2447
+ #: -:-
2448
+ msgid "LDAP|ObjectClass|domain"
2449
+ msgstr ""
2450
+
2451
+ #: -:-
2452
+ msgid "LDAP|ObjectClass|domainRelatedObject"
2453
+ msgstr ""
2454
+
2455
+ #: -:-
2456
+ msgid "LDAP|ObjectClass|extensibleObject"
2457
+ msgstr ""
2458
+
2459
+ #: -:-
2460
+ msgid "LDAP|ObjectClass|friendlyCountry"
2461
+ msgstr ""
2462
+
2463
+ #: -:-
2464
+ msgid "LDAP|ObjectClass|groupOfNames"
2465
+ msgstr ""
2466
+
2467
+ #: -:-
2468
+ msgid "LDAP|ObjectClass|groupOfUniqueNames"
2469
+ msgstr ""
2470
+
2471
+ #: -:-
2472
+ msgid "LDAP|ObjectClass|ieee802Device"
2473
+ msgstr ""
2474
+
2475
+ #: -:-
2476
+ msgid "LDAP|ObjectClass|inetOrgPerson"
2477
+ msgstr ""
2478
+
2479
+ #: -:-
2480
+ msgid "LDAP|ObjectClass|ipHost"
2481
+ msgstr ""
2482
+
2483
+ #: -:-
2484
+ msgid "LDAP|ObjectClass|ipNetwork"
2485
+ msgstr ""
2486
+
2487
+ #: -:-
2488
+ msgid "LDAP|ObjectClass|ipProtocol"
2489
+ msgstr ""
2490
+
2491
+ #: -:-
2492
+ msgid "LDAP|ObjectClass|ipService"
2493
+ msgstr ""
2494
+
2495
+ #: -:-
2496
+ msgid "LDAP|ObjectClass|labeledURIObject"
2497
+ msgstr ""
2498
+
2499
+ #: -:-
2500
+ msgid "LDAP|ObjectClass|locality"
2501
+ msgstr ""
2502
+
2503
+ #: -:-
2504
+ msgid "LDAP|ObjectClass|newPilotPerson"
2505
+ msgstr ""
2506
+
2507
+ #: -:-
2508
+ msgid "LDAP|ObjectClass|nisMap"
2509
+ msgstr ""
2510
+
2511
+ #: -:-
2512
+ msgid "LDAP|ObjectClass|nisNetgroup"
2513
+ msgstr ""
2514
+
2515
+ #: -:-
2516
+ msgid "LDAP|ObjectClass|nisObject"
2517
+ msgstr ""
2518
+
2519
+ #: -:-
2520
+ msgid "LDAP|ObjectClass|olcBackendConfig"
2521
+ msgstr ""
2522
+
2523
+ #: -:-
2524
+ msgid "LDAP|ObjectClass|olcConfig"
2525
+ msgstr ""
2526
+
2527
+ #: -:-
2528
+ msgid "LDAP|ObjectClass|olcDatabaseConfig"
2529
+ msgstr ""
2530
+
2531
+ #: -:-
2532
+ msgid "LDAP|ObjectClass|olcFrontendConfig"
2533
+ msgstr ""
2534
+
2535
+ #: -:-
2536
+ msgid "LDAP|ObjectClass|olcGlobal"
2537
+ msgstr ""
2538
+
2539
+ #: -:-
2540
+ msgid "LDAP|ObjectClass|olcHdbConfig"
2541
+ msgstr ""
2542
+
2543
+ #: -:-
2544
+ msgid "LDAP|ObjectClass|olcIncludeFile"
2545
+ msgstr ""
2546
+
2547
+ #: -:-
2548
+ msgid "LDAP|ObjectClass|olcLdifConfig"
2549
+ msgstr ""
2550
+
2551
+ #: -:-
2552
+ msgid "LDAP|ObjectClass|olcModuleList"
2553
+ msgstr ""
2554
+
2555
+ #: -:-
2556
+ msgid "LDAP|ObjectClass|olcOverlayConfig"
2557
+ msgstr ""
2558
+
2559
+ #: -:-
2560
+ msgid "LDAP|ObjectClass|olcSchemaConfig"
2561
+ msgstr ""
2562
+
2563
+ #: -:-
2564
+ msgid "LDAP|ObjectClass|oncRpc"
2565
+ msgstr ""
2566
+
2567
+ #: -:-
2568
+ msgid "LDAP|ObjectClass|organization"
2569
+ msgstr ""
2570
+
2571
+ #: -:-
2572
+ msgid "LDAP|ObjectClass|organizationalPerson"
2573
+ msgstr ""
2574
+
2575
+ #: -:-
2576
+ msgid "LDAP|ObjectClass|organizationalRole"
2577
+ msgstr ""
2578
+
2579
+ #: -:-
2580
+ msgid "LDAP|ObjectClass|organizationalUnit"
2581
+ msgstr ""
2582
+
2583
+ #: -:-
2584
+ msgid "LDAP|ObjectClass|person"
2585
+ msgstr ""
2586
+
2587
+ #: -:-
2588
+ msgid "LDAP|ObjectClass|pilotDSA"
2589
+ msgstr ""
2590
+
2591
+ #: -:-
2592
+ msgid "LDAP|ObjectClass|pilotOrganization"
2593
+ msgstr ""
2594
+
2595
+ #: -:-
2596
+ msgid "LDAP|ObjectClass|pilotPerson"
2597
+ msgstr ""
2598
+
2599
+ #: -:-
2600
+ msgid "LDAP|ObjectClass|pkiCA"
2601
+ msgstr ""
2602
+
2603
+ #: -:-
2604
+ msgid "LDAP|ObjectClass|pkiUser"
2605
+ msgstr ""
2606
+
2607
+ #: -:-
2608
+ msgid "LDAP|ObjectClass|posixAccount"
2609
+ msgstr ""
2610
+
2611
+ #: -:-
2612
+ msgid "LDAP|ObjectClass|posixGroup"
2613
+ msgstr ""
2614
+
2615
+ #: -:-
2616
+ msgid "LDAP|ObjectClass|qualityLabelledData"
2617
+ msgstr ""
2618
+
2619
+ #: -:-
2620
+ msgid "LDAP|ObjectClass|referral"
2621
+ msgstr ""
2622
+
2623
+ #: -:-
2624
+ msgid "LDAP|ObjectClass|residentialPerson"
2625
+ msgstr ""
2626
+
2627
+ #: -:-
2628
+ msgid "LDAP|ObjectClass|room"
2629
+ msgstr ""
2630
+
2631
+ #: -:-
2632
+ msgid "LDAP|ObjectClass|sambaConfig"
2633
+ msgstr ""
2634
+
2635
+ #: -:-
2636
+ msgid "LDAP|ObjectClass|sambaConfigOption"
2637
+ msgstr ""
2638
+
2639
+ #: -:-
2640
+ msgid "LDAP|ObjectClass|sambaDomain"
2641
+ msgstr ""
2642
+
2643
+ #: -:-
2644
+ msgid "LDAP|ObjectClass|sambaGroupMapping"
2645
+ msgstr ""
2646
+
2647
+ #: -:-
2648
+ msgid "LDAP|ObjectClass|sambaIdmapEntry"
2649
+ msgstr ""
2650
+
2651
+ #: -:-
2652
+ msgid "LDAP|ObjectClass|sambaSamAccount"
2653
+ msgstr ""
2654
+
2655
+ #: -:-
2656
+ msgid "LDAP|ObjectClass|sambaShare"
2657
+ msgstr ""
2658
+
2659
+ #: -:-
2660
+ msgid "LDAP|ObjectClass|sambaSidEntry"
2661
+ msgstr ""
2662
+
2663
+ #: -:-
2664
+ msgid "LDAP|ObjectClass|sambaTrustPassword"
2665
+ msgstr ""
2666
+
2667
+ #: -:-
2668
+ msgid "LDAP|ObjectClass|sambaUnixIdPool"
2669
+ msgstr ""
2670
+
2671
+ #: -:-
2672
+ msgid "LDAP|ObjectClass|shadowAccount"
2673
+ msgstr ""
2674
+
2675
+ #: -:-
2676
+ msgid "LDAP|ObjectClass|simpleSecurityObject"
2677
+ msgstr ""
2678
+
2679
+ #: -:-
2680
+ msgid "LDAP|ObjectClass|strongAuthenticationUser"
2681
+ msgstr ""
2682
+
2683
+ #: -:-
2684
+ msgid "LDAP|ObjectClass|subentry"
2685
+ msgstr ""
2686
+
2687
+ #: -:-
2688
+ msgid "LDAP|ObjectClass|subschema"
2689
+ msgstr ""
2690
+
2691
+ #: -:-
2692
+ msgid "LDAP|ObjectClass|top"
2693
+ msgstr ""
2694
+
2695
+ #: -:-
2696
+ msgid "LDAP|ObjectClass|uidObject"
2697
+ msgstr ""
2698
+
2699
+ #: -:-
2700
+ msgid "LDAP|ObjectClass|userSecurityInformation"
2701
+ msgstr ""
2702
+
2703
+ #: lib/active_ldap/adapter/ldap.rb:84
2704
+ msgid "No matches: filter: %s: attributes: %s"
2705
+ msgstr ""
2706
+
2707
+ #: lib/active_ldap/adapter/ldap.rb:153
2708
+ msgid "LDAP server is down: %s"
2709
+ msgstr ""
2710
+
2711
+ #: lib/active_ldap/adapter/ldap.rb:169 lib/active_ldap/adapter/net_ldap.rb:159
2712
+ msgid "%s is not one of the available connect methods: %s"
2713
+ msgstr ""
2714
+
2715
+ #: lib/active_ldap/adapter/ldap.rb:182 lib/active_ldap/adapter/net_ldap.rb:172
2716
+ msgid "%s is not one of the available LDAP scope: %s"
2717
+ msgstr ""
2718
+
2719
+ #: lib/active_ldap/adapter/ldap.rb:228 lib/active_ldap/adapter/net_ldap.rb:285
2720
+ msgid "unknown type: %s"
2721
+ msgstr ""
2722
+
2723
+ #: lib/active_ldap/adapter/net_ldap.rb:205
2724
+ msgid "unsupported qops: %s"
2725
+ msgstr ""
2726
+
2727
+ #: lib/active_ldap/adapter/base.rb:60
2728
+ msgid "Bound by SASL as %s"
2729
+ msgstr ""
2730
+
2731
+ #: lib/active_ldap/adapter/base.rb:62
2732
+ msgid "Bound by simple as %s"
2733
+ msgstr ""
2734
+
2735
+ #: lib/active_ldap/adapter/base.rb:64
2736
+ msgid "Bound as anonymous"
2737
+ msgstr ""
2738
+
2739
+ #: lib/active_ldap/adapter/base.rb:67
2740
+ msgid "All authentication methods exhausted."
2741
+ msgstr ""
2742
+
2743
+ #: lib/active_ldap/adapter/base.rb:142
2744
+ msgid "Ignore error %s(%s): filter %s: attributes: %s"
2745
+ msgstr ""
2746
+
2747
+ #: lib/active_ldap/adapter/base.rb:160 lib/active_ldap/adapter/base.rb:170
2748
+ msgid "No such entry: %s"
2749
+ msgstr ""
2750
+
2751
+ #: lib/active_ldap/adapter/base.rb:174 lib/active_ldap/adapter/base.rb:176
2752
+ #: lib/active_ldap/adapter/base.rb:178 lib/active_ldap/adapter/base.rb:180
2753
+ #: lib/active_ldap/adapter/base.rb:192
2754
+ msgid "%s: %s"
2755
+ msgstr ""
2756
+
2757
+ #: lib/active_ldap/adapter/base.rb:223
2758
+ msgid "password_block not nil or Proc object. Ignoring."
2759
+ msgstr ""
2760
+
2761
+ #: lib/active_ldap/adapter/base.rb:242
2762
+ msgid "Requested action timed out."
2763
+ msgstr ""
2764
+
2765
+ #: lib/active_ldap/adapter/base.rb:446
2766
+ msgid "invalid logical operator: %s: available operators: %s"
2767
+ msgstr ""
2768
+
2769
+ #: lib/active_ldap/adapter/base.rb:463
2770
+ msgid "Giving up trying to reconnect to LDAP server."
2771
+ msgstr ""
2772
+
2773
+ #: lib/active_ldap/adapter/base.rb:466
2774
+ msgid "Attempting to reconnect"
2775
+ msgstr ""
2776
+
2777
+ #: lib/active_ldap/adapter/base.rb:477
2778
+ msgid ""
2779
+ "Reconnect to server failed: %s\n"
2780
+ "Reconnect to server failed backtrace:\n"
2781
+ "%s"
2782
+ msgstr ""
2783
+
2784
+ #: lib/active_ldap/validations.rb:89
2785
+ msgid "%{fn} is required attribute by objectClass '%s'"
2786
+ msgstr ""
2787
+
2788
+ #: lib/active_ldap/validations.rb:91
2789
+ msgid "%{fn} is required attribute by objectClass '%s': aliases: %s"
2790
+ msgstr ""
2791
+
2792
+ #: lib/active_ldap/command.rb:16
2793
+ msgid "Common options:"
2794
+ msgstr ""
2795
+
2796
+ #: lib/active_ldap/command.rb:19
2797
+ msgid "Specify configuration file written as YAML"
2798
+ msgstr ""
2799
+
2800
+ #: lib/active_ldap/command.rb:25
2801
+ msgid "Show this message"
2802
+ msgstr ""
2803
+
2804
+ #: lib/active_ldap/command.rb:30
2805
+ msgid "Show version"
2806
+ msgstr ""
2807
+
2808
+ #: lib/active_ldap/get_text/parser.rb:87
2809
+ msgid "Ignored '%{file}'. Solve dependencies first."
2810
+ msgstr ""
2811
+
2812
+ #: lib/active_ldap/attributes.rb:34
2813
+ msgid "The first argument, name, must not be nil. Please report this as a bug!"
2814
+ msgstr ""
2815
+
2816
+ #: lib/active_ldap/attributes.rb:79
2817
+ msgid "Attribute %s can only have a single value"
2818
+ msgstr ""
2819
+
2820
+ #: lib/active_ldap/attributes.rb:98
2821
+ msgid "Hashes must have one key-value pair only: %s"
2822
+ msgstr ""
2823
+
2824
+ #: lib/active_ldap/attributes.rb:103
2825
+ msgid "unknown option did not match lang-* or binary: %s"
2826
+ msgstr ""
2827
+
2828
+ #: lib/active_ldap/object_class.rb:51
2829
+ msgid "Value in objectClass array is not a String: %s"
2830
+ msgstr ""
2831
+
2832
+ #: lib/active_ldap/object_class.rb:65
2833
+ msgid "unknown objectClass in LDAP server: %s"
2834
+ msgstr ""
2835
+
2836
+ #: lib/active_ldap/object_class.rb:83
2837
+ msgid "Can't remove required objectClass: %s"
2838
+ msgstr ""
2839
+
2840
+ #: lib/active_ldap/connection.rb:99
2841
+ msgid ":ldap_scope connection option is deprecated. Use :scope instead."
2842
+ msgstr ""
2843
+
2844
+ #: lib/active_ldap/user_password.rb:11
2845
+ msgid "Invalid hashed password: %s"
2846
+ msgstr ""
2847
+
2848
+ #: lib/active_ldap/user_password.rb:17
2849
+ msgid "Unknown Hash type: %s"
2850
+ msgstr ""
2851
+
2852
+ #: lib/active_ldap/user_password.rb:24
2853
+ msgid "Can't extract salt from hashed password: %s"
2854
+ msgstr ""
2855
+
2856
+ #: lib/active_ldap/user_password.rb:52 lib/active_ldap/user_password.rb:69
2857
+ msgid "salt size must be == 4: %s"
2858
+ msgstr ""
2859
+
2860
+ #: lib/active_ldap/schema.rb:44
2861
+ msgid "Unknown schema group: %s"
2862
+ msgstr ""
2863
+
2864
+ #: lib/active_ldap/configuration.rb:59
2865
+ msgid "%s connection is not configured"
2866
+ msgstr ""
2867
+
2868
+ #: lib/active_ldap/configuration.rb:100
2869
+ msgid ":ldap_scope configuration option is deprecated. Use :scope instead."
2870
+ msgstr ""
2871
+
2872
+ #: lib/active_ldap/base.rb:114
2873
+ msgid "%s is invalid distinguished name (DN): %s"
2874
+ msgstr ""
2875
+
2876
+ #: lib/active_ldap/base.rb:116
2877
+ msgid "%s is invalid distinguished name (DN)"
2878
+ msgstr ""
2879
+
2880
+ #: lib/active_ldap/base.rb:150
2881
+ msgid "LDAP configuration specifies nonexistent %s adapter"
2882
+ msgstr ""
2883
+
2884
+ #: lib/active_ldap/base.rb:158
2885
+ msgid "%s is unknown attribute"
2886
+ msgstr ""
2887
+
2888
+ #: lib/active_ldap/base.rb:324
2889
+ msgid "scope '%s' must be a Symbol"
2890
+ msgstr ""
2891
+
2892
+ #: lib/active_ldap/base.rb:499
2893
+ msgid ""
2894
+ "'%s' must be either nil, DN value as String or Array or attributes as Hash"
2895
+ msgstr ""
2896
+
2897
+ #: lib/active_ldap/base.rb:581
2898
+ msgid "%s's DN attribute (%s) isn't set"
2899
+ msgstr ""
2900
+
2901
+ #: lib/active_ldap/base.rb:614
2902
+ msgid "Failed to delete LDAP entry: %s"
2903
+ msgstr ""
2904
+
2905
+ #: lib/active_ldap/base.rb:633
2906
+ msgid "entry %s can't be saved"
2907
+ msgstr ""
2908
+
2909
+ #: lib/active_ldap/base.rb:654 lib/active_ldap/base.rb:665
2910
+ msgid "wrong number of arguments (%d for 1)"
2911
+ msgstr ""
2912
+
2913
+ #: lib/active_ldap/base.rb:781
2914
+ msgid "Can't find DN '%s' to reload"
2915
+ msgstr ""
2916
+
2917
+ #: lib/active_ldap/base.rb:1207
2918
+ msgid "dn_attribute isn't set for this class: %s"
2919
+ msgstr ""
2920
+
2921
+ #: lib/active_ldap/distinguished_name.rb:131
2922
+ msgid "name component is missing"
2923
+ msgstr ""
2924
+
2925
+ #: lib/active_ldap/distinguished_name.rb:135
2926
+ msgid "relative distinguished name (RDN) is missing"
2927
+ msgstr ""
2928
+
2929
+ #: lib/active_ldap/distinguished_name.rb:139
2930
+ msgid "attribute type is missing"
2931
+ msgstr ""
2932
+
2933
+ #: lib/active_ldap/distinguished_name.rb:143
2934
+ msgid "attribute value is missing"
2935
+ msgstr ""
2936
+
2937
+ #: lib/active_ldap/distinguished_name.rb:147
2938
+ msgid "found unmatched quotation"
2939
+ msgstr ""
2940
+
2941
+ #: lib/active_ldap/distinguished_name.rb:172
2942
+ msgid "%s isn't sub DN of %s"
2943
+ msgstr ""
2944
+
2945
+ #: lib/active_ldap/operations.rb:37
2946
+ msgid "Search value must be a String: %s"
2947
+ msgstr ""
2948
+
2949
+ #: lib/active_ldap/operations.rb:49
2950
+ msgid ":ldap_scope search option is deprecated. Use :scope instead."
2951
+ msgstr ""
2952
+
2953
+ #: lib/active_ldap/operations.rb:196
2954
+ msgid "Invalid order: %s"
2955
+ msgstr ""
2956
+
2957
+ #: lib/active_ldap/operations.rb:231
2958
+ msgid "Couldn't find %s without a DN"
2959
+ msgstr ""
2960
+
2961
+ #: lib/active_ldap/operations.rb:251
2962
+ msgid "Couldn't find %s: DN: %s: filter: %s"
2963
+ msgstr ""
2964
+
2965
+ #: lib/active_ldap/operations.rb:254
2966
+ msgid "Couldn't find %s: DN: %s"
2967
+ msgstr ""
2968
+
2969
+ #: lib/active_ldap/operations.rb:280
2970
+ msgid "Couldn't find all %s: DNs (%s): filter: %s"
2971
+ msgstr ""
2972
+
2973
+ #: lib/active_ldap/operations.rb:283
2974
+ msgid "Couldn't find all %s: DNs (%s)"
2975
+ msgstr ""
2976
+
2977
+ #: rails/plugin/active_ldap/init.rb:10
2978
+ msgid "You should run 'script/generator scaffold_al' to make %s."
2979
+ msgstr ""
2980
+
2981
+ #: benchmark/bench-al.rb:14
2982
+ msgid "Specify prefix for benchmarking"
2983
+ msgstr ""
2984
+
2985
+ #: benchmark/bench-al.rb:15
2986
+ msgid "(default: %s)"
2987
+ msgstr ""
2988
+
2989
+ #: benchmark/bench-al.rb:154
2990
+ msgid "Populating..."
2991
+ msgstr ""
2992
+
2993
+ #: benchmark/bench-al.rb:189
2994
+ msgid "Entries processed by Ruby/ActiveLdap: %d"
2995
+ msgstr ""
2996
+
2997
+ #: benchmark/bench-al.rb:190
2998
+ msgid "Entries processed by Ruby/ActiveLdap (without object creation): %d"
2999
+ msgstr ""
3000
+
3001
+ #: benchmark/bench-al.rb:192
3002
+ msgid "Entries processed by Ruby/LDAP: %d"
3003
+ msgstr ""
3004
+
3005
+ #: benchmark/bench-al.rb:193
3006
+ msgid "Entries processed by Net::LDAP: %d"
3007
+ msgstr ""
3008
+
3009
+ #: benchmark/bench-al.rb:196
3010
+ msgid "Cleaning..."
3011
+ msgstr ""