activeldap 0.9.0

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