-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathen.php
executable file
·2526 lines (2287 loc) · 159 KB
/
en.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
# English
# Language File for ResourceSpace
# -------
# Note: when translating to a new language, preserve the original case if possible.
# User group names (for the default user groups)
$lang["usergroup-administrators"]="Administrators";
$lang["usergroup-general_users"]="General Users";
$lang["usergroup-super_admin"]="Super Admin";
$lang["usergroup-archivists"]="Archivists";
$lang["usergroup-restricted_user_-_requests_emailed"]="Restricted User - Requests Emailed";
$lang["usergroup-restricted_user_-_requests_managed"]="Restricted User - Requests Managed";
$lang["usergroup-restricted_user_-_payment_immediate"]="Restricted User - Payment Immediate";
$lang["usergroup-restricted_user_-_payment_invoice"]="Restricted User - Payment Invoice";
# Resource type names (for the default resource types)
$lang["resourcetype-photo"]="Photo";
$lang["resourcetype-document"]="Document";
$lang["resourcetype-video"]="Video";
$lang["resourcetype-audio"]="Audio";
$lang["resourcetype-global_fields"]="Global Fields";
$lang["resourcetype-archive_only"]="Archive Only";
$lang["resourcetype-photo-2"]="Photos";
$lang["resourcetype-document-2"]="Documents";
$lang["resourcetype-video-2"]="Videos";
$lang["resourcetype-audio-2"]="Audio";
# Image size names (for the default image sizes)
$lang["imagesize-thumbnail"]="Thumbnail";
$lang["imagesize-preview"]="Preview";
$lang["imagesize-screen"]="Screen";
$lang["imagesize-low_resolution_print"]="Low resolution print";
$lang["imagesize-high_resolution_print"]="High resolution print";
$lang["imagesize-collection"]="Collection";
# Field titles (for the default fields)
$lang["fieldtitle-keywords"]="Keywords";
$lang["fieldtitle-country"]="Country";
$lang["fieldtitle-title"]="Title";
$lang["fieldtitle-story_extract"]=$lang["storyextract"]="Story Extract";
$lang["fieldtitle-credit"]="Credit";
$lang["fieldtitle-date"]=$lang["date"]="Date";
$lang["fieldtitle-expiry_date"]="Expiry date";
$lang["fieldtitle-caption"]="Caption";
$lang["fieldtitle-notes"]="Notes";
$lang["fieldtitle-named_persons"]="Named person(s)";
$lang["fieldtitle-camera_make_and_model"]="Camera make / model";
$lang["fieldtitle-original_filename"]="Original filename";
$lang["fieldtitle-video_contents_list"]="Video contents list";
$lang["fieldtitle-source"]="Source";
$lang["fieldtitle-website"]="Website";
$lang["fieldtitle-artist"]="Artist";
$lang["fieldtitle-album"]="Album";
$lang["fieldtitle-track"]="Track";
$lang["fieldtitle-year"]="Year";
$lang["fieldtitle-genre"]="Genre";
$lang["fieldtitle-duration"]="Duration";
$lang["fieldtitle-channel_mode"]="Channel mode";
$lang["fieldtitle-sample_rate"]="Sample rate";
$lang["fieldtitle-audio_bitrate"]="Audio bitrate";
$lang["fieldtitle-frame_rate"]="Frame rate";
$lang["fieldtitle-video_bitrate"]="Video bitrate";
$lang["fieldtitle-aspect_ratio"]="Aspect ratio";
$lang["fieldtitle-video_size"]="Video size";
$lang["fieldtitle-image_size"]="Image size";
$lang["fieldtitle-extracted_text"]="Extracted text";
$lang["fieldtitle-file_size"]=$lang["filesize"]="File size";
$lang["fieldtitle-category"]="Category";
$lang["fieldtitle-subject"]="Subject";
$lang["fieldtitle-author"]="Author";
$lang["fieldtitle-owner"]="Owner";
# Field types
$lang["fieldtype-text_box_single_line"]="Text box (single line)";
$lang["fieldtype-text_box_multi-line"]="Text box (multi-line)";
$lang["fieldtype-text_box_large_multi-line"]="Text box (large multi-line)";
$lang["fieldtype-text_box_formatted_and_ckeditor"]="Text box (formatted / CKeditor)";
$lang["fieldtype-check_box_list"]="Check box list";
$lang["fieldtype-drop_down_list"]="Drop down list";
$lang["fieldtype-date"]="Date";
$lang["fieldtype-date_and_optional_time"]="Date and optional time";
$lang["fieldtype-date_and_time"]="Date / time";
$lang["fieldtype-expiry_date"]="Expiry date";
$lang["fieldtype-category_tree"]="Category tree";
$lang["fieldtype-dynamic_keywords_list"]="Dynamic keywords list";
$lang["fieldtype-dynamic_tree_in_development"]="Dynamic tree (in development)";
$lang["fieldtype-radio_buttons"]="Radio buttons";
$lang["fieldtype-warning_message"]="Warning message";
# Property labels (for the default properties)
$lang["documentation-permissions"]="See <a href=../../documentation/permissions.txt target=_blank>the permissions help text file</a> for further information on permissions.";
$lang["property-reference"]="Reference";
$lang["property-name"]="Name";
$lang["property-permissions"]="Permissions";
$lang["information-permissions"]="NOTE: Global permissions from config may also be in effect";
$lang["property-fixed_theme"]="Fixed theme";
$lang["property-parent"]="Parent";
$lang["property-search_filter"]="Search filter";
$lang["property-edit_filter"]="Edit filter";
$lang["property-resource_defaults"]="Resource defaults";
$lang["property-override_config_options"]="Override config options";
$lang["property-email_welcome_message"]="Email welcome message";
$lang["information-ip_address_restriction"]="Wildcards are supported for IP address restrictions, e.g. 128.124.*";
$lang["property-ip_address_restriction"]="IP address restriction";
$lang["property-request_mode"]="Request mode";
$lang["property-allow_registration_selection"]="Allow registration selection";
$lang["property-resource_type_id"]="Resource type id";
$lang["information-allowed_extensions"]="If set, only files with the specified extensions are allowed upon upload to this type, e.g. jpg,gif";
$lang["property-allowed_extensions"]="Allowed extensions";
$lang["information-resource_type_config_override"]="Allows custom configuration values for each resource type, affecting search results, resource view and edit pages. Don't forget to revert any settings changed here in the config override for the other resource types.";
$lang["property-field_id"]="Field id";
$lang["property-title"]="Title";
$lang["property-resource_type"]="Resource type";
$lang["property-field_type"]="Field type";
$lang["property-options"]="Comma separated list of options. The first option will be the default option. If you do not wish to set a default value, use a starting comma to default to blank. E.g. <br />,Option1,Option2 - will default to blank.";
$lang['property-options_edit_link'] = 'Manage options';
$lang["property-required"]="Required";
$lang["property-order_by"]="Order by";
$lang["property-indexing"]="<b>Indexing</b>";
$lang["information-if_you_enable_indexing_below_and_the_field_already_contains_data-you_will_need_to_reindex_this_field"]="If you enable indexing below and the field already contains data, you will need to <a target=_blank href=../tools/reindex_field.php?field=%ref>reindex this field</a>"; # %ref will be replaced with the field id
$lang["property-index_this_field"]="Index this field";
$lang["information-enable_partial_indexing"]="Partial keyword indexing (prefix+infix indexing) should be used sparingly as it will significantly increase the index size. See the Knowledge Base for details.";
$lang["property-enable_partial_indexing"]="Enable partial indexing";
$lang["information-shorthand_name"]="Important: Shorthand name must be set for the field to be appear on the search bar, in Advanced search or to be used in search/edit filters. It must contain only lowercase alphabetical characters and/or numbers - no spaces or symbols.";
$lang["property-shorthand_name"]="Shorthand name";
$lang["property-display_field"]="Display field";
$lang["property-enable_advanced_search"]="Enable advanced search";
$lang["property-enable_simple_search"]="Enable simple search";
$lang["property-use_for_find_similar_searching"]="Use for find similar searching";
$lang["property-iptc_equiv"]="Iptc equiv";
$lang["property-display_template"]="Display template";
$lang["property-value_filter"]="Value filter";
$lang["property-regexp_filter"]="Regexp filter";
$lang["information-regexp_filter"]="Regular Expression filtering - e.g. '[A-Z]+' will ensure only upper case letters can be entered.";
$lang["information-regexp_fail"]="The entered value was not in the required format.";
$lang["property-tab_name"]="Tab name";
$lang["property-push_metadata"]="Push metadata";
$lang["property-smart_theme_name"]="Smart featured collection name";
$lang["property-exiftool_field"]="Exiftool field";
$lang["property-exiftool_filter"]="Exiftool filter";
$lang["property-help_text"]="Help text";
$lang["property-tooltip_text"]="Tooltip text";
$lang["information-tooltip_text"]="Tooltip text: Text that will appear in simple/advanced search when the cursor hovers over the field";
$lang["information-display_as_dropdown"]="Checkbox lists and dropdown boxes: display as a dropdown box on the advanced search? (the default is to display both as checkbox lists on the advanced search page to enable OR functionality)";
$lang["property-display_as_dropdown"]="Display as dropdown";
$lang["property-external_user_access"]="External user access";
$lang["property-autocomplete_macro"]="Autocomplete macro";
$lang["property-hide_when_uploading"]="Hide when uploading";
$lang["property-hide_when_restricted"]="Hide when restricted";
$lang["property-omit_when_copying"]="Omit when copying";
$lang["property-sync_with_field"]="Sync with field";
$lang["information-copy_field"]="<a href=field_copy.php?ref=%ref>Copy field</a>";
$lang["property-display_condition"]="Display condition";
$lang["information-display_condition"]="Display condition: this field will only display if the following conditions are met. Uses same format as group search filter i.e. shortname=value1|value2, shortnamea=validoptiona;shortnameb=validoptionb1|validoptionb2";
$lang["property-onchange_macro"]="On change macro";
$lang["information-onchange_macro"]="On change macro: code to be executed when field value is changed. CAUTION ADVISED";
$lang["information-derestrict_filter"]="Derestrict filter. Can be used in conjunction with g permission so that all resources are restricted unless metadata condition is met";
$lang["information-push_metadata"]="If set, the metadata for this resource will be displayed on the resource view page for any related resources. For example, you may relate several photos to a person resource. If this property is set on the person resource, then the person metadata will appear on all related photo resource records, avoiding duplication of data in the system.";
$lang["property-query"]="Query";
$lang["information-id"]="Note: 'Id' below MUST be set to a three character unique code.";
$lang["property-id"]="Id";
$lang["property-width"]="Width";
$lang["property-height"]="Height";
$lang["property-quality"]="Quality";
$lang["property-pad_to_size"]="Pad to size";
$lang["property-internal"]="Internal";
$lang["property-allow_preview"]="Allow preview";
$lang["property-allow_restricted_download"]="Allow restricted download";
$lang["property-total_resources"]="Total resources";
$lang["property-total_keywords"]="Total keywords";
$lang["property-resource_keyword_relationships"]="Resource keyword relationships";
$lang["property-total_collections"]="Total collections";
$lang["property-collection_resource_relationships"]="Collection resource relationships";
$lang["property-total_users"]="Total users";
# Used for activity log
$lang["property-resource-field"]="Resource field";
$lang["property-old_value"]="Old value";
$lang["property-new_value"]="New value";
$lang["property-table"]="Table";
$lang["property-column"]="Column";
$lang["property-table_reference"]="Table reference";
$lang["property-code"]="Code";
$lang["property-operation"]="Operation";
# Top navigation bar (also reused for page titles)
$lang["logout"]="Log out";
$lang["contactus"]="Contact us";
# next line
$lang["home"]="Home";
$lang["searchresults"]="Search results";
$lang["themes"]="Featured collections";
$lang["themeselector"]=&$lang["themes"];
$lang["mycollections"]="My collections";
$lang["myrequests"]="My requests";
$lang["collections"]="Collections";
$lang["mycontributions"]="My contributions";
$lang["researchrequest"]="Research request";
$lang["helpandadvice"]="Knowledge Base";
$lang["teamcentre"]="Admin";
# footer link
$lang["aboutus"]="About us";
$lang["interface"]="Interface";
$lang["changethemeto"] = "Change theme to";
# Search bar
$lang["simplesearch"]="Simple search";
$lang["searchbutton"]="Search";
$lang["clearbutton"]="Clear";
$lang["bycountry"]="By country";
$lang["bydate"]="By date";
$lang["anyyear"]="Any year";
$lang["anymonth"]="Any month";
$lang["anyday"]="Any day";
$lang["anycountry"]="Any country";
$lang["resultsdisplay"]="Results display";
$lang["xlthumbs"]="X-large";
$lang["xlthumbstitle"]="Extra Large Thumbnails";
$lang["largethumbs"]="Large";
$lang["largethumbstitle"]="Large Thumbnails";
$lang["smallthumbs"]="Small";
$lang["smallthumbstitle"]="Small Thumbnails";
$lang["list"]="List";
$lang["listtitle"]="List View";
$lang["perpage"]="per page";
$lang["on"]="On";
$lang["off"]="Off";
$lang["seconds"]="seconds";
$lang["reload"]="Reload";
$lang["pause"]="Pause";
$lang["filterbutton"]="Filter";
$lang["stopbutton"]="Stop";
$lang["loadmorebutton"]="Load more";
$lang["gotoadvancedsearch"]="Advanced search";
$lang["viewnewmaterial"]="View new material";
$lang["researchrequestservice"]="Research request service";
# Admin
$lang["manageresources"]="Manage resources";
$lang["overquota"]="Over disk space quota; cannot add resources";
$lang["managearchiveresources"]="Manage archive resources";
$lang["managethemes"]="Manage featured collections";
$lang["manageresearchrequests"]="Manage research requests";
$lang["manageusers"]="Manage users";
$lang["managecontent"]="Manage content";
$lang["viewreports"]="Reports";
$lang["viewreport"]="View report";
$lang["treeobjecttype-report"]=$lang["report"]="Report";
$lang["sendbulkmail"]="Send bulk mail";
$lang["systemsetup"]="System";
$lang["systemlog"]="System log";
$lang["usersonline"]="Users currently online (idle time minutes)";
$lang["diskusage"]="Disk usage";
$lang["available"]="available";
$lang["used"]="used";
$lang["free"]="free";
$lang["editresearch"]="Edit research";
$lang["editproperties"]="Edit properties";
$lang["selectfiles"]="Select files";
$lang["searchcontent"]="Search content";
$lang["ticktodeletehelp"]="Tick to delete this section";
$lang["createnewhelp"]="Create a new help section";
$lang["searchcontenteg"]="(page, name, text)";
$lang["copyresource"]="Copy Resource";
$lang["resourceidnotfound"]="The resource ID was not found";
$lang["inclusive"]="(inclusive)";
$lang["pluginssetup"]="Manage plugins";
$lang["pluginmanager"]="Plugin manager";
$lang["users"]="Users";
# Admin - Bulk E-mails
$lang["emailrecipients"]="E-mail recipient(s)";
$lang["emailsubject"]="E-mail subject";
$lang["emailtext"]="E-mail text";
$lang["emailhtml"]="Enable HTML support - mail body must use HTML formatting";
$lang["send"]="Send";
$lang["emailsent"]="The e-mail has been sent.";
$lang["mustspecifyoneuser"]="You must specify at least one user";
$lang["couldnotmatchusers"]="Could not match all the usernames, or usernames were duplicated";
# Admin - User management
$lang["comments"]="Comments";
# Admin - Resource management
$lang["viewuserpending"]="View user contributed resources pending review";
$lang["userpending"]="User contributed resources pending review";
$lang["viewuserpendingsubmission"]="View user contributed resources pending submission";
$lang["userpendingsubmission"]="User contributed resources pending submission";
$lang["searcharchivedresources"]="Search archived resources";
$lang["viewresourcespendingarchive"]="View resources pending archive";
$lang["resourcespendingarchive"]="Resources pending archive";
$lang["uploadresourcebatch"]="Upload resource batch";
$lang["uploadinprogress"]="Upload and preview creation in progress";
$lang["donotmoveaway"]="IMPORTANT: Do not navigate away from this page until the upload has completed!";
$lang["pleaseselectfiles"]="Please select one or more files to upload.";
$lang["previewstatus"]="Created previews for resource %file% of %filestotal%."; # %file%, %filestotal% will be replaced, e.g. Created previews for resource 2 of 2.
$lang["uploadedstatus"]="Resource %file% of %filestotal% uploaded - %path%"; # %file%, %filestotal% and %path% will be replaced, e.g. Resource 2 of 2 uploaded - pub/pictures/astro-images/JUPITER9.JPG
$lang["upload_failed_for_path"]="Upload failed for %path%"; # %path% will be replaced, e.g. Upload failed for abc123.jpg
$lang["uploadcomplete"]="Upload complete";
$lang["upload_summary"]="Upload summary";
$lang["resources_uploaded-0"]="0 resources uploaded OK.";
$lang["resources_uploaded-1"]="1 resource uploaded OK.";
$lang["resources_uploaded-n"]="%done% resources uploaded OK."; # %done% will be replaced, e.g. 17 resources uploaded OK.
$lang["resources_failed-0"]="0 resources failed.";
$lang["resources_failed-1"]="1 resource failed.";
$lang["resources_failed-n"]="%done% resources failed."; # %failed% will be replaced, e.g. 2 resources failed.
$lang["specifyftpserver"]="Specify remote FTP server";
$lang["ftpserver"]="FTP server";
$lang["ftpusername"]="FTP username";
$lang["ftppassword"]="FTP password";
$lang["ftpfolder"]="FTP folder";
$lang["usesmtp"]="Use an SMTP Server for email sending / receiving";
$lang["smtpsecure"]="SMTP Secure";
$lang["smtphost"]="SMTP Host";
$lang["smtpport"]="SMTP Port";
$lang["smtpauth"]="Use Authentication for SMTP Server";
$lang["smtpusername"]="SMTP Username";
$lang["smtppassword"]="SMTP Password";
$lang["connect"]="Connect";
$lang["uselocalupload"]="OR: Use local 'upload' folder instead of remote FTP server";
# User contributions
$lang["contributenewresource"]="Contribute new resource";
$lang["viewcontributedps"]="View my contributions - pending submission";
$lang["viewcontributedpr"]="View my contributions - pending review";
$lang["viewcontributedsubittedl"]="View my contributions - active";
$lang["contributedps"]="My contributions - pending submission";
$lang["contributedpr"]="My contributions - pending review";
$lang["contributedsubittedl"]="My contributions - active";
# Collections
$lang["editcollection"]="Edit collection";
$lang["editcollectionresources"]="Edit collection previews";
$lang["access"]="Access";
$lang["private"]="Private";
$lang["public"]="Public";
$lang["attachedusers"]="Attached users";
$lang["themecategory"]="Featured collection category";
$lang["theme"]="Featured collection";
$lang["newcategoryname"]="OR: Enter a new featured collection category name...";
$lang["allowothersaddremove"]="Allow other users to add/remove resources";
$lang["resetarchivestatus"]="Reset archive status for all resources in collection";
$lang["editallresources"]="Edit all resources in collection";
$lang["editresources"]="Edit resources";
$lang["multieditnotallowed"]="Mult-edit not allowed - all the resources are not in the same status or of the same type.";
$lang["emailcollectiontitle"]="E-mail collection";
$lang["collectionname"]="Collection name";
$lang["collection-name"]="Collection: %collectionname%"; # %collectionname will be replaced, e.g. Collection: Cars
$lang["collectionid"]="Collection ID";
$lang["collectionidprefix"]="Col_ID";
$lang["_dupe"]="_dupe";
$lang["emailtousers"]="E-mail to users<br><br><b>For existing users</b> start typing the user's name to search, click the user when found and then click plus<br><br><b>For non-registered users</b> type the e-mail address then click plus";
$lang["emailtousers_internal"]="E-mail to users<br><br>Start typing the user's name to search, then click the required user when found";
$lang["removecollectionareyousure"]="Are you sure you wish to remove this collection from your list?";
$lang["managemycollections"]="Manage my collections";
$lang["createnewcollection"]="Create new collection";
$lang["findpubliccollection"]="Public collections";
$lang["searchpubliccollections"]="Search public collections";
$lang["addtomycollections"]="Add to my collections";
$lang["action-addtocollection"]="Add to collection";
$lang["action-removefromcollection"]="Remove from collection";
$lang["addtocollection"]="Add to collection";
$lang["cantmodifycollection"]="You can't modify this collection.";
$lang["currentcollection"]="Current collection";
$lang["viewcollection"]="View collection";
$lang['hiddencollections_hide']="Hide hidden collections";
$lang['hiddencollections_show']="Show hidden collections";
$lang['hide_collection']="Hide collection";
$lang["viewall"]="View all";
$lang['view_all_resources'] = 'View all resources';
$lang["action-editall"]="Edit all";
$lang['edit_all_resources'] = 'Edit all resources';
$lang["hidethumbnails"]="Hide thumbs";
$lang["showthumbnails"]="Show thumbs";
$lang["toggle"]="Toggle";
$lang["resize"]="Resize";
$lang["contactsheet"]="Contact sheet";
$lang["mycollection"]="My Collection";
$lang["geolocatecollection"]="Geolocate collection";
$lang["geoemptycollection"]="You provided an empty collection. Please add assets and try again.";
$lang["editresearchrequests"]="Edit research requests";
$lang["research"]="Research";
$lang["savedsearch"]="Saved search";
$lang["mustspecifyoneusername"]="You must specify at least one username";
$lang["couldnotmatchallusernames"]="Could not match all the usernames";
$lang["emailcollectionmessage"]="has e-mailed you a collection of resources from $applicationname which has been added to your 'my collections' page."; # suffixed to user name e.g. "Fred has e-mailed you a collection..."
$lang["nomessage"]="No message";
$lang["emailcollectionmessageexternal"]="has e-mailed you a collection of resources from $applicationname."; # suffixed to user name e.g. "Fred has e-mailed you a collection..."
$lang["clicklinkviewcollection"]="Click the link below to view the collection.";
$lang["zippedcollectiontextfile"]="Include text file with resource/collection data.";
$lang["archivesettings"]="Archive settings";
$lang["archive-zip"]="ZIP";
$lang["archive-7z"]="7Z";
$lang["download-of-collections-not-enabled"]="Download of collections is not enabled.";
$lang["archiver-utility-not-found"]="Couldn't find the archiver utility.";
$lang["collection_download_settings-not-defined"]="\$collection_download_settings is not defined.";
$lang["collection_download_settings-not-an-array"]="\$collection_download_settings is not an array.";
$lang["listfile-argument-not-defined"]="\$archiver_listfile_argument is not defined.";
$lang["nothing_to_download"]="Nothing to download.";
$lang["copycollectionremoveall"]="Remove all resources before copying";
$lang["purgeanddelete"]="Purge";
$lang["purgecollectionareyousure"]="Are you sure you want to remove this collection AND DELETE all resources in it?";
$lang["collectionsdeleteempty"]="Delete empty collections";
$lang["collectionsdeleteemptyareyousure"]="Are you sure you want to delete all of your own empty collections?";
$lang["collectionsnothemeselected"]="You must select or enter a featured collection category name.";
$lang["downloaded"]="Downloaded";
$lang["contents"]="Contents";
$lang["forthispackage"]="for this package";
$lang["didnotinclude"]="Did not include";
$lang["selectcollection"]="Select collection";
$lang["total"]="Total";
$lang["lastmatching"]="Last matching";
$lang["ownedbyyou"]="owned by you";
$lang["edit_theme_category"]="Edit featured collection category";
$lang["emailthemecollectionmessageexternal"]="has e-mailed you collections of resources from $applicationname.";
$lang["emailthememessage"]="has e-mailed you a selection of featured collections from $applicationname which have been added to your 'My collections' page.";
$lang["clicklinkviewthemes"]="Click the link below to view the featured collections.";
$lang["clicklinkviewcollections"]="Click the links below to view the collections.";
# Lightbox
$lang["lightbox-image"] = "Image";
$lang["lightbox-of"] = "of";
# Resource create / edit / view
$lang["createnewresource"]="Create new resource";
$lang["treeobjecttype-resource_type"]=$lang["resourcetype"]="Resource type";
$lang["resourcetypes"]="Resource types";
$lang["deleteresource"]="Delete resource";
$lang["downloadresource"]="Download resource";
$lang["rightclicktodownload"]="Right click this link and choose 'Save Target As' to download your resource..."; # For Opera/IE browsers only
$lang["downloadinprogress"]="Download in progress";
$lang["editmultipleresources"]="Edit Multiple Resources";
$lang["editresource"]="Edit resource";
$lang["resources_selected-1"]="1 resource selected"; # 1 resource selected
$lang["resources_selected-2"]="%number resources selected"; # e.g. 17 resources selected
$lang["image"]="Image";
$lang["previewimage"]="Preview image";
$lang["file"]="File";
$lang["upload"]="Upload";
$lang["action-upload"]="Upload";
$lang["action-upload-to-collection"]="Upload to this collection";
$lang["uploadafile"]="Upload a file";
$lang["replacefile"]="Replace file";
$lang["showwatermark"]="Show watermark";
$lang["hidewatermark"]="Hide watermark";
$lang["imagecorrection"]="Edit preview images";
$lang["previewthumbonly"]="(preview / thumbnail only)";
$lang["rotateclockwise"]="Rotate clockwise";
$lang["rotateanticlockwise"]="Rotate anti-clockwise";
$lang["increasegamma"]="Brighten previews";
$lang["decreasegamma"]="Darken previews";
$lang["restoreoriginal"]="Restore original";
$lang["createpreviews"]="Create previews";
$lang["recreatepreviews"]="Recreate previews";
$lang["retrypreviews"]="Retry preview creation";
$lang["specifydefaultcontent"]="Specify default content for new resources";
$lang["properties"]="Properties";
$lang["relatedresources"]="Related resources";
$lang["relatedresources-filename_extension"]="Related resources - %EXTENSION"; # Use %EXTENSION, %extension or %Extension as a placeholder. The placeholder will be replaced with the filename extension, using the same case. E.g. "Related resources - %EXTENSION" -> "Related resources - JPG"
$lang["relatedresources-id"]="Related resources for %id%"; # %id% will be replaced, e.g. Related Resources - ID57
$lang["relatedresources-restype"]="Related resources - %restype%"; # Use %RESTYPE%, %restype% or %Restype% as a placeholder. The placeholder will be replaced with the resource type in plural, using the same case. E.g. "Related resources - %restype%" -> "Related resources - photos"
$lang["relatedresources_onupload"]="Relate All Resources on Upload";
$lang["indexedsearchable"]="Indexed, searchable fields";
$lang["clearform"]="Clear form";
$lang["similarresources"]="similar resources"; # e.g. 17 similar resources
$lang["similarresource"]="similar resource"; # e.g. 1 similar resource
$lang["nosimilarresources"]="No similar resources";
$lang["emailresourcetitle"]="E-mail resource";
$lang["resourcetitle"]="Resource title";
$lang["requestresource"]="Request resource";
$lang["action-viewmatchingresources"]="View matching resources";
$lang["nomatchingresources"]="No matching resources";
$lang["matchingresources"]="matching resources"; # e.g. 17 matching resources
$lang["advancedsearch"]="Advanced search";
$lang["archiveonlysearch"]="Archived resources";
$lang["allfields"]="All fields";
$lang["typespecific"]="Type specific";
$lang["youfound"]="You found"; # e.g. you found 17 resources
$lang["youfoundresources"]="resources"; # e.g. you found 17 resources
$lang["youfoundresource"]="resource"; # e.g. you found 1 resource
$lang["youfoundresults"]="results"; # e.g. you found 17 resources
$lang["youfoundresult"]="result"; # e.g. you found 1 resource
$lang["display"]="Display"; # e.g. Display: thumbnails / list
$lang["sortorder"]="Sort order";
$lang['sortorder-asc'] = 'ASC';
$lang['sortorder-desc'] = 'DESC';
$lang["relevance"]="Relevance";
$lang["asadded"]="As added";
$lang["popularity"]="Popularity";
$lang["rating"]="Rating";
$lang["colour"]="Colour";
$lang["jumptopage"]="Page";
$lang["jump"]="Jump";
$lang["titleandcountry"]="Title / country";
$lang["torefineyourresults"]="To refine your results, try";
$lang["verybestresources"]="The very best resources";
$lang["addtocurrentcollection"]="Add to current collection";
$lang["addresource"]="Add single resource";
$lang["addresourcebatch"]="Add resource batch";
$lang["fileupload"]="File upload";
$lang["clickbrowsetolocate"]="Click browse to locate a file";
$lang["resourcetools"]="Resource tools";
$lang["fileinformation"]="File information";
$lang["options"]="Options";
$lang["previousresult"]="Previous result";
$lang["viewallresults"]="View all results";
$lang["nextresult"]="Next result";
$lang["pixels"]="pixels";
$lang["download"]="Download";
$lang["preview"]="Preview";
$lang["fullscreenpreview"]="Full screen preview";
$lang["originalfileoftype"]="Original %EXTENSION File"; # Use %EXTENSION, %extension or %Extension as a placeholder. The placeholder will be replaced with the filename extension, using the same case. E.g. "Original %EXTENSION File" -> "Original PDF File"
$lang["fileoftype"]="? File"; # ? will be replaced, e.g. "MP4 File"
$lang["cell-fileoftype"]="%EXTENSION File"; # Use %EXTENSION, %extension or %Extension as a placeholder. The placeholder will be replaced with the filename extension, using the same case. E.g. "%EXTENSION File" -> "JPG File"
$lang["field-fileextension"]="%EXTENSION"; # Use %EXTENSION, %extension or %Extension as a placeholder. The placeholder will be replaced with the filename extension, using the same case. E.g. "%EXTENSION" -> "JPG"
$lang["fileextension-inside-brackets"]="[%EXTENSION]"; # Use %EXTENSION, %extension or %Extension as a placeholder. The placeholder will be replaced with the filename extension, using the same case. E.g. "[%EXTENSION]" -> "[JPG]"
$lang["fileextension"]="%EXTENSION"; # Use %EXTENSION, %extension or %Extension as a placeholder. The placeholder will be replaced with the filename extension, using the same case. E.g. "%EXTENSION" -> "JPG"
$lang["log"]="Log";
$lang["resourcedetails"]="Resource details";
$lang["offlineresource"]="Offline resource";
$lang["action-request"]="Request";
$lang["request"]="Request";
$lang["requestlog"]="Request log";
$lang["searchforsimilarresources"]="Search for similar resources";
$lang["clicktoviewasresultset"]="View these resources as a result set";
$lang["searchnomatches"]="Your search did not have any results.";
$lang["try"]="Try";
$lang["tryselectingallcountries"]="Try selecting <b>all</b> in the countries box, or";
$lang["tryselectinganyyear"]="Try selecting <b>any year</b> in the year box, or";
$lang["tryselectinganymonth"]="Try selecting <b>any month</b> in the month box, or";
$lang["trybeinglessspecific"]="Try being less specific by";
$lang["enteringfewerkeywords"]="entering fewer search keywords."; # Suffixed to any of the above 4 items e.g. "Try being less specific by entering fewer search keywords"
$lang["match"]="match";
$lang["matches"]="matches";
$lang["inthearchive"]="in the archive";
$lang["nomatchesinthearchive"]="No matches in the archive";
$lang["savethissearchtocollection"]="Save query to collection";
$lang["mustspecifyonekeyword"]="You must specify at least one search keyword.";
$lang["hasemailedyouaresource"]="has e-mailed you a resource."; # Suffixed to user name, e.g. Fred has e-mailed you a resource
$lang["clicktoviewresource"]="Click the link below to view the resource.";
$lang["statuscode"]="Status code";
$lang["unoconv_pdf"]="generated by Open Office";
$lang['calibre_pdf']="generated by Calibre";
$lang["resourcenotfound"]="Resource not found.";
$lang['remove_custom_access_users_groups'] = 'Users and groups with custom access';
$lang['remove_custom_access_no_users_found'] = 'No users or groups with custom access found.';
$lang['action-generate_pdf'] = 'Generate PDF';
# Resource log - actions
$lang["resourcelog"]="Resource log";
$lang["log-u"]="Uploaded file";
$lang["log-c"]="Created resource";
$lang["log-d"]="Downloaded file";
$lang["log-e"]="Edited resource field";
$lang["log-m"]="Edited resource field (multi-edit)";
$lang["log-E"]="Shared resource via e-mail to ";// + notes field
$lang["log-v"]="Viewed resource";
$lang["log-x"]="Deleted resource";
$lang["log-l"]="Logged in"; # For user entries only.
$lang["log-t"]="Transformed file";
$lang["log-s"]="Change status";
$lang["log-a"]="Change access";
$lang["log-r"]="Reverted metadata";
$lang["log-b"]="Created alternate";
$lang["log-y"]="Deleted alternate";
$lang["log-missinglang"]="[type] (missing lang)"; # [type] will be replaced.
$lang['log-adminpermissionsrequired'] = 'Full admin permission required!';
/* Universal log codes (generic - not for example, resource specific) */
$lang["log_code_a"]="Access changed";
$lang["log_code_b"]=$lang["log-b"];
$lang["log_code_c"]="Created";
$lang["log_code_C"]="Copied";
$lang["log_code_d"]=$lang["log-d"];
$lang["log_code_e"]="Edited";
$lang["log_code_E"]="Emailed";
$lang["log_code_l"]=$lang["log-l"];
$lang["log_code_m"]="Multi-edited";
$lang["log_code_p"]="Payed";
$lang["log_code_r"]="Reverted or re-uploaded";
$lang["log_code_R"]="Reordered";
$lang["log_code_s"]=$lang["log-s"];
$lang["log_code_S"]="System";
$lang["log_code_t"]=$lang["log-t"];
$lang["log_code_u"]=$lang["log-u"];
$lang["log_code_U"]="Unspecified";
$lang["log_code_v"]="Viewed";
$lang["log_code_x"]="Deleted";
$lang["backtoresourceview"]="Back to resource view";
$lang["continuetoresourceview"]="Continue to resource view";
# Resource status
$lang["status"]="Status";
$lang["status-2"]="Pending submission";
$lang["status-1"]="Pending review";
$lang["status0"]="Active";
$lang["status1"]="Waiting to be archived";
$lang["status2"]="Archived";
$lang["status3"]="Deleted";
# Charts
$lang["activity"]="Activity";
$lang["summary"]="summary";
$lang["mostinaday"]="Most in a day";
$lang["totalfortheyear"]="Total for the year";
$lang["totalforthemonth"]="Total for the month";
$lang["dailyaverage"]="Daily average for active days";
$lang["nodata"]="No data for this period.";
$lang["max"]="Max"; # i.e. maximum
$lang["statisticsfor"]="Statistics for"; # e.g. Statistics for 2007
$lang["printallforyear"]="Print all statistics for this year";
# Log in / user account
$lang["nopassword"]="Click here to apply for an account";
$lang["forgottenpassword"]="Click here if you have forgotten your password";
$lang["keepmeloggedin"]="Keep me logged in at this workstation";
$lang["columnheader-username"]=$lang["username"]="Username";
$lang["password"]="Password";
$lang["login"]="Log in";
$lang["loginincorrect"]="Sorry, your login details were incorrect.<br /><br />If you have forgotten your password,<br />use the link above to request a new one.";
$lang["accountexpired"]="Your account has expired. Please contact the resources team.";
$lang["useralreadyexists"]="An account with that e-mail or username already exists, changes not saved";
$lang["useremailalreadyexists"]="An account with that e-mail already exists.";
$lang["ticktoemail"]="E-mail this user their username and new password";
$lang["ticktodelete"]="Tick to delete this user";
$lang["edituser"]="Edit user";
$lang["columnheader-full_name"]=$lang["fullname"]="Full name";
$lang["email"]="E-mail";
$lang["columnheader-e-mail_address"]=$lang["emailaddress"]="E-mail address";
$lang["suggest"]="Suggest";
$lang["accountexpiresoptional"]="Account expires (optional)";
$lang["lastactive"]="Last active";
$lang["lastbrowser"]="Last browser";
$lang["searchusers"]="Search users";
$lang["createuserwithusername"]="Create user with username...";
$lang["emailnotfound"]="The e-mail address specified could not be found";
$lang["yourname"]="Your full name";
$lang["youremailaddress"]="Your e-mail address";
$lang["sendreminder"]="Send reminder";
$lang["sendnewpassword"]="Send email";
$lang["requestuserlogin"]="Request user login";
$lang["accountlockedstatus"]="Account is locked";
$lang["accountunlock"]="Unlock";
# Research request
$lang["nameofproject"]="Name of project";
$lang["descriptionofproject"]="Description of project";
$lang["descriptionofprojecteg"]="(eg. Audience / style / subject / geographical focus)";
$lang["deadline"]="Deadline";
$lang["nodeadline"]="No deadline";
$lang["noprojectname"]="You must specify a project name";
$lang["noprojectdescription"]="You must specify a project description";
$lang["contacttelephone"]="Contact telephone";
$lang["finaluse"]="Final use";
$lang["finaluseeg"]="(eg. Powerpoint / leaflet / poster)";
$lang["noresourcesrequired"]="Number of resources required for final product?";
$lang["shaperequired"]="Shape of images required";
$lang["portrait"]="Portrait";
$lang["landscape"]="Landscape";
$lang["square"]="Square";
$lang["either"]="Either";
$lang["sendrequest"]="Send request";
$lang["editresearchrequest"]="Edit research request";
$lang["requeststatus0"]=$lang["unassigned"]="Unassigned";
$lang["requeststatus1"]="In progress";
$lang["requeststatus2"]="Complete";
$lang["copyexistingresources"]="Copy the resources in an existing collection to this research brief";
$lang["deletethisrequest"]="Tick to delete this request";
$lang["requestedby"]="Requested by";
$lang["requesteditems"]="Requested items";
$lang["assignedtoteammember"]="Assigned to team member";
$lang["typecollectionid"]="(Type collection ID below)";
$lang["researchid"]="Research ID";
$lang["assignedto"]="Assigned to";
$lang["createresearchforuser"]="Create research request for user";
$lang["searchresearchrequests"]="Search Research Requests";
$lang["requestasuser"]="Request as user";
$lang["haspostedresearchrequest"]="has posted a research request"; # username is suffixed to this
$lang["newresearchrequestwaiting"]="New research request waiting";
$lang["researchrequestassignedmessage"]="Your research request has been assigned to a member of the admin team. Once we've completed the research you'll receive an e-mail with a link to all the resources that we recommend.";
$lang["researchrequestassigned"]="Research request assigned";
$lang["researchrequestcompletemessage"]="Your research request is complete and has been added to your 'my collections' page.";
$lang["researchrequestcomplete"]="Research request completed";
# Misc / global
$lang["selectgroupuser"]="Select group/user...";
$lang["select"]="Select...";
$lang["selectloading"]="Select....";
$lang["add"]="Add";
$lang["create"]="Create";
$lang["treeobjecttype-group"]=$lang["group"]="Group";
$lang["groupsmart"]="Group (Smart)";
$lang["confirmaddgroup"]="Are you sure you want to add all the current members in this group?";
$lang["confirmaddgroupsmart"]="Are you sure you want to dynamically include members in this group?";
$lang["backtoteamhome"]="Back to admin home";
$lang["columnheader-resource_id"]=$lang["resourceid"]="Resource ID";
$lang["id"]="ID";
$lang["todate"]="To date";
$lang["fromdate"]="From date";
$lang["day"]="Day";
$lang["month"]="Month";
$lang["year"]="Year";
$lang["hour-abbreviated"]="HH";
$lang["minute-abbreviated"]="MM";
$lang["itemstitle"]="Items";
$lang["tools"]="Tools";
$lang["created"]="Created";
$lang["user"]="User";
$lang["owner"]="Owner";
$lang["message"]="Message";
$lang["name"]="Name";
$lang["action"]="Action";
$lang["treeobjecttype-field"]=$lang["field"]="Field";
$lang["save"]="Save";
$lang["revert"]="Revert";
$lang["cancel"]="Cancel";
$lang["view"]="View";
$lang["type"]="Type";
$lang["text"]="Text";
$lang["yes"]="Yes";
$lang["no"]="No";
$lang["key"]="Key:"; # e.g. explanation of icons on search page
$lang["default"]="Default";
$lang["languageselection"]="Language selection";
$lang["language"]="Language";
$lang["changeyourpassword"]="Change my password";
$lang["yourpassword"]="Your password";
$lang["currentpassword"]="Current password";
$lang["newpassword"]="New password";
$lang["newpasswordretype"]="New password (retype)";
$lang["passwordnotvalid"]="This is not a valid password";
$lang["passwordnotmatch"]="The entered passwords did not match";
$lang["wrongpassword"]="Incorrect password, please try again";
$lang["action-view"]="View";
$lang["action-preview"]="Preview";
$lang["action-expand"]="Expand";
$lang["action-more"]="More";
$lang["action-less"]="Less";
$lang["action-select"]="Select";
$lang["action-download"]="Download";
$lang["action-email"]="E-mail";
$lang["action-edit"]="Edit";
$lang["action-delete"]="Delete";
$lang["action-deletechecked"]="Delete checked";
$lang["action-deletecollection"]="Delete collection";
$lang["action-revertmetadata"]="Revert metadata";
$lang["confirm-revertmetadata"]="Are you sure you want to re-extract the original metadata from this file? This action will simulate a re-upload of the file, and you will lose any altered metadata.";
$lang["action-remove"]="Remove";
$lang['action-replace'] = 'Replace';
$lang["complete"]="Complete";
$lang["backtohome"]="Back to the home page";
$lang["continuetohome"]="Continue to the home page";
$lang["backtohelphome"]="Back to help home";
$lang["backtosearch"]="Back to my search results";
$lang["backtoview"]="Resource View";
$lang["backtoeditresource"]="Back to edit resource";
$lang["backtouser"]="Back to user login";
$lang["continuetouser"]="Continue to user login";
$lang["termsandconditions"]="Terms and conditions";
$lang["iaccept"]="I accept the terms";
$lang["mustaccept"]="You must tick the box to accept the terms before you can proceed";
$lang["proceed"]="Proceed";
$lang["contributedby"]="Contributed by";
$lang["format"]="Format";
$lang["notavailableshort"]="N/A";
$lang["allmonths"]="All months";
$lang["allgroups"]="All groups";
$lang["status-ok"]="OK";
$lang["status-fail"]="FAIL";
$lang["status-warning"]="WARNING";
$lang["status-notinstalled"]="Not installed";
$lang["status-never"]="Never";
$lang["softwareversion"]="? version"; # E.g. "PHP version"
$lang["softwarebuild"]="? Build"; # E.g. "ResourceSpace Build"
$lang["softwarenotfound"]="'?' not found"; # ? will be replaced.
$lang["client-encoding"]="(client-encoding: %encoding)"; # %encoding will be replaced, e.g. client-encoding: utf8
$lang["browseruseragent"]="Browser user-agent";
$lang['serverplatform']="Server platform";
$lang["are_available-0"]="are available";
$lang["are_available-1"]="is available";
$lang["are_available-2"]="are available";
$lang["were_available-0"]="were available";
$lang["were_available-1"]="was available";
$lang["were_available-2"]="were available";
$lang["resource-0"]="resources";
$lang["resource-1"]="resource";
$lang["resource-2"]="resources";
$lang["status-note"]="NOTE";
$lang["action-changelanguage"]="Change language";
$lang["loading"]="Loading...";
$lang['disable_languages']='Disable language selection options';
$lang['import_export'] = 'Import/ Export';
$lang['import'] = 'Import';
$lang['export'] = 'Export';
# Pager
$lang["next"]="Next";
$lang["previous"]="Previous";
$lang["page"]="Page";
$lang["of"]="of"; # e.g. page 1 of 2
$lang["items"]="items"; # e.g. 17 items
$lang["item"]="item"; # e.g. 1 item
# Statistics
$lang["stat-addpubliccollection"]="Add public collection";
$lang["stat-addresourcetocollection"]="Add resources to collection";
$lang["stat-addsavedsearchtocollection"]="Add saved search to collection";
$lang["stat-addsavedsearchitemstocollection"]="Add saved search items to collection";
$lang["stat-advancedsearch"]="Advanced search";
$lang["stat-archivesearch"]="Archive search";
$lang["stat-assignedresearchrequest"]="Assigned research request";
$lang["stat-createresource"]="Create resource";
$lang["stat-e-mailedcollection"]="E-mailed collection";
$lang["stat-e-mailedresource"]="E-mailed resource";
$lang["stat-keywordaddedtoresource"]="Keyword added to resource";
$lang["stat-keywordusage"]="Keyword usage";
$lang["stat-newcollection"]="New collection";
$lang["stat-newresearchrequest"]="New research request";
$lang["stat-printstory"]="Print story";
$lang["stat-processedresearchrequest"]="Processed research request";
$lang["stat-resourcedownload"]="Resource download";
$lang["stat-resourceedit"]="Resource edit";
$lang["stat-resourceupload"]="Resource upload";
$lang["stat-resourceview"]="Resource view";
$lang["stat-search"]="Search";
$lang["stat-usersession"]="User session";
$lang["stat-addedsmartcollection"]="Added smart collection";
$lang["stat-removedresourcefromcollection"]="Removed resource from collection";
$lang["stat-keywordusage-noresultsfound"]="Keyword usage - no results found";
# Access
$lang["access0"]="Open";
$lang["access1"]="Restricted";
$lang["access2"]="Confidential";
$lang["access3"]="Custom";
$lang["statusandrelationships"]="Status and relationships";
# Lists
$lang["months"]=array("January","February","March","April","May","June","July","August","September","October","November","December");
$lang["false-true"]=array("False","True");
# Formatting
$lang["plugin_field_fmt"]="%A (%B)"; // %A and %B are replaced by content defined by individual plugins. See, e.e., config_db_single_select in /include/plugin_functions.php
#Sharing
$lang["share"]="Share";
$lang["sharecollection"]="Share collection";
$lang["sharecollection-name"]="Share collection - %collectionname"; # %collectionname will be replaced, e.g. Share Collection - Cars
$lang["share_theme_category"]="Share featured collection category";
$lang["share_theme_category_subcategories"]="Include featured collections in subcategories for external users?";
$lang["email_theme_category"]="E-mail featured collection category";
$lang["generateurl"]="Generate URL";
$lang["generateurls"]="Generate URLs";
$lang["generateexternalurl"]="Generate external URL";
$lang["generateexternalurls"]="Generate external URLs";
$lang["generateurlinternal"]="The below URL will work for existing users only.";
$lang["generateurlexternal"]="The below URL will work for everyone and does not require a login.";
$lang["generatethemeurlsexternal"]="The below URLs will work for everyone and do not require a login.";
$lang["showexistingthemeshares"]="Show existing shares for featured collections in this category";
$lang["internalusersharing"]="Internal user sharing";
$lang["externalusersharing"]="External user sharing";
$lang["externalusersharing-name"]="External user sharing - %collectionname%"; # %collectionname will be replaced, e.g. External User Sharing - Cars
$lang["accesskey"]="Access key";
$lang["sharedby"]="Shared by";
$lang["sharedwith"]="Shared with";
$lang["lastupdated"]="Last updated";
$lang["lastused"]="Last used";
$lang["noattachedusers"]="No attached users.";
$lang["confirmdeleteaccess"]="Are you sure you wish to delete this access key? Users that have been given access using this key will no longer be able to access this collection.";
$lang["confirmdeleteaccessresource"]="Are you sure you wish to delete this access key? Users that have been given access using this key will no longer be able to access this resource.";
$lang["editingexternalshare"]="Editing external share";
$lang["noexternalsharing"]="No external sharing.";
$lang["sharedcollectionaddwarning"]="Warning: This collection has been shared with external users. The resource you have added has now been made available to these users. Click 'share' to manage the external access for this collection.";
$lang["sharedcollectionaddwarningupload"]="Warning: The selected collection has been shared with external users. The resources you upload will be made available to these users. Click 'share' in the bottom bar to manage the external access for this collection.";
$lang["sharedcollectionaddblocked"]="You are not permitted to add resources to a collection that has been shared with external users.";
$lang["restrictedsharecollection"]="You have restricted access to one or more of the resources in this collection and therefore sharing is prohibited.";
$lang["selectgenerateurlexternal"]="To create a URL that will work for external users (people that do not have a login) please choose the access level you wish to grant to the resources.";
$lang["selectgenerateurlexternalthemecat"]="To create URLs that will allow access to external users (people that do not have a login) please choose the access level you wish to grant to the resources.";
$lang["externalselectresourceaccess"]="If you are e-mailing external users, please select the level of access you would like to grant to this resource.";
$lang["externalselectresourceexpires"]="If you are e-mailing external users, please select an expiry date for the generated URL.";
$lang["externalshareexpired"]="Sorry, this share has expired and is no longer available.";
$lang["notapprovedsharecollection"]="One or more resources in this collection are not active and therefore sharing is prohibited.";
$lang["notapprovedsharetheme"]="Sharing is prohibited for at least one collection, because one or more resources is not active.";
$lang["notapprovedresources"]="The following resources are not active and cannot be added to a shared collection: ";
$lang['error_generating_access_key'] = 'Could not generate an access key';
$lang['access_key_deleted'] = "Access key '%access_key' deleted";
$lang['email_error_user_list_not_valid'] = 'No valid emails to send to (users might not be approved)';
# New for 1.3
$lang["savesearchitemstocollection"]="Save results to collection";
$lang["removeallresourcesfromcollection"]="Remove all resources from this collection";
$lang['deleteallresourcesfromcollection'] = 'Delete all resources';
$lang["deleteallsure"]="Are you sure you wish to DELETE these resources? This will delete the resources themselves, not just remove them from this collection.";
$lang["batchdonotaddcollection"]="(do not add to a collection)";
$lang["collectionsthemes"]="Related featured and public collections";
$lang["recent"]="Recently added";
$lang["n_recent"]="%qty Recently added resources";
$lang["batchcopyfrom"]="Copy the data below from resource with ID";
$lang["copy"]="Copy";
$lang["zipall"]="Download";
$lang["downloadzip"]="Download collection as an archive";
$lang["downloadsize"]="Download size";
$lang["tagging"]="Tagging";
$lang["speedtagging"]="Speed tagging";
$lang["existingkeywords"]="Existing keywords:";
$lang["extrakeywords"]="Extra keywords";
$lang["leaderboard"]="Leaderboard";
$lang["confirmeditall"]="Are you sure you wish to save? This will overwrite the existing values(s) for the selected field(s) for all the resources in your current collection.";
$lang["confirmsubmitall"]="Are you sure you wish to submit all for review? This will overwrite the existing values(s) for the selected field(s) for all the resources in your current collection and submit them all for review.";
$lang["confirmunsubmitall"]="Are you sure you wish to unsubmit all from the review process? This will overwrite the existing values(s) for the selected field(s) for all the resources in your current collection and unsubmit them all from review.";
$lang["confirmpublishall"]="Are you sure you wish to publish? This will overwrite the existing values(s) for the selected field(s) for all the resources in your current collection and publish them all for public viewing";
$lang["confirmunpublishall"]="Are you sure you wish to unpublish these resources? This will overwrite the existing values(s) for the selected field(s) for all the resources in your current collection and remove them from public viewing";
$lang["collectiondeleteconfirm"]="Are you sure you wish to delete this collection?";
$lang["hidden"]="(hidden)";
$lang["requestnewpassword"]="Request new password";
# New for 1.4
$lang["reorderresources"]="Reorder resources within collection (hold and drag)";
$lang['resourcetypereordered']="Resource type position reordered";
$lang['resourcetypefieldreordered']="Resource type field position reordered";
$lang["addorviewcomments"]="Add or view comments";
$lang["collectioncomments"]="Collection comments";
$lang["collectioncommentsinfo"]="Add a comment to this collection for this resource. This will only apply to this collection.";
$lang["comment"]="Comment";
$lang["warningexpired"]="Resource expired";
$lang["warningexpiredtext"]="Warning! This resource has exceeded the expiry date. You must click the link below to enable the download functionality.";
$lang["warningexpiredok"]="> Enable resource download";
$lang["userrequestcomment"]="Comment";
$lang["addresourcebatchbrowser"]="Upload resources";
$lang["addresourcebatchbrowserjava"]="Add resource batch - in browser - Java (legacy) ";
$lang["addresourcebatchftp"]="Add resource batch - fetch from FTP server";
$lang["replaceresourcebatch"]="Replace resource batch";
$lang["editmode"]="Edit mode";
$lang["replacealltext"]="Replace all text / option(s)";
$lang["findandreplace"]="Find and replace";
$lang["prependtext"]="Prepend text";
$lang["appendtext"]="Append text / option(s)";
$lang["removetext"]="Remove text / option(s)";
$lang["find"]="Find";
$lang["andreplacewith"]="...and replace with...";
$lang["relateallresources"]="Relate all resources in this collection";
$lang['relateallresources_confirmation'] = 'Are you sure you want to RELATE ALL resources in this collection?';
# New for 1.5
$lang["columns"]="Columns";
$lang["contactsheetconfiguration"]="Contact sheet configuration";
$lang["thumbnails"]="Thumbnails";
$lang["contactsheetintrotext"]="Please select the configuration options you'd like for your contact sheet PDF. The preview will update automatically when you change your options, unless you change the order of resources in the collection, in which case you'll need to press the \"Preview\" button to update.<br />When you're ready, press \"Create\" to generate and download your contact sheet PDF.";
$lang["size"]="Size";
$lang["orientation"]="Orientation";
$lang["requiredfield"]="This is a required field";
$lang["requiredfields"]="Please review the form and try again. The following fields were not completed:";
$lang["requiredfields-general"]="Please complete all required fields";
$lang["requiredantispam"]="The anti-spam code has not been entered correctly, please try again";
$lang["viewduplicates"]="View duplicate resources";
$lang["duplicateresources"]="Duplicate resources";
$lang["duplicateresourcesfor"]="Duplicate resources for ";
$lang["duplicateresourceupload"]="Upload failed. This file matches existing resources:";
$lang["noresourcesfound"]="No resources found";
$lang["userlog"]="User log";
$lang["ipaddressrestriction"]="IP address restriction (optional)";
$lang["searchfilteroverride"]="Search filter override";
$lang["wildcardpermittedeg"]="Wildcard permitted e.g.";
# New for 1.6
$lang["collection_download_original"]="Original file";
$lang["newflag"]="NEW!";
$lang["link"]="Link";
$lang["uploadpreview"]="Upload a preview image only";
$lang["starttypingusername"]="(start typing username / full name / group name)";
$lang["requestfeedback"]="Request feedback<br />(you will be e-mailed the response)";
$lang["sendfeedback"]="Send feedback";
$lang["feedbacknocomments"]="You have not left any comments for the resources in the collection.<br />Click the speech bubble next to each resource to add comments.";
$lang["collectionfeedback"]="Collection feedback";
$lang["collectionfeedbackemail"]="You have received the following feedback:";
$lang["feedbacksent"]="Your feedback has been sent.";
$lang["newarchiveresource"]="Add single archived resource";
$lang["nocategoriesselected"]="No categories selected";
$lang["showhidetree"]="Show/hide tree";
$lang["clearall"]="Clear all";
$lang["clearcategoriesareyousure"]="Are you sure you wish to clear all selected options?";
$lang["archive"]="Archive";