-
Notifications
You must be signed in to change notification settings - Fork 787
/
Copy pathProQuest.js
2145 lines (2054 loc) · 74.1 KB
/
ProQuest.js
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
{
"translatorID": "fce388a6-a847-4777-87fb-6595e710b7e7",
"label": "ProQuest",
"creator": "Avram Lyon",
"target": "^https?://(www|search)\\.proquest\\.com/(.*/)?(docview|pagepdf|results|publicationissue|browseterms|browsetitles|browseresults|myresearch/(figtables|documents))",
"minVersion": "3.0",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2024-10-22 16:06:36"
}
/*
***** BEGIN LICENSE BLOCK *****
ProQuest Translator
Copyright (C) 2011-2020 Avram Lyon, [email protected] and Sebastian Karcher
TThis file is part of Zotero.
Zotero is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Zotero is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with Zotero. If not, see <http://www.gnu.org/licenses/>.
***** END LICENSE BLOCK ******/
var language = "English";
var L = {};
var isEbrary = false;
// returns an array of values for a given field or array of fields
// the values are in the same order as the field names
function getTextValue(doc, fields) {
if (typeof (fields) != 'object') fields = [fields];
// localize fields
fields = fields.map(
function (field) {
if (fieldNames[language]) {
return fieldNames[language][field] || field;
}
else {
return field;
}
});
var allValues = [], values;
for (let i = 0, n = fields.length; i < n; i++) {
values = ZU.xpath(doc,
'//div[@class="display_record_indexing_fieldname" and normalize-space(text())="' + fields[i]
+ '"]/following-sibling::div[@class="display_record_indexing_data"][1]');
if (values.length) values = [values[0].textContent];
allValues = allValues.concat(values);
}
return allValues;
}
// initializes field map translations
function initLang(doc) {
let lang = text(doc, '.gaMRLanguage');
if (!lang) lang = ZU.xpathText(doc, '//a[span[contains(@class,"uxf-globe")]]');
lang = lang.replace(/\u200e/g, ''); // Remove stray left-to-right markers
Z.debug('Full language label: ' + JSON.stringify(lang));
if (lang && lang != "English") {
lang = lang.split(',')[0].trim();
Z.debug('Trimmed language label: ' + JSON.stringify(lang));
// if already initialized, don't need to do anything else
if (lang == language) return;
language = lang;
// build reverse field map
L = {};
for (let i in fieldNames[language]) {
L[fieldNames[language][i]] = i;
}
return;
}
language = 'English';
L = {};
}
function getSearchResults(doc, checkOnly, extras) {
var root;
var elements = doc.getElementsByClassName('resultListContainer');
for (let i = 0; i < elements.length; i++) {
if (elements[i] && elements[i].childElementCount) {
root = elements[i];
break;
}
}
if (!root) {
Z.debug("No root found");
return false;
}
var results = root.getElementsByClassName('resultItem');
// root.querySelectorAll('.resultTitle, .previewTitle');
var items = {}, found = false;
isEbrary = (results && results[0] && results[0].getElementsByClassName('ebraryitem').length > 0);
// if the first result is Ebrary, they all are - we're looking at the Ebrary results tab
for (let i = 0, n = results.length; i < n; i++) {
var title = results[i].querySelectorAll('h3 a')[0];
// Z.debug(title)
if (!title || !title.href) continue;
if (checkOnly) return true;
found = true;
var item = ZU.trimInternal(title.textContent);
var preselect = results[i].getElementsByClassName('marked_list_checkbox')[0];
if (preselect) {
item = {
title: item,
checked: preselect.checked
};
}
items[title.href] = item;
if (isEbrary && Zotero.isBookmarklet) {
extras[title.href] = {
html: results[i],
title: item,
url: title.href
};
}
}
return found ? items : false;
}
function detectWeb(doc, url) {
initLang(doc);
// Check for multiple first
if (!url.includes('docview') && !url.includes('pagepdf')) {
return getSearchResults(doc, true) ? 'multiple' : false;
}
// if we are on Abstract/Details page,
// then we can read the type from the corresponding field
var types = getTextValue(doc, ["Source type", "Document type", "Record type"]);
var zoteroType = getItemType(types);
if (zoteroType) return zoteroType;
// hack for NYTs, which misses crucial data.
var db = getTextValue(doc, "Database")[0];
if (db && db.includes("The New York Times")) {
return "newspaperArticle";
}
// there is not much information about the item type in the pdf/fulltext page
let titleRow = text(doc, '.open-access');
if (titleRow && doc.getElementById('docview-nav-stick')) { // do not continue if there is no nav to the Abstract, as the translation will fail
if (getItemType([titleRow])) {
return getItemType([titleRow]);
}
// Fall back on journalArticle - even if we couldn't guess the type
return "journalArticle";
}
return false;
}
function doWeb(doc, url, noFollow) {
let type = detectWeb(doc, url);
if (type == "multiple") {
// detect web returned multiple
var resultData = {};
Zotero.selectItems(getSearchResults(doc, false, resultData), function (items) {
if (!items) return;
var articles = [];
for (let item in items) {
articles.push(item);
}
if (isEbrary) {
if (Zotero.isBookmarklet) {
// The bookmarklet can't use the ebrary translator
var refs = [];
for (let i in items) {
refs.push(resultData[i]);
}
scrapeEbraryResults(refs);
}
else {
ZU.processDocuments(articles, function (doc) {
var translator = Zotero.loadTranslator("web");
translator.setTranslator("2abe2519-2f0a-48c0-ad3a-b87b9c059459");
translator.setDocument(doc);
translator.translate();
});
}
}
else {
ZU.processDocuments(articles, doWeb);
}
});
}
else {
// Third option is for EEBO
const abstractTab = doc.getElementById('addFlashPageParameterformat_abstract') || doc.getElementById('addFlashPageParameterformat_citation') || doc.getElementById("link_prefix_addFlashPageParameterformat_citation");
// E.g. on ERIC
const abstractView = doc.getElementsByClassName('abstractContainer');
if (abstractTab && abstractTab.classList.contains('active')) {
Zotero.debug("On Abstract tab and scraping");
scrape(doc, url, type);
}
else if (abstractTab && abstractTab.href) {
var link = abstractTab.href;
Zotero.debug("Going to the Abstract tab");
ZU.processDocuments(link, function (doc, url) {
doWeb(doc, url, true);
});
}
else if (abstractView.length) {
Zotero.debug("new Abstract view");
scrape(doc, url, type);
}
else if (doc.querySelector('.docViewFullCitation .display_record_indexing_row')) {
Zotero.debug("Full citation view");
scrape(doc, url, type);
}
else if (noFollow) {
Z.debug('Not following link again. Attempting to scrape');
scrape(doc, url, type);
}
else {
throw new Error("Could not find the abstract/metadata link");
}
}
}
function scrape(doc, url, type) {
var item = new Zotero.Item(type);
// get all rows
var rows = doc.getElementsByClassName('display_record_indexing_row');
var dates = [], place = {}, altKeywords = [];
for (let i = 0, n = rows.length; i < n; i++) {
let labelElem = rows[i].childNodes[0];
let valueElem = rows[i].childNodes[1];
if (!labelElem || !valueElem) continue;
let label = labelElem.textContent.trim();
let value = valueElem.textContent.trim(); // trimInternal?
// translate label
let enLabel = L[label] || label;
let creatorType;
switch (enLabel) {
case 'Title':
if (value == value.toUpperCase()) value = ZU.capitalizeTitle(value, true);
item.title = value;
break;
case 'Collection name':
if (!item.title) {
item.title = value;
}
break;
case 'Author':
case 'Editor': // test case?
case 'People':
if (enLabel == 'Author') {
creatorType = 'author';
}
else if (enLabel == 'Editor') {
creatorType = 'editor';
}
else {
creatorType = 'contributor';
}
// Use titles of a tags if they exist, since these don't include
// affiliations; don't include links to ORCID profiles
value = ZU.xpathText(valueElem, "a[not(@id='orcidLink')]/@title", null, "; ") || value;
value = value.replace(/^by\s+/i, '') // sometimes the authors begin with "By"
.split(/\s*;\s*|\s+and\s+/i);
for (let j = 0, m = value.length; j < m; j++) {
// TODO: might have to detect proper creator type from item type*/
item.creators.push(
ZU.cleanAuthor(value[j], creatorType, value[j].includes(',')));
}
break;
case 'Signator':
if (item.itemType == 'letter') {
for (let signator of valueElem.querySelectorAll('a')) {
let name = signator.textContent;
item.creators.push(
ZU.cleanAuthor(name, 'author', name.includes(',')));
}
}
break;
case 'Recipient':
if (item.itemType == 'letter') {
for (let recipient of valueElem.querySelectorAll('a')) {
let name = recipient.textContent;
if (/\b(department|bureau|office|director)\b/i.test(name)) {
// a general edge case that we handle specifically,
// but institutional recipients are common and we'd
// like not to split the name when we can
item.creators.push({
lastName: name,
creatorType: 'recipient',
fieldMode: 1
});
}
else {
item.creators.push(
ZU.cleanAuthor(name, 'recipient', name.includes(',')));
}
}
}
break;
case 'Publication title':
item.publicationTitle = value.replace(/;.+/, "");
break;
case 'Volume':
item.volume = value;
break;
case 'Issue':
item.issue = value;
break;
case 'Number of pages':
item.numPages = value;
break;
case 'ISSN':
item.ISSN = value;
break;
case 'ISBN':
item.ISBN = value;
break;
case 'DOI': // test case?
item.DOI = ZU.cleanDOI(value);
break;
case 'Copyright':
item.rights = value;
break;
case 'Language of publication':
case 'Language':
item.language = value;
break;
case 'Section':
item.section = value;
break;
case 'Pages':
item.pages = value;
break;
case 'First page':
item.firstPage = value;
break;
case 'University/institution':
case 'School':
item.university = value;
break;
case 'Degree':
item.thesisType = value;
break;
case 'Publisher':
case 'Printer/Publisher':
item.publisher = valueElem.innerText.split('\n')[0];
break;
case 'Repository':
item.archive = value;
break;
case 'Accession number/LC reference':
item.archiveLocation = value;
break;
case 'Identifier / keyword':
case 'NUCMC index term':
case 'Subject':
if (valueElem.querySelector('a')) {
item.tags.push(...Array.from(valueElem.querySelectorAll('a'))
.map(a => a.textContent.replace(/\.$/, '')));
}
else {
item.tags.push(...value.split(/\s*(?:,|;)\s*/));
}
break;
case 'Journal subject':
case 'Publication subject':
// alternative tags
altKeywords.push(value);
break;
case 'Publication note':
item.notes.push({ note: valueElem.innerText }); // Keep line breaks
break;
// we'll figure out proper location later
case 'University location':
case 'School location':
place.schoolLocation = value;
break;
case 'Place of publication':
place.publicationPlace = value;
break;
case 'Country of publication':
place.publicationCountry = value;
break;
// multiple dates are provided
// more complete dates are preferred
case 'Date':
case 'Publication date':
case 'Degree date':
dates[2] = value;
break;
case 'Publication year':
dates[1] = value;
break;
case 'Year':
dates[0] = value;
break;
// we already know about these; we can skip them unless we want to
// disambiguate a general item type
case 'Source type':
break;
case 'Document type':
if (item.itemType == 'letter') {
if (value.trim().toLowerCase() != 'letter') {
item.letterType = value;
}
}
break;
case 'Record type':
case 'Database':
break;
default:
Z.debug('Unhandled field: "' + label + '": ' + value);
}
}
if (!item.title) {
item.title = text(doc, '#documentTitle');
}
item.url = url.replace(/&?(accountid|parentSessionId)=[^&#]*/g, '').replace(/\?(?:#|$)/, '').replace('?&', '?');
if (item.itemType == "thesis" && place.schoolLocation) {
item.place = place.schoolLocation;
}
else if (place.publicationPlace) {
item.place = place.publicationPlace;
if (place.publicationCountry) {
item.place = item.place + ', ' + place.publicationCountry.replace(/,.+/, "");
}
}
item.date = dates.pop();
// Sometimes we can get first page and num pages for a journal article
if (item.firstPage && !item.pages) {
var firstPage = parseInt(item.firstPage);
var numPages = parseInt(item.numPages);
if (!numPages || numPages < 2) {
item.pages = item.firstPage;
}
else {
item.pages = firstPage + '–' + (firstPage + numPages - 1);
}
}
// sometimes number of pages ends up in pages
if (!item.numPages) item.numPages = item.pages;
// don't override the university with a publisher information for a thesis
if (item.itemType == "thesis" && item.university && item.publisher) {
delete item.publisher;
}
// lanuguage is sometimes given as full word and abbreviation
if (item.language) item.language = item.language.split(/\s*;\s*/)[0];
// parse some data from the byline in case we're missing publication title
// or the date is not complete
var byline = ZU.xpath(doc, '//span[contains(@class, "titleAuthorETC")][last()]');
// add publication title if we don't already have it
if (!item.publicationTitle
&& ZU.fieldIsValidForType('publicationTitle', item.itemType)) {
var pubTitle = ZU.xpathText(byline, './/a[@id="lateralSearch"]');
if (!pubTitle) {
pubTitle = text(doc, '#authordiv .newspaperArticle .pub-tooltip-trigger')
|| text(doc, '#authordiv .newspaperArticle strong');
}
// remove date range
if (pubTitle) item.publicationTitle = pubTitle.replace(/\s*\(.+/, '');
}
var date = ZU.xpathText(byline, './text()');
if (date) date = date.match(/]\s+(.+?):/);
// Convert date to ISO to make sure we don't save random strings
if (date) date = ZU.strToISO(date[1]);
// add date if we only have a year and date is longer in the byline
if (date
&& (!item.date
|| (item.date.length <= 4 && date.length > item.date.length))) {
item.date = date;
}
// Historical Newspapers: date and page are in title
if (item.itemType == 'newspaperArticle') {
let matches = item.title.match(/^(\w+ \d{1,2}, \d{4}) \(Page (\d+)/);
if (matches) {
let [, date, pageNumber] = matches;
item.date = ZU.strToISO(date);
item.pages = pageNumber;
}
}
item.abstractNote = ZU.xpath(doc, '//div[contains(@id, "abstractSummary_")]//p')
.map(function (p) {
return ZU.trimInternal(p.textContent);
}).join('\n');
if (!item.tags.length && altKeywords.length) {
item.tags = altKeywords.join(',').split(/\s*(?:,|;)\s*/);
}
let pdfLink = doc.querySelector('[id^="downloadPDFLink"]');
if (pdfLink && !pdfLink.closest('#suggestedSourcesBelowFullText')) {
item.attachments.push({
title: 'Full Text PDF',
url: pdfLink.href,
mimeType: 'application/pdf',
proxy: false
});
}
else {
var fullText = ZU.xpath(doc, '//li[@id="tab-Fulltext-null"]/a')[0];
if (fullText) {
item.attachments.push({
title: 'Full Text Snapshot',
url: fullText.href,
mimeType: 'text/html'
});
}
}
item.complete();
}
function getItemType(types) {
var guessType;
for (var i = 0, n = types.length; i < n; i++) {
// put the testString to lowercase and test for singular only for maxmial compatibility
// in most cases we just can return the type, but sometimes only save it as a guess and will use it only if we don't have anything better
var testString = types[i].toLowerCase();
if (testString.includes("journal") || testString.includes("periodical")) {
// "Scholarly Journals", "Trade Journals", "Historical Periodicals"
return "journalArticle";
}
else if (testString.includes("newspaper") || testString.includes("wire feed")) {
// "Newspapers", "Wire Feeds", "WIRE FEED", "Historical Newspapers"
return "newspaperArticle";
}
else if (testString.includes("dissertation")) {
// "Dissertations & Theses", "Dissertation/Thesis", "Dissertation"
return "thesis";
}
else if (testString.includes("chapter")) {
// "Chapter"
return "bookSection";
}
else if (testString.includes("book")) {
// "Book, Authored Book", "Book, Edited Book", "Books"
guessType = "book";
}
else if (testString.includes("conference paper")) {
// "Conference Papers and Proceedings", "Conference Papers & Proceedings"
return "conferencePaper";
}
else if (testString.includes("magazine")) {
// "Magazines"
return "magazineArticle";
}
else if (testString.includes("report")) {
// "Reports", "REPORT"
return "report";
}
else if (testString.includes("website")) {
// "Blogs, Podcats, & Websites"
guessType = "webpage";
}
else if (testString == "blog" || testString == "article in an electronic resource or web site") {
// "Blog", "Article In An Electronic Resource Or Web Site"
return "blogPost";
}
else if (testString.includes("patent")) {
// "Patent"
return "patent";
}
else if (testString.includes("pamphlet")) {
// Pamphlets & Ephemeral Works
guessType = "manuscript";
}
else if (testString.includes("encyclopedia")) {
// "Encyclopedias & Reference Works"
guessType = "encyclopediaArticle";
}
else if (testString.includes("statute")) {
return "statute";
}
else if (testString.includes("letter") || testString.includes("cable")) {
guessType = "letter";
}
else if (testString.includes("archival material")) {
guessType = "manuscript";
}
}
// We don't have localized strings for item types, so just guess that it's a journal article
if (!guessType && language != 'English') {
return 'journalArticle';
}
return guessType;
}
function scrapeEbraryResults(refs) {
// Since we can't chase URLs, let's get what we can from the page
for (let i = 0; i < refs.length; i++) {
var ref = refs[i];
var hiddenData = ZU.xpathText(ref.html, './span');
var visibleData = Array.prototype.map.call(ref.html.getElementsByClassName('results_list_copy'), function (node) {
// The text returned by textContent is of the following format:
// book title \n author, first; [author, second; ...;] publisher name; publisher location (date) \n
return /\n(.*)\n?/.exec(node.textContent)[1].split(';').reverse();
})[0];
var item = new Zotero.Item("book");
var date = /\(([\w\s]+)\)/.exec(visibleData[0]);
var place = /([\w,\s]+)\(/.exec(visibleData[0]);
var isbn = /isbn,\svalue\s=\s'([\dX]+)'/i.exec(hiddenData);
var language = /language_code,\svalue\s=\s'([A-Za-z]+)'\n/i.exec(hiddenData);
var numPages = /page_count,\svalue\s=\s'(\d+)'\n/i.exec(hiddenData);
var locNum = /lccn,\svalue\s=\s'([-.\s\w]+)'\n/i.exec(hiddenData);
item.title = ref.title;
item.url = ref.url;
if (date) {
item.date = date[1];
}
if (place) {
item.place = place[1].trim();
}
item.publisher = visibleData[1].trim();
// Push the authors in reverse to restore the original order
for (var j = visibleData.length - 1; j >= 2; j--) {
item.creators.push(ZU.cleanAuthor(visibleData[j], "author", true));
}
if (isbn) {
item.ISBN = isbn[1];
}
if (language) {
item.language = language[1];
}
if (numPages) {
item.numPages = numPages[1];
}
if (locNum) {
item.callNumber = locNum[1];
}
item.complete();
}
}
// localized field names
var fieldNames = {
العربية: {
"Source type": 'نوع المصدر',
"Document type": 'نوع المستند',
// "Record type"
Database: 'قاعدة البيانات',
Title: 'العنوان',
Author: 'المؤلف',
// "Editor":
"Publication title": 'عنوان المطبوعة',
Volume: 'المجلد',
Issue: 'الإصدار',
"Number of pages": 'عدد الصفحات',
ISSN: 'رقم المسلسل الدولي',
ISBN: 'الترقيم الدولي للكتاب',
// "DOI":
Copyright: 'حقوق النشر',
Language: 'اللغة',
"Language of publication": 'لغة النشر',
Section: 'القسم',
"Publication date": 'تاريخ النشر',
"Publication year": 'عام النشر',
Year: 'العام',
Pages: 'الصفحات',
School: 'المدرسة',
Degree: 'الدرجة',
Publisher: 'الناشر',
"Printer/Publisher": 'جهة الطباعة/الناشر',
"Place of publication": 'مكان النشر',
"School location": 'موقع المدرسة',
"Country of publication": 'بلد النشر',
"Identifier / keyword": 'معرف / كلمة أساسية',
Subject: 'الموضوع',
"Journal subject": 'موضوع الدورية'
},
'Bahasa Indonesia': {
"Source type": 'Jenis sumber',
"Document type": 'Jenis dokumen',
// "Record type"
Database: 'Basis data',
Title: 'Judul',
Author: 'Pengarang',
// "Editor":
"Publication title": 'Judul publikasi',
Volume: 'Volume',
Issue: 'Edisi',
"Number of pages": 'Jumlah halaman',
ISSN: 'ISSN',
ISBN: 'ISBN',
// "DOI":
Copyright: 'Hak cipta',
Language: 'Bahasa',
"Language of publication": 'Bahasa publikasi',
Section: 'Bagian',
"Publication date": 'Tanggal publikasi',
"Publication year": 'Tahun publikasi',
Year: 'Tahun',
Pages: 'Halaman',
School: 'Sekolah',
Degree: 'Gelar',
Publisher: 'Penerbit',
"Printer/Publisher": 'Pencetak/Penerbit',
"Place of publication": 'Tempat publikasi',
"School location": 'Lokasi sekolah',
"Country of publication": 'Negara publikasi',
"Identifier / keyword": 'Pengidentifikasi/kata kunci',
Subject: 'Subjek',
"Journal subject": 'Subjek jurnal'
},
Čeština: {
"Source type": 'Typ zdroje',
"Document type": 'Typ dokumentu',
// "Record type"
Database: 'Databáze',
Title: 'Název',
Author: 'Autor',
// "Editor":
"Publication title": 'Název publikace',
Volume: 'Svazek',
Issue: 'Číslo',
"Number of pages": 'Počet stránek',
ISSN: 'ISSN',
ISBN: 'ISBN',
// "DOI":
Copyright: 'Copyright',
Language: 'Jazyk',
"Language of publication": 'Jazyk publikace',
Section: 'Sekce',
"Publication date": 'Datum vydání',
"Publication year": 'Rok vydání',
Year: 'Rok',
Pages: 'Strany',
School: 'Instituce',
Degree: 'Stupeň',
Publisher: 'Vydavatel',
"Printer/Publisher": 'Tiskař/vydavatel',
"Place of publication": 'Místo vydání',
"School location": 'Místo instituce',
"Country of publication": 'Země vydání',
"Identifier / keyword": 'Identifikátor/klíčové slovo',
Subject: 'Předmět',
"Journal subject": 'Předmět časopisu'
},
Deutsch: {
"Source type": 'Quellentyp',
"Document type": 'Dokumententyp',
// "Record type"
Database: 'Datenbank',
Title: 'Titel',
Author: 'Autor',
// "Editor":
"Publication title": 'Titel der Publikation',
Volume: 'Band',
Issue: 'Ausgabe',
"Number of pages": 'Seitenanzahl',
ISSN: 'ISSN',
ISBN: 'ISBN',
// "DOI":
Copyright: 'Copyright',
Language: 'Sprache',
"Language of publication": 'Publikationssprache',
Section: 'Bereich',
"Publication date": 'Publikationsdatum',
"Publication year": 'Erscheinungsjahr',
Year: 'Jahr',
Pages: 'Seiten',
School: 'Bildungseinrichtung',
Degree: 'Studienabschluss',
Publisher: 'Herausgeber',
"Printer/Publisher": 'Drucker/Verleger',
"Place of publication": 'Verlagsort',
"School location": 'Standort der Bildungseinrichtung',
"Country of publication": 'Publikationsland',
"Identifier / keyword": 'Identifikator/Schlüsselwort',
Subject: 'Thema',
"Journal subject": 'Zeitschriftenthema'
},
Español: {
"Source type": 'Tipo de fuente',
"Document type": 'Tipo de documento',
// "Record type"
Database: 'Base de datos',
Title: 'Título',
Author: 'Autor',
// "Editor":
"Publication title": 'Título de publicación',
Volume: 'Tomo',
Issue: 'Número',
"Number of pages": 'Número de páginas',
ISSN: 'ISSN',
ISBN: 'ISBN',
// "DOI":
Copyright: 'Copyright',
Language: 'Idioma',
"Language of publication": 'Idioma de la publicación',
Section: 'Sección',
"Publication date": 'Fecha de titulación',
"Publication year": 'Año de publicación',
Year: 'Año',
Pages: 'Páginas',
School: 'Institución',
Degree: 'Título universitario',
Publisher: 'Editorial',
"Printer/Publisher": 'Imprenta/publicista',
"Place of publication": 'Lugar de publicación',
"School location": 'Lugar de la institución',
"Country of publication": 'País de publicación',
"Identifier / keyword": 'Identificador / palabra clave',
Subject: 'Materia',
"Journal subject": 'Materia de la revista'
},
Français: {
"Source type": 'Type de source',
"Document type": 'Type de document',
// "Record type"
Database: 'Base de données',
Title: 'Titre',
Author: 'Auteur',
// "Editor":
"Publication title": 'Titre de la publication',
Volume: 'Volume',
Issue: 'Numéro',
"Number of pages": 'Nombre de pages',
ISSN: 'ISSN',
ISBN: 'ISBN',
// "DOI":
Copyright: 'Copyright',
Language: 'Langue',
"Language of publication": 'Langue de publication',
Section: 'Section',
"Publication date": 'Date du diplôme',
"Publication year": 'Année de publication',
Year: 'Année',
Pages: 'Pages',
"First page": 'Première page',
School: 'École',
Degree: 'Diplôme',
Publisher: 'Éditeur',
"Printer/Publisher": 'Imprimeur/Éditeur',
"Place of publication": 'Lieu de publication',
"School location": "Localisation de l'école",
"Country of publication": 'Pays de publication',
"Identifier / keyword": 'Identificateur / mot-clé',
Subject: 'Sujet',
"Journal subject": 'Sujet de la publication'
},
한국어: {
"Source type": '원본 유형',
"Document type": '문서 형식',
// "Record type"
Database: '데이터베이스',
Title: '제목',
Author: '저자',
// "Editor":
"Publication title": '출판물 제목',
Volume: '권',
Issue: '호',
"Number of pages": '페이지 수',
ISSN: 'ISSN',
ISBN: 'ISBN',
// "DOI":
Copyright: 'Copyright',
Language: '언어',
"Language of publication": '출판 언어',
Section: '섹션',
"Publication date": '출판 날짜',
"Publication year": '출판 연도',
Year: '연도',
Pages: '페이지',
School: '학교',
Degree: '학위',
Publisher: '출판사',
"Printer/Publisher": '인쇄소/출판사',
"Place of publication": '출판 지역',
"School location": '학교 지역',
"Country of publication": '출판 국가',
"Identifier / keyword": '식별자/키워드',
Subject: '주제',
"Journal subject": '저널 주제'
},
Italiano: {
"Source type": 'Tipo di fonte',
"Document type": 'Tipo di documento',
// "Record type"
Database: 'Database',
Title: 'Titolo',
Author: 'Autore',
// "Editor":
"Publication title": 'Titolo pubblicazione',
Volume: 'Volume',
Issue: 'Fascicolo',
"Number of pages": 'Numero di pagine',
ISSN: 'ISSN',
ISBN: 'ISBN',
// "DOI":
Copyright: 'Copyright',
Language: 'Lingua',
"Language of publication": 'Lingua di pubblicazione',
Section: 'Sezione',
"Publication date": 'Data di pubblicazione',
"Publication year": 'Anno di pubblicazione',
Year: 'Anno',
Pages: 'Pagine',
School: 'Istituzione accademica',
Degree: 'Titolo accademico',
Publisher: 'Casa editrice',
"Printer/Publisher": 'Tipografo/Editore',
"Place of publication": 'Luogo di pubblicazione:',
"School location": 'Località istituzione accademica',
"Country of publication": 'Paese di pubblicazione',
"Identifier / keyword": 'Identificativo/parola chiave',
Subject: 'Soggetto',
"Journal subject": 'Soggetto rivista'
},
Magyar: {
"Source type": 'Forrástípus',
"Document type": 'Dokumentum típusa',
// "Record type"
Database: 'Adatbázis',
Title: 'Cím',
Author: 'Szerző',
// "Editor":
"Publication title": 'Publikáció címe',
Volume: 'Kötet',
Issue: 'Szám',
"Number of pages": 'Oldalszám',
ISSN: 'ISSN',
ISBN: 'ISBN',
// "DOI":