activeldap 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGES +34 -0
- data/README +13 -0
- data/Rakefile +2 -1
- data/TODO +6 -0
- data/benchmark/bench-al.rb +68 -17
- data/examples/al-admin/app/helpers/application_helper.rb +3 -5
- data/examples/al-admin/app/views/layouts/_footer.html.erb +2 -0
- data/examples/al-admin/config/boot.rb +7 -7
- data/examples/al-admin/config/environment.rb +27 -12
- data/examples/al-admin/config/environments/development.rb +0 -1
- data/examples/al-admin/config/environments/production.rb +6 -1
- data/examples/al-admin/config/environments/test.rb +1 -1
- data/examples/al-admin/config/initializers/gettext.rb +15 -1
- data/examples/al-admin/po/en/al-admin.po +1 -1
- data/examples/al-admin/po/ja/al-admin.po +1 -1
- data/examples/al-admin/po/nl/al-admin.po +1 -1
- data/examples/al-admin/public/dispatch.cgi +0 -0
- data/examples/al-admin/public/dispatch.fcgi +0 -0
- data/examples/al-admin/public/dispatch.rb +0 -0
- data/examples/al-admin/public/javascripts/controls.js +73 -73
- data/examples/al-admin/public/javascripts/dragdrop.js +166 -165
- data/examples/al-admin/public/javascripts/effects.js +174 -166
- data/examples/al-admin/public/javascripts/prototype.js +362 -267
- data/examples/al-admin/script/about +0 -0
- data/examples/al-admin/script/console +0 -0
- data/examples/al-admin/script/dbconsole +3 -0
- data/examples/al-admin/script/destroy +0 -0
- data/examples/al-admin/script/generate +0 -0
- data/examples/al-admin/script/performance/benchmarker +0 -0
- data/examples/al-admin/script/performance/profiler +0 -0
- data/examples/al-admin/script/performance/request +0 -0
- data/examples/al-admin/script/plugin +0 -0
- data/examples/al-admin/script/process/inspector +0 -0
- data/examples/al-admin/script/process/reaper +0 -0
- data/examples/al-admin/script/process/spawner +0 -0
- data/examples/al-admin/script/runner +0 -0
- data/examples/al-admin/script/server +0 -0
- data/examples/al-admin/test/run-test.sh +0 -0
- data/examples/groupadd +0 -0
- data/examples/groupdel +0 -0
- data/examples/groupls +0 -0
- data/examples/groupmod +0 -0
- data/examples/lpasswd +0 -0
- data/examples/ouadd +0 -0
- data/examples/useradd +0 -0
- data/examples/useradd-binary +0 -0
- data/examples/userdel +0 -0
- data/examples/userls +0 -0
- data/examples/usermod +0 -0
- data/examples/usermod-binary-add +0 -0
- data/examples/usermod-binary-add-time +0 -0
- data/examples/usermod-binary-del +0 -0
- data/examples/usermod-lang-add +0 -0
- data/lib/active_ldap.rb +10 -4
- data/lib/active_ldap/action_controller/ldap_benchmarking.rb +28 -9
- data/lib/active_ldap/adapter/base.rb +30 -17
- data/lib/active_ldap/adapter/jndi.rb +5 -1
- data/lib/active_ldap/adapter/ldap.rb +5 -1
- data/lib/active_ldap/association/has_many_utils.rb +7 -1
- data/lib/active_ldap/associations.rb +10 -5
- data/lib/active_ldap/attributes.rb +6 -1
- data/lib/active_ldap/base.rb +154 -52
- data/lib/active_ldap/configuration.rb +1 -1
- data/lib/active_ldap/connection.rb +7 -4
- data/lib/active_ldap/get_text.rb +11 -3
- data/lib/active_ldap/ldif.rb +16 -4
- data/lib/active_ldap/operations.rb +13 -5
- data/lib/active_ldap/schema.rb +6 -2
- data/lib/active_ldap/schema/syntaxes.rb +15 -3
- data/lib/active_ldap/user_password.rb +4 -4
- data/lib/active_ldap/validations.rb +32 -44
- data/lib/active_ldap/xml.rb +125 -0
- data/po/en/active-ldap.po +740 -85
- data/po/ja/active-ldap.po +748 -547
- data/rails/README +54 -0
- data/rails/init.rb +33 -0
- data/rails/plugin/active_ldap/generators/README +2 -0
- data/rails/plugin/active_ldap/generators/model_active_ldap/model_active_ldap_generator.rb +1 -1
- data/rails/plugin/active_ldap/init.rb +3 -0
- data/rails_generators/model_active_ldap/USAGE +17 -0
- data/rails_generators/model_active_ldap/model_active_ldap_generator.rb +69 -0
- data/rails_generators/model_active_ldap/templates/model_active_ldap.rb +3 -0
- data/rails_generators/model_active_ldap/templates/unit_test.rb +8 -0
- data/rails_generators/scaffold_active_ldap/scaffold_active_ldap_generator.rb +7 -0
- data/rails_generators/scaffold_active_ldap/templates/ldap.yml +18 -0
- data/rails_generators/scaffold_al/scaffold_al_generator.rb +20 -0
- data/test-unit/History.txt +50 -1
- data/test-unit/Manifest.txt +22 -12
- data/test-unit/README.txt +31 -12
- data/test-unit/Rakefile +14 -1
- data/test-unit/TODO +5 -0
- data/test-unit/bin/testrb +0 -0
- data/test-unit/lib/test/unit.rb +62 -0
- data/test-unit/lib/test/unit/assertions.rb +419 -75
- data/test-unit/lib/test/unit/autorunner.rb +70 -13
- data/test-unit/lib/test/unit/collector.rb +1 -1
- data/test-unit/lib/test/unit/collector/load.rb +1 -1
- data/test-unit/lib/test/unit/color-scheme.rb +86 -0
- data/test-unit/lib/test/unit/color.rb +40 -5
- data/test-unit/lib/test/unit/diff.rb +14 -0
- data/test-unit/lib/test/unit/fixture.rb +7 -16
- data/test-unit/lib/test/unit/notification.rb +9 -0
- data/test-unit/lib/test/unit/omission.rb +14 -0
- data/test-unit/lib/test/unit/pending.rb +16 -0
- data/test-unit/lib/test/unit/priority.rb +17 -2
- data/test-unit/lib/test/unit/runner/console.rb +8 -2
- data/test-unit/lib/test/unit/testcase.rb +188 -2
- data/test-unit/lib/test/unit/ui/console/testrunner.rb +51 -26
- data/test-unit/lib/test/unit/util/method-owner-finder.rb +28 -0
- data/test-unit/lib/test/unit/version.rb +1 -1
- data/test-unit/sample/test_user.rb +22 -0
- data/test-unit/test/collector/{test_descendant.rb → test-descendant.rb} +0 -0
- data/test-unit/test/collector/{test_load.rb → test-load.rb} +1 -1
- data/test-unit/test/run-test.rb +0 -0
- data/test-unit/test/{test_attribute.rb → test-attribute.rb} +0 -0
- data/test-unit/test/test-color-scheme.rb +56 -0
- data/test-unit/test/{test_color.rb → test-color.rb} +10 -0
- data/test-unit/test/{test_diff.rb → test-diff.rb} +0 -0
- data/test-unit/test/{test_emacs_runner.rb → test-emacs-runner.rb} +0 -0
- data/test-unit/test/test-fixture.rb +287 -0
- data/test-unit/test/{test_notification.rb → test-notification.rb} +4 -4
- data/test-unit/test/{test_omission.rb → test-omission.rb} +6 -6
- data/test-unit/test/{test_pending.rb → test-pending.rb} +12 -6
- data/test-unit/test/{test_priority.rb → test-priority.rb} +30 -0
- data/test-unit/test/test_assertions.rb +411 -69
- data/test-unit/test/test_testcase.rb +70 -3
- data/test-unit/test/{testunit_test_util.rb → testunit-test-util.rb} +4 -2
- data/test-unit/test/ui/test_testrunmediator.rb +1 -1
- data/test-unit/test/util/test-method-owner-finder.rb +38 -0
- data/test/run-test.rb +0 -0
- data/test/test_adapter.rb +3 -0
- data/test/test_associations.rb +50 -7
- data/test/test_base.rb +193 -11
- data/test/test_connection_per_dn.rb +1 -1
- data/test/test_ldif.rb +86 -0
- data/test/test_load.rb +7 -0
- data/test/test_schema.rb +31 -1
- data/test/test_syntax.rb +20 -0
- data/test/test_user_password.rb +22 -14
- data/test/test_validation.rb +70 -29
- metadata +99 -77
- 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/config/initializers/ralative_url_support.rb +0 -1
- data/examples/al-admin/lib/accept_http_rails_relative_url_root.rb +0 -9
- data/test-unit-ext/misc/rd2html.rb +0 -42
- data/test-unit/test/test_fixture.rb +0 -275
data/po/ja/active-ldap.po
CHANGED
|
@@ -5,9 +5,9 @@
|
|
|
5
5
|
#
|
|
6
6
|
msgid ""
|
|
7
7
|
msgstr ""
|
|
8
|
-
"Project-Id-Version: Ruby/ActiveLdap 1.0.
|
|
9
|
-
"POT-Creation-Date: 2008-
|
|
10
|
-
"PO-Revision-Date: 2008-
|
|
8
|
+
"Project-Id-Version: Ruby/ActiveLdap 1.0.2\n"
|
|
9
|
+
"POT-Creation-Date: 2008-06-17 21:42+0900\n"
|
|
10
|
+
"PO-Revision-Date: 2008-06-17 21:53+0900\n"
|
|
11
11
|
"Last-Translator: Kouhei Sutou <kou@cozmixng.org>\n"
|
|
12
12
|
"Language-Team: Japanese\n"
|
|
13
13
|
"MIME-Version: 1.0\n"
|
|
@@ -455,6 +455,419 @@ msgstr "オブジェクトクラス(objectClass)"
|
|
|
455
455
|
msgid "LDAP|Attribute|objectClasses"
|
|
456
456
|
msgstr "オブジェクトクラス(objectClasses)"
|
|
457
457
|
|
|
458
|
+
#: -:-
|
|
459
|
+
msgid "LDAP|Attribute|olcAccess"
|
|
460
|
+
msgstr "OpenLDAP設定: アクセス制御(olcAccess)"
|
|
461
|
+
|
|
462
|
+
#: -:-
|
|
463
|
+
msgid "LDAP|Attribute|olcAllows"
|
|
464
|
+
msgstr "OpenLDAP設定: 許可(olcAllows)"
|
|
465
|
+
|
|
466
|
+
#: -:-
|
|
467
|
+
msgid "LDAP|Attribute|olcArgsFile"
|
|
468
|
+
msgstr "OpenLDAP設定: 引数で指定した設定ファイル(olcArgsFile)"
|
|
469
|
+
|
|
470
|
+
#: -:-
|
|
471
|
+
msgid "LDAP|Attribute|olcAttributeOptions"
|
|
472
|
+
msgstr "OpenLDAP設定: 属性オプション(olcAttributeOptions)"
|
|
473
|
+
|
|
474
|
+
#: -:-
|
|
475
|
+
msgid "LDAP|Attribute|olcAttributeTypes"
|
|
476
|
+
msgstr "OpenLDAP設定: 属性種別(olcAttributeTypes)"
|
|
477
|
+
|
|
478
|
+
#: -:-
|
|
479
|
+
msgid "LDAP|Attribute|olcAuthIDRewrite"
|
|
480
|
+
msgstr "OpenLDAP設定: 認証ID書き換え(olcAuthIDRewrite)"
|
|
481
|
+
|
|
482
|
+
#: -:-
|
|
483
|
+
msgid "LDAP|Attribute|olcAuthzPolicy"
|
|
484
|
+
msgstr "OpenLDAP設定: 認証ポリシー(olcAuthzPolicy)"
|
|
485
|
+
|
|
486
|
+
#: -:-
|
|
487
|
+
msgid "LDAP|Attribute|olcAuthzRegexp"
|
|
488
|
+
msgstr "OpenLDAP設定: 認証正規表現(olcAuthzRegexp)"
|
|
489
|
+
|
|
490
|
+
#: -:-
|
|
491
|
+
msgid "LDAP|Attribute|olcBackend"
|
|
492
|
+
msgstr "OpenLDAP設定: バックエンド(olcBackend)"
|
|
493
|
+
|
|
494
|
+
#: -:-
|
|
495
|
+
msgid "LDAP|Attribute|olcConcurrency"
|
|
496
|
+
msgstr "OpenLDAP設定: 同時接続数(olcConcurrency)"
|
|
497
|
+
|
|
498
|
+
#: -:-
|
|
499
|
+
msgid "LDAP|Attribute|olcConfigDir"
|
|
500
|
+
msgstr "OpenLDAP設定: 設定ディレクトリ(olcConfigDir)"
|
|
501
|
+
|
|
502
|
+
#: -:-
|
|
503
|
+
msgid "LDAP|Attribute|olcConfigFile"
|
|
504
|
+
msgstr "OpenLDAP設定: 設定ファイル(olcConfigFile)"
|
|
505
|
+
|
|
506
|
+
#: -:-
|
|
507
|
+
msgid "LDAP|Attribute|olcConnMaxPending"
|
|
508
|
+
msgstr "OpenLDAP設定: 最大接続待ち数(olcConnMaxPending)"
|
|
509
|
+
|
|
510
|
+
#: -:-
|
|
511
|
+
msgid "LDAP|Attribute|olcConnMaxPendingAuth"
|
|
512
|
+
msgstr "OpenLDAP設定: 最大認証待ち接続数(olcConnMaxPendingAuth)"
|
|
513
|
+
|
|
514
|
+
#: -:-
|
|
515
|
+
msgid "LDAP|Attribute|olcDatabase"
|
|
516
|
+
msgstr "OpenLDAP設定: データベース(olcDatabase)"
|
|
517
|
+
|
|
518
|
+
#: -:-
|
|
519
|
+
msgid "LDAP|Attribute|olcDbCacheFree"
|
|
520
|
+
msgstr "OpenLDAP設定: DB: キャッシュ開放量(olcDbCacheFree)"
|
|
521
|
+
|
|
522
|
+
#: -:-
|
|
523
|
+
msgid "LDAP|Attribute|olcDbCacheSize"
|
|
524
|
+
msgstr "OpenLDAP設定: DB: キャッシュ量(olcDbCacheSize)"
|
|
525
|
+
|
|
526
|
+
#: -:-
|
|
527
|
+
msgid "LDAP|Attribute|olcDbCheckpoint"
|
|
528
|
+
msgstr "OpenLDAP設定: DB: チェックポイント(olcDbCheckpoint)"
|
|
529
|
+
|
|
530
|
+
#: -:-
|
|
531
|
+
msgid "LDAP|Attribute|olcDbConfig"
|
|
532
|
+
msgstr "OpenLDAP設定: DB: 設定(olcDbConfig)"
|
|
533
|
+
|
|
534
|
+
#: -:-
|
|
535
|
+
msgid "LDAP|Attribute|olcDbCryptFile"
|
|
536
|
+
msgstr "OpenLDAP設定: DB: 暗号化鍵の入ったファイル(olcDbCryptFile)"
|
|
537
|
+
|
|
538
|
+
#: -:-
|
|
539
|
+
msgid "LDAP|Attribute|olcDbCryptKey"
|
|
540
|
+
msgstr "OpenLDAP設定: DB: 暗号化鍵(olcDbCryptKey)"
|
|
541
|
+
|
|
542
|
+
#: -:-
|
|
543
|
+
msgid "LDAP|Attribute|olcDbDNcacheSize"
|
|
544
|
+
msgstr "OpenLDAP設定: DB: DNキャッシュ量(olcDbDNcacheSize)"
|
|
545
|
+
|
|
546
|
+
#: -:-
|
|
547
|
+
msgid "LDAP|Attribute|olcDbDirectory"
|
|
548
|
+
msgstr "OpenLDAP設定: DB: ディレクトリ(olcDbDirectory)"
|
|
549
|
+
|
|
550
|
+
#: -:-
|
|
551
|
+
msgid "LDAP|Attribute|olcDbDirtyRead"
|
|
552
|
+
msgstr "OpenLDAP設定: DB: 不正読込(olcDbDirtyRead)"
|
|
553
|
+
|
|
554
|
+
#: -:-
|
|
555
|
+
msgid "LDAP|Attribute|olcDbIDLcacheSize"
|
|
556
|
+
msgstr "OpenLDAP設定: DB: IDLキャッシュ量(olcDbIDLcacheSize)"
|
|
557
|
+
|
|
558
|
+
#: -:-
|
|
559
|
+
msgid "LDAP|Attribute|olcDbIndex"
|
|
560
|
+
msgstr "OpenLDAP設定: DB: 索引(olcDbIndex)"
|
|
561
|
+
|
|
562
|
+
#: -:-
|
|
563
|
+
msgid "LDAP|Attribute|olcDbLinearIndex"
|
|
564
|
+
msgstr "OpenLDAP設定: DB: 線形索引(olcDbLinearIndex)"
|
|
565
|
+
|
|
566
|
+
#: -:-
|
|
567
|
+
msgid "LDAP|Attribute|olcDbLockDetect"
|
|
568
|
+
msgstr "OpenLDAP設定: DB: ロック検出(olcDbLockDetect)"
|
|
569
|
+
|
|
570
|
+
#: -:-
|
|
571
|
+
msgid "LDAP|Attribute|olcDbMode"
|
|
572
|
+
msgstr "OpenLDAP設定: DB: モード(olcDbMode)"
|
|
573
|
+
|
|
574
|
+
#: -:-
|
|
575
|
+
msgid "LDAP|Attribute|olcDbNoSync"
|
|
576
|
+
msgstr "OpenLDAP設定: DB: 非同期(olcDbNoSync)"
|
|
577
|
+
|
|
578
|
+
#: -:-
|
|
579
|
+
msgid "LDAP|Attribute|olcDbSearchStack"
|
|
580
|
+
msgstr "OpenLDAP設定: DB: 検索スタック(olcDbSearchStack)"
|
|
581
|
+
|
|
582
|
+
#: -:-
|
|
583
|
+
msgid "LDAP|Attribute|olcDbShmKey"
|
|
584
|
+
msgstr "OpenLDAP設定: DB: 共有メモリキー(olcDbShmKey)"
|
|
585
|
+
|
|
586
|
+
#: -:-
|
|
587
|
+
msgid "LDAP|Attribute|olcDefaultSearchBase"
|
|
588
|
+
msgstr "OpenLDAP設定: デフォルト検索ベース(olcDefaultSearchBase)"
|
|
589
|
+
|
|
590
|
+
#: -:-
|
|
591
|
+
msgid "LDAP|Attribute|olcDisallows"
|
|
592
|
+
msgstr "OpenLDAP設定: 拒否(olcDisallows)"
|
|
593
|
+
|
|
594
|
+
#: -:-
|
|
595
|
+
msgid "LDAP|Attribute|olcDitContentRules"
|
|
596
|
+
msgstr "OpenLDAP設定: DIT内容規則(olcDitContentRules)"
|
|
597
|
+
|
|
598
|
+
#: -:-
|
|
599
|
+
msgid "LDAP|Attribute|olcGentleHUP"
|
|
600
|
+
msgstr "OpenLDAP設定: 穏やかなHUP(olcGentleHUP)"
|
|
601
|
+
|
|
602
|
+
#: -:-
|
|
603
|
+
msgid "LDAP|Attribute|olcHidden"
|
|
604
|
+
msgstr "OpenLDAP設定: DBを隠すかどうか(olcHidden)"
|
|
605
|
+
|
|
606
|
+
#: -:-
|
|
607
|
+
msgid "LDAP|Attribute|olcIdleTimeout"
|
|
608
|
+
msgstr "OpenLDAP設定: 待ちタイムアウト(olcIdleTimeout)"
|
|
609
|
+
|
|
610
|
+
#: -:-
|
|
611
|
+
msgid "LDAP|Attribute|olcInclude"
|
|
612
|
+
msgstr "OpenLDAP設定: 取り込み(olcInclude)"
|
|
613
|
+
|
|
614
|
+
#: -:-
|
|
615
|
+
msgid "LDAP|Attribute|olcIndexIntLen"
|
|
616
|
+
msgstr "OpenLDAP設定: 索引の整数長(olcIndexIntLen)"
|
|
617
|
+
|
|
618
|
+
#: -:-
|
|
619
|
+
msgid "LDAP|Attribute|olcIndexSubstrAnyLen"
|
|
620
|
+
msgstr "OpenLDAP設定: 索引に使用する部分文字列長(olcIndexSubstrAnyLen)"
|
|
621
|
+
|
|
622
|
+
#: -:-
|
|
623
|
+
msgid "LDAP|Attribute|olcIndexSubstrAnyStep"
|
|
624
|
+
msgstr "OpenLDAP設定: 索引検索時に使用する移動幅(olcIndexSubstrAnyStep)"
|
|
625
|
+
|
|
626
|
+
#: -:-
|
|
627
|
+
msgid "LDAP|Attribute|olcIndexSubstrIfMaxLen"
|
|
628
|
+
msgstr "OpenLDAP設定: 索引に使用する部分文字列の最大長(olcIndexSubstrIfMaxLen)"
|
|
629
|
+
|
|
630
|
+
#: -:-
|
|
631
|
+
msgid "LDAP|Attribute|olcIndexSubstrIfMinLen"
|
|
632
|
+
msgstr "OpenLDAP設定 索引に使用する部分文字列の最小長(olcIndexSubstrIfMinLen)"
|
|
633
|
+
|
|
634
|
+
#: -:-
|
|
635
|
+
msgid "LDAP|Attribute|olcLastMod"
|
|
636
|
+
msgstr "OpenLDAP設定: 最終更新情報(olcLastMod)"
|
|
637
|
+
|
|
638
|
+
#: -:-
|
|
639
|
+
msgid "LDAP|Attribute|olcLimits"
|
|
640
|
+
msgstr "OpenLDAP設定: 制限(olcLimits)"
|
|
641
|
+
|
|
642
|
+
#: -:-
|
|
643
|
+
msgid "LDAP|Attribute|olcLocalSSF"
|
|
644
|
+
msgstr "OpenLDAP設定: ローカルSSF(olcLocalSSF)"
|
|
645
|
+
|
|
646
|
+
#: -:-
|
|
647
|
+
msgid "LDAP|Attribute|olcLogFile"
|
|
648
|
+
msgstr "OpenLDAP設定: ログファイル(olcLogFile)"
|
|
649
|
+
|
|
650
|
+
#: -:-
|
|
651
|
+
msgid "LDAP|Attribute|olcLogLevel"
|
|
652
|
+
msgstr "OpenLDAP設定: ログレベル(olcLogLevel)"
|
|
653
|
+
|
|
654
|
+
#: -:-
|
|
655
|
+
msgid "LDAP|Attribute|olcMaxDerefDepth"
|
|
656
|
+
msgstr "OpenLDAP設定: 最大別名解決深度(olcMaxDerefDepth)"
|
|
657
|
+
|
|
658
|
+
#: -:-
|
|
659
|
+
msgid "LDAP|Attribute|olcMirrorMode"
|
|
660
|
+
msgstr "OpenLDAP設定: ミラーモード(olcMirrorMode)"
|
|
661
|
+
|
|
662
|
+
#: -:-
|
|
663
|
+
msgid "LDAP|Attribute|olcModuleLoad"
|
|
664
|
+
msgstr "OpenLDAP設定: ロードするモジュール(olcModuleLoad)"
|
|
665
|
+
|
|
666
|
+
#: -:-
|
|
667
|
+
msgid "LDAP|Attribute|olcModulePath"
|
|
668
|
+
msgstr "OpenLDAP設定: モジュールの検索パス(olcModulePath)"
|
|
669
|
+
|
|
670
|
+
#: -:-
|
|
671
|
+
msgid "LDAP|Attribute|olcMonitoring"
|
|
672
|
+
msgstr "OpenLDAP設定: 監視(olcMonitoring)"
|
|
673
|
+
|
|
674
|
+
#: -:-
|
|
675
|
+
msgid "LDAP|Attribute|olcObjectClasses"
|
|
676
|
+
msgstr "OpenLDAP設定: オブジェクトクラス(olcObjectClasses)"
|
|
677
|
+
|
|
678
|
+
#: -:-
|
|
679
|
+
msgid "LDAP|Attribute|olcObjectIdentifier"
|
|
680
|
+
msgstr "OpenLDAP設定: オブジェクト識別子(olcObjectIdentifier)"
|
|
681
|
+
|
|
682
|
+
#: -:-
|
|
683
|
+
msgid "LDAP|Attribute|olcOverlay"
|
|
684
|
+
msgstr "OpenLDAP設定: オーバーレイ(olcOverlay)"
|
|
685
|
+
|
|
686
|
+
#: -:-
|
|
687
|
+
msgid "LDAP|Attribute|olcPasswordCryptSaltFormat"
|
|
688
|
+
msgstr ""
|
|
689
|
+
"OpenLDAP設定: パスワード暗号化用サルトの書式(olcPasswordCryptSaltFormat)"
|
|
690
|
+
|
|
691
|
+
#: -:-
|
|
692
|
+
msgid "LDAP|Attribute|olcPasswordHash"
|
|
693
|
+
msgstr "OpenLDAP設定: パスワードハッシュ(olcPasswordHash)"
|
|
694
|
+
|
|
695
|
+
#: -:-
|
|
696
|
+
msgid "LDAP|Attribute|olcPidFile"
|
|
697
|
+
msgstr "OpenLDAP設定: PIDファイル(olcPidFile)"
|
|
698
|
+
|
|
699
|
+
#: -:-
|
|
700
|
+
msgid "LDAP|Attribute|olcPlugin"
|
|
701
|
+
msgstr "OpenLDAP設定: プラグイン(olcPlugin)"
|
|
702
|
+
|
|
703
|
+
#: -:-
|
|
704
|
+
msgid "LDAP|Attribute|olcPluginLogFile"
|
|
705
|
+
msgstr "OpenLDAP設定: プラグイン: ログファイル(olcPluginLogFile)"
|
|
706
|
+
|
|
707
|
+
#: -:-
|
|
708
|
+
msgid "LDAP|Attribute|olcReadOnly"
|
|
709
|
+
msgstr "OpenLDAP設定: 読み込み専用(olcReadOnly)"
|
|
710
|
+
|
|
711
|
+
#: -:-
|
|
712
|
+
msgid "LDAP|Attribute|olcReferral"
|
|
713
|
+
msgstr "OpenLDAP設定: 照会(olcReferral)"
|
|
714
|
+
|
|
715
|
+
#: -:-
|
|
716
|
+
msgid "LDAP|Attribute|olcReplica"
|
|
717
|
+
msgstr "OpenLDAP設定: 複製(olcReplica)"
|
|
718
|
+
|
|
719
|
+
#: -:-
|
|
720
|
+
msgid "LDAP|Attribute|olcReplicaArgsFile"
|
|
721
|
+
msgstr "OpenLDAP設定: 複製: 引数で指定した設定ファイル(olcReplicaArgsFile0"
|
|
722
|
+
|
|
723
|
+
#: -:-
|
|
724
|
+
msgid "LDAP|Attribute|olcReplicaPidFile"
|
|
725
|
+
msgstr "OpenLDAP設定: 複製: PIDファイル(olcReplicaPidFile)"
|
|
726
|
+
|
|
727
|
+
#: -:-
|
|
728
|
+
msgid "LDAP|Attribute|olcReplicationInterval"
|
|
729
|
+
msgstr "OpenLDAP設定: 複製間隔(olcReplicationInterval)"
|
|
730
|
+
|
|
731
|
+
#: -:-
|
|
732
|
+
msgid "LDAP|Attribute|olcReplogFile"
|
|
733
|
+
msgstr "OpenLDAP設定: 複製用ログファイル(olcReplogFile)"
|
|
734
|
+
|
|
735
|
+
#: -:-
|
|
736
|
+
msgid "LDAP|Attribute|olcRequires"
|
|
737
|
+
msgstr "OpenLDAP設定: 必須条件(olcRequires)"
|
|
738
|
+
|
|
739
|
+
#: -:-
|
|
740
|
+
msgid "LDAP|Attribute|olcRestrict"
|
|
741
|
+
msgstr "OpenLDAP設定: 制限(olcRestrict)"
|
|
742
|
+
|
|
743
|
+
#: -:-
|
|
744
|
+
msgid "LDAP|Attribute|olcReverseLookup"
|
|
745
|
+
msgstr "OpenLDAP設定: 逆引き(olcReverseLookup)"
|
|
746
|
+
|
|
747
|
+
#: -:-
|
|
748
|
+
msgid "LDAP|Attribute|olcRootDN"
|
|
749
|
+
msgstr "OpenLDAP設定: ルートDN(olcRootDN)"
|
|
750
|
+
|
|
751
|
+
#: -:-
|
|
752
|
+
msgid "LDAP|Attribute|olcRootDSE"
|
|
753
|
+
msgstr "OpenLDAP設定: ルートDSE(olcRootDSE)"
|
|
754
|
+
|
|
755
|
+
#: -:-
|
|
756
|
+
msgid "LDAP|Attribute|olcRootPW"
|
|
757
|
+
msgstr "OpenLDAP設定: ルートパスワード(olcRootPW)"
|
|
758
|
+
|
|
759
|
+
#: -:-
|
|
760
|
+
msgid "LDAP|Attribute|olcSaslHost"
|
|
761
|
+
msgstr "OpenLDAP設定: SASL: ホスト(olcSaslHost)"
|
|
762
|
+
|
|
763
|
+
#: -:-
|
|
764
|
+
msgid "LDAP|Attribute|olcSaslRealm"
|
|
765
|
+
msgstr "OpenLDAP設定: SASL: 領域(olcSaslRealm)"
|
|
766
|
+
|
|
767
|
+
#: -:-
|
|
768
|
+
msgid "LDAP|Attribute|olcSaslSecProps"
|
|
769
|
+
msgstr "OpenLDAP設定: SASL: セキュリティプロパティ(olcSaslSecProps)"
|
|
770
|
+
|
|
771
|
+
#: -:-
|
|
772
|
+
msgid "LDAP|Attribute|olcSchemaDN"
|
|
773
|
+
msgstr "OpenLDAP設定: スキーマDN(olcSchemaDN)"
|
|
774
|
+
|
|
775
|
+
#: -:-
|
|
776
|
+
msgid "LDAP|Attribute|olcSecurity"
|
|
777
|
+
msgstr "OpenLDAP設定: セキュリティ(olcSecurity)"
|
|
778
|
+
|
|
779
|
+
#: -:-
|
|
780
|
+
msgid "LDAP|Attribute|olcServerID"
|
|
781
|
+
msgstr "OpenLDAP設定: サーバID(olcServerID)"
|
|
782
|
+
|
|
783
|
+
#: -:-
|
|
784
|
+
msgid "LDAP|Attribute|olcSizeLimit"
|
|
785
|
+
msgstr "OpenLDAP設定: サイズ制限(olcSizeLimit)"
|
|
786
|
+
|
|
787
|
+
#: -:-
|
|
788
|
+
msgid "LDAP|Attribute|olcSockbufMaxIncoming"
|
|
789
|
+
msgstr "OpenLDAP設定: 匿名接続用最大受信量(olcSockbufMaxIncoming)"
|
|
790
|
+
|
|
791
|
+
#: -:-
|
|
792
|
+
msgid "LDAP|Attribute|olcSockbufMaxIncomingAuth"
|
|
793
|
+
msgstr "OpenLDAP設定: 認証接続用最大受信量(olcSockbufMaxIncomingAuth)"
|
|
794
|
+
|
|
795
|
+
#: -:-
|
|
796
|
+
msgid "LDAP|Attribute|olcSortVals"
|
|
797
|
+
msgstr "OpenLDAP設定: 並び替えておく値(olcSortVals)"
|
|
798
|
+
|
|
799
|
+
#: -:-
|
|
800
|
+
msgid "LDAP|Attribute|olcSubordinate"
|
|
801
|
+
msgstr "OpenLDAP設定: 下位データベース(olcSubordinate)"
|
|
802
|
+
|
|
803
|
+
#: -:-
|
|
804
|
+
msgid "LDAP|Attribute|olcSuffix"
|
|
805
|
+
msgstr "OpenLDAP設定: サフィックス(olcSuffix)"
|
|
806
|
+
|
|
807
|
+
#: -:-
|
|
808
|
+
msgid "LDAP|Attribute|olcSyncrepl"
|
|
809
|
+
msgstr "OpenLDAP設定: 同期複製(olcSyncrepl)"
|
|
810
|
+
|
|
811
|
+
#: -:-
|
|
812
|
+
msgid "LDAP|Attribute|olcTLSCACertificateFile"
|
|
813
|
+
msgstr "OpenLDAP設定: TLS: CA証明書ファイル(olcTLSCACertificateFile)"
|
|
814
|
+
|
|
815
|
+
#: -:-
|
|
816
|
+
msgid "LDAP|Attribute|olcTLSCACertificatePath"
|
|
817
|
+
msgstr "OpenLDAP設定: TLS: CA証明書パス(olcTLSCACertificatePath)"
|
|
818
|
+
|
|
819
|
+
#: -:-
|
|
820
|
+
msgid "LDAP|Attribute|olcTLSCRLCheck"
|
|
821
|
+
msgstr "OpenLDAP設定: TLS: 失効証明書一覧チェック(olcTLSCRLCheck)"
|
|
822
|
+
|
|
823
|
+
#: -:-
|
|
824
|
+
msgid "LDAP|Attribute|olcTLSCRLFile"
|
|
825
|
+
msgstr "OpenLDAP設定: TLS: 失効証明書一覧ファイル(olcTLSCRLFile)"
|
|
826
|
+
|
|
827
|
+
#: -:-
|
|
828
|
+
msgid "LDAP|Attribute|olcTLSCertificateFile"
|
|
829
|
+
msgstr "OpenLDAP設定: TLS: 証明書ファイル(olcTLSCertificateFile)"
|
|
830
|
+
|
|
831
|
+
#: -:-
|
|
832
|
+
msgid "LDAP|Attribute|olcTLSCertificateKeyFile"
|
|
833
|
+
msgstr "OpenLDAP設定: TLS: 証明書鍵ファイル(olcTLSCertificateKeyFile)"
|
|
834
|
+
|
|
835
|
+
#: -:-
|
|
836
|
+
msgid "LDAP|Attribute|olcTLSCipherSuite"
|
|
837
|
+
msgstr "OpenLDAP設定: TLS: 暗号群(olcTLSCipherSuite)"
|
|
838
|
+
|
|
839
|
+
#: -:-
|
|
840
|
+
msgid "LDAP|Attribute|olcTLSDHParamFile"
|
|
841
|
+
msgstr "OpenLDAP設定: TLS: DHパラメタファイル(olcTLSDHParamFile)"
|
|
842
|
+
|
|
843
|
+
#: -:-
|
|
844
|
+
msgid "LDAP|Attribute|olcTLSRandFile"
|
|
845
|
+
msgstr "OpenLDAP設定: TLS: ランダムファイル(olcTLSRandFile)"
|
|
846
|
+
|
|
847
|
+
#: -:-
|
|
848
|
+
msgid "LDAP|Attribute|olcTLSVerifyClient"
|
|
849
|
+
msgstr "OpenLDAP設定: TLS: クライアント検証(olcTLSVerifyClient)"
|
|
850
|
+
|
|
851
|
+
#: -:-
|
|
852
|
+
msgid "LDAP|Attribute|olcThreads"
|
|
853
|
+
msgstr "OpenLDAP設定: 最大スレッド数(olcThreads)"
|
|
854
|
+
|
|
855
|
+
#: -:-
|
|
856
|
+
msgid "LDAP|Attribute|olcTimeLimit"
|
|
857
|
+
msgstr "OpenLDAP設定: 時間制限(olcTimeLimit)"
|
|
858
|
+
|
|
859
|
+
#: -:-
|
|
860
|
+
msgid "LDAP|Attribute|olcToolThreads"
|
|
861
|
+
msgstr "OpenLDAP設定: ツールモード時の最大スレッド数(olcToolThreads)"
|
|
862
|
+
|
|
863
|
+
#: -:-
|
|
864
|
+
msgid "LDAP|Attribute|olcUpdateDN"
|
|
865
|
+
msgstr "OpenLDAP設定: 更新用DN(olcUpdateDN)"
|
|
866
|
+
|
|
867
|
+
#: -:-
|
|
868
|
+
msgid "LDAP|Attribute|olcUpdateRef"
|
|
869
|
+
msgstr "OpenLDAP設定: 更新要求時の紹介URL(olcUpdateRef)"
|
|
870
|
+
|
|
458
871
|
#: -:-
|
|
459
872
|
msgid "LDAP|Attribute|oncRpcNumber"
|
|
460
873
|
msgstr "ONC RPC番号(oncRpcNumber)"
|
|
@@ -1347,6 +1760,141 @@ msgid ""
|
|
|
1347
1760
|
"LDAP|Description|Attribute|objectClass|RFC4512: object classes of the entity"
|
|
1348
1761
|
msgstr "RFC4512: 実体のオブジェクトクラス"
|
|
1349
1762
|
|
|
1763
|
+
#: -:-
|
|
1764
|
+
msgid "LDAP|Description|Attribute|olcAccess|Access Control List"
|
|
1765
|
+
msgstr "アクセス制御リスト"
|
|
1766
|
+
|
|
1767
|
+
#: -:-
|
|
1768
|
+
msgid "LDAP|Description|Attribute|olcAllows|Allowed set of deprecated features"
|
|
1769
|
+
msgstr "使うことを許可する非推奨の機能群"
|
|
1770
|
+
|
|
1771
|
+
#: -:-
|
|
1772
|
+
msgid ""
|
|
1773
|
+
"LDAP|Description|Attribute|olcArgsFile|File for slapd command line options"
|
|
1774
|
+
msgstr "slapdのコマンドラインオプションで指定した設定ファイル"
|
|
1775
|
+
|
|
1776
|
+
#: -:-
|
|
1777
|
+
msgid "LDAP|Description|Attribute|olcAttributeTypes|OpenLDAP attributeTypes"
|
|
1778
|
+
msgstr "OpenLDAP用のattributeTypes"
|
|
1779
|
+
|
|
1780
|
+
#: -:-
|
|
1781
|
+
msgid "LDAP|Description|Attribute|olcBackend|A type of backend"
|
|
1782
|
+
msgstr "バックエンドの種類"
|
|
1783
|
+
|
|
1784
|
+
#: -:-
|
|
1785
|
+
msgid ""
|
|
1786
|
+
"LDAP|Description|Attribute|olcConfigDir|Directory for slapd configuration "
|
|
1787
|
+
"backend"
|
|
1788
|
+
msgstr "slapd設定バックエンド用のディレクトリ"
|
|
1789
|
+
|
|
1790
|
+
#: -:-
|
|
1791
|
+
msgid ""
|
|
1792
|
+
"LDAP|Description|Attribute|olcConfigFile|File for slapd configuration "
|
|
1793
|
+
"directives"
|
|
1794
|
+
msgstr "slapd設定ディレクティブ用のファイル"
|
|
1795
|
+
|
|
1796
|
+
#: -:-
|
|
1797
|
+
msgid ""
|
|
1798
|
+
"LDAP|Description|Attribute|olcDatabase|The backend type for a database "
|
|
1799
|
+
"instance"
|
|
1800
|
+
msgstr "データベースインスタンス用のバックエンドの種類"
|
|
1801
|
+
|
|
1802
|
+
#: -:-
|
|
1803
|
+
msgid ""
|
|
1804
|
+
"LDAP|Description|Attribute|olcDbCacheFree|Number of extra entries to free "
|
|
1805
|
+
"when max is reached"
|
|
1806
|
+
msgstr "最大数に達したときに開放する余分なエントリ数"
|
|
1807
|
+
|
|
1808
|
+
#: -:-
|
|
1809
|
+
msgid "LDAP|Description|Attribute|olcDbCacheSize|Entry cache size in entries"
|
|
1810
|
+
msgstr "エントリをキャッシュする量"
|
|
1811
|
+
|
|
1812
|
+
#: -:-
|
|
1813
|
+
msgid ""
|
|
1814
|
+
"LDAP|Description|Attribute|olcDbCheckpoint|Database checkpoint interval in "
|
|
1815
|
+
"kbytes and minutes"
|
|
1816
|
+
msgstr "データベースチェックポイント間隔(Kバイトと分で指定)"
|
|
1817
|
+
|
|
1818
|
+
#: -:-
|
|
1819
|
+
msgid ""
|
|
1820
|
+
"LDAP|Description|Attribute|olcDbConfig|BerkeleyDB DB_CONFIG configuration "
|
|
1821
|
+
"directives"
|
|
1822
|
+
msgstr "バークレイDB(BDB)のDB_CONFIG設定ディレクティブ"
|
|
1823
|
+
|
|
1824
|
+
#: -:-
|
|
1825
|
+
msgid ""
|
|
1826
|
+
"LDAP|Description|Attribute|olcDbCryptFile|Pathname of file containing the DB "
|
|
1827
|
+
"encryption key"
|
|
1828
|
+
msgstr "DB暗号化鍵を含むファイルのパス名"
|
|
1829
|
+
|
|
1830
|
+
#: -:-
|
|
1831
|
+
msgid "LDAP|Description|Attribute|olcDbCryptKey|DB encryption key"
|
|
1832
|
+
msgstr "DB暗号化鍵"
|
|
1833
|
+
|
|
1834
|
+
#: -:-
|
|
1835
|
+
msgid "LDAP|Description|Attribute|olcDbDNcacheSize|DN cache size"
|
|
1836
|
+
msgstr "DNのキャッシュ量"
|
|
1837
|
+
|
|
1838
|
+
#: -:-
|
|
1839
|
+
msgid ""
|
|
1840
|
+
"LDAP|Description|Attribute|olcDbDirectory|Directory for database content"
|
|
1841
|
+
msgstr "データベースの内容用のディレクトリ"
|
|
1842
|
+
|
|
1843
|
+
#: -:-
|
|
1844
|
+
msgid ""
|
|
1845
|
+
"LDAP|Description|Attribute|olcDbDirtyRead|Allow reads of uncommitted data"
|
|
1846
|
+
msgstr "コミット前のデータの読み込みを許可するかどうか"
|
|
1847
|
+
|
|
1848
|
+
#: -:-
|
|
1849
|
+
msgid "LDAP|Description|Attribute|olcDbIDLcacheSize|IDL cache size in IDLs"
|
|
1850
|
+
msgstr "IDLのキャッシュ量"
|
|
1851
|
+
|
|
1852
|
+
#: -:-
|
|
1853
|
+
msgid "LDAP|Description|Attribute|olcDbIndex|Attribute index parameters"
|
|
1854
|
+
msgstr "属性索引用のパラメタ"
|
|
1855
|
+
|
|
1856
|
+
#: -:-
|
|
1857
|
+
msgid ""
|
|
1858
|
+
"LDAP|Description|Attribute|olcDbLinearIndex|Index attributes one at a time"
|
|
1859
|
+
msgstr "一度に一つだけ属性を索引化する"
|
|
1860
|
+
|
|
1861
|
+
#: -:-
|
|
1862
|
+
msgid "LDAP|Description|Attribute|olcDbLockDetect|Deadlock detection algorithm"
|
|
1863
|
+
msgstr "デッドロック検出アルゴリズム"
|
|
1864
|
+
|
|
1865
|
+
#: -:-
|
|
1866
|
+
msgid "LDAP|Description|Attribute|olcDbMode|Unix permissions of database files"
|
|
1867
|
+
msgstr "データベースファイルのUNIXのパーミッション"
|
|
1868
|
+
|
|
1869
|
+
#: -:-
|
|
1870
|
+
msgid ""
|
|
1871
|
+
"LDAP|Description|Attribute|olcDbNoSync|Disable synchronous database writes"
|
|
1872
|
+
msgstr "データベースへの同期書き込みを無効にする"
|
|
1873
|
+
|
|
1874
|
+
#: -:-
|
|
1875
|
+
msgid ""
|
|
1876
|
+
"LDAP|Description|Attribute|olcDbSearchStack|Depth of search stack in IDLs"
|
|
1877
|
+
msgstr "IDLを<検索するスタックの深さ"
|
|
1878
|
+
|
|
1879
|
+
#: -:-
|
|
1880
|
+
msgid "LDAP|Description|Attribute|olcDbShmKey|Key for shared memory region"
|
|
1881
|
+
msgstr "共有メモリ領域のキー"
|
|
1882
|
+
|
|
1883
|
+
#: -:-
|
|
1884
|
+
msgid ""
|
|
1885
|
+
"LDAP|Description|Attribute|olcDitContentRules|OpenLDAP DIT content rules"
|
|
1886
|
+
msgstr "OpenLDAPディレクトリ情報ツリー(DIT)の内容規則"
|
|
1887
|
+
|
|
1888
|
+
#: -:-
|
|
1889
|
+
msgid "LDAP|Description|Attribute|olcObjectClasses|OpenLDAP object classes"
|
|
1890
|
+
msgstr "OpenLDAP用のオブジェクトクラス"
|
|
1891
|
+
|
|
1892
|
+
#: -:-
|
|
1893
|
+
msgid ""
|
|
1894
|
+
"LDAP|Description|Attribute|olcSortVals|Attributes whose values will always "
|
|
1895
|
+
"be sorted"
|
|
1896
|
+
msgstr "常に値を並び替えておく属性(複数)"
|
|
1897
|
+
|
|
1350
1898
|
#: -:-
|
|
1351
1899
|
msgid ""
|
|
1352
1900
|
"LDAP|Description|Attribute|organizationalStatus|RFC1274: organizational "
|
|
@@ -2020,6 +2568,61 @@ msgstr "ネットグループの抽象化"
|
|
|
2020
2568
|
msgid "LDAP|Description|ObjectClass|nisObject|An entry in a NIS map"
|
|
2021
2569
|
msgstr "NISマップのエントリ"
|
|
2022
2570
|
|
|
2571
|
+
#: -:-
|
|
2572
|
+
msgid ""
|
|
2573
|
+
"LDAP|Description|ObjectClass|olcBackendConfig|OpenLDAP Backend-specific "
|
|
2574
|
+
"options"
|
|
2575
|
+
msgstr "OpenLDAPのバックエンド特有のオプション"
|
|
2576
|
+
|
|
2577
|
+
#: -:-
|
|
2578
|
+
msgid "LDAP|Description|ObjectClass|olcBdbConfig|BDB backend configuration"
|
|
2579
|
+
msgstr "BDBバックエンドの設定"
|
|
2580
|
+
|
|
2581
|
+
#: -:-
|
|
2582
|
+
msgid "LDAP|Description|ObjectClass|olcConfig|OpenLDAP configuration object"
|
|
2583
|
+
msgstr "OpenLDAPの設定オブジェクト"
|
|
2584
|
+
|
|
2585
|
+
#: -:-
|
|
2586
|
+
msgid ""
|
|
2587
|
+
"LDAP|Description|ObjectClass|olcDatabaseConfig|OpenLDAP Database-specific "
|
|
2588
|
+
"options"
|
|
2589
|
+
msgstr "OpenLDAPのデータベース特有のオプション"
|
|
2590
|
+
|
|
2591
|
+
#: -:-
|
|
2592
|
+
msgid ""
|
|
2593
|
+
"LDAP|Description|ObjectClass|olcFrontendConfig|OpenLDAP frontend "
|
|
2594
|
+
"configuration"
|
|
2595
|
+
msgstr "OpenLDAPのフロントエンドの設定"
|
|
2596
|
+
|
|
2597
|
+
#: -:-
|
|
2598
|
+
msgid ""
|
|
2599
|
+
"LDAP|Description|ObjectClass|olcGlobal|OpenLDAP Global configuration options"
|
|
2600
|
+
msgstr "OpenLDAPのグローバルな設定オプション"
|
|
2601
|
+
|
|
2602
|
+
#: -:-
|
|
2603
|
+
msgid ""
|
|
2604
|
+
"LDAP|Description|ObjectClass|olcIncludeFile|OpenLDAP configuration include "
|
|
2605
|
+
"file"
|
|
2606
|
+
msgstr "取り込むOpenLDAPの設定ファイル"
|
|
2607
|
+
|
|
2608
|
+
#: -:-
|
|
2609
|
+
msgid "LDAP|Description|ObjectClass|olcLdifConfig|LDIF backend configuration"
|
|
2610
|
+
msgstr "LDIFバックエンドの設定"
|
|
2611
|
+
|
|
2612
|
+
#: -:-
|
|
2613
|
+
msgid "LDAP|Description|ObjectClass|olcModuleList|OpenLDAP dynamic module info"
|
|
2614
|
+
msgstr "OpenLDAPの動的モジュールの情報"
|
|
2615
|
+
|
|
2616
|
+
#: -:-
|
|
2617
|
+
msgid ""
|
|
2618
|
+
"LDAP|Description|ObjectClass|olcOverlayConfig|OpenLDAP Overlay-specific "
|
|
2619
|
+
"options"
|
|
2620
|
+
msgstr "OpenLDAPのオーバレイ特有のオプション"
|
|
2621
|
+
|
|
2622
|
+
#: -:-
|
|
2623
|
+
msgid "LDAP|Description|ObjectClass|olcSchemaConfig|OpenLDAP schema object"
|
|
2624
|
+
msgstr "OpenLDAPのスキーマオブジェクト"
|
|
2625
|
+
|
|
2023
2626
|
#: -:-
|
|
2024
2627
|
msgid "LDAP|Description|ObjectClass|oncRpc|Abstraction of an ONC/RPC binding"
|
|
2025
2628
|
msgstr "ONC RPCバインディングの抽象化"
|
|
@@ -2468,6 +3071,50 @@ msgstr "NISネットグループ(nisNetgroup)"
|
|
|
2468
3071
|
msgid "LDAP|ObjectClass|nisObject"
|
|
2469
3072
|
msgstr "NISオブジェクト(nisObject)"
|
|
2470
3073
|
|
|
3074
|
+
#: -:-
|
|
3075
|
+
msgid "LDAP|ObjectClass|olcBackendConfig"
|
|
3076
|
+
msgstr "OpenLDAP設定: バックエンド設定(olcBackendConfig)"
|
|
3077
|
+
|
|
3078
|
+
#: -:-
|
|
3079
|
+
msgid "LDAP|ObjectClass|olcBdbConfig"
|
|
3080
|
+
msgstr "OpenLDAP設定: BDB設定(olcBdbConfig)"
|
|
3081
|
+
|
|
3082
|
+
#: -:-
|
|
3083
|
+
msgid "LDAP|ObjectClass|olcConfig"
|
|
3084
|
+
msgstr "OpenLDAP設定: 設定(olcConfig)"
|
|
3085
|
+
|
|
3086
|
+
#: -:-
|
|
3087
|
+
msgid "LDAP|ObjectClass|olcDatabaseConfig"
|
|
3088
|
+
msgstr "OpenLDAP設定: データベース設定(olcDatabaseConfig)"
|
|
3089
|
+
|
|
3090
|
+
#: -:-
|
|
3091
|
+
msgid "LDAP|ObjectClass|olcFrontendConfig"
|
|
3092
|
+
msgstr "OpenLDAP設定: フロントエンド設定(olcFrontendConfig)"
|
|
3093
|
+
|
|
3094
|
+
#: -:-
|
|
3095
|
+
msgid "LDAP|ObjectClass|olcGlobal"
|
|
3096
|
+
msgstr "OpenLDAP設定: グローバル(olcGlobal)"
|
|
3097
|
+
|
|
3098
|
+
#: -:-
|
|
3099
|
+
msgid "LDAP|ObjectClass|olcIncludeFile"
|
|
3100
|
+
msgstr "OpenLDAP設定: ファイル取り込み(olcIncludeFile)"
|
|
3101
|
+
|
|
3102
|
+
#: -:-
|
|
3103
|
+
msgid "LDAP|ObjectClass|olcLdifConfig"
|
|
3104
|
+
msgstr "OpenLDAP設定: LDIF設定(olcLdifConfig)"
|
|
3105
|
+
|
|
3106
|
+
#: -:-
|
|
3107
|
+
msgid "LDAP|ObjectClass|olcModuleList"
|
|
3108
|
+
msgstr "OpenLDAP設定: モジュール一覧(olcModuleList)"
|
|
3109
|
+
|
|
3110
|
+
#: -:-
|
|
3111
|
+
msgid "LDAP|ObjectClass|olcOverlayConfig"
|
|
3112
|
+
msgstr "OpenLDAP設定: オーバレイ設定(olcOverlayConfig)"
|
|
3113
|
+
|
|
3114
|
+
#: -:-
|
|
3115
|
+
msgid "LDAP|ObjectClass|olcSchemaConfig"
|
|
3116
|
+
msgstr "OpenLDAP設定: スキーマ設定(olcSchemaConfig)"
|
|
3117
|
+
|
|
2471
3118
|
#: -:-
|
|
2472
3119
|
msgid "LDAP|ObjectClass|oncRpc"
|
|
2473
3120
|
msgstr "ONC RPC(oncRpc)"
|
|
@@ -2805,27 +3452,27 @@ msgstr "password_blockがnilでもProcでもありません。無視します。
|
|
|
2805
3452
|
msgid "Requested action timed out."
|
|
2806
3453
|
msgstr "要求したアクションがタイムアウトしました。"
|
|
2807
3454
|
|
|
2808
|
-
#: lib/active_ldap/adapter/base.rb:
|
|
3455
|
+
#: lib/active_ldap/adapter/base.rb:320
|
|
2809
3456
|
msgid "Skip simple bind with empty password."
|
|
2810
3457
|
msgstr "空パスワードでのシンプル認証を行いませんでした。"
|
|
2811
3458
|
|
|
2812
|
-
#: lib/active_ldap/adapter/base.rb:
|
|
3459
|
+
#: lib/active_ldap/adapter/base.rb:324
|
|
2813
3460
|
msgid "Can't use empty password for simple bind."
|
|
2814
3461
|
msgstr "シンプル認証では空のパスワードを使うことはできません。"
|
|
2815
3462
|
|
|
2816
|
-
#: lib/active_ldap/adapter/base.rb:
|
|
3463
|
+
#: lib/active_ldap/adapter/base.rb:515
|
|
2817
3464
|
msgid "invalid logical operator: %s: available operators: %s"
|
|
2818
3465
|
msgstr "不正な論理演算子です: %s: 有効な演算子: %s\n"
|
|
2819
3466
|
|
|
2820
|
-
#: lib/active_ldap/adapter/base.rb:
|
|
3467
|
+
#: lib/active_ldap/adapter/base.rb:532
|
|
2821
3468
|
msgid "Giving up trying to reconnect to LDAP server."
|
|
2822
3469
|
msgstr "LDAPサーバへの再接続を諦めました。"
|
|
2823
3470
|
|
|
2824
|
-
#: lib/active_ldap/adapter/base.rb:
|
|
3471
|
+
#: lib/active_ldap/adapter/base.rb:535
|
|
2825
3472
|
msgid "Attempting to reconnect"
|
|
2826
3473
|
msgstr "再接続を試みています"
|
|
2827
3474
|
|
|
2828
|
-
#: lib/active_ldap/adapter/base.rb:
|
|
3475
|
+
#: lib/active_ldap/adapter/base.rb:546
|
|
2829
3476
|
msgid ""
|
|
2830
3477
|
"Reconnect to server failed: %s\n"
|
|
2831
3478
|
"Reconnect to server failed backtrace:\n"
|
|
@@ -2844,127 +3491,127 @@ msgid ":ldap_scope search option is deprecated. Use :scope instead."
|
|
|
2844
3491
|
msgstr ""
|
|
2845
3492
|
":ldap_search検索オプションは廃止予定です。代わりに:scopeを使ってください。"
|
|
2846
3493
|
|
|
2847
|
-
#: lib/active_ldap/operations.rb:
|
|
3494
|
+
#: lib/active_ldap/operations.rb:221
|
|
2848
3495
|
msgid "Invalid order: %s"
|
|
2849
3496
|
msgstr "不正な順序です: %s"
|
|
2850
3497
|
|
|
2851
|
-
#: lib/active_ldap/operations.rb:
|
|
3498
|
+
#: lib/active_ldap/operations.rb:257
|
|
2852
3499
|
msgid "Couldn't find %s without a DN"
|
|
2853
3500
|
msgstr "DNがないため%sが見つかりません"
|
|
2854
3501
|
|
|
2855
|
-
#: lib/active_ldap/operations.rb:
|
|
3502
|
+
#: lib/active_ldap/operations.rb:279
|
|
2856
3503
|
msgid "Couldn't find %s: DN: %s: filter: %s"
|
|
2857
3504
|
msgstr "%sが見つかりません: DN: %s: フィルタ: %s"
|
|
2858
3505
|
|
|
2859
|
-
#: lib/active_ldap/operations.rb:
|
|
3506
|
+
#: lib/active_ldap/operations.rb:282
|
|
2860
3507
|
msgid "Couldn't find %s: DN: %s"
|
|
2861
3508
|
msgstr "%sが見つかりません: DN: %s"
|
|
2862
3509
|
|
|
2863
|
-
#: lib/active_ldap/operations.rb:
|
|
3510
|
+
#: lib/active_ldap/operations.rb:309
|
|
2864
3511
|
msgid "Couldn't find all %s: DNs (%s): filter: %s"
|
|
2865
3512
|
msgstr "すべての%sを見つけられませんでした: DN (%s): フィルタ: %s"
|
|
2866
3513
|
|
|
2867
|
-
#: lib/active_ldap/operations.rb:
|
|
3514
|
+
#: lib/active_ldap/operations.rb:312
|
|
2868
3515
|
msgid "Couldn't find all %s: DNs (%s)"
|
|
2869
3516
|
msgstr "すべての%sを見つけられませんでした: DN (%s)"
|
|
2870
3517
|
|
|
2871
|
-
#: lib/active_ldap/ldif.rb:
|
|
3518
|
+
#: lib/active_ldap/ldif.rb:376
|
|
2872
3519
|
msgid "version spec is missing"
|
|
2873
3520
|
msgstr "バージョン指定がありません"
|
|
2874
3521
|
|
|
2875
|
-
#: lib/active_ldap/ldif.rb:
|
|
3522
|
+
#: lib/active_ldap/ldif.rb:380
|
|
2876
3523
|
msgid "version number is missing"
|
|
2877
3524
|
msgstr "バージョン番号がありません"
|
|
2878
3525
|
|
|
2879
|
-
#: lib/active_ldap/ldif.rb:
|
|
3526
|
+
#: lib/active_ldap/ldif.rb:384
|
|
2880
3527
|
msgid "unsupported version: %d"
|
|
2881
3528
|
msgstr "対応していないバージョンです: %d"
|
|
2882
3529
|
|
|
2883
|
-
#: lib/active_ldap/ldif.rb:
|
|
3530
|
+
#: lib/active_ldap/ldif.rb:388
|
|
2884
3531
|
msgid "separator is missing"
|
|
2885
3532
|
msgstr "分離記号(改行)がありません"
|
|
2886
3533
|
|
|
2887
|
-
#: lib/active_ldap/ldif.rb:
|
|
3534
|
+
#: lib/active_ldap/ldif.rb:392
|
|
2888
3535
|
msgid "'dn:' is missing"
|
|
2889
3536
|
msgstr "'dn:'がありません"
|
|
2890
3537
|
|
|
2891
|
-
#: lib/active_ldap/ldif.rb:
|
|
3538
|
+
#: lib/active_ldap/ldif.rb:396
|
|
2892
3539
|
msgid "DN is missing"
|
|
2893
3540
|
msgstr "DNがありません"
|
|
2894
3541
|
|
|
2895
|
-
#: lib/active_ldap/ldif.rb:
|
|
3542
|
+
#: lib/active_ldap/ldif.rb:400
|
|
2896
3543
|
msgid "DN is invalid: %s: %s"
|
|
2897
3544
|
msgstr "不正なDNです: %s: %s"
|
|
2898
3545
|
|
|
2899
|
-
#: lib/active_ldap/ldif.rb:
|
|
3546
|
+
#: lib/active_ldap/ldif.rb:404
|
|
2900
3547
|
msgid "DN has an invalid character: %s"
|
|
2901
3548
|
msgstr "DNは不正な文字を含んでいます: %s"
|
|
2902
3549
|
|
|
2903
|
-
#: lib/active_ldap/ldif.rb:
|
|
3550
|
+
#: lib/active_ldap/ldif.rb:408 lib/active_ldap/distinguished_name.rb:143
|
|
2904
3551
|
msgid "attribute type is missing"
|
|
2905
3552
|
msgstr "属性の種類がありません"
|
|
2906
3553
|
|
|
2907
|
-
#: lib/active_ldap/ldif.rb:
|
|
3554
|
+
#: lib/active_ldap/ldif.rb:412
|
|
2908
3555
|
msgid "option is missing"
|
|
2909
3556
|
msgstr "オプションがありません"
|
|
2910
3557
|
|
|
2911
|
-
#: lib/active_ldap/ldif.rb:
|
|
3558
|
+
#: lib/active_ldap/ldif.rb:416
|
|
2912
3559
|
msgid "':' is missing"
|
|
2913
3560
|
msgstr "':'がありません"
|
|
2914
3561
|
|
|
2915
|
-
#: lib/active_ldap/ldif.rb:
|
|
3562
|
+
#: lib/active_ldap/ldif.rb:420
|
|
2916
3563
|
msgid "URI is invalid: %s: %s"
|
|
2917
3564
|
msgstr "不正なURIです: %s: %s"
|
|
2918
3565
|
|
|
2919
|
-
#: lib/active_ldap/ldif.rb:
|
|
3566
|
+
#: lib/active_ldap/ldif.rb:424
|
|
2920
3567
|
msgid "'-' is missing"
|
|
2921
3568
|
msgstr "'-'がありません"
|
|
2922
3569
|
|
|
2923
|
-
#: lib/active_ldap/ldif.rb:
|
|
3570
|
+
#: lib/active_ldap/ldif.rb:428
|
|
2924
3571
|
msgid "unknown change type: %s"
|
|
2925
3572
|
msgstr "未知の変更型です: %s"
|
|
2926
3573
|
|
|
2927
|
-
#: lib/active_ldap/ldif.rb:
|
|
3574
|
+
#: lib/active_ldap/ldif.rb:432
|
|
2928
3575
|
msgid "change type is missing"
|
|
2929
3576
|
msgstr "変更型がありません"
|
|
2930
3577
|
|
|
2931
|
-
#: lib/active_ldap/ldif.rb:
|
|
3578
|
+
#: lib/active_ldap/ldif.rb:436
|
|
2932
3579
|
msgid "control type is missing"
|
|
2933
3580
|
msgstr "制御型がありません"
|
|
2934
3581
|
|
|
2935
|
-
#: lib/active_ldap/ldif.rb:
|
|
3582
|
+
#: lib/active_ldap/ldif.rb:440
|
|
2936
3583
|
msgid "criticality is missing"
|
|
2937
3584
|
msgstr "臨界指定がありません"
|
|
2938
3585
|
|
|
2939
|
-
#: lib/active_ldap/ldif.rb:
|
|
3586
|
+
#: lib/active_ldap/ldif.rb:444
|
|
2940
3587
|
msgid "change type value is missing"
|
|
2941
3588
|
msgstr "変更型の値がありません"
|
|
2942
3589
|
|
|
2943
|
-
#: lib/active_ldap/ldif.rb:
|
|
3590
|
+
#: lib/active_ldap/ldif.rb:448
|
|
2944
3591
|
msgid "attribute spec is missing"
|
|
2945
3592
|
msgstr "属性指定がありません"
|
|
2946
3593
|
|
|
2947
|
-
#: lib/active_ldap/ldif.rb:
|
|
3594
|
+
#: lib/active_ldap/ldif.rb:452
|
|
2948
3595
|
msgid "'newrdn:' is missing"
|
|
2949
3596
|
msgstr "'newrdn:'がありません"
|
|
2950
3597
|
|
|
2951
|
-
#: lib/active_ldap/ldif.rb:
|
|
3598
|
+
#: lib/active_ldap/ldif.rb:456
|
|
2952
3599
|
msgid "new RDN value is missing"
|
|
2953
3600
|
msgstr "新しいRDNの値がありません"
|
|
2954
3601
|
|
|
2955
|
-
#: lib/active_ldap/ldif.rb:
|
|
3602
|
+
#: lib/active_ldap/ldif.rb:460
|
|
2956
3603
|
msgid "'deleteoldrdn:' is missing"
|
|
2957
3604
|
msgstr "deleteoldrdn:'がありません"
|
|
2958
3605
|
|
|
2959
|
-
#: lib/active_ldap/ldif.rb:
|
|
3606
|
+
#: lib/active_ldap/ldif.rb:464
|
|
2960
3607
|
msgid "delete old RDN value is missing"
|
|
2961
3608
|
msgstr "古いRDNを削除するかどうかの指定値がありません"
|
|
2962
3609
|
|
|
2963
|
-
#: lib/active_ldap/ldif.rb:
|
|
3610
|
+
#: lib/active_ldap/ldif.rb:468
|
|
2964
3611
|
msgid "new superior value is missing"
|
|
2965
3612
|
msgstr "新しい親エントリの値がありません"
|
|
2966
3613
|
|
|
2967
|
-
#: lib/active_ldap/ldif.rb:
|
|
3614
|
+
#: lib/active_ldap/ldif.rb:472
|
|
2968
3615
|
msgid "unknown modify type: %s"
|
|
2969
3616
|
msgstr "未知の変更種類です: %s"
|
|
2970
3617
|
|
|
@@ -2976,67 +3623,61 @@ msgstr "不正な臨界指定値です: %s"
|
|
|
2976
3623
|
msgid "invalid deleteoldrdn value: %s"
|
|
2977
3624
|
msgstr "不正なdeleteoldrdn値です: %s"
|
|
2978
3625
|
|
|
2979
|
-
#: lib/active_ldap/distinguished_name.rb:
|
|
3626
|
+
#: lib/active_ldap/distinguished_name.rb:135
|
|
2980
3627
|
msgid "name component is missing"
|
|
2981
3628
|
msgstr "名前要素がありません"
|
|
2982
3629
|
|
|
2983
|
-
#: lib/active_ldap/distinguished_name.rb:
|
|
3630
|
+
#: lib/active_ldap/distinguished_name.rb:139
|
|
2984
3631
|
msgid "relative distinguished name (RDN) is missing"
|
|
2985
3632
|
msgstr "相対識別名(RDN)がありません"
|
|
2986
3633
|
|
|
2987
|
-
#: lib/active_ldap/distinguished_name.rb:
|
|
3634
|
+
#: lib/active_ldap/distinguished_name.rb:147
|
|
2988
3635
|
msgid "attribute value is missing"
|
|
2989
3636
|
msgstr "属性の値がありません"
|
|
2990
3637
|
|
|
2991
|
-
#: lib/active_ldap/distinguished_name.rb:
|
|
3638
|
+
#: lib/active_ldap/distinguished_name.rb:151
|
|
2992
3639
|
msgid "found unmatched quotation"
|
|
2993
3640
|
msgstr "未対応の引用符が見つかりました"
|
|
2994
3641
|
|
|
2995
|
-
#: lib/active_ldap/distinguished_name.rb:
|
|
3642
|
+
#: lib/active_ldap/distinguished_name.rb:187
|
|
2996
3643
|
msgid "%s isn't sub DN of %s"
|
|
2997
3644
|
msgstr "%sは%sのサブDNではありません"
|
|
2998
3645
|
|
|
2999
|
-
#: lib/active_ldap/validations.rb:
|
|
3646
|
+
#: lib/active_ldap/validations.rb:81
|
|
3000
3647
|
msgid "%{fn} is duplicated: %s"
|
|
3001
3648
|
msgstr "%{fn}が重複しています: %s"
|
|
3002
3649
|
|
|
3003
|
-
#: lib/active_ldap/validations.rb:
|
|
3650
|
+
#: lib/active_ldap/validations.rb:83
|
|
3004
3651
|
msgid "is duplicated: %s"
|
|
3005
3652
|
msgstr "が重複しています: %s"
|
|
3006
3653
|
|
|
3007
|
-
#: lib/active_ldap/validations.rb:
|
|
3654
|
+
#: lib/active_ldap/validations.rb:107
|
|
3008
3655
|
msgid "%{fn} has excluded value: %s"
|
|
3009
3656
|
msgid_plural "%{fn} has excluded values: %s"
|
|
3010
3657
|
msgstr[0] "%{fn}に除外した値があります: %s"
|
|
3011
3658
|
msgstr[1] "%{fn}に除外した値があります: %s"
|
|
3012
3659
|
|
|
3013
|
-
#: lib/active_ldap/validations.rb:
|
|
3014
|
-
msgid "has excluded value: %s"
|
|
3015
|
-
msgid_plural "has excluded values: %s"
|
|
3016
|
-
msgstr[0] "に除外した値があります: %s"
|
|
3017
|
-
msgstr[1] "に除外した値があります: %s"
|
|
3018
|
-
|
|
3019
|
-
#: lib/active_ldap/validations.rb:128
|
|
3660
|
+
#: lib/active_ldap/validations.rb:142
|
|
3020
3661
|
msgid "%{fn} is required attribute by objectClass '%s'"
|
|
3021
3662
|
msgstr "%{fn}はobjectClass'%s'の必須の属性です"
|
|
3022
3663
|
|
|
3023
|
-
#: lib/active_ldap/validations.rb:
|
|
3664
|
+
#: lib/active_ldap/validations.rb:144
|
|
3024
3665
|
msgid "%{fn} is required attribute by objectClass '%s': aliases: %s"
|
|
3025
3666
|
msgstr "%{fn}はobjectClass'%s'の必須の属性です: 別名: %s"
|
|
3026
3667
|
|
|
3027
|
-
#: lib/active_ldap/validations.rb:
|
|
3668
|
+
#: lib/active_ldap/validations.rb:177
|
|
3028
3669
|
msgid "%{fn} (%s) has invalid format: %s: required syntax: %s: %s"
|
|
3029
3670
|
msgstr "%{fn}(%s)は不正な書式です: %s: 要求されている構文: %s: %s"
|
|
3030
3671
|
|
|
3031
|
-
#: lib/active_ldap/validations.rb:
|
|
3672
|
+
#: lib/active_ldap/validations.rb:179
|
|
3032
3673
|
msgid "%{fn} has invalid format: %s: required syntax: %s: %s"
|
|
3033
3674
|
msgstr "%{fn}は不正な書式です: %s: 要求されている構文: %s: %s"
|
|
3034
3675
|
|
|
3035
|
-
#: lib/active_ldap/validations.rb:
|
|
3676
|
+
#: lib/active_ldap/validations.rb:183
|
|
3036
3677
|
msgid "(%s) has invalid format: %s: required syntax: %s: %s"
|
|
3037
3678
|
msgstr "(%s)は不正な書式です: %s: 要求されている構文: %s: %s"
|
|
3038
3679
|
|
|
3039
|
-
#: lib/active_ldap/validations.rb:
|
|
3680
|
+
#: lib/active_ldap/validations.rb:185
|
|
3040
3681
|
msgid "has invalid format: %s: required syntax: %s: %s"
|
|
3041
3682
|
msgstr "は不正な書式です: %s: 要求されている構文: %s: %s"
|
|
3042
3683
|
|
|
@@ -3056,35 +3697,39 @@ msgstr "このメッセージを表示します"
|
|
|
3056
3697
|
msgid "Show version"
|
|
3057
3698
|
msgstr "バージョンを表示します"
|
|
3058
3699
|
|
|
3059
|
-
#: lib/active_ldap/base.rb:
|
|
3700
|
+
#: lib/active_ldap/base.rb:112
|
|
3701
|
+
msgid "invalid distinguished name (DN) to parse: %s"
|
|
3702
|
+
msgstr "構文解析できない不正な識別名(DN)です: %s"
|
|
3703
|
+
|
|
3704
|
+
#: lib/active_ldap/base.rb:122
|
|
3060
3705
|
msgid "%s is invalid distinguished name (DN): %s"
|
|
3061
3706
|
msgstr "%sは不正な識別名(DN)です: %s"
|
|
3062
3707
|
|
|
3063
|
-
#: lib/active_ldap/base.rb:
|
|
3708
|
+
#: lib/active_ldap/base.rb:124
|
|
3064
3709
|
msgid "%s is invalid distinguished name (DN)"
|
|
3065
3710
|
msgstr "%sは不正な識別名(DN)です"
|
|
3066
3711
|
|
|
3067
|
-
#: lib/active_ldap/base.rb:
|
|
3712
|
+
#: lib/active_ldap/base.rb:142
|
|
3068
3713
|
msgid "invalid LDIF: %s:"
|
|
3069
3714
|
msgstr "不正なLDIFです: %s:"
|
|
3070
3715
|
|
|
3071
|
-
#: lib/active_ldap/base.rb:
|
|
3716
|
+
#: lib/active_ldap/base.rb:144
|
|
3072
3717
|
msgid "invalid LDIF:"
|
|
3073
3718
|
msgstr "不正なLDIFです:"
|
|
3074
3719
|
|
|
3075
|
-
#: lib/active_ldap/base.rb:
|
|
3720
|
+
#: lib/active_ldap/base.rb:219
|
|
3076
3721
|
msgid "LDAP configuration specifies nonexistent %s adapter"
|
|
3077
3722
|
msgstr "LDAPの設定が存在しない%sアダプタが指定しています"
|
|
3078
3723
|
|
|
3079
|
-
#: lib/active_ldap/base.rb:
|
|
3724
|
+
#: lib/active_ldap/base.rb:227
|
|
3080
3725
|
msgid "%s is unknown attribute"
|
|
3081
3726
|
msgstr "%sは未知の属性です"
|
|
3082
3727
|
|
|
3083
|
-
#: lib/active_ldap/base.rb:
|
|
3728
|
+
#: lib/active_ldap/base.rb:423
|
|
3084
3729
|
msgid "scope '%s' must be a Symbol"
|
|
3085
3730
|
msgstr "スコープ'%s'はシンボルでなければいけません"
|
|
3086
3731
|
|
|
3087
|
-
#: lib/active_ldap/base.rb:
|
|
3732
|
+
#: lib/active_ldap/base.rb:577
|
|
3088
3733
|
msgid ""
|
|
3089
3734
|
"'%s' must be either nil, DN value as ActiveLdap::DN, String or Array or "
|
|
3090
3735
|
"attributes as Hash"
|
|
@@ -3092,27 +3737,27 @@ msgstr ""
|
|
|
3092
3737
|
"'%s'はnil、ActiveLdap::DNあるいはStringによるDN、DNの配列、Hashによる属性のど"
|
|
3093
3738
|
"れかでなければいけません"
|
|
3094
3739
|
|
|
3095
|
-
#: lib/active_ldap/base.rb:
|
|
3740
|
+
#: lib/active_ldap/base.rb:682
|
|
3096
3741
|
msgid "Failed to delete LDAP entry: %s"
|
|
3097
3742
|
msgstr "LDAPエントリの削除に失敗しました: %s"
|
|
3098
3743
|
|
|
3099
|
-
#: lib/active_ldap/base.rb:
|
|
3744
|
+
#: lib/active_ldap/base.rb:701
|
|
3100
3745
|
msgid "entry %s can't be saved"
|
|
3101
3746
|
msgstr "エントリ%sを保存できません"
|
|
3102
3747
|
|
|
3103
|
-
#: lib/active_ldap/base.rb:
|
|
3748
|
+
#: lib/active_ldap/base.rb:720 lib/active_ldap/base.rb:731
|
|
3104
3749
|
msgid "wrong number of arguments (%d for 1)"
|
|
3105
3750
|
msgstr "引数の数が違います。(1つの引数なのに%d個指定しました)"
|
|
3106
3751
|
|
|
3107
|
-
#: lib/active_ldap/base.rb:
|
|
3752
|
+
#: lib/active_ldap/base.rb:854
|
|
3108
3753
|
msgid "Can't find DN '%s' to reload"
|
|
3109
3754
|
msgstr "再読み込みするDN '%s'が見つかりません"
|
|
3110
3755
|
|
|
3111
|
-
#: lib/active_ldap/base.rb:
|
|
3756
|
+
#: lib/active_ldap/base.rb:1184
|
|
3112
3757
|
msgid "%s's DN attribute (%s) isn't set"
|
|
3113
3758
|
msgstr "%sのDN属性(%s)が設定されていません"
|
|
3114
3759
|
|
|
3115
|
-
#: lib/active_ldap/base.rb:
|
|
3760
|
+
#: lib/active_ldap/base.rb:1298
|
|
3116
3761
|
msgid "dn_attribute isn't set for this class: %s"
|
|
3117
3762
|
msgstr "このクラスのdn_attributeが設定されていません: %s"
|
|
3118
3763
|
|
|
@@ -3139,19 +3784,19 @@ msgid ":ldap_scope connection option is deprecated. Use :scope instead."
|
|
|
3139
3784
|
msgstr ""
|
|
3140
3785
|
":ldap_scope接続オプションは廃止予定です。代わりに:scopeを使ってください。"
|
|
3141
3786
|
|
|
3142
|
-
#: lib/active_ldap/user_password.rb:
|
|
3787
|
+
#: lib/active_ldap/user_password.rb:10
|
|
3143
3788
|
msgid "Invalid hashed password: %s"
|
|
3144
3789
|
msgstr "不正なハッシュ化されたパスワードです: %s"
|
|
3145
3790
|
|
|
3146
|
-
#: lib/active_ldap/user_password.rb:
|
|
3791
|
+
#: lib/active_ldap/user_password.rb:16
|
|
3147
3792
|
msgid "Unknown Hash type: %s"
|
|
3148
3793
|
msgstr "未知のハッシュの種類です: %s"
|
|
3149
3794
|
|
|
3150
|
-
#: lib/active_ldap/user_password.rb:
|
|
3795
|
+
#: lib/active_ldap/user_password.rb:23
|
|
3151
3796
|
msgid "Can't extract salt from hashed password: %s"
|
|
3152
3797
|
msgstr "ハッシュ化されたパスワードからsaltを取り出すことができません: %s"
|
|
3153
3798
|
|
|
3154
|
-
#: lib/active_ldap/user_password.rb:
|
|
3799
|
+
#: lib/active_ldap/user_password.rb:51 lib/active_ldap/user_password.rb:68
|
|
3155
3800
|
msgid "salt size must be == 4: %s"
|
|
3156
3801
|
msgstr "saltは4文字でなければいけません: %s"
|
|
3157
3802
|
|
|
@@ -3283,489 +3928,45 @@ msgstr ""
|
|
|
3283
3928
|
msgid "Specify prefix for benchmarking"
|
|
3284
3929
|
msgstr "ベンチマーク用のプリフィックスを指定してください"
|
|
3285
3930
|
|
|
3286
|
-
#: benchmark/bench-al.rb:
|
|
3931
|
+
#: benchmark/bench-al.rb:182
|
|
3287
3932
|
msgid "Populating..."
|
|
3288
3933
|
msgstr "データ投入中..."
|
|
3289
3934
|
|
|
3290
|
-
#: benchmark/bench-al.rb:
|
|
3291
|
-
msgid "Entries processed by Ruby/ActiveLdap: %d"
|
|
3292
|
-
msgstr "Ruby/ActiveLdapで処理したエントリ数: %d"
|
|
3935
|
+
#: benchmark/bench-al.rb:239
|
|
3936
|
+
msgid "Entries processed by Ruby/ActiveLdap + LDAP: %d"
|
|
3937
|
+
msgstr "Ruby/ActiveLdap + LDAPで処理したエントリ数: %d"
|
|
3293
3938
|
|
|
3294
|
-
#: benchmark/bench-al.rb:
|
|
3295
|
-
msgid "Entries processed by Ruby/ActiveLdap
|
|
3296
|
-
msgstr "Ruby/ActiveLdap
|
|
3939
|
+
#: benchmark/bench-al.rb:240
|
|
3940
|
+
msgid "Entries processed by Ruby/ActiveLdap + Net::LDAP: %d"
|
|
3941
|
+
msgstr "Ruby/ActiveLdap + Net::LDAPで処理したエントリ数: %d"
|
|
3942
|
+
|
|
3943
|
+
#: benchmark/bench-al.rb:242
|
|
3944
|
+
msgid ""
|
|
3945
|
+
"Entries processed by Ruby/ActiveLdap + LDAP: (without object creation): %d"
|
|
3946
|
+
msgstr "Ruby/ActiveLdap + LDAPで処理したエントリ数(オブジェクト生成無し): %d"
|
|
3947
|
+
|
|
3948
|
+
#: benchmark/bench-al.rb:245
|
|
3949
|
+
msgid ""
|
|
3950
|
+
"Entries processed by Ruby/ActiveLdap + Net::LDAP: (without object creation): "
|
|
3951
|
+
"%d"
|
|
3952
|
+
msgstr "Ruby/ActiveLdap + Net::LDAPで処理したエントリ数(オブジェクト生成無し): %d"
|
|
3297
3953
|
|
|
3298
|
-
#: benchmark/bench-al.rb:
|
|
3954
|
+
#: benchmark/bench-al.rb:248
|
|
3299
3955
|
msgid "Entries processed by Ruby/LDAP: %d"
|
|
3300
3956
|
msgstr "Ruby/LDAPで処理したエントリ数: %d"
|
|
3301
3957
|
|
|
3302
|
-
#: benchmark/bench-al.rb:
|
|
3958
|
+
#: benchmark/bench-al.rb:249
|
|
3303
3959
|
msgid "Entries processed by Net::LDAP: %d"
|
|
3304
3960
|
msgstr "Net::LDAPで処理したエントリ数: %d"
|
|
3305
3961
|
|
|
3306
|
-
#: benchmark/bench-al.rb:
|
|
3962
|
+
#: benchmark/bench-al.rb:253
|
|
3307
3963
|
msgid "Cleaning..."
|
|
3308
3964
|
msgstr "削除中..."
|
|
3309
3965
|
|
|
3310
|
-
#~ msgid "
|
|
3311
|
-
#~
|
|
3312
|
-
|
|
3313
|
-
#~
|
|
3314
|
-
#~ msgstr "OpenLDAP設定: 許可(olcAllows)"
|
|
3315
|
-
|
|
3316
|
-
#~ msgid "LDAP|Attribute|olcArgsFile"
|
|
3317
|
-
#~ msgstr "OpenLDAP設定: 引数で指定した設定ファイル(olcArgsFile)"
|
|
3318
|
-
|
|
3319
|
-
#~ msgid "LDAP|Attribute|olcAttributeOptions"
|
|
3320
|
-
#~ msgstr "OpenLDAP設定: 属性オプション(olcAttributeOptions)"
|
|
3321
|
-
|
|
3322
|
-
#~ msgid "LDAP|Attribute|olcAttributeTypes"
|
|
3323
|
-
#~ msgstr "OpenLDAP設定: 属性種別(olcAttributeTypes)"
|
|
3324
|
-
|
|
3325
|
-
#~ msgid "LDAP|Attribute|olcAuthIDRewrite"
|
|
3326
|
-
#~ msgstr "OpenLDAP設定: 認証ID書き換え(olcAuthIDRewrite)"
|
|
3327
|
-
|
|
3328
|
-
#~ msgid "LDAP|Attribute|olcAuthzPolicy"
|
|
3329
|
-
#~ msgstr "OpenLDAP設定: 認証ポリシー(olcAuthzPolicy)"
|
|
3330
|
-
|
|
3331
|
-
#~ msgid "LDAP|Attribute|olcAuthzRegexp"
|
|
3332
|
-
#~ msgstr "OpenLDAP設定: 認証正規表現(olcAuthzRegexp)"
|
|
3333
|
-
|
|
3334
|
-
#~ msgid "LDAP|Attribute|olcBackend"
|
|
3335
|
-
#~ msgstr "OpenLDAP設定: バックエンド(olcBackend)"
|
|
3336
|
-
|
|
3337
|
-
#~ msgid "LDAP|Attribute|olcConcurrency"
|
|
3338
|
-
#~ msgstr "OpenLDAP設定: 同時接続数(olcConcurrency)"
|
|
3339
|
-
|
|
3340
|
-
#~ msgid "LDAP|Attribute|olcConfigDir"
|
|
3341
|
-
#~ msgstr "OpenLDAP設定: 設定ディレクトリ(olcConfigDir)"
|
|
3342
|
-
|
|
3343
|
-
#~ msgid "LDAP|Attribute|olcConfigFile"
|
|
3344
|
-
#~ msgstr "OpenLDAP設定: 設定ファイル(olcConfigFile)"
|
|
3345
|
-
|
|
3346
|
-
#~ msgid "LDAP|Attribute|olcConnMaxPending"
|
|
3347
|
-
#~ msgstr "OpenLDAP設定: 最大接続待ち数(olcConnMaxPending)"
|
|
3348
|
-
|
|
3349
|
-
#~ msgid "LDAP|Attribute|olcConnMaxPendingAuth"
|
|
3350
|
-
#~ msgstr "OpenLDAP設定: 最大認証待ち接続数(olcConnMaxPendingAuth)"
|
|
3351
|
-
|
|
3352
|
-
#~ msgid "LDAP|Attribute|olcDatabase"
|
|
3353
|
-
#~ msgstr "OpenLDAP設定: データベース(olcDatabase)"
|
|
3354
|
-
|
|
3355
|
-
#~ msgid "LDAP|Attribute|olcDbCacheFree"
|
|
3356
|
-
#~ msgstr "OpenLDAP設定: DB: キャッシュ開放量(olcDbCacheFree)"
|
|
3357
|
-
|
|
3358
|
-
#~ msgid "LDAP|Attribute|olcDbCacheSize"
|
|
3359
|
-
#~ msgstr "OpenLDAP設定: DB: キャッシュ量(olcDbCacheSize)"
|
|
3360
|
-
|
|
3361
|
-
#~ msgid "LDAP|Attribute|olcDbCheckpoint"
|
|
3362
|
-
#~ msgstr "OpenLDAP設定: DB: チェックポイント(olcDbCheckpoint)"
|
|
3363
|
-
|
|
3364
|
-
#~ msgid "LDAP|Attribute|olcDbConfig"
|
|
3365
|
-
#~ msgstr "OpenLDAP設定: DB: 設定(olcDbConfig)"
|
|
3366
|
-
|
|
3367
|
-
#~ msgid "LDAP|Attribute|olcDbDirectory"
|
|
3368
|
-
#~ msgstr "OpenLDAP設定: DB: ディレクトリ(olcDbDirectory)"
|
|
3369
|
-
|
|
3370
|
-
#~ msgid "LDAP|Attribute|olcDbDirtyRead"
|
|
3371
|
-
#~ msgstr "OpenLDAP設定: DB: 不正読込(olcDbDirtyRead)"
|
|
3372
|
-
|
|
3373
|
-
#~ msgid "LDAP|Attribute|olcDbIDLcacheSize"
|
|
3374
|
-
#~ msgstr "OpenLDAP設定: DB: IDLキャッシュ量(olcDbIDLcacheSize)"
|
|
3375
|
-
|
|
3376
|
-
#~ msgid "LDAP|Attribute|olcDbIndex"
|
|
3377
|
-
#~ msgstr "OpenLDAP設定: DB: 索引(olcDbIndex)"
|
|
3378
|
-
|
|
3379
|
-
#~ msgid "LDAP|Attribute|olcDbLinearIndex"
|
|
3380
|
-
#~ msgstr "OpenLDAP設定: DB: 線形索引(olcDbLinearIndex)"
|
|
3381
|
-
|
|
3382
|
-
#~ msgid "LDAP|Attribute|olcDbLockDetect"
|
|
3383
|
-
#~ msgstr "OpenLDAP設定: DB: ロック検出(olcDbLockDetect)"
|
|
3384
|
-
|
|
3385
|
-
#~ msgid "LDAP|Attribute|olcDbMode"
|
|
3386
|
-
#~ msgstr "OpenLDAP設定: DB: モード(olcDbMode)"
|
|
3387
|
-
|
|
3388
|
-
#~ msgid "LDAP|Attribute|olcDbNoSync"
|
|
3389
|
-
#~ msgstr "OpenLDAP設定: DB: 非同期(olcDbNoSync)"
|
|
3390
|
-
|
|
3391
|
-
#~ msgid "LDAP|Attribute|olcDbSearchStack"
|
|
3392
|
-
#~ msgstr "OpenLDAP設定: DB: 検索スタック(olcDbSearchStack)"
|
|
3393
|
-
|
|
3394
|
-
#~ msgid "LDAP|Attribute|olcDbShmKey"
|
|
3395
|
-
#~ msgstr "OpenLDAP設定: DB: 共有メモリキー(olcDbShmKey)"
|
|
3396
|
-
|
|
3397
|
-
#~ msgid "LDAP|Attribute|olcDefaultSearchBase"
|
|
3398
|
-
#~ msgstr "OpenLDAP設定: デフォルト検索ベース(olcDefaultSearchBase)"
|
|
3399
|
-
|
|
3400
|
-
#~ msgid "LDAP|Attribute|olcDisallows"
|
|
3401
|
-
#~ msgstr "OpenLDAP設定: 拒否(olcDisallows)"
|
|
3402
|
-
|
|
3403
|
-
#~ msgid "LDAP|Attribute|olcDitContentRules"
|
|
3404
|
-
#~ msgstr "OpenLDAP設定: DIT内容規則(olcDitContentRules)"
|
|
3405
|
-
|
|
3406
|
-
#~ msgid "LDAP|Attribute|olcGentleHUP"
|
|
3407
|
-
#~ msgstr "OpenLDAP設定: 穏やかなHUP(olcGentleHUP)"
|
|
3408
|
-
|
|
3409
|
-
#~ msgid "LDAP|Attribute|olcIdleTimeout"
|
|
3410
|
-
#~ msgstr "OpenLDAP設定: 待ちタイムアウト(olcIdleTimeout)"
|
|
3411
|
-
|
|
3412
|
-
#~ msgid "LDAP|Attribute|olcInclude"
|
|
3413
|
-
#~ msgstr "OpenLDAP設定: 取り込み(olcInclude)"
|
|
3414
|
-
|
|
3415
|
-
#~ msgid "LDAP|Attribute|olcIndexSubstrAnyLen"
|
|
3416
|
-
#~ msgstr "OpenLDAP設定: 索引に使用する部分文字列長(olcIndexSubstrAnyLen)"
|
|
3417
|
-
|
|
3418
|
-
#~ msgid "LDAP|Attribute|olcIndexSubstrAnyStep"
|
|
3419
|
-
#~ msgstr "OpenLDAP設定: 索引検索時に使用する移動幅(olcIndexSubstrAnyStep)"
|
|
3420
|
-
|
|
3421
|
-
#~ msgid "LDAP|Attribute|olcIndexSubstrIfMaxLen"
|
|
3422
|
-
#~ msgstr ""
|
|
3423
|
-
#~ "OpenLDAP設定: 索引に使用する部分文字列の最大長(olcIndexSubstrIfMaxLen)"
|
|
3424
|
-
|
|
3425
|
-
#~ msgid "LDAP|Attribute|olcIndexSubstrIfMinLen"
|
|
3426
|
-
#~ msgstr ""
|
|
3427
|
-
#~ "OpenLDAP設定 索引に使用する部分文字列の最小長(olcIndexSubstrIfMinLen)"
|
|
3428
|
-
|
|
3429
|
-
#~ msgid "LDAP|Attribute|olcLastMod"
|
|
3430
|
-
#~ msgstr "OpenLDAP設定: 最終更新情報(olcLastMod)"
|
|
3431
|
-
|
|
3432
|
-
#~ msgid "LDAP|Attribute|olcLimits"
|
|
3433
|
-
#~ msgstr "OpenLDAP設定: 制限(olcLimits)"
|
|
3434
|
-
|
|
3435
|
-
#~ msgid "LDAP|Attribute|olcLocalSSF"
|
|
3436
|
-
#~ msgstr "OpenLDAP設定: ローカルSSF(olcLocalSSF)"
|
|
3437
|
-
|
|
3438
|
-
#~ msgid "LDAP|Attribute|olcLogFile"
|
|
3439
|
-
#~ msgstr "OpenLDAP設定: ログファイル(olcLogFile)"
|
|
3440
|
-
|
|
3441
|
-
#~ msgid "LDAP|Attribute|olcLogLevel"
|
|
3442
|
-
#~ msgstr "OpenLDAP設定: ログレベル(olcLogLevel)"
|
|
3443
|
-
|
|
3444
|
-
#~ msgid "LDAP|Attribute|olcMaxDerefDepth"
|
|
3445
|
-
#~ msgstr "OpenLDAP設定: 最大別名解決深度(olcMaxDerefDepth)"
|
|
3446
|
-
|
|
3447
|
-
#~ msgid "LDAP|Attribute|olcModuleLoad"
|
|
3448
|
-
#~ msgstr "OpenLDAP設定: ロードするモジュール(olcModuleLoad)"
|
|
3449
|
-
|
|
3450
|
-
#~ msgid "LDAP|Attribute|olcModulePath"
|
|
3451
|
-
#~ msgstr "OpenLDAP設定: モジュールの検索パス(olcModulePath)"
|
|
3452
|
-
|
|
3453
|
-
#~ msgid "LDAP|Attribute|olcObjectClasses"
|
|
3454
|
-
#~ msgstr "OpenLDAP設定: オブジェクトクラス(olcObjectClasses)"
|
|
3455
|
-
|
|
3456
|
-
#~ msgid "LDAP|Attribute|olcObjectIdentifier"
|
|
3457
|
-
#~ msgstr "OpenLDAP設定: オブジェクト識別子(olcObjectIdentifier)"
|
|
3458
|
-
|
|
3459
|
-
#~ msgid "LDAP|Attribute|olcOverlay"
|
|
3460
|
-
#~ msgstr "OpenLDAP設定: オーバーレイ(olcOverlay)"
|
|
3461
|
-
|
|
3462
|
-
#~ msgid "LDAP|Attribute|olcPasswordCryptSaltFormat"
|
|
3463
|
-
#~ msgstr ""
|
|
3464
|
-
#~ "OpenLDAP設定: パスワード暗号化用サルトの書式(olcPasswordCryptSaltFormat)"
|
|
3465
|
-
|
|
3466
|
-
#~ msgid "LDAP|Attribute|olcPasswordHash"
|
|
3467
|
-
#~ msgstr "OpenLDAP設定: パスワードハッシュ(olcPasswordHash)"
|
|
3468
|
-
|
|
3469
|
-
#~ msgid "LDAP|Attribute|olcPidFile"
|
|
3470
|
-
#~ msgstr "OpenLDAP設定: PIDファイル(olcPidFile)"
|
|
3471
|
-
|
|
3472
|
-
#~ msgid "LDAP|Attribute|olcPlugin"
|
|
3473
|
-
#~ msgstr "OpenLDAP設定: プラグイン(olcPlugin)"
|
|
3474
|
-
|
|
3475
|
-
#~ msgid "LDAP|Attribute|olcPluginLogFile"
|
|
3476
|
-
#~ msgstr "OpenLDAP設定: プラグイン: ログファイル(olcPluginLogFile)"
|
|
3477
|
-
|
|
3478
|
-
#~ msgid "LDAP|Attribute|olcReadOnly"
|
|
3479
|
-
#~ msgstr "OpenLDAP設定: 読み込み専用(olcReadOnly)"
|
|
3480
|
-
|
|
3481
|
-
#~ msgid "LDAP|Attribute|olcReferral"
|
|
3482
|
-
#~ msgstr "OpenLDAP設定: 照会(olcReferral)"
|
|
3483
|
-
|
|
3484
|
-
#~ msgid "LDAP|Attribute|olcReplica"
|
|
3485
|
-
#~ msgstr "OpenLDAP設定: 複製(olcReplica)"
|
|
3486
|
-
|
|
3487
|
-
#~ msgid "LDAP|Attribute|olcReplicaArgsFile"
|
|
3488
|
-
#~ msgstr "OpenLDAP設定: 複製: 引数で指定した設定ファイル(olcReplicaArgsFile0"
|
|
3489
|
-
|
|
3490
|
-
#~ msgid "LDAP|Attribute|olcReplicaPidFile"
|
|
3491
|
-
#~ msgstr "OpenLDAP設定: 複製: PIDファイル(olcReplicaPidFile)"
|
|
3492
|
-
|
|
3493
|
-
#~ msgid "LDAP|Attribute|olcReplicationInterval"
|
|
3494
|
-
#~ msgstr "OpenLDAP設定: 複製間隔(olcReplicationInterval)"
|
|
3495
|
-
|
|
3496
|
-
#~ msgid "LDAP|Attribute|olcReplogFile"
|
|
3497
|
-
#~ msgstr "OpenLDAP設定: 複製用ログファイル(olcReplogFile)"
|
|
3498
|
-
|
|
3499
|
-
#~ msgid "LDAP|Attribute|olcRequires"
|
|
3500
|
-
#~ msgstr "OpenLDAP設定: 必須条件(olcRequires)"
|
|
3501
|
-
|
|
3502
|
-
#~ msgid "LDAP|Attribute|olcRestrict"
|
|
3503
|
-
#~ msgstr "OpenLDAP設定: 制限(olcRestrict)"
|
|
3504
|
-
|
|
3505
|
-
#~ msgid "LDAP|Attribute|olcReverseLookup"
|
|
3506
|
-
#~ msgstr "OpenLDAP設定: 逆引き(olcReverseLookup)"
|
|
3507
|
-
|
|
3508
|
-
#~ msgid "LDAP|Attribute|olcRootDN"
|
|
3509
|
-
#~ msgstr "OpenLDAP設定: ルートDN(olcRootDN)"
|
|
3510
|
-
|
|
3511
|
-
#~ msgid "LDAP|Attribute|olcRootDSE"
|
|
3512
|
-
#~ msgstr "OpenLDAP設定: ルートDSE(olcRootDSE)"
|
|
3513
|
-
|
|
3514
|
-
#~ msgid "LDAP|Attribute|olcRootPW"
|
|
3515
|
-
#~ msgstr "OpenLDAP設定: ルートパスワード(olcRootPW)"
|
|
3516
|
-
|
|
3517
|
-
#~ msgid "LDAP|Attribute|olcSaslHost"
|
|
3518
|
-
#~ msgstr "OpenLDAP設定: SASL: ホスト(olcSaslHost)"
|
|
3519
|
-
|
|
3520
|
-
#~ msgid "LDAP|Attribute|olcSaslRealm"
|
|
3521
|
-
#~ msgstr "OpenLDAP設定: SASL: 領域(olcSaslRealm)"
|
|
3522
|
-
|
|
3523
|
-
#~ msgid "LDAP|Attribute|olcSaslSecProps"
|
|
3524
|
-
#~ msgstr "OpenLDAP設定: SASL: セキュリティプロパティ(olcSaslSecProps)"
|
|
3525
|
-
|
|
3526
|
-
#~ msgid "LDAP|Attribute|olcSchemaDN"
|
|
3527
|
-
#~ msgstr "OpenLDAP設定: スキーマDN(olcSchemaDN)"
|
|
3528
|
-
|
|
3529
|
-
#~ msgid "LDAP|Attribute|olcSecurity"
|
|
3530
|
-
#~ msgstr "OpenLDAP設定: セキュリティ(olcSecurity)"
|
|
3531
|
-
|
|
3532
|
-
#~ msgid "LDAP|Attribute|olcSizeLimit"
|
|
3533
|
-
#~ msgstr "OpenLDAP設定: サイズ制限(olcSizeLimit)"
|
|
3534
|
-
|
|
3535
|
-
#~ msgid "LDAP|Attribute|olcSockbufMaxIncoming"
|
|
3536
|
-
#~ msgstr "OpenLDAP設定: 匿名接続用最大受信量(olcSockbufMaxIncoming)"
|
|
3537
|
-
|
|
3538
|
-
#~ msgid "LDAP|Attribute|olcSockbufMaxIncomingAuth"
|
|
3539
|
-
#~ msgstr "OpenLDAP設定: 認証接続用最大受信量(olcSockbufMaxIncomingAuth)"
|
|
3540
|
-
|
|
3541
|
-
#~ msgid "LDAP|Attribute|olcSrvtab"
|
|
3542
|
-
#~ msgstr "OpenLDAP設定: サービステーブル(olcSrvtab)"
|
|
3543
|
-
|
|
3544
|
-
#~ msgid "LDAP|Attribute|olcSubordinate"
|
|
3545
|
-
#~ msgstr "OpenLDAP設定: 下位データベース(olcSubordinate)"
|
|
3546
|
-
|
|
3547
|
-
#~ msgid "LDAP|Attribute|olcSuffix"
|
|
3548
|
-
#~ msgstr "OpenLDAP設定: サフィックス(olcSuffix)"
|
|
3549
|
-
|
|
3550
|
-
#~ msgid "LDAP|Attribute|olcSyncrepl"
|
|
3551
|
-
#~ msgstr "OpenLDAP設定: 同期複製(olcSyncrepl)"
|
|
3552
|
-
|
|
3553
|
-
#~ msgid "LDAP|Attribute|olcTLSCACertificateFile"
|
|
3554
|
-
#~ msgstr "OpenLDAP設定: TLS: CA証明書ファイル(olcTLSCACertificateFile)"
|
|
3555
|
-
|
|
3556
|
-
#~ msgid "LDAP|Attribute|olcTLSCACertificatePath"
|
|
3557
|
-
#~ msgstr "OpenLDAP設定: TLS: CA証明書パス(olcTLSCACertificatePath)"
|
|
3558
|
-
|
|
3559
|
-
#~ msgid "LDAP|Attribute|olcTLSCRLCheck"
|
|
3560
|
-
#~ msgstr "OpenLDAP設定: TLS: 失効証明書一覧チェック(olcTLSCRLCheck)"
|
|
3561
|
-
|
|
3562
|
-
#~ msgid "LDAP|Attribute|olcTLSCertificateFile"
|
|
3563
|
-
#~ msgstr "OpenLDAP設定: TLS: 証明書ファイル(olcTLSCertificateFile)"
|
|
3564
|
-
|
|
3565
|
-
#~ msgid "LDAP|Attribute|olcTLSCertificateKeyFile"
|
|
3566
|
-
#~ msgstr "OpenLDAP設定: TLS: 証明書鍵ファイル(olcTLSCertificateKeyFile)"
|
|
3567
|
-
|
|
3568
|
-
#~ msgid "LDAP|Attribute|olcTLSCipherSuite"
|
|
3569
|
-
#~ msgstr "OpenLDAP設定: TLS: 暗号群(olcTLSCipherSuite)"
|
|
3570
|
-
|
|
3571
|
-
#~ msgid "LDAP|Attribute|olcTLSDHParamFile"
|
|
3572
|
-
#~ msgstr "OpenLDAP設定: TLS: DHパラメタファイル(olcTLSDHParamFile)"
|
|
3573
|
-
|
|
3574
|
-
#~ msgid "LDAP|Attribute|olcTLSRandFile"
|
|
3575
|
-
#~ msgstr "OpenLDAP設定: TLS: ランダムファイル(olcTLSRandFile)"
|
|
3576
|
-
|
|
3577
|
-
#~ msgid "LDAP|Attribute|olcTLSVerifyClient"
|
|
3578
|
-
#~ msgstr "OpenLDAP設定: TLS: クライアント検証(olcTLSVerifyClient)"
|
|
3579
|
-
|
|
3580
|
-
#~ msgid "LDAP|Attribute|olcThreads"
|
|
3581
|
-
#~ msgstr "OpenLDAP設定: 最大スレッド数(olcThreads)"
|
|
3582
|
-
|
|
3583
|
-
#~ msgid "LDAP|Attribute|olcTimeLimit"
|
|
3584
|
-
#~ msgstr "OpenLDAP設定: 時間制限(olcTimeLimit)"
|
|
3585
|
-
|
|
3586
|
-
#~ msgid "LDAP|Attribute|olcToolThreads"
|
|
3587
|
-
#~ msgstr "OpenLDAP設定: ツールモード時の最大スレッド数(olcToolThreads)"
|
|
3588
|
-
|
|
3589
|
-
#~ msgid "LDAP|Attribute|olcUpdateDN"
|
|
3590
|
-
#~ msgstr "OpenLDAP設定: 更新用DN(olcUpdateDN)"
|
|
3591
|
-
|
|
3592
|
-
#~ msgid "LDAP|Attribute|olcUpdateRef"
|
|
3593
|
-
#~ msgstr "OpenLDAP設定: 更新要求時の紹介URL(olcUpdateRef)"
|
|
3594
|
-
|
|
3595
|
-
#~ msgid "LDAP|Description|Attribute|olcAccess|Access Control List"
|
|
3596
|
-
#~ msgstr "アクセス制御リスト"
|
|
3597
|
-
|
|
3598
|
-
#~ msgid ""
|
|
3599
|
-
#~ "LDAP|Description|Attribute|olcAllows|Allowed set of deprecated features"
|
|
3600
|
-
#~ msgstr "使うことを許可する非推奨の機能群"
|
|
3601
|
-
|
|
3602
|
-
#~ msgid ""
|
|
3603
|
-
#~ "LDAP|Description|Attribute|olcArgsFile|File for slapd command line options"
|
|
3604
|
-
#~ msgstr "slapdのコマンドラインオプションで指定した設定ファイル"
|
|
3605
|
-
|
|
3606
|
-
#~ msgid "LDAP|Description|Attribute|olcAttributeTypes|OpenLDAP attributeTypes"
|
|
3607
|
-
#~ msgstr "OpenLDAP用のattributeTypes"
|
|
3608
|
-
|
|
3609
|
-
#~ msgid "LDAP|Description|Attribute|olcBackend|A type of backend"
|
|
3610
|
-
#~ msgstr "バックエンドの種類"
|
|
3611
|
-
|
|
3612
|
-
#~ msgid ""
|
|
3613
|
-
#~ "LDAP|Description|Attribute|olcConfigDir|Directory for slapd configuration "
|
|
3614
|
-
#~ "backend"
|
|
3615
|
-
#~ msgstr "slapd設定バックエンド用のディレクトリ"
|
|
3616
|
-
|
|
3617
|
-
#~ msgid ""
|
|
3618
|
-
#~ "LDAP|Description|Attribute|olcConfigFile|File for slapd configuration "
|
|
3619
|
-
#~ "directives"
|
|
3620
|
-
#~ msgstr "slapd設定ディレクティブ用のファイル"
|
|
3621
|
-
|
|
3622
|
-
#~ msgid ""
|
|
3623
|
-
#~ "LDAP|Description|Attribute|olcDatabase|The backend type for a database "
|
|
3624
|
-
#~ "instance"
|
|
3625
|
-
#~ msgstr "データベースインスタンス用のバックエンドの種類"
|
|
3626
|
-
|
|
3627
|
-
#~ msgid ""
|
|
3628
|
-
#~ "LDAP|Description|Attribute|olcDbCacheFree|Number of extra entries to free "
|
|
3629
|
-
#~ "when max is reached"
|
|
3630
|
-
#~ msgstr "最大数に達したときに開放する余分なエントリ数"
|
|
3631
|
-
|
|
3632
|
-
#~ msgid ""
|
|
3633
|
-
#~ "LDAP|Description|Attribute|olcDbCacheSize|Entry cache size in entries"
|
|
3634
|
-
#~ msgstr "エントリをキャッシュする量"
|
|
3635
|
-
|
|
3636
|
-
#~ msgid ""
|
|
3637
|
-
#~ "LDAP|Description|Attribute|olcDbCheckpoint|Database checkpoint interval "
|
|
3638
|
-
#~ "in kbytes and minutes"
|
|
3639
|
-
#~ msgstr "データベースチェックポイント間隔(Kバイトと分で指定)"
|
|
3640
|
-
|
|
3641
|
-
#~ msgid ""
|
|
3642
|
-
#~ "LDAP|Description|Attribute|olcDbConfig|BerkeleyDB DB_CONFIG configuration "
|
|
3643
|
-
#~ "directives"
|
|
3644
|
-
#~ msgstr "バークレイDB(BDB)のDB_CONFIG設定ディレクティブ"
|
|
3645
|
-
|
|
3646
|
-
#~ msgid ""
|
|
3647
|
-
#~ "LDAP|Description|Attribute|olcDbDirectory|Directory for database content"
|
|
3648
|
-
#~ msgstr "データベースの内容用のディレクトリ"
|
|
3649
|
-
|
|
3650
|
-
#~ msgid ""
|
|
3651
|
-
#~ "LDAP|Description|Attribute|olcDbDirtyRead|Allow reads of uncommitted data"
|
|
3652
|
-
#~ msgstr "コミット前のデータの読み込みを許可するかどうか"
|
|
3653
|
-
|
|
3654
|
-
#~ msgid "LDAP|Description|Attribute|olcDbIDLcacheSize|IDL cache size in IDLs"
|
|
3655
|
-
#~ msgstr "IDLのキャッシュ量"
|
|
3656
|
-
|
|
3657
|
-
#~ msgid "LDAP|Description|Attribute|olcDbIndex|Attribute index parameters"
|
|
3658
|
-
#~ msgstr "属性索引用のパラメタ"
|
|
3659
|
-
|
|
3660
|
-
#~ msgid ""
|
|
3661
|
-
#~ "LDAP|Description|Attribute|olcDbLinearIndex|Index attributes one at a time"
|
|
3662
|
-
#~ msgstr "一度に一つだけ属性を索引化する"
|
|
3663
|
-
|
|
3664
|
-
#~ msgid ""
|
|
3665
|
-
#~ "LDAP|Description|Attribute|olcDbLockDetect|Deadlock detection algorithm"
|
|
3666
|
-
#~ msgstr "デッドロック検出アルゴリズム"
|
|
3667
|
-
|
|
3668
|
-
#~ msgid ""
|
|
3669
|
-
#~ "LDAP|Description|Attribute|olcDbMode|Unix permissions of database files"
|
|
3670
|
-
#~ msgstr "データベースファイルのUNIXのパーミッション"
|
|
3671
|
-
|
|
3672
|
-
#~ msgid ""
|
|
3673
|
-
#~ "LDAP|Description|Attribute|olcDbNoSync|Disable synchronous database writes"
|
|
3674
|
-
#~ msgstr "データベースへの同期書き込みを無効にする"
|
|
3675
|
-
|
|
3676
|
-
#~ msgid ""
|
|
3677
|
-
#~ "LDAP|Description|Attribute|olcDbSearchStack|Depth of search stack in IDLs"
|
|
3678
|
-
#~ msgstr "IDLを<検索するスタックの深さ"
|
|
3679
|
-
|
|
3680
|
-
#~ msgid "LDAP|Description|Attribute|olcDbShmKey|Key for shared memory region"
|
|
3681
|
-
#~ msgstr "共有メモリ領域のキー"
|
|
3682
|
-
|
|
3683
|
-
#~ msgid ""
|
|
3684
|
-
#~ "LDAP|Description|Attribute|olcDitContentRules|OpenLDAP DIT content rules"
|
|
3685
|
-
#~ msgstr "OpenLDAPディレクトリ情報ツリー(DIT)の内容規則"
|
|
3686
|
-
|
|
3687
|
-
#~ msgid "LDAP|Description|Attribute|olcObjectClasses|OpenLDAP object classes"
|
|
3688
|
-
#~ msgstr "OpenLDAP用のオブジェクトクラス"
|
|
3689
|
-
|
|
3690
|
-
#~ msgid ""
|
|
3691
|
-
#~ "LDAP|Description|ObjectClass|olcBackendConfig|OpenLDAP Backend-specific "
|
|
3692
|
-
#~ "options"
|
|
3693
|
-
#~ msgstr "OpenLDAPのバックエンド特有のオプション"
|
|
3694
|
-
|
|
3695
|
-
#~ msgid "LDAP|Description|ObjectClass|olcBdbConfig|BDB backend configuration"
|
|
3696
|
-
#~ msgstr "BDBバックエンドの設定"
|
|
3697
|
-
|
|
3698
|
-
#~ msgid "LDAP|Description|ObjectClass|olcConfig|OpenLDAP configuration object"
|
|
3699
|
-
#~ msgstr "OpenLDAPの設定オブジェクト"
|
|
3700
|
-
|
|
3701
|
-
#~ msgid ""
|
|
3702
|
-
#~ "LDAP|Description|ObjectClass|olcDatabaseConfig|OpenLDAP Database-specific "
|
|
3703
|
-
#~ "options"
|
|
3704
|
-
#~ msgstr "OpenLDAPのデータベース特有のオプション"
|
|
3705
|
-
|
|
3706
|
-
#~ msgid ""
|
|
3707
|
-
#~ "LDAP|Description|ObjectClass|olcFrontendConfig|OpenLDAP frontend "
|
|
3708
|
-
#~ "configuration"
|
|
3709
|
-
#~ msgstr "OpenLDAPのフロントエンドの設定"
|
|
3710
|
-
|
|
3711
|
-
#~ msgid ""
|
|
3712
|
-
#~ "LDAP|Description|ObjectClass|olcGlobal|OpenLDAP Global configuration "
|
|
3713
|
-
#~ "options"
|
|
3714
|
-
#~ msgstr "OpenLDAPのグローバルな設定オプション"
|
|
3715
|
-
|
|
3716
|
-
#~ msgid ""
|
|
3717
|
-
#~ "LDAP|Description|ObjectClass|olcIncludeFile|OpenLDAP configuration "
|
|
3718
|
-
#~ "include file"
|
|
3719
|
-
#~ msgstr "取り込むOpenLDAPの設定ファイル"
|
|
3720
|
-
|
|
3721
|
-
#~ msgid ""
|
|
3722
|
-
#~ "LDAP|Description|ObjectClass|olcLdifConfig|LDIF backend configuration"
|
|
3723
|
-
#~ msgstr "LDIFバックエンドの設定"
|
|
3724
|
-
|
|
3725
|
-
#~ msgid ""
|
|
3726
|
-
#~ "LDAP|Description|ObjectClass|olcModuleList|OpenLDAP dynamic module info"
|
|
3727
|
-
#~ msgstr "OpenLDAPの動的モジュールの情報"
|
|
3728
|
-
|
|
3729
|
-
#~ msgid ""
|
|
3730
|
-
#~ "LDAP|Description|ObjectClass|olcOverlayConfig|OpenLDAP Overlay-specific "
|
|
3731
|
-
#~ "options"
|
|
3732
|
-
#~ msgstr "OpenLDAPのオーバレイ特有のオプション"
|
|
3733
|
-
|
|
3734
|
-
#~ msgid "LDAP|Description|ObjectClass|olcSchemaConfig|OpenLDAP schema object"
|
|
3735
|
-
#~ msgstr "OpenLDAPのスキーマオブジェクト"
|
|
3736
|
-
|
|
3737
|
-
#~ msgid "LDAP|ObjectClass|olcBackendConfig"
|
|
3738
|
-
#~ msgstr "OpenLDAP設定: バックエンド設定(olcBackendConfig)"
|
|
3739
|
-
|
|
3740
|
-
#~ msgid "LDAP|ObjectClass|olcBdbConfig"
|
|
3741
|
-
#~ msgstr "OpenLDAP設定: BDB設定(olcBdbConfig)"
|
|
3742
|
-
|
|
3743
|
-
#~ msgid "LDAP|ObjectClass|olcConfig"
|
|
3744
|
-
#~ msgstr "OpenLDAP設定: 設定(olcConfig)"
|
|
3745
|
-
|
|
3746
|
-
#~ msgid "LDAP|ObjectClass|olcDatabaseConfig"
|
|
3747
|
-
#~ msgstr "OpenLDAP設定: データベース設定(olcDatabaseConfig)"
|
|
3748
|
-
|
|
3749
|
-
#~ msgid "LDAP|ObjectClass|olcFrontendConfig"
|
|
3750
|
-
#~ msgstr "OpenLDAP設定: フロントエンド設定(olcFrontendConfig)"
|
|
3751
|
-
|
|
3752
|
-
#~ msgid "LDAP|ObjectClass|olcGlobal"
|
|
3753
|
-
#~ msgstr "OpenLDAP設定: グローバル(olcGlobal)"
|
|
3754
|
-
|
|
3755
|
-
#~ msgid "LDAP|ObjectClass|olcIncludeFile"
|
|
3756
|
-
#~ msgstr "OpenLDAP設定: ファイル取り込み(olcIncludeFile)"
|
|
3757
|
-
|
|
3758
|
-
#~ msgid "LDAP|ObjectClass|olcLdifConfig"
|
|
3759
|
-
#~ msgstr "OpenLDAP設定: LDIF設定(olcLdifConfig)"
|
|
3760
|
-
|
|
3761
|
-
#~ msgid "LDAP|ObjectClass|olcModuleList"
|
|
3762
|
-
#~ msgstr "OpenLDAP設定: モジュール一覧(olcModuleList)"
|
|
3763
|
-
|
|
3764
|
-
#~ msgid "LDAP|ObjectClass|olcOverlayConfig"
|
|
3765
|
-
#~ msgstr "OpenLDAP設定: オーバレイ設定(olcOverlayConfig)"
|
|
3766
|
-
|
|
3767
|
-
#~ msgid "LDAP|ObjectClass|olcSchemaConfig"
|
|
3768
|
-
#~ msgstr "OpenLDAP設定: スキーマ設定(olcSchemaConfig)"
|
|
3966
|
+
#~ msgid "has excluded value: %s"
|
|
3967
|
+
#~ msgid_plural "has excluded values: %s"
|
|
3968
|
+
#~ msgstr[0] "に除外した値があります: %s"
|
|
3969
|
+
#~ msgstr[1] "に除外した値があります: %s"
|
|
3769
3970
|
|
|
3770
3971
|
#~ msgid "LDAP|Attribute|dITContentRules"
|
|
3771
3972
|
#~ msgstr "ディレクトリ情報ツリー内容規則(dITContentRules)"
|