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