enju_standalone_interface 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (114) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +3 -0
  3. data/Rakefile +35 -0
  4. data/app/assets/javascripts/enju_standalone_interface/application.js +15 -0
  5. data/app/assets/javascripts/enju_standalone_interface/batch_action.js +2 -0
  6. data/app/assets/stylesheets/enju_standalone_interface/application.css +13 -0
  7. data/app/assets/stylesheets/enju_standalone_interface/batch_action.css +4 -0
  8. data/app/controllers/application_controller.rb +4 -0
  9. data/app/controllers/batch_action_controller.rb +9 -0
  10. data/app/helpers/enju_standalone_interface/application_helper.rb +4 -0
  11. data/app/helpers/enju_standalone_interface/batch_action_helper.rb +4 -0
  12. data/app/views/enju_standalone_interface/batch_action/recept.html.erb +1 -0
  13. data/app/views/layouts/enju_standalone_interface/application.html.erb +14 -0
  14. data/config/routes.rb +3 -0
  15. data/lib/enju_standalone_interface.rb +233 -0
  16. data/lib/enju_standalone_interface/engine.rb +5 -0
  17. data/lib/enju_standalone_interface/version.rb +3 -0
  18. data/lib/tasks/enju_standalone_interface_tasks.rake +4 -0
  19. data/spec/controllers/enju_standalone_interface/batch_action_controller_spec.rb +21 -0
  20. data/spec/dummy/README.rdoc +261 -0
  21. data/spec/dummy/Rakefile +7 -0
  22. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  23. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  24. data/spec/dummy/app/controllers/application_controller.rb +3 -0
  25. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  26. data/spec/dummy/app/helpers/users_helper.rb +36 -0
  27. data/spec/dummy/app/models/basket.rb +70 -0
  28. data/spec/dummy/app/models/carrier_type.rb +33 -0
  29. data/spec/dummy/app/models/checked_item.rb +177 -0
  30. data/spec/dummy/app/models/checkout.rb +307 -0
  31. data/spec/dummy/app/models/checkout_type.rb +33 -0
  32. data/spec/dummy/app/models/circulation_status.rb +23 -0
  33. data/spec/dummy/app/models/event.rb +124 -0
  34. data/spec/dummy/app/models/item.rb +1234 -0
  35. data/spec/dummy/app/models/item_has_use_restriction.rb +23 -0
  36. data/spec/dummy/app/models/lending_policy.rb +32 -0
  37. data/spec/dummy/app/models/library.rb +105 -0
  38. data/spec/dummy/app/models/library_group.rb +88 -0
  39. data/spec/dummy/app/models/manifestation.rb +698 -0
  40. data/spec/dummy/app/models/patron.rb +342 -0
  41. data/spec/dummy/app/models/role.rb +47 -0
  42. data/spec/dummy/app/models/shelf.rb +83 -0
  43. data/spec/dummy/app/models/use_restriction.rb +22 -0
  44. data/spec/dummy/app/models/user.rb +580 -0
  45. data/spec/dummy/app/models/user_group.rb +43 -0
  46. data/spec/dummy/app/models/user_group_has_checkout_type.rb +80 -0
  47. data/spec/dummy/app/models/user_has_role.rb +4 -0
  48. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  49. data/spec/dummy/config.ru +4 -0
  50. data/spec/dummy/config/application.rb +57 -0
  51. data/spec/dummy/config/boot.rb +10 -0
  52. data/spec/dummy/config/database.yml +25 -0
  53. data/spec/dummy/config/environment.rb +5 -0
  54. data/spec/dummy/config/environments/development.rb +37 -0
  55. data/spec/dummy/config/environments/production.rb +67 -0
  56. data/spec/dummy/config/environments/test.rb +37 -0
  57. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  58. data/spec/dummy/config/initializers/inflections.rb +15 -0
  59. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  60. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  61. data/spec/dummy/config/initializers/session_store.rb +8 -0
  62. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  63. data/spec/dummy/config/locales/en.yml +5 -0
  64. data/spec/dummy/config/locales/translation_en.yml +1724 -0
  65. data/spec/dummy/config/locales/validates_timeliness.en.yml +16 -0
  66. data/spec/dummy/config/routes.rb +4 -0
  67. data/spec/dummy/db/development.sqlite3 +0 -0
  68. data/spec/dummy/db/migrate/20120322223037_create_users.rb +71 -0
  69. data/spec/dummy/db/migrate/20120323053037_create_roles.rb +15 -0
  70. data/spec/dummy/db/migrate/20120323060718_create_user_has_roles.rb +10 -0
  71. data/spec/dummy/db/migrate/20120323062239_create_libraries.rb +37 -0
  72. data/spec/dummy/db/migrate/20120323063602_create_items.rb +33 -0
  73. data/spec/dummy/db/migrate/20120323064619_craete_circulation_statuses.rb +13 -0
  74. data/spec/dummy/db/migrate/20120323065157_craete_checkout_types.rb +13 -0
  75. data/spec/dummy/db/migrate/20120323070102_craete_shelves.rb +17 -0
  76. data/spec/dummy/db/migrate/20120323071616_craete_library_groups.rb +24 -0
  77. data/spec/dummy/db/migrate/20120323073022_craete_patrons.rb +72 -0
  78. data/spec/dummy/db/migrate/20120323141030_create_manifestations.rb +97 -0
  79. data/spec/dummy/db/migrate/20120323142330_create_carrier_types.rb +12 -0
  80. data/spec/dummy/db/migrate/20120324132708_create_baskets.rb +20 -0
  81. data/spec/dummy/db/migrate/20120324135409_checked_items.rb +16 -0
  82. data/spec/dummy/db/migrate/20120324141007_create_user_groups.rb +22 -0
  83. data/spec/dummy/db/migrate/20120324141950_create_user_group_has_checkout_type.rb +26 -0
  84. data/spec/dummy/db/migrate/20120324151951_create_lending_policies.rb +22 -0
  85. data/spec/dummy/db/migrate/20120324153756_create_use_restrictions.rb +15 -0
  86. data/spec/dummy/db/migrate/20120324154009_create_item_has_use_restrictions.rb +16 -0
  87. data/spec/dummy/db/migrate/20120324164815_create_checkouts.rb +26 -0
  88. data/spec/dummy/db/migrate/20120325160112_create_events.rb +23 -0
  89. data/spec/dummy/db/schema.rb +518 -0
  90. data/spec/dummy/db/test.sqlite3 +0 -0
  91. data/spec/dummy/lib/enju_leaf.rb +6 -0
  92. data/spec/dummy/lib/enju_leaf/master_model.rb +41 -0
  93. data/spec/dummy/lib/enju_leaf/url_validator.rb +10 -0
  94. data/spec/dummy/log/development.log +116 -0
  95. data/spec/dummy/log/test.log +17849 -0
  96. data/spec/dummy/public/404.html +26 -0
  97. data/spec/dummy/public/422.html +26 -0
  98. data/spec/dummy/public/500.html +25 -0
  99. data/spec/dummy/public/favicon.ico +0 -0
  100. data/spec/dummy/script/rails +6 -0
  101. data/spec/factories/item.rb +9 -0
  102. data/spec/factories/manifestation.rb +6 -0
  103. data/spec/factories/user.rb +27 -0
  104. data/spec/fixtures/carrier_types.yml +38 -0
  105. data/spec/fixtures/checkout_types.yml +34 -0
  106. data/spec/fixtures/circulation_statuses.yml +135 -0
  107. data/spec/fixtures/libraries.yml +40 -0
  108. data/spec/fixtures/roles.yml +21 -0
  109. data/spec/fixtures/shelves.yml +53 -0
  110. data/spec/fixtures/user_group_has_checkout_types.yml +14 -0
  111. data/spec/fixtures/user_groups.yml +7 -0
  112. data/spec/libs/enju_standalone_interface_spec.rb +133 -0
  113. data/spec/spec_helper.rb +36 -0
  114. metadata +358 -0
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json]
9
+ end
10
+
11
+ # Disable root element in JSON by default.
12
+ ActiveSupport.on_load(:active_record) do
13
+ self.include_root_in_json = false
14
+ end
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,1724 @@
1
+ en:
2
+ activerecord:
3
+ models:
4
+ library: Library
5
+ question: Question
6
+ patron_import_file: Patron import file
7
+ circulation_status: Circulation status
8
+ inventory: Inventory
9
+ patron: Patron
10
+ user_note: Note
11
+ feeds/app: Feeds/App
12
+ feeds/persistence: Feeds/Persistence
13
+ feeds/shared: Feeds/Shared
14
+ feeds/instance: Feeds/Instance
15
+ feeds/global: Feeds/Global
16
+ feeds/activity: Feeds/Activity
17
+ subject_as_object: Subject as object
18
+ subject_as_place: Subject as place
19
+ subject_has_classification: Subject has classification
20
+ expression: Expression
21
+ language: Language
22
+ patron_merge_list: Patron merge list
23
+ user: User
24
+ work_has_subject: Resource has subject
25
+ picture_file: Picture file
26
+ form_of_work: Form of works
27
+ inter_library_loan: Inter library loan
28
+ message: Message
29
+ classification: Classification
30
+ imported_object: Imported object
31
+ exemplify: Exemplify
32
+ own: Own
33
+ search_history: Search history
34
+ shelf: Shelf
35
+ event_category: Event category
36
+ advertisement: Advertisement
37
+ porta_response: PORTA Response
38
+ donate: Donate
39
+ basket: Basket
40
+ subject_as_event: Subject as event
41
+ checked_item: Checked item
42
+ produce: Produce
43
+ role: Role
44
+ session: Session
45
+ subject_broader_term: Subject broader term
46
+ subject_type: Subject type
47
+ subject_heading_type: Subject heading type
48
+ subscribe: Subscribe
49
+ checkin: Checkin
50
+ item: Item
51
+ barcode: Barcode
52
+ barcode_list: Expanded Barcode
53
+ work: Work
54
+ purchase_request: Purchase request
55
+ realize: Realize
56
+ reify: Reify
57
+ subject_as_concept: Subject as concept
58
+ frequency: Frequency of issue
59
+ expression_merge_list: Expression merge list
60
+ use_restriction: Use restriction
61
+ subject: Subject
62
+ content_type: Content type
63
+ work_merge: Work merge
64
+ aaws_response: Aaws response
65
+ patron_type: Patron type
66
+ work_merge_list: Work merge list
67
+ order: Order
68
+ order_list: Order list
69
+ advertise: Advertise
70
+ event: Event
71
+ embody: Embody
72
+ item_has_use_restriction: Item has use restriction
73
+ expression_merge: Expression merge
74
+ request_status_type: Request status type
75
+ news_feed: News feed
76
+ news_post: News post
77
+ search_engine: Search engine
78
+ bookmark: Bookmark
79
+ create: Create
80
+ carrier_type: Carrier Type
81
+ manifestation: Manifestation
82
+ user_group: User group
83
+ resource_import_file: Resource import file
84
+ checkout: Checkout
85
+ checkout_family: Family's checkout
86
+ subscription: Subscription
87
+ message_template: Message template
88
+ patron_merge: Patron merge
89
+ subject_related_term: Subject related term
90
+ library_group: Library group
91
+ event_import_file: Event import file
92
+ attachment_file: Attachment file
93
+ reserve: Reserve
94
+ retained_manifestation: Retaubed manifestation(not connected)
95
+ reserve_family: Family's reserve
96
+ message_request: Message request
97
+ answer: Answer
98
+ bookstore: Bookstore
99
+ area: Area
100
+ checkout_type: Checkout type
101
+ classification_type: Classification type
102
+ country: Country
103
+ manifestation_api_response: Manifestation API Response
104
+ request_type: Request type
105
+ inventory_file: Inventory file
106
+ user_group_has_checkout_type: User group has checkout type
107
+ carrier_type_has_checkout_type: Carrier type and checkout type
108
+ tag: Tag
109
+ bookmark_stat: Bookmark stat
110
+ manifestation_checkout_stat: Manifestation checkout stat
111
+ user_checkout_stat: User checkout stat
112
+ manifestation_reserve_stat: Manifestation reserve stat
113
+ user_reserve_stat: User reserve stat
114
+ work_has_work: Work to work relationship
115
+ expression_has_expression: Expression to expression relationship
116
+ manifestation_has_manifestation: Manifestation to manifestation relationship
117
+ item_has_item: Item to item relationship
118
+ bookmark_stat_has_manifestation: Bookmark stat to manifestation relationship
119
+ reserve_stat_has_manifestation: Reserve stat to manifestation relationship
120
+ reserve_stat_has_user: Reserve stat to user relationship
121
+ concept: Concept
122
+ place: Place
123
+ work_has_concept: Work to concept relationship
124
+ work_has_place: Work to place relationship
125
+ person: Person
126
+ corporate_body: Corporate body
127
+ family: Family
128
+ unablelist: Unable
129
+ subject_heading_type_has_subject: Subject heading type to subject relationship
130
+ user_has_shelf: User to shelf relationship
131
+ participate: Participate
132
+ patron_has_patron: Patron to patron relationship
133
+ extent: Extent
134
+ medium_of_performance: Medium of performance
135
+ content_type: Content type
136
+ patron_relationship_type: Patron relationship type
137
+ manifestation_relationship_type: Resource relationship type
138
+ lending_policy: Lending policy
139
+ nii_type: NII metadata type
140
+ license: License
141
+ work_to_expression_rel_type: Work-to-Expression relationship type
142
+ expression_to_manifestation_rel_type: Expression-to-Manifestation relationship type
143
+ series_statement: Series statement
144
+ checkout_stat_has_manifestation: Checkout stat has manifestation
145
+ checkout_stat_has_user: Checkout stat has user
146
+ reserve_stat_has_manifestation: Reserve stat has manifestation
147
+ reserve_stat_has_user: Reserve stat has user
148
+ import_request: Import request
149
+ resource: Resource
150
+ user_has_role: User and roles
151
+ patron_relationship: Patron relationship
152
+ manifestation_relationship: Resource relationship
153
+ resource_import_result: Resource Import Result
154
+ patron_import_result: Patron Import Result
155
+ event_import_result: Event Import Result
156
+ series_statement_merge: Series statement merge
157
+ series_statement_merge_list: Series statement merge list
158
+ series_has_manifestation: Series statement to manifestation
159
+ loss_item: Loss item
160
+
161
+ attributes:
162
+ library:
163
+ name: Name
164
+ display_name: Display name
165
+ short_display_name: Short display name
166
+ zip_code: Zip code
167
+ region: Region
168
+ locality: Locality
169
+ street: Street
170
+ telephone_number_1: Telephone number 1
171
+ telephone_number_2: Telephone number 2
172
+ fax_number: Fax number
173
+ lat: Lat
174
+ lng: Lng
175
+ note: Note
176
+ call_number_rows: Call number rows
177
+ call_number_delimiter: Call number delimiter
178
+ position: Position
179
+ deleted_at: Deleted at
180
+ opening_hour: Opening hour
181
+ question:
182
+ body: Body
183
+ share_question: Share question
184
+ deleted_at: Deleted at
185
+ shared: Shared
186
+ solved: Solved
187
+ answers_count: Answers count
188
+ patron_import_file:
189
+ patron_import_file_name: Filename
190
+ patron_import_content_type: Content type
191
+ patron_import_file_size: Size
192
+ file_hash: File hash
193
+ note: Note
194
+ imported_at: Imported at
195
+ patron_import_updated_at: Updated at
196
+ state: State
197
+ edit_mode: Edit mode
198
+ circulation_status:
199
+ name: Name
200
+ display_name: Display name
201
+ note: Note
202
+ position: Position
203
+ inventory:
204
+ note: Note
205
+ patron:
206
+ last_name: Last name
207
+ middle_name: Middle name
208
+ first_name: Name
209
+ last_name_transcription: Last name transcription
210
+ middle_name_transcription: Middle name transcription
211
+ first_name_transcription: First name transcription
212
+ corporate_name: Corporate name
213
+ corporate_name_transcription: Corporate name transcription
214
+ full_name: Full name
215
+ full_name_transcription: Full name transcription
216
+ full_name_alternative: Full name alternative
217
+ full_name_note: The case of not inputting, It is set up as a last name+ " " +first name
218
+ deleted_at: Deleted at
219
+ zip_code_1: Zip code 1
220
+ zip_code_2: Zip code 2
221
+ address_1: Address 1
222
+ address_2: Address 2
223
+ address_1_note: Address 1 note
224
+ address_2_note: Address 2 note
225
+ telephone_number: Telephone number
226
+ telephone_number_1: Telephone number 1-1
227
+ telephone_number_2: Telephone number 2-1
228
+ extelephone_number_1: Telephone number 1-2
229
+ extelephone_number_2: Telephone number 2-2
230
+ fax_number_1: Telephone number 1-3
231
+ fax_number_2: Telephone number 2-3
232
+ home_phone: Home phone
233
+ mobile_phone: Mobile phone
234
+ company_phone: Company phone
235
+ fax: facsimile
236
+ other_designation: Other designation
237
+ place: Place
238
+ date_of_birth: Date of birth
239
+ date_of_death: Date of death
240
+ date_of_establishment: Date of establishment
241
+ date_of_dissolution: Date of dissolution
242
+ lock_version: Lock version
243
+ note: Note
244
+ country: Country
245
+ patron_type: Patron type
246
+ language: Language
247
+ email: Email
248
+ url: URL
249
+ old: old
250
+ feeds/app:
251
+ source_url: Source URL
252
+ title: Title
253
+ description: Description
254
+ directory_title: Directory title
255
+ title_url: Title URL
256
+ author: Author
257
+ author_email: Author email
258
+ author_affiliation: Author affiliation
259
+ author_location: Author location
260
+ screenshot: Screenshot
261
+ thumbnail: Thumbnail
262
+ height: Height
263
+ width: Width
264
+ scaling: Scaling
265
+ scrolling: Scrolling
266
+ singleton: Singleton
267
+ author_photo: Author photo
268
+ author_aboutme: Author aboutme
269
+ author_link: Author link
270
+ author_quote: Author quote
271
+ feeds/persistence:
272
+ key: Key
273
+ value: Value
274
+ feeds/shared:
275
+ key: Key
276
+ value: Value
277
+ feeds/instance:
278
+ key: Key
279
+ value: Value
280
+ feeds/global:
281
+ key: Key
282
+ value: Value
283
+ feeds/activity:
284
+ title: Title
285
+ subject_as_object:
286
+ term: Term
287
+ subject_as_place:
288
+ term: Term
289
+ subject_has_classification:
290
+ expression:
291
+ original_title: Original title
292
+ title_transcription: Title transcription
293
+ title_alternative: Titlte alternative
294
+ summarization: Summarization
295
+ context: Context
296
+ issn: ISSN
297
+ feed_url: Feed URL
298
+ note: Note
299
+ lock_version: Lock version
300
+ deleted_at: Deleted at
301
+ language:
302
+ name: Name
303
+ native_name: Native name
304
+ display_name: Display name
305
+ iso_639_1: ISO 639 1
306
+ iso_639_2: ISO 639 2
307
+ iso_639_3: ISO 639 3
308
+ note: Note
309
+ position: Position
310
+ patron_merge_list:
311
+ title: Title
312
+ user:
313
+ login: Login
314
+ username: Username
315
+ name: Name
316
+ openid_identifier: OpenID Identifier
317
+ email: Email
318
+ email_confirmation: Email (confirmation)
319
+ crypted_password: Crypted password
320
+ salt: Salt
321
+ deleted_at: Deleted at
322
+ remember_token: Remember token
323
+ remember_token_expires_at: Remember token expires at
324
+ activation_code: Activation code
325
+ activated_at: Activated at
326
+ expired_at: Expired at
327
+ nil_expired_at: (none)
328
+ locked: Locked
329
+ confirmed: Confirmed
330
+ approved: Approved
331
+ checkout_icalendar_token: Checkout iCalendar token
332
+ answer_rss_token: Answer rss token
333
+ due_date_reminder_days: Due date reminder days
334
+ note: Note
335
+ share_bookmarks: Share bookmarks
336
+ save_search_history: Save search history
337
+ save_checkout_history: Save checkout history
338
+ lock_version: Lock version
339
+ keyword_list: Keyword list
340
+ user_number: User number
341
+ state: State
342
+ patron: Patron
343
+ library: Library
344
+ user_group: User group
345
+ full_name: Full name
346
+ password: Password
347
+ current_password: Current password
348
+ locale: Locale
349
+ password_confirmation: Password confirmation
350
+ disp_user_info: Show user information
351
+ show_user: Show user
352
+ unabel: Unabel
353
+ locked_yes: Possible
354
+ locked_no: Impossible
355
+ unable_yes: Possible
356
+ unable_no: Impossible
357
+ work_has_subject:
358
+ work: Work
359
+ subject: Subject
360
+ subjectable_type: Subjectable type
361
+ picture_file:
362
+ picture_attachable_type: Picture attachable type
363
+ picture_file_size: Size
364
+ picture_content_type: Content type
365
+ title: Title
366
+ picture_file_name: Filename
367
+ height: Height
368
+ width: Width
369
+ thumbnail: Thumbnail
370
+ file_hash: File hash
371
+ picture_updated_at: Updated at
372
+ form_of_work:
373
+ name: Name
374
+ display_name: Display name
375
+ note: Note
376
+ position: Position
377
+ inter_library_loan:
378
+ requested_at: Requested at
379
+ shipped_at: Shipped at
380
+ received_at: Received at
381
+ return_shipped_at: Return shipped at
382
+ return_received_at: Return received at
383
+ deleted_at: Deleted at
384
+ state: State
385
+ message:
386
+ subject: Subject
387
+ body: Body
388
+ sender: Sender
389
+ receiver: Receiver
390
+ classification:
391
+ category: Category
392
+ name: Name
393
+ note: Note
394
+ imported_object:
395
+ imported_file: Imported file
396
+ imported_file_type: Imported file type
397
+ importable: Imported resource
398
+ importable_type: Importable type
399
+ line_number: Line number
400
+ exemplify:
401
+ position: Position
402
+ own:
403
+ position: Position
404
+ search_history:
405
+ operation: Operation
406
+ version: Version
407
+ query: Query
408
+ start_record: Start record
409
+ maximum_records: Maximum records
410
+ record_packing: Record packing
411
+ record_schema: Record schema
412
+ result_set_ttl: Result set ttl
413
+ stylesheet: Stylesheet
414
+ extra_request_data: Extra request data
415
+ number_of_records: Number of records
416
+ result_set_idle_time: Result set idle time
417
+ records: Records
418
+ next_record_position: Next record position
419
+ diagnostics: Diagnostics
420
+ extra_response_data: Extra response data
421
+ echoed_search_retrieve_request: Echoed search retrieve request
422
+ shelf:
423
+ name: Name
424
+ display_name: Display name
425
+ note: Note
426
+ position: Position
427
+ deleted_at: Deleted at
428
+ open_access: Open access
429
+ open: Open
430
+ closed: Closed
431
+ in_process: In process
432
+ event_category:
433
+ name: Name
434
+ display_name: Display name
435
+ note: Note
436
+ position: Position
437
+ advertisement:
438
+ title: Title
439
+ url: URL
440
+ body: Body
441
+ note: Note
442
+ started_at: Started at
443
+ ended_at: Ended at
444
+ deleted_at: Deleted at
445
+ position: Position
446
+ porta_response:
447
+ body: Body
448
+ donate:
449
+ basket:
450
+ user: User
451
+ note: Note
452
+ lock_version: Lock version
453
+ subject_as_event:
454
+ term: Term
455
+ checked_item:
456
+ due_date: Due date
457
+ user_comment: User note
458
+ edit_user_comment: Edit user comment
459
+ update_note: Update Note
460
+ note_successfully_updated: Note was successfully updated.
461
+ produce:
462
+ position: Position
463
+ role:
464
+ name: Name
465
+ display_name: Display name
466
+ score: Score
467
+ note: Note
468
+ position: Position
469
+ session:
470
+ data: Data
471
+ subject_broader_term:
472
+ subject_heading_type:
473
+ name: Name
474
+ display_name: Display name
475
+ note: Note
476
+ position: Position
477
+ subscribe:
478
+ started_on: Start on
479
+ ended_on: End on
480
+ checkin:
481
+ item:
482
+ call_number: Call number
483
+ item_identifier: Item identifier
484
+ deleted_at: Deleted at
485
+ include_supplements: Include supplements
486
+ note: Note
487
+ url: URL
488
+ price: Price
489
+ lock_version: Lock version
490
+ checkout_type: Checkout type
491
+ acquired_at: Acquired at
492
+ loss_item: Loss item
493
+ set_status: Loss item processing
494
+ will_loss_item: Is status set as Lost, and Is a book returned?
495
+ fail_update_loss_item: Failed to update status
496
+ created_at: Created at
497
+ removed_at: Removed at
498
+ loss_item:
499
+ user_id: User number
500
+ item_id: Loss item
501
+ loss_item: Loss item
502
+ status: Status
503
+ reimbursed: Reimbursed
504
+ not_reimbursed: Not reimbursed
505
+ will_reimburse: Will reimburse, and Is status of a book set as removed?
506
+ will_cancellation: Will cancelle, and Is status of a book set as lost?
507
+ note: Note
508
+ fail_update: Fail update
509
+ barcode:
510
+ barcode_type: Barcode type
511
+ barcodable_type: Barcodable type
512
+ code_word: Code word
513
+ data: Data
514
+ barcodable: Barcodable
515
+ barcode_list:
516
+ barcode_name: Name
517
+ usage_type: Type
518
+ barcode_type: Barcode type
519
+ barcode_prefix: prefix
520
+ printed_number: Printed number
521
+ sheet_type: Sheet type
522
+ last_number: Last number
523
+ start_number: Start Number
524
+ print_sheet: Print sheet
525
+ error: input 0 or more numerical values.
526
+ work:
527
+ original_title: Original title
528
+ title_transcription: Title transcription
529
+ title_alternative: Titlte alternative
530
+ context: Context
531
+ note: Note
532
+ lock_version: Lock version
533
+ deleted_at: Deleted at
534
+ parent_of_series: Parent of series
535
+ purchase_request:
536
+ title: Title
537
+ author: Author
538
+ publisher: Publisher
539
+ isbn: ISBN
540
+ date_of_publication: Date of publication
541
+ price: Price
542
+ url: URL
543
+ note: Note
544
+ accepted_at: Accepted at
545
+ denied_at: Denied at
546
+ deleted_at: Deleted at
547
+ realize:
548
+ position: Position
549
+ reify:
550
+ position: Position
551
+ subject_as_concept:
552
+ term: Term
553
+ frequency:
554
+ name: Name
555
+ display_name: Display name
556
+ note: Note
557
+ position: Position
558
+ expression_merge_list:
559
+ title: Title
560
+ use_restriction:
561
+ name: Name
562
+ display_name: Display name
563
+ note: Note
564
+ position: Position
565
+ subject:
566
+ term: Term
567
+ term_transcription: Term transcription
568
+ scope_note: Scope note
569
+ note: Note
570
+ lock_version: Lock version
571
+ content_type:
572
+ name: Name
573
+ display_name: Display name
574
+ note: Note
575
+ position: Position
576
+ work_merge:
577
+ aaws_response:
578
+ body: Body
579
+ patron_type:
580
+ name: Name
581
+ display_name: Display name
582
+ note: Note
583
+ position: Position
584
+ subject_type:
585
+ name: Name
586
+ display_name: Display name
587
+ note: Note
588
+ position: Position
589
+ work_merge_list:
590
+ title: Title
591
+ order:
592
+ position: Position
593
+ state: State
594
+ order_list:
595
+ title: Title
596
+ bookstore: Bookstore
597
+ note: Note
598
+ ordered_at: Ordered at
599
+ deleted_at: Deleted at
600
+ state: State
601
+ ordered_at_annotation: YYYY-MM-DD or YYYY-MM-DD HH:MM (e.g. 2011-04-01 09:00)
602
+ advertise:
603
+ position: Position
604
+ event:
605
+ name: Name
606
+ note: Note
607
+ start_at: Start at
608
+ end_at: End at
609
+ deleted_at: Deleted at
610
+ all_day: All day
611
+ display_name: Display name
612
+ embody:
613
+ position: Position
614
+ item_has_use_restriction:
615
+ expression_merge:
616
+ request_status_type:
617
+ name: Name
618
+ display_name: Display name
619
+ note: Note
620
+ position: Position
621
+ news_feed:
622
+ title: Title
623
+ url: URL
624
+ body: Body
625
+ note: Note
626
+ position: Position
627
+ news_post:
628
+ title: Title
629
+ body: Body
630
+ note: Note
631
+ position: Position
632
+ start_date: Start date
633
+ end_date: End date
634
+ draft: Draft
635
+ search_engine:
636
+ name: Name
637
+ url: URL
638
+ base_url: Base URL
639
+ http_method: HTTP method
640
+ query_param: Query param
641
+ additional_param: Additional param
642
+ note: Note
643
+ position: Position
644
+ bookmark:
645
+ note: Note
646
+ shared: Shared
647
+ url: URL
648
+ create:
649
+ position: Position
650
+ carrier_type:
651
+ name: Name
652
+ display_name: Display name
653
+ note: Note
654
+ position: Position
655
+ manifestation:
656
+ original_title: Original title
657
+ title_alternative: Titlte alternative
658
+ title_transcription: Title transcription
659
+ classification_number: Classification number
660
+ identifier: Manifestation identifier
661
+ date_of_publication: Date of publication
662
+ pub_date: Date of publication
663
+ deleted_at: Deleted at
664
+ access_address: Access address
665
+ start_page: Start page
666
+ end_page: End page
667
+ page: Page
668
+ size: Size
669
+ height: Height
670
+ width: Width
671
+ depth: Depth
672
+ isbn: ISBN
673
+ isbn10: ISBN 10
674
+ wrong_isbn: Wrong ISBN
675
+ nbn: NBN
676
+ price: Price
677
+ volume_number_list: Volume number list
678
+ issue_number_list: Issue number list
679
+ serial_number_list: Serial number list
680
+ edition: Edition
681
+ note: Note
682
+ repository_content: Repository content
683
+ lock_version: Lock version
684
+ carrier_type: Manifestation form
685
+ language: Language
686
+ lccn: LCCN
687
+ issn: ISSN
688
+ subscription_master: Subscription master
689
+ description: Description
690
+ edition_display_value: Edition display value
691
+ reserves_number: Reserves number
692
+ detail: Detail
693
+ supplement: Supplement
694
+ user_group:
695
+ name: Name
696
+ display_name: Display name
697
+ note: Note
698
+ position: Position
699
+ deleted_at: Deleted at
700
+ valid_period_for_new_user: Valid period for new user
701
+ number_of_day_to_notify_due_date: Number of day to notify due date
702
+ number_of_day_to_notify_overdue: Number of day to notify overdue
703
+ number_of_time_to_notify_overdue: Number of time to notify overdue
704
+ resource_import_file:
705
+ resource_import_file_name: Filename
706
+ resource_import_content_type: Content type
707
+ resource_import_file_size: Size
708
+ file_hash: File hash
709
+ note: Note
710
+ imported_at: Imported at
711
+ resource_import_updated_at: Updated at
712
+ state: State
713
+ edit_mode: Edit mode
714
+ checkout:
715
+ due_date: Due date
716
+ family_info: Family's information
717
+ lock_version: Lock version
718
+ renewal_count: Checkout renewal count
719
+ output_checkoutlist: Outout checkout list
720
+ over: Over
721
+ subscription:
722
+ title: Title
723
+ note: Note
724
+ deleted_at: Deleted at
725
+ subscribes_count: Count
726
+ message_template:
727
+ status: Status
728
+ locale: Locale
729
+ title: Title
730
+ body: Body
731
+ position: Position
732
+ patron_merge:
733
+ subject_related_term:
734
+ library_group:
735
+ name: Name
736
+ display_name: Display name
737
+ short_name: Short name
738
+ email: Email
739
+ my_networks: My networks
740
+ admin_networks: Admin networks
741
+ use_dsbl: Use DSBL
742
+ dsbl_list: DSBL list
743
+ note: Note
744
+ login_banner: Login banner
745
+ post_to_union_catalog: Post to union catalog
746
+ allow_bookmark_external_url: Allow bookmark external url
747
+ event_import_file:
748
+ event_import_file_name: Filename
749
+ event_import_content_type: Content type
750
+ event_import_file_size: Size
751
+ file_hash: File hash
752
+ note: Note
753
+ imported_at: Imported at
754
+ event_import_updated_at: Updated at
755
+ state: State
756
+ edit_mode: Edit mode
757
+ attachment_file:
758
+ attachable_type: Attachable type
759
+ size: Size
760
+ content_type: Content type
761
+ title: Title
762
+ filename: Filename
763
+ height: Height
764
+ width: Width
765
+ thumbnail: Thumbnail
766
+ fulltext: Fulltext
767
+ file_hash: File hash
768
+ reserve:
769
+ user: User
770
+ checked_out_at: Checked out at
771
+ canceled_at: Canceled at
772
+ expired_at: Expired at
773
+ expired_at2: Expired at
774
+ within_expired_at: Within expired at
775
+ over_expired_at: Over expired at
776
+ deleted_at: Deleted at
777
+ created_at: Reserved at
778
+ state: State
779
+ information_type: Information type
780
+ receipt_library: Receipt library
781
+ unnecessary: Unnecessary
782
+ email: email
783
+ telephone: telephone
784
+ reserve_list: Reserve list
785
+ position: Position
786
+ retained_manifestation:
787
+ done: Done
788
+ failed_update: Failed update
789
+ message_request:
790
+ sent_at: Sent at
791
+ deleted_at: Deleted at
792
+ answer:
793
+ body: Body
794
+ deleted_at: Deleted at
795
+ shared: Shared
796
+ item_identifier_list: Item identifier list
797
+ url_list: Url list
798
+ bookstore:
799
+ name: Name
800
+ zip_code: Zip code
801
+ address: Address
802
+ note: Note
803
+ telephone_number: Telephone number
804
+ fax_number: Fax number
805
+ url: URL
806
+ position: Position
807
+ deleted_at: Deleted at
808
+ area:
809
+ name: Name
810
+ address: Address
811
+ checkout_type:
812
+ name: Name
813
+ display_name: Display name
814
+ note: Note
815
+ position: Position
816
+ classification_type:
817
+ name: Name
818
+ display_name: Display name
819
+ note: Note
820
+ position: Position
821
+ country:
822
+ name: Name
823
+ display_name: Display name
824
+ alpha_2: Alpha 2
825
+ alpha_3: Alpha 3
826
+ numeric_3: Numeric 3
827
+ note: Note
828
+ position: Position
829
+ manifestation_api_response:
830
+ body: Body
831
+ request_type:
832
+ name: Name
833
+ display_name: Display name
834
+ note: Note
835
+ position: Position
836
+ inventory_file:
837
+ inventory_file_name: Filename
838
+ inventory_content_type: Content type
839
+ inventory_file_size: Size
840
+ file_hash: File hash
841
+ note: Note
842
+ user_group_has_checkout_type:
843
+ checkout_limit: Checkout limit
844
+ checkout_period: Checkout period
845
+ checkout_renewal_limit: Checkout renewal limit
846
+ reservation_limit: Reservation limit
847
+ reservation_expired_period: Reservation expired period
848
+ set_due_date_before_closing_day: Set due date before the closing day
849
+ fixed_due_date: Fixed due date
850
+ note: Note
851
+ position: Position
852
+ user_group_id: User group
853
+ checkout_type_id: Checkout type
854
+ current_checkout_count: Current checkout count
855
+ carrier_type_has_checkout_type:
856
+ note: Note
857
+ position: Position
858
+ bookmark_stat:
859
+ start_date: Start date
860
+ end_date: End date
861
+ note: Note
862
+ state: State
863
+ manifestation_checkout_stat:
864
+ start_date: Start date
865
+ end_date: End date
866
+ note: Note
867
+ state: State
868
+ user_checkout_stat:
869
+ start_date: Start date
870
+ end_date: End date
871
+ note: Note
872
+ state: State
873
+ manifestation_reserve_stat:
874
+ start_date: Start date
875
+ end_date: End date
876
+ note: Note
877
+ state: State
878
+ user_reserve_stat:
879
+ start_date: Start date
880
+ end_date: End date
881
+ note: Note
882
+ state: State
883
+ tag:
884
+ name: Name
885
+ synonym: Synonym
886
+ taggings_count: Taggings count
887
+ concept:
888
+ term: Term
889
+ note: Note
890
+ required_score: Required score
891
+ place:
892
+ term: Term
893
+ note: Note
894
+ required_score: Required score
895
+ person:
896
+ last_name: Last name
897
+ middle_name: Middle name
898
+ first_name: Name
899
+ last_name_transcription: Last name transcription
900
+ middle_name_transcription: Middle name transcription
901
+ first_name_transcription: First name transcription
902
+ corporate_name: Corporate name
903
+ corporate_name_transcription: Corporate name transcription
904
+ full_name: Full name
905
+ full_name_transcription: Full name transcription
906
+ full_name_alternative: Full name alternative
907
+ deleted_at: Deleted at
908
+ zip_code_1: Zip code 1
909
+ zip_code_2: Zip code 2
910
+ address_1: Address 1
911
+ address_2: Address 2
912
+ address_1_note: Address 1 note
913
+ address_2_note: Address 2 note
914
+ telephone_number_1: Telephone number 1
915
+ telephone_number_2: Telephone number 2
916
+ fax_number_1: Fax number 1
917
+ fax_number_2: Fax number 2
918
+ other_designation: Other designation
919
+ place: Place
920
+ date_of_birth: Date of birth
921
+ date_of_death: Date of death
922
+ lock_version: Lock version
923
+ note: Note
924
+ corporate_body:
925
+ name: Name
926
+ name_transcription: Name transcription
927
+ name_alternative: Name alternative
928
+ deleted_at: Deleted at
929
+ zip_code_1: Zip code 1
930
+ zip_code_2: Zip code 2
931
+ address_1: Address 1
932
+ address_2: Address 2
933
+ address_1_note: Address 1 note
934
+ address_2_note: Address 2 note
935
+ telephone_number_1: Telephone number 1
936
+ telephone_number_2: Telephone number 2
937
+ fax_number_1: Fax number 1
938
+ fax_number_2: Fax number 2
939
+ other_designation: Other designation
940
+ place: Place
941
+ date_of_birth: Date of birth
942
+ date_of_death: Date of death
943
+ lock_version: Lock version
944
+ note: Note
945
+ family:
946
+ name: Name
947
+ name_transcription: Name transcription
948
+ name_alternative: Name alternative
949
+ deleted_at: Deleted at
950
+ zip_code_1: Zip code 1
951
+ zip_code_2: Zip code 2
952
+ address_1: Address 1
953
+ address_2: Address 2
954
+ address_1_note: Address 1 note
955
+ address_2_note: Address 2 note
956
+ telephone_number_1: Telephone number 1
957
+ telephone_number_2: Telephone number 2
958
+ fax_number_1: Fax number 1
959
+ fax_number_2: Fax number 2
960
+ other_designation: Other designation
961
+ place: Place
962
+ date_of_birth: Date of birth
963
+ date_of_death: Date of death
964
+ lock_version: Lock version
965
+ note: Note
966
+ unablelist:
967
+ output_format: Output format
968
+ checkout_stat_has_user:
969
+ checkouts_count: Checkout count
970
+ checkout_stat_has_manifestation:
971
+ checkouts_count: Checkout count
972
+ reserve_stat_has_user:
973
+ reserves_count: Reserve count
974
+ reserve_stat_has_manifestation:
975
+ reserves_count: Reserve count
976
+ bookmark_stat_has_manifestation:
977
+ bookmarks_count: Bookmark count
978
+ work_has_work:
979
+ from_work: From
980
+ to_work: To
981
+ expression_has_expression:
982
+ from_expression: From
983
+ to_expression: To
984
+ manifestation_has_manifestation:
985
+ from_manifestation: From
986
+ to_manifestation: To
987
+ item_has_item:
988
+ from_item: From
989
+ to_item: To
990
+ patron_has_patron:
991
+ from_patron: From
992
+ to_patron: To
993
+ shelf_has_manifestation:
994
+ shelf: Shelf
995
+ manifestation: Manifestation
996
+ position: Position
997
+ medium_of_performance:
998
+ name: Name
999
+ display_name: Displayname
1000
+ note: Note
1001
+ position: Position
1002
+ content_type:
1003
+ name: Name
1004
+ display_name: Display name
1005
+ note: Note
1006
+ position: Position
1007
+ extent:
1008
+ name: Name
1009
+ display_name: Display name
1010
+ note: Note
1011
+ position: Position
1012
+ content_type:
1013
+ name: Name
1014
+ display_name: Display name
1015
+ note: Note
1016
+ position: Position
1017
+ patron_relationship_type:
1018
+ name: Name
1019
+ display_name: Display name
1020
+ note: Note
1021
+ position: Position
1022
+ work_relationship_type:
1023
+ name: Name
1024
+ display_name: Display name
1025
+ note: Note
1026
+ position: Position
1027
+ expression_relationship_type:
1028
+ name: Name
1029
+ display_name: Display name
1030
+ note: Note
1031
+ position: Position
1032
+ manifestation_relationship_type:
1033
+ name: Name
1034
+ display_name: Display name
1035
+ note: Note
1036
+ position: Position
1037
+ item_relationship_type:
1038
+ name: Name
1039
+ display_name: Display name
1040
+ note: Note
1041
+ position: Position
1042
+ lending_policy:
1043
+ loan_period: Loan period
1044
+ fixed_due_date: Fixed due date
1045
+ renewal: Renewal
1046
+ fine: Fine
1047
+ note: Note
1048
+ position: Position
1049
+ nii_type:
1050
+ name: Name
1051
+ display_name: Display name
1052
+ note: Note
1053
+ position: Position
1054
+ license:
1055
+ name: Name
1056
+ display_name: Display name
1057
+ note: Note
1058
+ position: Position
1059
+ work_to_expression_rel_type:
1060
+ name: Name
1061
+ display_name: Display name
1062
+ note: Note
1063
+ position: Position
1064
+ expression_to_manifestation_rel_type:
1065
+ name: Name
1066
+ display_name: Display name
1067
+ note: Note
1068
+ position: Position
1069
+ series_statement:
1070
+ original_title: Title
1071
+ numbering: Numbering
1072
+ title_subseries: Title subseries
1073
+ numbering_subseries: Numbering subseries
1074
+ work: Work
1075
+ series_statement_identifier: Series statement identifier
1076
+ issn: ISSN
1077
+ periodical: Periodical
1078
+ title_transcription: Title transcription
1079
+ import_request:
1080
+ isbn: ISBN
1081
+ state: State
1082
+ resource:
1083
+ iss_token: ISS token
1084
+ manifestation_id: Manifestation
1085
+ dcndl_xml: DCNDL XML
1086
+ work_token: Work token
1087
+ approved: Approved
1088
+ state: State
1089
+ approve: Approve
1090
+ publish: Publish
1091
+ deleted_at: Deleted at
1092
+ patron_relationship:
1093
+ parent_id: Parent
1094
+ child_id: Child
1095
+ patron_relationship_type_id: Patron relationship type
1096
+ manifestation_relationship:
1097
+ parent_id: Parent
1098
+ child_id: Child
1099
+ manifestation_relationship_type_id: Manifestation relationship type
1100
+ resource_import_result:
1101
+ body: Body
1102
+ error_msg: Message
1103
+ resource_import_textresult:
1104
+ error_msg: Message
1105
+ patron_import_result:
1106
+ body: Body
1107
+ error_msg: Message
1108
+ event_import_result:
1109
+ body: Body
1110
+ error_msg: Message
1111
+ series_statement_merge_list:
1112
+ title: Title
1113
+ item_list:
1114
+ list_type: List type
1115
+ list_condition: List condition
1116
+ list_number: List number
1117
+ page_number: Page number
1118
+ sort_by: Sort by
1119
+
1120
+ page:
1121
+ user_title: "Welcome %{login_name}"
1122
+ sign_in: "Sign in"
1123
+ sign_out: "Sign out"
1124
+ sign_up: "Sign up"
1125
+ logged_in_as: "logged in as %{login_name}"
1126
+ edit_user_profile: "Edit %{login_name}'s profile"
1127
+ user_bookmark_title: "%{login_name}'s bookmark"
1128
+ login_name: "Login name"
1129
+ password: "Password"
1130
+ email_and_password: "Email and password"
1131
+ catalog_search: "Catalog search"
1132
+ search: "Search"
1133
+ search_term: "Search term(s)"
1134
+ search_result: "Search result"
1135
+ number_of_manifestations:
1136
+ one: "1 record in this library."
1137
+ other: "%{numdocs} records in this library."
1138
+ number_of_unread_messages:
1139
+ one: "You have 1 unread message."
1140
+ other: "You have %{numdocs} unread messages."
1141
+ number_of_search_results:
1142
+ one: "1 record found from %{numdocs} records in %{seconds} seconds."
1143
+ other: "%{count} records found from %{numdocs} records in %{seconds} seconds."
1144
+ tag: "Tag"
1145
+ call_number: "Call number"
1146
+ holding: "Holding"
1147
+ advanced_search: "Advanced search"
1148
+ title: "Title"
1149
+ note: "Note"
1150
+ back: "Back"
1151
+ show: "Show"
1152
+ edit: "Edit"
1153
+ destroy: "Destroy"
1154
+ create: "Create"
1155
+ update: "Update"
1156
+ delete: "Delete"
1157
+ add: "Add"
1158
+ price: "Price"
1159
+ bookstore: "Bookstore"
1160
+ created_at: "Created at"
1161
+ updated_at: "Updated at"
1162
+ checkout: "Checkout"
1163
+ checkin: "Checkin"
1164
+ name: "Name"
1165
+ are_you_sure: "Are you sure?"
1166
+ cancel_confirm: "Are you sure?"
1167
+ roles_confirm: "Are you sure?"
1168
+ send_email_confirm: "Are you sure?"
1169
+ inter_library_loans_confirm: "Are you sure?"
1170
+ file: "File"
1171
+ cancel: "Cancel"
1172
+ author: "Author"
1173
+ editor: "Editor"
1174
+ publisher: "Publisher"
1175
+ feed: "Feed"
1176
+ back_to_index: "Back to index"
1177
+ import: "Import from file"
1178
+ import_record: "Import records"
1179
+ export: "Export"
1180
+ detail: "Detail"
1181
+ acquisition: "Acquisition"
1182
+ configuration: "Configuration"
1183
+ search_resource: "Search %{model}"
1184
+ show_all: "Show all"
1185
+ hide: "Hide"
1186
+ overdue: "Overdue"
1187
+ number_of_reservations:
1188
+ one: "%{count} user"
1189
+ other: "%{count} users"
1190
+ back_to_search_results: "Back to search results"
1191
+ submit: "Submit"
1192
+ management: "Management"
1193
+ about_us: "About us"
1194
+ open_source_integrated_library_system: "an open source integrated library system"
1195
+ related_work: "Related work"
1196
+ related_manifestation: "Related manifestation"
1197
+ amazon_review: "Amazon review"
1198
+ these_reviews_are_from_amazon: "These reviews are from Amazon.com."
1199
+ video: "Video"
1200
+ picture: "Picture"
1201
+ number: "Number"
1202
+ statistics: "Statistics"
1203
+ request: "Request"
1204
+ librarian_circulation: "Circulation"
1205
+ user_circulation: "Circulation"
1206
+ reset: "Reset"
1207
+ account: "Account"
1208
+ form: "Form"
1209
+ remove_this_facet: "Remove this facet"
1210
+ no_subject: "No subjects."
1211
+ no_tag: "No tags."
1212
+ add_patron: "Add a patron"
1213
+ total: "Total"
1214
+ sort_by: "Sort by"
1215
+ bookmarklet: "Bookmarklet"
1216
+ add_file: "Add a file"
1217
+ telephone_number: "Telephoone number"
1218
+ about_this_system: "About this system"
1219
+ report_bugs: "Report bugs"
1220
+ new_resource: "New resources"
1221
+ checkout_history: "Checkout history"
1222
+ recommendation: "Recommendation"
1223
+ add_manually: "Add manually"
1224
+ import: "Import"
1225
+ import_from_file: "Import from TSV file"
1226
+ import_from_network: "Import from networks"
1227
+ no_record_found: "No records found."
1228
+ not_found_users: "Not found users."
1229
+ limit_exceeded: "Limit exceeded. Listing the first %{count} records."
1230
+ enter_search_term: "Enter your search term."
1231
+ serial: "Serial"
1232
+ number_of_pages: "Number of pages"
1233
+ holding_library: "Holding library"
1234
+ resource: "Resource"
1235
+ type: "Type"
1236
+ search_result_feed: "Search result feed"
1237
+ force_reload: "Force reload"
1238
+ clear_cache: "Clear cache"
1239
+ current_url: "Current URL"
1240
+ subject_and_classification: "Subject and classification"
1241
+ you_can_search_following_database: "You can search the following databases."
1242
+ listing: "Listing %{model}"
1243
+ new: "New %{model}"
1244
+ editing: "Editing %{model}"
1245
+ showing: "Showing %{model}"
1246
+ output: "Output %{model}"
1247
+ output_pdf: "Output %{model}(PDF)"
1248
+ output_csv: "Output %{model}(CSV)"
1249
+ output_tsv: "Output %{model}(TSV)"
1250
+ patron_management: "Patron management"
1251
+ user_management: "User management"
1252
+ back_to: "Back to %{model} index"
1253
+ picture: "Picture"
1254
+ add_picture: "Add a picture"
1255
+ invalid_date: "Invalid date."
1256
+ current_status: "Current status"
1257
+ date: "Date"
1258
+ this_month: "This month"
1259
+ click_to_edit: "click to edit..."
1260
+ saving: "Saving..."
1261
+ news: "News"
1262
+ model: "Model"
1263
+ number_of_record: "Number of record"
1264
+ facet: "Facet"
1265
+ number_of_days:
1266
+ one: "%{count} day"
1267
+ other: "%{count} days"
1268
+ require_login_as_librarian: "You should login as a librarian to create and edit resources."
1269
+ read: "Read"
1270
+ merge: "Merge!"
1271
+ merge_resource: "Merge %{model}"
1272
+ merge_confirm: "Are you sure?"
1273
+ attachable: "Attachable"
1274
+ under_construction: "Under construction"
1275
+ sent_email: "Sent email."
1276
+ identifier: "Identifier"
1277
+ select_locale: "Select locale"
1278
+ local_record: "Local record"
1279
+ search_catalog_at: "Search catalog at %{library_name}"
1280
+ add_on: "Add-ons"
1281
+ asc: "ascendent"
1282
+ desc: "descendent"
1283
+ error_occured: "An error occured."
1284
+ did_you_mean: "Did you mean"
1285
+ calendar: "Calendar"
1286
+ related: "Related"
1287
+ history: "History"
1288
+ current_version: "Current version"
1289
+ select: "Select"
1290
+ other_view: "Other views"
1291
+ boolean:
1292
+ "true": "Yes"
1293
+ "false": "No"
1294
+ not_found: "Page not found"
1295
+ access_denied: "Access denied"
1296
+ internal_server_error: "Internal server error"
1297
+ last_updated: "Last updated"
1298
+ unknown: "Unknown"
1299
+ more: "More"
1300
+ connection_faild: "Connection failed."
1301
+ timed_out: "Operation timed out."
1302
+ example: "Example"
1303
+ saving: "Saving..."
1304
+ previous: "Previous"
1305
+ next: "Next"
1306
+ my_account: "My account"
1307
+ number_of_pictures:
1308
+ one: "Picture"
1309
+ other: "Pictures"
1310
+ best_request: "best request"
1311
+ best_reader: "best reader"
1312
+ wait: "Wait.."
1313
+
1314
+ exstatistics:
1315
+ ranknumber: Rank
1316
+ count: Count
1317
+ readercount: Reader count
1318
+ requestcount: Request count
1319
+ nil_date: "fill in the form"
1320
+ invalid_input_date: "wrong date inputed"
1321
+ over_end_date: "The end date should over the start date"
1322
+
1323
+ tooltip:
1324
+ icons_info: Icons information
1325
+ message: message
1326
+ edit: edit
1327
+ book_edit: edit
1328
+ cancel: cancel
1329
+ destroy: destroy
1330
+ feed: feed
1331
+ csv: CSV
1332
+ asc: asc
1333
+ desc: desc
1334
+ picture: picture
1335
+ serial: serial
1336
+ web: Web
1337
+ unavailable: unavailable
1338
+ add_derivation: Add derivation
1339
+ answer: answer
1340
+ serial: serial
1341
+ title:
1342
+ index: "index"
1343
+ show: "show"
1344
+ new: "new"
1345
+ edit: "edit"
1346
+ controller:
1347
+ successfully_created: "%{model} was successfully created."
1348
+ successfully_updated: "%{model} was successfully updated."
1349
+ successfully_deleted: "%{model} was successfully deleted."
1350
+ advanced_search:
1351
+ from: "from"
1352
+ to: "to"
1353
+ all: "All %{model}"
1354
+ all_libraries: "All libraries"
1355
+ bookmark:
1356
+ new: "New bookmark"
1357
+ not_bookmarked: "Not bookmarked."
1358
+ add_to_my_bookmark: "Add to my bookmark"
1359
+ add_to_library_bookmark: "Add to my library bookmark"
1360
+ remove_from_my_bookmark: "Remove from my bookmark"
1361
+ invalid_url: "Invalid URL."
1362
+ specify_title_and_url: "Specify the title and URL of the page."
1363
+ already_bookmarked: "This resource is already bookmarked."
1364
+ only_manifestation_should_be_bookmarked: "You can bookmark only manifestatons in this site."
1365
+ not_our_holding: "This resource is not our holding."
1366
+ work:
1367
+ patrons_work: "%{patron_name}'s works"
1368
+ library_group_work: "Works in %{library_group_name}"
1369
+ add: "Add a work"
1370
+ expression:
1371
+ patrons_expression: "%{patron_name}'s expressions"
1372
+ manifestations_expression: "Expressions in %{manifestation_title}"
1373
+ library_group_expression: "Expressions in %{library_group_name}"
1374
+ add: "Add an expression"
1375
+ specify_work: "Specify the work."
1376
+ specify_manifestation: "Specify the manifestation."
1377
+ manifestation:
1378
+ date_of_acquisition: "Date of acquisition"
1379
+ physical_description: "Physical description"
1380
+ edit: "Edit this manifestation"
1381
+ add_next_issue: "Add a next issue"
1382
+ edit_creator: "Edit creators"
1383
+ edit_contributor: "Edit contributors"
1384
+ edit_publisher: "Edit publishers"
1385
+ edit_expression: "Edit expressions"
1386
+ edit_item: "Edit items"
1387
+ expressions_manifestation: "Manifestations for %{expression_title}"
1388
+ library_group_manifestation: "Manifestations in %{library_group_name}"
1389
+ reserve_this: "Reserve this manifestation"
1390
+ cancel_reservation: "Cancel this reservation"
1391
+ user_who_bookmark_this_resource: "Users who bookmark this resource"
1392
+ query_search_result: "Search results for %{query} in %{library_group_name}"
1393
+ serial: "Serial"
1394
+ number: "Number"
1395
+ issue_number: "Issue number"
1396
+ serial_number: "Serial number"
1397
+ invalid_isbn: "Invalid ISBN."
1398
+ already_imported: "This manifestation is already imporeted."
1399
+ record_not_found: "Record not found."
1400
+ add: "Add a manifestation"
1401
+ specify_expression: "Specify the expression."
1402
+ pickup: "Pick up"
1403
+ showing_all_record: "Showing all records."
1404
+ showing_reservable_record: "Showing reservable records."
1405
+ reservable: "Reservable"
1406
+ all_result: "All results"
1407
+ reservable_list: "Reservable list"
1408
+ post_to_twitter: "post to Twitter"
1409
+ web: "Web"
1410
+ send_email: "Email this information"
1411
+ attachment_file: "Attachment file"
1412
+ question: "Question"
1413
+ add_derivation: "Add a derivation"
1414
+ item:
1415
+ current_checkout: "Current checkout"
1416
+ donor: "Donors"
1417
+ library_group_item: "Items in %{library_group_name}"
1418
+ add: "Add an item"
1419
+ specify_manifestation: "Specify the manifestation."
1420
+ this_item_is_reserved: "This item is reserved!"
1421
+ create_shelf_first: "You should create a shelf first."
1422
+ this_item_include_supplement: "This item includes supplements."
1423
+ all_item: "All items"
1424
+ add_new_copy: "Add a new copy"
1425
+ no_manifestation: "No manifestation"
1426
+ no_number: "No number"
1427
+ add_lending_policy: "Add a new lending policy"
1428
+ patron:
1429
+ library_group_patron: "Patrons of %{library_group_name}"
1430
+ work_patron: "Creaters of %{work_title}"
1431
+ expression_patron: "Realizers of %{expression_title}"
1432
+ manifestation_patron: "Producers of %{manifestation_title}"
1433
+ activate_as_user: "Activate as an user"
1434
+ deactivate: "Deactivate this user"
1435
+ add: "Add a patron"
1436
+ publication: "Publications"
1437
+ recent_publication: "Recent publications"
1438
+ all_publication: "All publications"
1439
+ other_address: "The other address"
1440
+ add_derivation: "Add derivatation"
1441
+ creator: "Creator"
1442
+ contributor: "Contributor"
1443
+ publisher: "Publisher"
1444
+ owner: "Owner"
1445
+ message:
1446
+ user_message: "%{login_name}'s messages"
1447
+ sent_at: "Sent at"
1448
+ inbox: "Inbox"
1449
+ write: "Write"
1450
+ outbox: "Outbox"
1451
+ trash: "Trash"
1452
+ recipient: "Recipient"
1453
+ receiver: "Receiver"
1454
+ sender: "Sender"
1455
+ read: "Read"
1456
+ unread: "Unread"
1457
+ deleted: "Deleted"
1458
+ send: "Send message"
1459
+ reply: "Reply"
1460
+ delete: "Delete"
1461
+ sent_successfully: "Message was sent successfully."
1462
+ no_new_message: "No new messages."
1463
+ too_short: "Message is too short. The minimum length is %{count} characters."
1464
+ too_long: "Message is too long. The maximum length is %{count} characters."
1465
+ new_message_from_library: "New message arrived from %{library}"
1466
+ messages_were_deleted: "Messages were deleted."
1467
+ select_messages: "Select messages."
1468
+ tag:
1469
+ popular_tag: "Popular tags"
1470
+ my_tag: "My tags"
1471
+ user_tag: "%{login_name}'s tags"
1472
+ use_space_as_delimiter: "Use space as a delimiter."
1473
+ contain_space: " contains a space character"
1474
+ space: " "
1475
+ question:
1476
+ my: "My questions"
1477
+ all: "All questions"
1478
+ number_of_search_results:
1479
+ one: "1 record found."
1480
+ other: "%{count} records found."
1481
+ user_question: "%{login_name}'s questions"
1482
+ no_record_found: "No records found."
1483
+ library_group_question: "Questions in %{library_group_name}"
1484
+ answer_question: "Answer this question"
1485
+ crd: "NDL Collaborative Reference Database"
1486
+ you_can_search_crd: "You can search within NDL Collaborative Reference Database."
1487
+ created_at: "Question created at"
1488
+ updated_at: "Question updated at"
1489
+ last_answered_at: "Last answered at"
1490
+ solved: "Solved"
1491
+ not_solved: "Not solved"
1492
+ answer:
1493
+ user_answer: "%{login_name}'s answers"
1494
+ library_group_answer: "Answers from %{library_group_name}"
1495
+ specify_question: "Specify the question."
1496
+ count: "Count"
1497
+ basket:
1498
+ my_status: "Your status"
1499
+ books: "records"
1500
+ number_of_checkout: "Number of checkout"
1501
+ number_of_reserve: "Number of reserve"
1502
+ this_account_is_suspended: "This account is suspended."
1503
+ checkout_completed: "Checkout completed."
1504
+ checkout:
1505
+ user_checkout: "%{login_name}'s checkouts"
1506
+ library_group_checkout: "Checkouts in %{library_group_name}"
1507
+ renewal: "Renewal"
1508
+ renewal_count: "Renewal count"
1509
+ new_due_date: "New due date"
1510
+ editing_due_date: "Editing due date"
1511
+ this_item_cant_be_renewed: "This item can't be renewed."
1512
+ listing_overdue_item: "Listing overdue items"
1513
+ current_user: "Current user"
1514
+ this_item_is_reserved: "This item is reserved."
1515
+ you_have_overdue_item: "You have overdue items."
1516
+ excessed_renewal_limit: "Excessed checkout renewal limit."
1517
+ all_checkout: "All checkouts"
1518
+ my_checkout: "My checkouts"
1519
+ no_checkout: "No checkouts."
1520
+ number_of_day_overdue: "Number of days overdue"
1521
+ extend: "Extend"
1522
+ library:
1523
+ map: "Map"
1524
+ staff: "Staff"
1525
+ number_of_item: "Number of items"
1526
+ address: "Address"
1527
+ import:
1528
+ from_file: "from file"
1529
+ from_isbn: "from ISBN"
1530
+ will_be_imported:
1531
+ one: "Resource will be impored in a %{minute} minute."
1532
+ other: "Resource will be impored in %{minute} minutes."
1533
+ event:
1534
+ library_group_event: "Events at %{library_group_name}"
1535
+ all_libraries: "All libraries"
1536
+ import_event: "Import events"
1537
+ all: "All events"
1538
+ past: "Past events"
1539
+ upcoming: "Upcoming events"
1540
+ user:
1541
+ current_password: "Current password"
1542
+ new_password: "New password"
1543
+ repeat_new_password: "Repeat new password"
1544
+ delete_this_user: "Delete this user"
1545
+ your_temporary_password_is: "Your temporary password is"
1546
+ sign_up: "Sign up"
1547
+ edit_profile: "Edit profile"
1548
+ edit_account: "Edit account"
1549
+ already_activated: "Already activated."
1550
+ specify_patron: "Specify the patron."
1551
+ wrong_password: "Wrong password."
1552
+ password_mismatch: "Password mismatch."
1553
+ cannot_destroy_myself: "You can't destroy yourself."
1554
+ last_administrator: "This user is the last administrator in this system."
1555
+ last_librarian: "This user is the last librarian in this system."
1556
+ only_administrator_can_destroy: "Only administrators can destroy this user."
1557
+ this_user_has_checked_out_item: "This user has checked-out items."
1558
+ patron_profile: "Patron profile"
1559
+ set_auto_generated_password: "Set auto-generated password"
1560
+ history: "History"
1561
+ account_management: "Account management"
1562
+ reset_checkout_icalendar_url: "Reset checkout iCalendar URL"
1563
+ you_have_to_save_profile_to_activate_feed_url: "You have to save your profile to activate this url."
1564
+ you_have_to_save_profile_to_deactivate_feed_url: "You have to save your profile to deactivate this url."
1565
+ could_not_setup_account: "We couldn't set up that account, sorry. Please try again, or contact an admin."
1566
+ resend_confirmation_instruction: "Resend confirmation instructions"
1567
+ remember_me: "Remember me"
1568
+ forgot_your_password: "Forgot your password?"
1569
+ send_me_reset_password_instruction: "Send me reset password instruction"
1570
+ change_my_password: "Change my password"
1571
+ management: "User management"
1572
+ not_found: "User not found."
1573
+ create_family: "Create family"
1574
+ create_family_user: "Create family"
1575
+ not_connect: "Can not connect to %{user}"
1576
+ news_post:
1577
+ library_group_news_post: "News from %{library_group_name}"
1578
+ reserve:
1579
+ user_reserve: "%{login_name}'s reservations"
1580
+ library_group_reserve: "Reservations in %{library_group_name}"
1581
+ my_reservation: "My reservations"
1582
+ all_reservation: "All reservations"
1583
+ this_manifestation_is_already_reserved: "This manifestation is already reserved."
1584
+ excessed_reservation_limit: "Excessed reservation limit."
1585
+ this_patron_cannot_reserve: "This patron can't reserve this manifestation."
1586
+ reservation_was_canceled: "Reservation was canceled."
1587
+ this_item_is_not_reserved: "This item is not reserved."
1588
+ this_user_is_locked: "This user is locked."
1589
+ expired_at_of_this_user_is_over: "Expired at of this user is over"
1590
+ invalid_item: "Invalid item."
1591
+ show: "Show reservation"
1592
+ invalid_date: "Invalid date."
1593
+ pending: "Pending"
1594
+ requested: "Requested"
1595
+ retained: "Retained"
1596
+ called: "Called"
1597
+ canceled: "Canceled"
1598
+ expired: "Expired"
1599
+ completed: "Completed"
1600
+ purchase_request:
1601
+ user_purchase_request: "%{login_name} 's purchase requests"
1602
+ library_group_purchase_request: "Purchase requests in %{library_group_name}"
1603
+ add_to_purchase_request: "Add to purchase request"
1604
+ all_request: "All requests"
1605
+ ordered: "Ordered"
1606
+ not_ordered: "Not ordered"
1607
+ add_to_order_list: "Add to order list"
1608
+ remove_from_order_list: "Remove from order list"
1609
+ input_into_form_as_much_as_possible: "Input into form as much as possible"
1610
+ order_list:
1611
+ library_group_order_list: "Order lists in %{library_group_name}"
1612
+ total_price: "Total price"
1613
+ inter_library_loan:
1614
+ library_group_inter_library_loan: "Inter library loans in %{library_group_name}"
1615
+ borrowing_library: "Borrowing library"
1616
+ return_this_item: "Return this item"
1617
+ checked_item:
1618
+ not_available_for_checkout: "This item is not available for checkout."
1619
+ not_for_loan: "Not for loan"
1620
+ this_group_cannot_checkout: "This group cannnot checkout"
1621
+ item_not_found: "Item not found."
1622
+ already_checked_out: "This item is already checked out."
1623
+ reserved_item_included: "Reserved item included"
1624
+ excessed_checkout_limit: "Exceed checkout limited"
1625
+ in_transcation: "In transcation"
1626
+ previous_checkout: "Previous checkouts"
1627
+ previous_checkout_family: "Previous family's checkouts"
1628
+ previous_reserve: "Previous reserves"
1629
+ previous_reserve_family: "Previous family's reserves"
1630
+ checkout: "Checkout!"
1631
+ ignore_restriction: "Ignore restriction"
1632
+ checkin:
1633
+ item_not_found: "Item not found."
1634
+ enter_item_identifier: "Enter item identifier."
1635
+ other_library_item: "This item is other library's item!"
1636
+ other_library: "This item is %{model}'s item!"
1637
+ already_checked_in: "This item is already checked in."
1638
+ not_checkin: "This item is not checkouts."
1639
+ checkin: "Checkin!"
1640
+ successfully_checked_in: "This items was successfully checked in."
1641
+ not_available_for_checkin: "This item is not available for checkin."
1642
+ overdue_item: "This item is over due."
1643
+ search_history:
1644
+ all_history: "All search history"
1645
+ failed_search: "Failed searches"
1646
+ searched_at: "Searched at"
1647
+ subscribe:
1648
+ this_subscription_is_expired: "This subscription is expired!"
1649
+ role:
1650
+ required_role: "Required role"
1651
+ advertisement:
1652
+ period: "Period"
1653
+ attachment_file:
1654
+ invalid_file: "Invalid file."
1655
+ inventory_file:
1656
+ not_in_catalog: "Not in catalog"
1657
+ not_on_shelf: "Not on shelf"
1658
+ message_request:
1659
+ not_sent: "Not sent"
1660
+ sent: "Sent"
1661
+ all: "All messages"
1662
+ order:
1663
+ create_order_list: "You should create an order list."
1664
+ specify_purchase_request: "You should specify the purchase request."
1665
+ work_has_subject:
1666
+ add_work: "Add a work"
1667
+ add_subject: "Add a subject"
1668
+ subjectable: "Subjectable"
1669
+ library_group:
1670
+ configuration: "Library configuration"
1671
+ calendar:
1672
+ calendar: "Calendar"
1673
+ library_calendar: "Calendar of events at %{library_name}"
1674
+ series_statement:
1675
+ edit: "Edit series statement"
1676
+ you_should_specify_work: "You should specify a work in the series statement."
1677
+ state:
1678
+ pending: "Pending"
1679
+ canceled: "Cancaled"
1680
+ completed: "Completed"
1681
+ started: "Started"
1682
+ failed: "Failed"
1683
+ resource:
1684
+ select_all: Select all
1685
+ approve_selected_resources: Approve selected resources
1686
+ approve_all_resources: Approve all resources
1687
+ publish_selected_resources: Publish selected resources
1688
+ publish_all_resources: Publish all resources
1689
+ approve: Approve
1690
+ approved: Approved
1691
+ not_approved: Not approved
1692
+ all_resources: All resources
1693
+ resources_were_approved: Resources were approved.
1694
+ resources_were_published: Resources were published.
1695
+ select_resources: Select resources.
1696
+ publish: Publish
1697
+ published: Published
1698
+ reject: Reject
1699
+ withdraw: Withdraw
1700
+ news_feed:
1701
+ failed_to_fetch_feed: Failed to fetch feeds.
1702
+ import_request:
1703
+ record_not_found: Record not found.
1704
+ invalid_isbn: Invalid ISBN.
1705
+ isbn_taken: has already been taken.
1706
+ enter_isbn: Enter ISBN
1707
+ sort:
1708
+ date_of_acquisition: Date of acquisition
1709
+ date_of_publication: Date of publication
1710
+ title: Title
1711
+ picture_file:
1712
+ invalid_file: Invalid file. You can upload gif, jpeg, png and svg files.
1713
+ all_picture: All pictures
1714
+ merge_list:
1715
+ successfully_merged: "%{model} were merged successfully."
1716
+ specify_id: "Specify %{model} ID."
1717
+ item_list:
1718
+ list_condition: List Condition
1719
+ no_list_condition: Check list condition
1720
+ manifestation_relationships:
1721
+ no_parent_id: "Not found parent id"
1722
+ no_child_id: "Not found child id"
1723
+ function_key:
1724
+ will_move: "Form is inputted.Are page changes carried out?"