activeldap 0.9.0 → 0.10.0
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 +61 -0
- data/README +8 -1
- data/Rakefile +4 -1
- data/benchmark/bench-al.rb +12 -2
- data/examples/al-admin/app/controllers/account_controller.rb +4 -3
- data/examples/al-admin/app/controllers/application.rb +5 -2
- data/examples/al-admin/app/controllers/directory_controller.rb +3 -1
- data/examples/al-admin/app/controllers/users_controller.rb +19 -4
- data/examples/al-admin/app/controllers/welcome_controller.rb +4 -2
- data/examples/al-admin/app/helpers/application_helper.rb +7 -1
- data/examples/al-admin/app/helpers/url_helper.rb +4 -0
- data/examples/al-admin/app/models/ldap_user.rb +4 -0
- data/examples/al-admin/app/views/_entry/{_attributes_information.rhtml → _attributes_information.html.erb} +0 -0
- data/examples/al-admin/app/views/_entry/{_entry.rhtml → _entry.html.erb} +0 -0
- data/examples/al-admin/app/views/_schema/{_aliases.rhtml → _aliases.html.erb} +0 -0
- data/examples/al-admin/app/views/_switcher/{_after.rhtml → _after.html.erb} +0 -0
- data/examples/al-admin/app/views/_switcher/{_before.rhtml → _before.html.erb} +0 -0
- data/examples/al-admin/app/views/account/{login.rhtml → login.html.erb} +0 -0
- data/examples/al-admin/app/views/account/{sign_up.rhtml → sign_up.html.erb} +0 -0
- data/examples/al-admin/app/views/attributes/{_attributes.rhtml → _attributes.html.erb} +0 -0
- data/examples/al-admin/app/views/attributes/{_detail.rhtml → _detail.html.erb} +0 -0
- data/examples/al-admin/app/views/attributes/{index.rhtml → index.html.erb} +0 -0
- data/examples/al-admin/app/views/attributes/{show.rhtml → show.html.erb} +0 -0
- data/examples/al-admin/app/views/directory/{_tree.rhtml → _tree.html.erb} +0 -0
- data/examples/al-admin/app/views/directory/{_tree_view_js.rhtml → _tree_view_js.html.erb} +4 -5
- data/examples/al-admin/app/views/directory/{index.rhtml → index.html.erb} +0 -0
- data/examples/al-admin/app/views/directory/{populate.rhtml → populate.html.erb} +0 -0
- data/examples/al-admin/app/views/layouts/{_footer.rhtml → _footer.html.erb} +0 -0
- data/examples/al-admin/app/views/layouts/{_header_menu.rhtml → _header_menu.html.erb} +0 -0
- data/examples/al-admin/app/views/layouts/{_main_menu.rhtml → _main_menu.html.erb} +0 -0
- data/examples/al-admin/app/views/layouts/{application.rhtml → application.html.erb} +3 -2
- data/examples/al-admin/app/views/object_classes/{_attributes.rhtml → _attributes.html.erb} +0 -0
- data/examples/al-admin/app/views/object_classes/{_object_classes.rhtml → _object_classes.html.erb} +0 -0
- data/examples/al-admin/app/views/object_classes/{index.rhtml → index.html.erb} +0 -0
- data/examples/al-admin/app/views/object_classes/{show.rhtml → show.html.erb} +0 -0
- data/examples/al-admin/app/views/syntaxes/{_detail.rhtml → _detail.html.erb} +0 -0
- data/examples/al-admin/app/views/syntaxes/{_syntaxes.rhtml → _syntaxes.html.erb} +0 -0
- data/examples/al-admin/app/views/syntaxes/{index.rhtml → index.html.erb} +0 -0
- data/examples/al-admin/app/views/syntaxes/{show.rhtml → show.html.erb} +0 -0
- data/examples/al-admin/app/views/users/{_attributes_update_form.rhtml → _attributes_update_form.html.erb} +0 -0
- data/examples/al-admin/app/views/users/{_form.rhtml → _form.html.erb} +0 -0
- data/examples/al-admin/app/views/users/{_object_classes_update_form.rhtml → _object_classes_update_form.html.erb} +7 -1
- data/examples/al-admin/app/views/users/{_password_change_form.rhtml → _password_change_form.html.erb} +0 -0
- data/examples/al-admin/app/views/users/{edit.rhtml → edit.html.erb} +0 -0
- data/examples/al-admin/app/views/users/{index.rhtml → index.html.erb} +0 -0
- data/examples/al-admin/app/views/users/{show.rhtml → show.html.erb} +0 -0
- data/examples/al-admin/app/views/welcome/{index.rhtml → index.html.erb} +0 -0
- data/examples/al-admin/config/boot.rb +96 -32
- data/examples/al-admin/config/environment.rb +30 -36
- data/examples/al-admin/config/environments/development.rb +2 -5
- data/examples/al-admin/config/environments/production.rb +1 -0
- data/examples/al-admin/config/environments/test.rb +4 -1
- data/examples/al-admin/config/initializers/exception_notifier.rb +2 -0
- data/examples/al-admin/config/initializers/gettext.rb +1 -0
- data/examples/al-admin/config/initializers/inflections.rb +10 -0
- data/examples/al-admin/config/initializers/mime_types.rb +5 -0
- data/examples/al-admin/config/initializers/ralative_url_support.rb +1 -0
- data/examples/al-admin/config/routes.rb +24 -12
- data/examples/al-admin/lib/authenticated_system.rb +1 -1
- data/examples/al-admin/lib/tasks/gettext.rake +1 -1
- data/examples/al-admin/po/en/al-admin.po +102 -100
- data/examples/al-admin/po/ja/al-admin.po +112 -110
- data/examples/al-admin/po/nl/al-admin.po +117 -110
- data/examples/al-admin/public/javascripts/controls.js +484 -354
- data/examples/al-admin/public/javascripts/dragdrop.js +88 -58
- data/examples/al-admin/public/javascripts/effects.js +396 -364
- data/examples/al-admin/public/javascripts/prototype.js +2817 -1107
- data/examples/al-admin/public/stylesheets/base.css +5 -0
- data/examples/al-admin/script/performance/request +3 -0
- data/lib/active_ldap.rb +13 -10
- data/lib/active_ldap/adapter/base.rb +159 -43
- data/lib/active_ldap/adapter/jndi.rb +175 -0
- data/lib/active_ldap/adapter/jndi_connection.rb +180 -0
- data/lib/active_ldap/adapter/ldap.rb +91 -46
- data/lib/active_ldap/adapter/ldap_ext.rb +19 -5
- data/lib/active_ldap/adapter/net_ldap.rb +52 -44
- data/lib/active_ldap/association/has_many_wrap.rb +1 -1
- data/lib/active_ldap/attributes.rb +20 -95
- data/lib/active_ldap/base.rb +195 -186
- data/lib/active_ldap/callbacks.rb +33 -0
- data/lib/active_ldap/command.rb +3 -3
- data/lib/active_ldap/connection.rb +21 -3
- data/lib/active_ldap/distinguished_name.rb +18 -11
- data/lib/active_ldap/entry_attribute.rb +78 -0
- data/lib/active_ldap/human_readable.rb +20 -0
- data/lib/active_ldap/ldif.rb +860 -10
- data/lib/active_ldap/object_class.rb +6 -4
- data/lib/active_ldap/operations.rb +129 -22
- data/lib/active_ldap/schema.rb +118 -9
- data/lib/active_ldap/schema/syntaxes.rb +33 -16
- data/lib/active_ldap/validations.rb +74 -65
- data/po/en/active-ldap.po +378 -768
- data/po/ja/active-ldap.po +935 -868
- data/rails/plugin/active_ldap/init.rb +40 -2
- data/test/al-test-utils.rb +78 -58
- data/test/command.rb +51 -1
- data/test/test-unit-ext/priority.rb +29 -6
- data/test/test_adapter.rb +21 -2
- data/test/test_attributes.rb +13 -0
- data/test/test_base.rb +51 -1
- data/test/test_connection.rb +2 -1
- data/test/test_connection_per_class.rb +55 -1
- data/test/test_connection_per_dn.rb +29 -1
- data/test/test_find.rb +73 -0
- data/test/test_ldif.rb +1829 -15
- data/test/test_load.rb +126 -0
- data/test/test_object_class.rb +23 -5
- data/test/test_schema.rb +28 -0
- data/test/test_syntax.rb +22 -11
- data/test/test_user.rb +16 -25
- data/test/test_useradd-binary.rb +1 -1
- data/test/test_usermod-binary-add-time.rb +1 -1
- data/test/test_usermod-binary-add.rb +1 -1
- data/test/test_validation.rb +100 -22
- metadata +77 -71
- 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/app/views/layouts/_flash_box.rhtml +0 -4
- data/examples/al-admin/public/stylesheets/common.css +0 -2
- data/examples/al-admin/script/breakpointer +0 -3
@@ -5,8 +5,8 @@
|
|
5
5
|
#
|
6
6
|
msgid ""
|
7
7
|
msgstr ""
|
8
|
-
"Project-Id-Version: AL Admin 0.
|
9
|
-
"POT-Creation-Date:
|
8
|
+
"Project-Id-Version: AL Admin 0.10.0\n"
|
9
|
+
"POT-Creation-Date: 2008-02-09 14:25+0900\n"
|
10
10
|
"PO-Revision-Date: 2007-11-04 16:02+0900\n"
|
11
11
|
"Last-Translator: Kouhei Sutou <kou@cozmixng.org>\n"
|
12
12
|
"Language-Team: Japanese\n"
|
@@ -83,7 +83,7 @@ msgstr "登録ありがとうございます!"
|
|
83
83
|
msgid "You have been logged out."
|
84
84
|
msgstr "ログアウトしました。"
|
85
85
|
|
86
|
-
#: app/controllers/users_controller.rb:
|
86
|
+
#: app/controllers/users_controller.rb:33
|
87
87
|
msgid "User was successfully updated."
|
88
88
|
msgstr "ユーザを正常に更新しました。"
|
89
89
|
|
@@ -95,247 +95,249 @@ msgstr "指定されたエントリの取得に失敗しました"
|
|
95
95
|
msgid "Edit"
|
96
96
|
msgstr "編集"
|
97
97
|
|
98
|
-
#: app/views/directory/populate.
|
98
|
+
#: app/views/directory/populate.html.erb:1
|
99
99
|
msgid "Done."
|
100
100
|
msgstr "完了。"
|
101
101
|
|
102
|
-
#: app/views/directory/populate.
|
103
|
-
#: app/views/
|
104
|
-
#: app/views/
|
102
|
+
#: app/views/directory/populate.html.erb:2
|
103
|
+
#: app/views/object_classes/show.html.erb:37 app/views/users/edit.html.erb:13
|
104
|
+
#: app/views/users/show.html.erb:9 app/views/syntaxes/show.html.erb:20
|
105
|
+
#: app/views/attributes/show.html.erb:29
|
105
106
|
msgid "Menu|Index"
|
106
107
|
msgstr "一覧"
|
107
108
|
|
108
|
-
#: app/views/layouts/_header_menu.
|
109
|
+
#: app/views/layouts/_header_menu.html.erb:5
|
109
110
|
msgid "Menu|Logout"
|
110
111
|
msgstr "ログアウト"
|
111
112
|
|
112
|
-
#: app/views/layouts/_header_menu.
|
113
|
+
#: app/views/layouts/_header_menu.html.erb:7
|
113
114
|
msgid "Menu|Login"
|
114
115
|
msgstr "ログイン"
|
115
116
|
|
116
|
-
#: app/views/layouts/_header_menu.
|
117
|
+
#: app/views/layouts/_header_menu.html.erb:9
|
117
118
|
msgid "Menu|Sign up"
|
118
119
|
msgstr "登録"
|
119
120
|
|
120
|
-
#: app/views/layouts/_main_menu.
|
121
|
+
#: app/views/layouts/_main_menu.html.erb:6
|
121
122
|
msgid "Menu|Users list"
|
122
123
|
msgstr "ユーザ一覧"
|
123
124
|
|
124
|
-
#: app/views/layouts/_main_menu.
|
125
|
+
#: app/views/layouts/_main_menu.html.erb:7
|
125
126
|
msgid "Menu|Directory"
|
126
127
|
msgstr "ディレクトリ"
|
127
128
|
|
128
|
-
#: app/views/layouts/_main_menu.
|
129
|
+
#: app/views/layouts/_main_menu.html.erb:8
|
129
130
|
msgid "Menu|objectClass list"
|
130
131
|
msgstr "オブジェクトクラス一覧"
|
131
132
|
|
132
|
-
#: app/views/layouts/_main_menu.
|
133
|
+
#: app/views/layouts/_main_menu.html.erb:9
|
133
134
|
msgid "Menu|Attribute list"
|
134
135
|
msgstr "属性一覧"
|
135
136
|
|
136
|
-
#: app/views/layouts/_main_menu.
|
137
|
+
#: app/views/layouts/_main_menu.html.erb:10
|
137
138
|
msgid "Menu|Syntax list"
|
138
139
|
msgstr "構文一覧"
|
139
140
|
|
140
|
-
#: app/views/_entry/_attributes_information.
|
141
|
-
#: app/views/attributes/_attributes.
|
141
|
+
#: app/views/_entry/_attributes_information.html.erb:6
|
142
|
+
#: app/views/attributes/_attributes.html.erb:5
|
142
143
|
msgid "Attribute name"
|
143
144
|
msgstr "属性名"
|
144
145
|
|
145
|
-
#: app/views/_entry/_attributes_information.
|
146
|
+
#: app/views/_entry/_attributes_information.html.erb:7
|
146
147
|
msgid "Value"
|
147
148
|
msgstr "値"
|
148
149
|
|
149
|
-
#: app/views/_entry/_attributes_information.
|
150
|
-
#: app/views/object_classes/show.
|
151
|
-
#: app/views/object_classes/_attributes.
|
152
|
-
#: app/views/users/_object_classes_update_form.
|
153
|
-
#: app/views/syntaxes/
|
154
|
-
#: app/views/attributes/show.
|
150
|
+
#: app/views/_entry/_attributes_information.html.erb:8
|
151
|
+
#: app/views/object_classes/show.html.erb:6
|
152
|
+
#: app/views/object_classes/_attributes.html.erb:11
|
153
|
+
#: app/views/users/_object_classes_update_form.html.erb:13
|
154
|
+
#: app/views/syntaxes/show.html.erb:6 app/views/syntaxes/_syntaxes.html.erb:6
|
155
|
+
#: app/views/attributes/show.html.erb:6
|
156
|
+
#: app/views/attributes/_attributes.html.erb:6
|
155
157
|
msgid "Description"
|
156
158
|
msgstr "説明"
|
157
159
|
|
158
|
-
#: app/views/_entry/_entry.
|
160
|
+
#: app/views/_entry/_entry.html.erb:6
|
159
161
|
msgid "objectClasses"
|
160
162
|
msgstr "オブジェクトクラス一覧"
|
161
163
|
|
162
|
-
#: app/views/_entry/_entry.
|
164
|
+
#: app/views/_entry/_entry.html.erb:11
|
163
165
|
msgid "Attributes"
|
164
166
|
msgstr "属性一覧"
|
165
167
|
|
166
|
-
#: app/views/object_classes/
|
167
|
-
|
168
|
-
|
169
|
-
msgstr "オブジェクトクラス名"
|
170
|
-
|
171
|
-
#: app/views/object_classes/_object_classes.rhtml:6
|
172
|
-
#: app/views/users/_attributes_update_form.rhtml:13
|
173
|
-
msgid "description"
|
174
|
-
msgstr "説明"
|
168
|
+
#: app/views/object_classes/index.html.erb:1
|
169
|
+
msgid "objectClass list"
|
170
|
+
msgstr "オブジェクトクラス一覧"
|
175
171
|
|
176
|
-
#: app/views/object_classes/show.
|
172
|
+
#: app/views/object_classes/show.html.erb:13
|
177
173
|
msgid "Super classes"
|
178
174
|
msgstr "親クラス一覧"
|
179
175
|
|
180
|
-
#: app/views/object_classes/show.
|
181
|
-
#: app/views/object_classes/_attributes.
|
176
|
+
#: app/views/object_classes/show.html.erb:15
|
177
|
+
#: app/views/object_classes/_attributes.html.erb:4
|
182
178
|
msgid "None"
|
183
179
|
msgstr "なし"
|
184
180
|
|
185
|
-
#: app/views/object_classes/show.
|
181
|
+
#: app/views/object_classes/show.html.erb:24
|
186
182
|
msgid "Requeired attributes"
|
187
183
|
msgstr "必須の属性一覧"
|
188
184
|
|
189
|
-
#: app/views/object_classes/show.
|
185
|
+
#: app/views/object_classes/show.html.erb:30
|
190
186
|
msgid "Optional attributes"
|
191
187
|
msgstr "省略可能な属性一覧"
|
192
188
|
|
193
|
-
#: app/views/object_classes/
|
194
|
-
|
195
|
-
|
189
|
+
#: app/views/object_classes/_object_classes.html.erb:5
|
190
|
+
#: app/views/users/_object_classes_update_form.html.erb:12
|
191
|
+
msgid "objectClass name"
|
192
|
+
msgstr "オブジェクトクラス名"
|
193
|
+
|
194
|
+
#: app/views/object_classes/_object_classes.html.erb:6
|
195
|
+
#: app/views/users/_attributes_update_form.html.erb:13
|
196
|
+
msgid "description"
|
197
|
+
msgstr "説明"
|
196
198
|
|
197
|
-
#: app/views/object_classes/_attributes.
|
199
|
+
#: app/views/object_classes/_attributes.html.erb:9
|
198
200
|
msgid "Name"
|
199
201
|
msgstr "名前"
|
200
202
|
|
201
|
-
#: app/views/object_classes/_attributes.
|
203
|
+
#: app/views/object_classes/_attributes.html.erb:10
|
202
204
|
msgid "Inherited"
|
203
205
|
msgstr "継承された属性"
|
204
206
|
|
205
|
-
#: app/views/users/
|
207
|
+
#: app/views/users/index.html.erb:2
|
208
|
+
msgid "No user."
|
209
|
+
msgstr "ユーザがいません。"
|
210
|
+
|
211
|
+
#: app/views/users/edit.html.erb:12
|
206
212
|
msgid "Menu|Show"
|
207
213
|
msgstr "表示"
|
208
214
|
|
209
|
-
#: app/views/users/_form.
|
215
|
+
#: app/views/users/_form.html.erb:5 app/views/users/_form.html.erb:13
|
210
216
|
msgid "Command|Update"
|
211
217
|
msgstr "更新"
|
212
218
|
|
213
|
-
#: app/views/users/
|
214
|
-
msgid "Change password"
|
215
|
-
msgstr "パスワード変更"
|
216
|
-
|
217
|
-
#: app/views/users/_password_change_form.rhtml:7
|
218
|
-
#: app/views/account/sign_up.rhtml:7
|
219
|
-
msgid "Password"
|
220
|
-
msgstr "パスワード"
|
221
|
-
|
222
|
-
#: app/views/users/_password_change_form.rhtml:15
|
223
|
-
#: app/views/account/sign_up.rhtml:10
|
224
|
-
msgid "Confirm Password"
|
225
|
-
msgstr "確認用パスワード"
|
226
|
-
|
227
|
-
#: app/views/users/_object_classes_update_form.rhtml:6
|
219
|
+
#: app/views/users/_object_classes_update_form.html.erb:7
|
228
220
|
msgid "Update objectClasses"
|
229
221
|
msgstr "オブジェクトクラス更新"
|
230
222
|
|
231
|
-
#: app/views/users/_object_classes_update_form.
|
223
|
+
#: app/views/users/_object_classes_update_form.html.erb:11
|
232
224
|
msgid "Use"
|
233
225
|
msgstr "使う"
|
234
226
|
|
235
|
-
#: app/views/users/
|
236
|
-
msgid "No user."
|
237
|
-
msgstr "ユーザがいません。"
|
238
|
-
|
239
|
-
#: app/views/users/_attributes_update_form.rhtml:6
|
227
|
+
#: app/views/users/_attributes_update_form.html.erb:6
|
240
228
|
msgid "Update attributes"
|
241
229
|
msgstr "属性更新"
|
242
230
|
|
243
|
-
#: app/views/users/_attributes_update_form.
|
231
|
+
#: app/views/users/_attributes_update_form.html.erb:11
|
244
232
|
msgid "attribute name"
|
245
233
|
msgstr "属性名"
|
246
234
|
|
247
|
-
#: app/views/users/_attributes_update_form.
|
235
|
+
#: app/views/users/_attributes_update_form.html.erb:12
|
248
236
|
msgid "value"
|
249
237
|
msgstr "値"
|
250
238
|
|
251
|
-
#: app/views/
|
239
|
+
#: app/views/users/_password_change_form.html.erb:2
|
240
|
+
msgid "Change password"
|
241
|
+
msgstr "パスワード変更"
|
242
|
+
|
243
|
+
#: app/views/users/_password_change_form.html.erb:7
|
244
|
+
#: app/views/account/sign_up.html.erb:7
|
245
|
+
msgid "Password"
|
246
|
+
msgstr "パスワード"
|
247
|
+
|
248
|
+
#: app/views/users/_password_change_form.html.erb:15
|
249
|
+
#: app/views/account/sign_up.html.erb:10
|
250
|
+
msgid "Confirm Password"
|
251
|
+
msgstr "確認用パスワード"
|
252
|
+
|
253
|
+
#: app/views/account/sign_up.html.erb:4
|
254
|
+
msgid "Login"
|
255
|
+
msgstr "ログイン名"
|
256
|
+
|
257
|
+
#: app/views/account/sign_up.html.erb:13 app/views/account/sign_up.html.erb:27
|
258
|
+
msgid "Sign up"
|
259
|
+
msgstr "登録"
|
260
|
+
|
261
|
+
#: app/views/account/login.html.erb:5
|
252
262
|
msgid "Login:"
|
253
263
|
msgstr "ログイン名:"
|
254
264
|
|
255
|
-
#: app/views/account/login.
|
265
|
+
#: app/views/account/login.html.erb:10
|
256
266
|
msgid "Password:"
|
257
267
|
msgstr "パスワード:"
|
258
268
|
|
259
|
-
#: app/views/account/login.
|
269
|
+
#: app/views/account/login.html.erb:16
|
260
270
|
msgid "Remember me:"
|
261
271
|
msgstr "次回からパスワード入力を省略:"
|
262
272
|
|
263
|
-
#: app/views/account/login.
|
273
|
+
#: app/views/account/login.html.erb:22
|
264
274
|
msgid "Log in"
|
265
275
|
msgstr "ログイン"
|
266
276
|
|
267
|
-
#: app/views/
|
268
|
-
msgid "
|
269
|
-
msgstr "
|
270
|
-
|
271
|
-
#: app/views/account/sign_up.rhtml:13 app/views/account/sign_up.rhtml:27
|
272
|
-
msgid "Sign up"
|
273
|
-
msgstr "登録"
|
274
|
-
|
275
|
-
#: app/views/syntaxes/_syntaxes.rhtml:5
|
276
|
-
msgid "Syntax name"
|
277
|
-
msgstr "構文名"
|
278
|
-
|
279
|
-
#: app/views/syntaxes/show.rhtml:13 app/views/attributes/show.rhtml:22
|
280
|
-
msgid "Detail"
|
281
|
-
msgstr "詳細"
|
277
|
+
#: app/views/syntaxes/index.html.erb:1
|
278
|
+
msgid "Syntax list"
|
279
|
+
msgstr "構文一覧"
|
282
280
|
|
283
|
-
#: app/views/syntaxes/_detail.
|
281
|
+
#: app/views/syntaxes/_detail.html.erb:4
|
284
282
|
msgid "Binary tranfer required"
|
285
283
|
msgstr "バイナリが必須"
|
286
284
|
|
287
|
-
#: app/views/syntaxes/_detail.
|
285
|
+
#: app/views/syntaxes/_detail.html.erb:9
|
288
286
|
msgid "Human readable"
|
289
287
|
msgstr "可読"
|
290
288
|
|
291
|
-
#: app/views/syntaxes/
|
292
|
-
msgid "
|
293
|
-
msgstr "
|
289
|
+
#: app/views/syntaxes/show.html.erb:13 app/views/attributes/show.html.erb:22
|
290
|
+
msgid "Detail"
|
291
|
+
msgstr "詳細"
|
292
|
+
|
293
|
+
#: app/views/syntaxes/_syntaxes.html.erb:5
|
294
|
+
msgid "Syntax name"
|
295
|
+
msgstr "構文名"
|
294
296
|
|
295
|
-
#: app/views/welcome/index.
|
297
|
+
#: app/views/welcome/index.html.erb:4
|
296
298
|
msgid "Menu|Populate"
|
297
299
|
msgstr "構築"
|
298
300
|
|
299
|
-
#: app/views/welcome/index.
|
301
|
+
#: app/views/welcome/index.html.erb:6
|
300
302
|
msgid "OK?"
|
301
303
|
msgstr "いいですか?"
|
302
304
|
|
303
|
-
#: app/views/welcome/index.
|
305
|
+
#: app/views/welcome/index.html.erb:8
|
304
306
|
msgid "Welcome %s!"
|
305
307
|
msgstr "ようこそ%s!"
|
306
308
|
|
307
|
-
#: app/views/welcome/index.
|
309
|
+
#: app/views/welcome/index.html.erb:12 lib/authenticated_system.rb:68
|
308
310
|
msgid "Please login."
|
309
311
|
msgstr "ログインしてください。"
|
310
312
|
|
311
|
-
#: app/views/attributes/
|
312
|
-
msgid "
|
313
|
-
msgstr "
|
313
|
+
#: app/views/attributes/index.html.erb:1
|
314
|
+
msgid "Attribute list"
|
315
|
+
msgstr "属性一覧"
|
314
316
|
|
315
|
-
#: app/views/attributes/_detail.
|
317
|
+
#: app/views/attributes/_detail.html.erb:4
|
316
318
|
msgid "Read only"
|
317
319
|
msgstr "読み込み専用"
|
318
320
|
|
319
|
-
#: app/views/attributes/_detail.
|
321
|
+
#: app/views/attributes/_detail.html.erb:9
|
320
322
|
msgid "Single value"
|
321
323
|
msgstr "値は一つのみ"
|
322
324
|
|
323
|
-
#: app/views/attributes/_detail.
|
325
|
+
#: app/views/attributes/_detail.html.erb:14
|
324
326
|
msgid "Binary"
|
325
327
|
msgstr "バイナリ"
|
326
328
|
|
327
|
-
#: app/views/attributes/_detail.
|
329
|
+
#: app/views/attributes/_detail.html.erb:19
|
328
330
|
msgid "Binary required"
|
329
331
|
msgstr "バイナリが必須"
|
330
332
|
|
331
|
-
#: app/views/attributes/_detail.
|
333
|
+
#: app/views/attributes/_detail.html.erb:24
|
332
334
|
msgid "Syntax"
|
333
335
|
msgstr "構文"
|
334
336
|
|
335
|
-
#: app/views/attributes/
|
336
|
-
msgid "
|
337
|
-
msgstr "
|
337
|
+
#: app/views/attributes/show.html.erb:14
|
338
|
+
msgid "Super attribute"
|
339
|
+
msgstr "親属性"
|
338
340
|
|
339
|
-
#: app/views/_schema/_aliases.
|
341
|
+
#: app/views/_schema/_aliases.html.erb:2
|
340
342
|
msgid "Aliases"
|
341
343
|
msgstr "別名一覧"
|
@@ -6,8 +6,8 @@
|
|
6
6
|
# Ace Suares <ace@suares.an>, 2007.
|
7
7
|
msgid ""
|
8
8
|
msgstr ""
|
9
|
-
"Project-Id-Version: AL Admin 0.
|
10
|
-
"POT-Creation-Date:
|
9
|
+
"Project-Id-Version: AL Admin 0.10.0\n"
|
10
|
+
"POT-Creation-Date: 2008-02-09 14:25+0900\n"
|
11
11
|
"PO-Revision-Date: 2007-08-24 22:03+0900\n"
|
12
12
|
"Last-Translator: Ace Suares <ace@suares.an>\n"
|
13
13
|
"Language-Team: Nederlands <nl@li.org>\n"
|
@@ -86,7 +86,7 @@ msgstr "Bedankt voor het inschrijven!"
|
|
86
86
|
msgid "You have been logged out."
|
87
87
|
msgstr "U bent afgemeld."
|
88
88
|
|
89
|
-
#: app/controllers/users_controller.rb:
|
89
|
+
#: app/controllers/users_controller.rb:33
|
90
90
|
msgid "User was successfully updated."
|
91
91
|
msgstr "Gebruikersgegevens bijgewerkt."
|
92
92
|
|
@@ -98,267 +98,274 @@ msgstr ""
|
|
98
98
|
msgid "Edit"
|
99
99
|
msgstr "bewerken"
|
100
100
|
|
101
|
-
#: app/views/directory/populate.
|
101
|
+
#: app/views/directory/populate.html.erb:1
|
102
102
|
msgid "Done."
|
103
103
|
msgstr ""
|
104
104
|
|
105
|
-
#: app/views/directory/populate.
|
106
|
-
#: app/views/
|
107
|
-
#: app/views/
|
105
|
+
#: app/views/directory/populate.html.erb:2
|
106
|
+
#: app/views/object_classes/show.html.erb:37 app/views/users/edit.html.erb:13
|
107
|
+
#: app/views/users/show.html.erb:9 app/views/syntaxes/show.html.erb:20
|
108
|
+
#: app/views/attributes/show.html.erb:29
|
108
109
|
#, fuzzy
|
109
110
|
msgid "Menu|Index"
|
110
111
|
msgstr "menu|Aanmelden"
|
111
112
|
|
112
|
-
#: app/views/layouts/_header_menu.
|
113
|
+
#: app/views/layouts/_header_menu.html.erb:5
|
113
114
|
msgid "Menu|Logout"
|
114
115
|
msgstr "Afmelden"
|
115
116
|
|
116
|
-
#: app/views/layouts/_header_menu.
|
117
|
+
#: app/views/layouts/_header_menu.html.erb:7
|
117
118
|
msgid "Menu|Login"
|
118
119
|
msgstr "Aanmelden"
|
119
120
|
|
120
|
-
#: app/views/layouts/_header_menu.
|
121
|
+
#: app/views/layouts/_header_menu.html.erb:9
|
121
122
|
msgid "Menu|Sign up"
|
122
123
|
msgstr "Inschrijven"
|
123
124
|
|
124
|
-
#: app/views/layouts/_main_menu.
|
125
|
+
#: app/views/layouts/_main_menu.html.erb:6
|
125
126
|
msgid "Menu|Users list"
|
126
127
|
msgstr "Gebruikerslijst"
|
127
128
|
|
128
|
-
#: app/views/layouts/_main_menu.
|
129
|
+
#: app/views/layouts/_main_menu.html.erb:7
|
129
130
|
msgid "Menu|Directory"
|
130
131
|
msgstr ""
|
131
132
|
|
132
|
-
#: app/views/layouts/_main_menu.
|
133
|
+
#: app/views/layouts/_main_menu.html.erb:8
|
133
134
|
#, fuzzy
|
134
135
|
msgid "Menu|objectClass list"
|
135
136
|
msgstr "Gebruikerslijst"
|
136
137
|
|
137
|
-
#: app/views/layouts/_main_menu.
|
138
|
+
#: app/views/layouts/_main_menu.html.erb:9
|
138
139
|
#, fuzzy
|
139
140
|
msgid "Menu|Attribute list"
|
140
141
|
msgstr "naam van het attribuut"
|
141
142
|
|
142
|
-
#: app/views/layouts/_main_menu.
|
143
|
+
#: app/views/layouts/_main_menu.html.erb:10
|
143
144
|
#, fuzzy
|
144
145
|
msgid "Menu|Syntax list"
|
145
146
|
msgstr "Gebruikerslijst"
|
146
147
|
|
147
|
-
#: app/views/_entry/_attributes_information.
|
148
|
-
#: app/views/attributes/_attributes.
|
148
|
+
#: app/views/_entry/_attributes_information.html.erb:6
|
149
|
+
#: app/views/attributes/_attributes.html.erb:5
|
149
150
|
#, fuzzy
|
150
151
|
msgid "Attribute name"
|
151
152
|
msgstr "naam van het attribuut"
|
152
153
|
|
153
|
-
#: app/views/_entry/_attributes_information.
|
154
|
+
#: app/views/_entry/_attributes_information.html.erb:7
|
154
155
|
#, fuzzy
|
155
156
|
msgid "Value"
|
156
157
|
msgstr "waarde"
|
157
158
|
|
158
|
-
#: app/views/_entry/_attributes_information.
|
159
|
-
#: app/views/object_classes/show.
|
160
|
-
#: app/views/object_classes/_attributes.
|
161
|
-
#: app/views/users/_object_classes_update_form.
|
162
|
-
#: app/views/syntaxes/
|
163
|
-
#: app/views/attributes/show.
|
159
|
+
#: app/views/_entry/_attributes_information.html.erb:8
|
160
|
+
#: app/views/object_classes/show.html.erb:6
|
161
|
+
#: app/views/object_classes/_attributes.html.erb:11
|
162
|
+
#: app/views/users/_object_classes_update_form.html.erb:13
|
163
|
+
#: app/views/syntaxes/show.html.erb:6 app/views/syntaxes/_syntaxes.html.erb:6
|
164
|
+
#: app/views/attributes/show.html.erb:6
|
165
|
+
#: app/views/attributes/_attributes.html.erb:6
|
164
166
|
#, fuzzy
|
165
167
|
msgid "Description"
|
166
168
|
msgstr "beschrijving"
|
167
169
|
|
168
|
-
#: app/views/_entry/_entry.
|
170
|
+
#: app/views/_entry/_entry.html.erb:6
|
171
|
+
#, fuzzy
|
169
172
|
msgid "objectClasses"
|
170
|
-
msgstr ""
|
173
|
+
msgstr "Gebruikerslijst"
|
171
174
|
|
172
|
-
#: app/views/_entry/_entry.
|
175
|
+
#: app/views/_entry/_entry.html.erb:11
|
173
176
|
#, fuzzy
|
174
177
|
msgid "Attributes"
|
175
178
|
msgstr "naam van het attribuut"
|
176
179
|
|
177
|
-
#: app/views/object_classes/
|
178
|
-
|
179
|
-
msgid "objectClass
|
180
|
-
msgstr ""
|
181
|
-
|
182
|
-
#: app/views/object_classes/_object_classes.rhtml:6
|
183
|
-
#: app/views/users/_attributes_update_form.rhtml:13
|
184
|
-
msgid "description"
|
185
|
-
msgstr "beschrijving"
|
180
|
+
#: app/views/object_classes/index.html.erb:1
|
181
|
+
#, fuzzy
|
182
|
+
msgid "objectClass list"
|
183
|
+
msgstr "Gebruikerslijst"
|
186
184
|
|
187
|
-
#: app/views/object_classes/show.
|
185
|
+
#: app/views/object_classes/show.html.erb:13
|
186
|
+
#, fuzzy
|
188
187
|
msgid "Super classes"
|
189
|
-
msgstr ""
|
188
|
+
msgstr "Gebruikerslijst"
|
190
189
|
|
191
|
-
#: app/views/object_classes/show.
|
192
|
-
#: app/views/object_classes/_attributes.
|
190
|
+
#: app/views/object_classes/show.html.erb:15
|
191
|
+
#: app/views/object_classes/_attributes.html.erb:4
|
193
192
|
msgid "None"
|
194
193
|
msgstr ""
|
195
194
|
|
196
|
-
#: app/views/object_classes/show.
|
195
|
+
#: app/views/object_classes/show.html.erb:24
|
197
196
|
#, fuzzy
|
198
197
|
msgid "Requeired attributes"
|
199
198
|
msgstr "naam van het attribuut"
|
200
199
|
|
201
|
-
#: app/views/object_classes/show.
|
200
|
+
#: app/views/object_classes/show.html.erb:30
|
202
201
|
#, fuzzy
|
203
202
|
msgid "Optional attributes"
|
204
203
|
msgstr "naam van het attribuut"
|
205
204
|
|
206
|
-
#: app/views/object_classes/
|
207
|
-
|
208
|
-
|
205
|
+
#: app/views/object_classes/_object_classes.html.erb:5
|
206
|
+
#: app/views/users/_object_classes_update_form.html.erb:12
|
207
|
+
#, fuzzy
|
208
|
+
msgid "objectClass name"
|
209
|
+
msgstr "Gebruikerslijst"
|
209
210
|
|
210
|
-
#: app/views/object_classes/
|
211
|
+
#: app/views/object_classes/_object_classes.html.erb:6
|
212
|
+
#: app/views/users/_attributes_update_form.html.erb:13
|
213
|
+
msgid "description"
|
214
|
+
msgstr "beschrijving"
|
215
|
+
|
216
|
+
#: app/views/object_classes/_attributes.html.erb:9
|
211
217
|
msgid "Name"
|
212
218
|
msgstr ""
|
213
219
|
|
214
|
-
#: app/views/object_classes/_attributes.
|
220
|
+
#: app/views/object_classes/_attributes.html.erb:10
|
215
221
|
msgid "Inherited"
|
216
222
|
msgstr ""
|
217
223
|
|
218
|
-
#: app/views/users/
|
224
|
+
#: app/views/users/index.html.erb:2
|
225
|
+
msgid "No user."
|
226
|
+
msgstr "Geen gebruiker"
|
227
|
+
|
228
|
+
#: app/views/users/edit.html.erb:12
|
219
229
|
msgid "Menu|Show"
|
220
230
|
msgstr "Toon"
|
221
231
|
|
222
|
-
#: app/views/users/_form.
|
232
|
+
#: app/views/users/_form.html.erb:5 app/views/users/_form.html.erb:13
|
223
233
|
msgid "Command|Update"
|
224
234
|
msgstr ""
|
225
235
|
|
226
|
-
#: app/views/users/
|
227
|
-
#, fuzzy
|
228
|
-
msgid "Change password"
|
229
|
-
msgstr "Bevestig Wachtwoord"
|
230
|
-
|
231
|
-
#: app/views/users/_password_change_form.rhtml:7
|
232
|
-
#: app/views/account/sign_up.rhtml:7
|
233
|
-
msgid "Password"
|
234
|
-
msgstr "Wachtwoord"
|
235
|
-
|
236
|
-
#: app/views/users/_password_change_form.rhtml:15
|
237
|
-
#: app/views/account/sign_up.rhtml:10
|
238
|
-
msgid "Confirm Password"
|
239
|
-
msgstr "Bevestig Wachtwoord"
|
240
|
-
|
241
|
-
#: app/views/users/_object_classes_update_form.rhtml:6
|
236
|
+
#: app/views/users/_object_classes_update_form.html.erb:7
|
242
237
|
#, fuzzy
|
243
238
|
msgid "Update objectClasses"
|
244
239
|
msgstr "Gebruikerslijst"
|
245
240
|
|
246
|
-
#: app/views/users/_object_classes_update_form.
|
241
|
+
#: app/views/users/_object_classes_update_form.html.erb:11
|
247
242
|
#, fuzzy
|
248
243
|
msgid "Use"
|
249
244
|
msgstr "DN"
|
250
245
|
|
251
|
-
#: app/views/users/
|
252
|
-
msgid "No user."
|
253
|
-
msgstr "Geen gebruiker"
|
254
|
-
|
255
|
-
#: app/views/users/_attributes_update_form.rhtml:6
|
246
|
+
#: app/views/users/_attributes_update_form.html.erb:6
|
256
247
|
#, fuzzy
|
257
248
|
msgid "Update attributes"
|
258
249
|
msgstr "naam van het attribuut"
|
259
250
|
|
260
|
-
#: app/views/users/_attributes_update_form.
|
251
|
+
#: app/views/users/_attributes_update_form.html.erb:11
|
261
252
|
msgid "attribute name"
|
262
253
|
msgstr "naam van het attribuut"
|
263
254
|
|
264
|
-
#: app/views/users/_attributes_update_form.
|
255
|
+
#: app/views/users/_attributes_update_form.html.erb:12
|
265
256
|
msgid "value"
|
266
257
|
msgstr "waarde"
|
267
258
|
|
268
|
-
#: app/views/
|
259
|
+
#: app/views/users/_password_change_form.html.erb:2
|
260
|
+
#, fuzzy
|
261
|
+
msgid "Change password"
|
262
|
+
msgstr "Bevestig Wachtwoord"
|
263
|
+
|
264
|
+
#: app/views/users/_password_change_form.html.erb:7
|
265
|
+
#: app/views/account/sign_up.html.erb:7
|
266
|
+
msgid "Password"
|
267
|
+
msgstr "Wachtwoord"
|
268
|
+
|
269
|
+
#: app/views/users/_password_change_form.html.erb:15
|
270
|
+
#: app/views/account/sign_up.html.erb:10
|
271
|
+
msgid "Confirm Password"
|
272
|
+
msgstr "Bevestig Wachtwoord"
|
273
|
+
|
274
|
+
#: app/views/account/sign_up.html.erb:4
|
275
|
+
msgid "Login"
|
276
|
+
msgstr "Gebruikersnaam"
|
277
|
+
|
278
|
+
#: app/views/account/sign_up.html.erb:13 app/views/account/sign_up.html.erb:27
|
279
|
+
msgid "Sign up"
|
280
|
+
msgstr "inschrijven"
|
281
|
+
|
282
|
+
#: app/views/account/login.html.erb:5
|
269
283
|
#, fuzzy
|
270
284
|
msgid "Login:"
|
271
285
|
msgstr "Gebruikersnaam"
|
272
286
|
|
273
|
-
#: app/views/account/login.
|
287
|
+
#: app/views/account/login.html.erb:10
|
274
288
|
#, fuzzy
|
275
289
|
msgid "Password:"
|
276
290
|
msgstr "Wachtwoord"
|
277
291
|
|
278
|
-
#: app/views/account/login.
|
292
|
+
#: app/views/account/login.html.erb:16
|
279
293
|
msgid "Remember me:"
|
280
294
|
msgstr "Vergeet mij niet:"
|
281
295
|
|
282
|
-
#: app/views/account/login.
|
296
|
+
#: app/views/account/login.html.erb:22
|
283
297
|
msgid "Log in"
|
284
298
|
msgstr "Aanmelden"
|
285
299
|
|
286
|
-
#: app/views/
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
#: app/views/account/sign_up.rhtml:13 app/views/account/sign_up.rhtml:27
|
291
|
-
msgid "Sign up"
|
292
|
-
msgstr "inschrijven"
|
293
|
-
|
294
|
-
#: app/views/syntaxes/_syntaxes.rhtml:5
|
295
|
-
msgid "Syntax name"
|
296
|
-
msgstr ""
|
297
|
-
|
298
|
-
#: app/views/syntaxes/show.rhtml:13 app/views/attributes/show.rhtml:22
|
299
|
-
msgid "Detail"
|
300
|
-
msgstr ""
|
300
|
+
#: app/views/syntaxes/index.html.erb:1
|
301
|
+
#, fuzzy
|
302
|
+
msgid "Syntax list"
|
303
|
+
msgstr "Gebruikerslijst"
|
301
304
|
|
302
|
-
#: app/views/syntaxes/_detail.
|
305
|
+
#: app/views/syntaxes/_detail.html.erb:4
|
303
306
|
msgid "Binary tranfer required"
|
304
307
|
msgstr ""
|
305
308
|
|
306
|
-
#: app/views/syntaxes/_detail.
|
309
|
+
#: app/views/syntaxes/_detail.html.erb:9
|
307
310
|
msgid "Human readable"
|
308
311
|
msgstr ""
|
309
312
|
|
310
|
-
#: app/views/syntaxes/
|
311
|
-
msgid "
|
313
|
+
#: app/views/syntaxes/show.html.erb:13 app/views/attributes/show.html.erb:22
|
314
|
+
msgid "Detail"
|
315
|
+
msgstr ""
|
316
|
+
|
317
|
+
#: app/views/syntaxes/_syntaxes.html.erb:5
|
318
|
+
msgid "Syntax name"
|
312
319
|
msgstr ""
|
313
320
|
|
314
|
-
#: app/views/welcome/index.
|
321
|
+
#: app/views/welcome/index.html.erb:4
|
315
322
|
#, fuzzy
|
316
323
|
msgid "Menu|Populate"
|
317
324
|
msgstr "Menu|Afmelden"
|
318
325
|
|
319
|
-
#: app/views/welcome/index.
|
326
|
+
#: app/views/welcome/index.html.erb:6
|
320
327
|
msgid "OK?"
|
321
328
|
msgstr ""
|
322
329
|
|
323
|
-
#: app/views/welcome/index.
|
330
|
+
#: app/views/welcome/index.html.erb:8
|
324
331
|
msgid "Welcome %s!"
|
325
332
|
msgstr ""
|
326
333
|
|
327
|
-
#: app/views/welcome/index.
|
334
|
+
#: app/views/welcome/index.html.erb:12 lib/authenticated_system.rb:68
|
328
335
|
msgid "Please login."
|
329
336
|
msgstr ""
|
330
337
|
|
331
|
-
#: app/views/attributes/
|
338
|
+
#: app/views/attributes/index.html.erb:1
|
332
339
|
#, fuzzy
|
333
|
-
msgid "
|
340
|
+
msgid "Attribute list"
|
334
341
|
msgstr "naam van het attribuut"
|
335
342
|
|
336
|
-
#: app/views/attributes/_detail.
|
343
|
+
#: app/views/attributes/_detail.html.erb:4
|
337
344
|
msgid "Read only"
|
338
345
|
msgstr ""
|
339
346
|
|
340
|
-
#: app/views/attributes/_detail.
|
347
|
+
#: app/views/attributes/_detail.html.erb:9
|
341
348
|
msgid "Single value"
|
342
349
|
msgstr ""
|
343
350
|
|
344
|
-
#: app/views/attributes/_detail.
|
351
|
+
#: app/views/attributes/_detail.html.erb:14
|
345
352
|
msgid "Binary"
|
346
353
|
msgstr ""
|
347
354
|
|
348
|
-
#: app/views/attributes/_detail.
|
355
|
+
#: app/views/attributes/_detail.html.erb:19
|
349
356
|
msgid "Binary required"
|
350
357
|
msgstr ""
|
351
358
|
|
352
|
-
#: app/views/attributes/_detail.
|
359
|
+
#: app/views/attributes/_detail.html.erb:24
|
353
360
|
msgid "Syntax"
|
354
361
|
msgstr ""
|
355
362
|
|
356
|
-
#: app/views/attributes/
|
363
|
+
#: app/views/attributes/show.html.erb:14
|
357
364
|
#, fuzzy
|
358
|
-
msgid "
|
365
|
+
msgid "Super attribute"
|
359
366
|
msgstr "naam van het attribuut"
|
360
367
|
|
361
|
-
#: app/views/_schema/_aliases.
|
368
|
+
#: app/views/_schema/_aliases.html.erb:2
|
362
369
|
msgid "Aliases"
|
363
370
|
msgstr ""
|
364
371
|
|