This repository has been archived by the owner on Jan 3, 2020. It is now read-only.
forked from zotero/translators
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProQuest.js
1482 lines (1406 loc) · 53.6 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?://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": "2014-11-18 10:31:47"
}
/*
ProQuest Translator
Copyright (C) 2011 Avram Lyon, [email protected]
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
var language="English";
var L={};
var followLink;
//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(var 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, url) {
var lang = ZU.xpathText(doc, '//a[@id="changeLanguageLink"]/text()');
if(lang && lang.trim() != "English") {
lang = lang.trim();
//if already initialized, don't need to do anything else
if(lang == language) return;
language = lang;
//build reverse field map
L = {};
for(var i in fieldNames[language]) {
L[fieldNames[language][i]] = i;
}
return;
}
language = 'English';
L = {};
}
function fetchEmbeddedPdf(url, item, callback) {
ZU.processDocuments(url, function(doc) {
var pdfLink = ZU.xpath(doc, '//span[@class="pdfReader_link"]/a');
var attr = 'href';
//try to fall back to the URL of the embedded PDF
if(!pdfLink.length) {
Zotero.debug('PDF link not found. Falling back to embedded PDF.');
pdfLink = ZU.xpath(doc, '//embed');
attr = 'src';
}
if(!pdfLink.length) {
Zotero.debug('Could not determine PDF url.');
Zotero.debug('Will try to use supplied url: ' + url);
} else {
url = pdfLink[0][attr];
}
if(pdfLink.length) {
item.attachments.push({
title: 'Full Text PDF',
url: url,
mimeType: 'application/pdf'
});
}
}, callback);
}
function getSearchResults(doc, checkOnly) {
var tabs = doc.getElementsByClassName('tabContent');
var root;
if (tabs.length) {
for (var i = 0; i < tabs.length; i++) {
if (tabs[i].offsetHeight) {
if (Zotero.isBookmarklet && tabs[i].id != 'allResults-content') return false;
root = tabs[i].getElementsByClassName('resultListContainer')[0];
break;
}
}
} else {
root = doc.getElementsByClassName('resultListContainer')[0];
if (root && !root.offsetHeight) return false; // Not sure if this can actually happen
}
if (!root) return false;
var results = doc.getElementsByClassName('resultItem');
//ZU.xpath(root, './/a[contains(@class,"previewTitle") or contains(@class,"resultTitle")]');
var items = {}, found = false;
for(var i=0, n=results.length; i<n; i++) {
var title = results[i].getElementsByClassName('resultTitle')[0]
|| results[i].getElementsByClassName('previewTitle')[0];
if (!title || title.nodeName != 'A') continue;
if (checkOnly) return true;
found = true;
items[title.href] = title.textContent;
}
return found ? items : false;
}
function detectWeb(doc, url) {
initLang(doc, url);
followLink = false;
//Check for multiple first
if (url.indexOf('docview') == -1 &&
url.indexOf('pagepdf') == -1) {
if (getSearchResults(doc, true))
return "multiple";
}
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.indexOf("The New York Times") !== -1) {
return "newspaperArticle";
}
// Fall back on journalArticle-- even if we couldn't guess the type
if(types.length) return "journalArticle";
if (url.indexOf("/results/") === -1) {
//we might be on a page with a link to the abstract/metadata
//e.g. pdf view
var abstract_link = ZU.xpath(doc, '//a[@class="formats_base_sprite format_abstract"]');
if (abstract_link.length == 1) {
//let the tranlator know that, instead of scraping this page,
//we need to follow the link
followLink = true;
return (url.indexOf('/dissertations/') != -1)? "thesis" : "journalArticle";
}
}
return false;
}
//we can pass pdfUrl to doWeb if we're coming to abstract/metadata page
//from full text pdf view
function doWeb(doc, url, pdfUrl) {
var type = detectWeb(doc, url);
if (type != "multiple" && !followLink) { //see detectWeb
scrape(doc, url, type, pdfUrl);
} else if(type == "multiple") {
// detect web returned multiple
Zotero.selectItems(getSearchResults(doc, false), function (items) {
if (!items) return true;
var articles = new Array();
for(var item in items) {
articles.push(item);
}
if (articles[0].indexOf("ebraryresults") > -1) {
// if the first result is for ebrary, the rest are also ebrary
ZU.processDocuments(articles, function(doc) {
var translator = Zotero.loadTranslator("web");
translator.setTranslator("2abe2519-2f0a-48c0-ad3a-b87b9c059459");
translator.setDocument(doc);
translator.setHandler("itemDone", function(obj, item) {
item.complete();
});
translator.translate();
});
}
else {
ZU.processDocuments(articles, doWeb);
}
});
//pdfUrl should be undefined unless we are calling doWeb from the following
//block, where it is set to false or an actual value
} else if(followLink && pdfUrl === undefined) {
pdfUrl = false;
var link = ZU.xpathText(doc,
'//a[@class="formats_base_sprite format_abstract"]/@href');
if(!link) return;
//see if we can get the full text PDF link before we go
//the logic here is actually slightly different from fetchEmbeddedPdf
if(url.indexOf('fulltextPDF') != -1) {
pdfUrl = ZU.xpath(doc, '//embed');
if(pdfUrl.length) {
pdfUrl = pdfUrl[0].src;
} else {
pdfUrl = false;
}
}
ZU.processDocuments(link, function(doc) {
doWeb(doc, doc.location.href, pdfUrl) });
}
}
function scrape(doc, url, type, pdfUrl) {
var item = new Zotero.Item(type);
//get all rows
var rows = ZU.xpath(doc, '//div[@class="display_record_indexing_row"]');
var label, value, enLabel;
var dates = [], place = {}, altKeywords = [];
for(var i=0, n=rows.length; i<n; i++) {
label = rows[i].childNodes[0];
value = rows[i].childNodes[1];
if(!label || !value) continue;
label = label.textContent.trim();
value = value.textContent.trim(); //trimInternal?
//translate label
enLabel = L[label] || label;
switch(enLabel) {
case 'Title':
if(value == value.toUpperCase()) value = ZU.capitalizeTitle(value, true);
item.title = value;
break;
case 'Author':
case 'Editor': //test case?
var type = (enLabel == 'Author')? 'author' : 'editor';
// Use titles of a tags if they exist, since these don't include
// affiliations
value = ZU.xpathText(rows[i].childNodes[1], "a/@title", null, "; ") || value;
value = value.replace(/^by\s+/i,'') //sometimes the authors begin with "By"
.split(/\s*;\s*|\s+and\s+/i);
for(var 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], type, value[j].indexOf(',') != -1));
}
break;
case 'Publication title':
item.publicationTitle = value;
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 = value;
break;
case 'Copyright':
item.rights = value;
break;
case 'Language of publication':
if(item.language) break;
case 'Language':
item.language = value;
break;
case 'Section':
item.section = value;
break;
case 'Pages':
item.pages = value;
break;
case 'University/institution':
case 'School':
item.university = value;
break;
case 'Degree':
item.thesisType = value;
break;
case 'Publisher':
item.publisher = value;
break;
case 'Identifier / keyword':
item.tags = value.split(/\s*(?:,|;)\s*/);
break;
//alternative tags
case 'Subject':
case 'Journal subject':
case 'Publication subject':
altKeywords.push(value);
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 'Publication date':
dates[2] = value;
break;
case 'Publication year':
dates[1] = value;
break;
case 'Year':
dates[0] = value;
break;
//we know about these, skip
case 'Source type':
case 'Document type':
case 'Record type':
case 'Database':
break;
default:
Z.debug('Unhandled field: "' + label + '"');
}
}
item.url = url;
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;
}
}
item.date = dates.pop();
//sometimes number of pages ends up in pages
if(!item.numPages) item.numPages = item.pages;
//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"]');
//remove date range
if(pubTitle) item.publicationTitle = pubTitle.replace(/\s*\(.+/, '');
}
var date = ZU.xpathText(byline, './text()');
if(date) date = date.match(/]\s+(.+?):/);
if(date) date = 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;
}
item.abstractNote = ZU.xpath(doc,
'//div[@id="abstractZone" or contains(@id,"abstractFull")]/p')
.map(function(p) { return ZU.trimInternal(p.textContent) }).join('\n');
if(!item.tags.length && altKeywords.length) {
item.tags = altKeywords.join(',').split(/\s*(?:,|;)\s*/);
}
item.attachments.push({
title: 'Snapshot',
document: doc
});
//we may already have a link to the full length PDF
if(pdfUrl) {
item.attachments.push({
title: 'Full Text PDF',
url: pdfUrl,
mimeType: 'application/pdf'
});
} else {
var pdfLink = ZU.xpath(doc, '(//div[@id="side_panel"]//\
a[contains(@class,"format_pdf") and contains(@href,"fulltext") or contains(@href, "preview")])[last()]');
if(pdfLink.length) {
fetchEmbeddedPdf(pdfLink[0].href, item,
function() { item.complete(); });
}
}
if(pdfUrl || !pdfLink.length) {
item.complete();
}
}
function getItemType(types) {
var guessType, govdoc, govdocType;
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.indexOf("journal") != -1 || testString.indexOf("periodical") != -1) {
//"Scholarly Journals", "Trade Journals", "Historical Periodicals"
return "journalArticle";
} else if (testString.indexOf("newspaper") != -1 || testString.indexOf("wire feed") != -1 ) {
//"Newspapers", "Wire Feeds", "WIRE FEED", "Historical Newspapers"
return "newspaperArticle";
} else if ( testString.indexOf("dissertation") != -1 ) {
//"Dissertations & Theses", "Dissertation/Thesis", "Dissertation"
return "thesis";
} else if ( testString.indexOf("chapter") != -1 ) {
//"Chapter"
return "bookSection";
} else if (testString.indexOf("book") != -1) {
//"Book, Authored Book", "Book, Edited Book", "Books"
guessType = "book";
} else if ( testString.indexOf("conference paper") != -1) {
//"Conference Papers and Proceedings", "Conference Papers & Proceedings"
return "conferencePaper";
} else if (testString.indexOf("magazine") != -1 ) {
//"Magazines"
return "magazineArticle";
} else if (testString.indexOf("report") != -1 ) {
//"Reports", "REPORT"
return "report";
} else if (testString.indexOf("website") != -1) {
//"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.indexOf("patent") != -1) {
//"Patent"
return "patent";
} else if (testString.indexOf("pamphlet") != -1) {
//Pamphlets & Ephemeral Works
guessType = "manuscript";
} else if (testString.indexOf("encyclopedia") != -1) {
//"Encyclopedias & Reference Works"
guessType = "encyclopediaArticle";
} else if (testString.indexOf("statute") != -1) {
return "statute";
}
}
return guessType;
}
//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":'الناشر',
"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',
"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'
},
'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',
"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',
"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',
"School":'École',
"Degree":'Diplôme',
"Publisher":'É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":'출판사',
"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',
"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":
"Copyright":'Copyright',
"Language":'Nyelv',
"Language of publication":'Publikáció nyelve',
"Section":'Rész',
"Publication date":'Publikáció dátuma',
"Publication year":'Publikáció éve',
"Year":'Év',
"Pages":'Oldalak',
"School":'Iskola',
"Degree":'Diploma',
"Publisher":'Kiadó',
"Place of publication":'Publikáció helye',
"School location":'Iskola helyszíne:',
"Country of publication":'Publikáció országa',
"Identifier / keyword":'Azonosító / kulcsszó',
"Subject":'Tárgy',
"Journal subject":'Folyóirat tárgya'
},
'日本語': {
"Source type":'リソースタイプ',
"Document type":'ドキュメントのタイプ',
//"Record type"
"Database":'データベース',
"Title":'タイトル',
"Author":'著者',
//"Editor":
"Publication title":'出版物のタイトル',
"Volume":'巻',
"Issue":'号',
"Number of pages":'ページ数',
"ISSN":'ISSN',
"ISBN":'ISBN',
//"DOI":
"Copyright":'著作権',
"Language":'言語',
"Language of publication":'出版物の言語',
"Section":'セクション',
"Publication date":'出版日',
"Publication year":'出版年',
"Year":'年',
"Pages":'ページ',
"School":'学校',
"Degree":'学位称号',
"Publisher":'出版社',
"Place of publication":'出版地',
"School location":'学校所在地',
"Country of publication":'出版国',
"Identifier / keyword":'識別子 / キーワード',
"Subject":'主題',
"Journal subject":'学術誌の主題'
},
'Norsk': {
"Source type":'Kildetype',
"Document type":'Dokumenttypeند',
//"Record type"
"Database":'Database',
"Title":'Tittel',
"Author":'Forfatter',
//"Editor":
"Publication title":'Utgivelsestittel',
"Volume":'Volum',
"Issue":'Utgave',
"Number of pages":'Antall sider',
"ISSN":'ISSN',
"ISBN":'ISBN',
//"DOI":
"Copyright":'Opphavsrett',
"Language":'Språk',
"Language of publication":'Utgivelsesspråk',
"Section":'Del',
"Publication date":'Utgivelsesdato',
"Publication year":'Utgivelsesår',
"Year":'År',
"Pages":'Sider',
"School":'Skole',
"Degree":'Grad',
"Publisher":'Utgiver',
"Place of publication":'Utgivelsessted',
"School location":'Skolested',
"Country of publication":'Utgivelsesland',
"Identifier / keyword":'Identifikator/nøkkelord',
"Subject":'Emne',
"Journal subject":'Journalemne'
},
'Polski': {
"Source type":'Typ źródła',
"Document type":'Rodzaj dokumentu',
//"Record type"
"Database":'Baza danych',
"Title":'Tytuł',
"Author":'Autor',
//"Editor":
"Publication title":'Tytuł publikacji',
"Volume":'Tom',
"Issue":'Wydanie',
"Number of pages":'Liczba stron',
"ISSN":'ISSN',
"ISBN":'ISBN',
//"DOI":
"Copyright":'Prawa autorskie',
"Language":'Język',
"Language of publication":'Język publikacji',
"Section":'Rozdział',
"Publication date":'Data publikacji',
"Publication year":'Rok publikacji',
"Year":'Rok',
"Pages":'Strony',
"School":'Uczelnia',
"Degree":'Stopień',
"Publisher":'Wydawca',
"Place of publication":'Miejsce publikacji',
"School location":'Lokalizacja uczelni',
"Country of publication":'Kraj publikacji',
"Identifier / keyword":'Identyfikator/słowo kluczowe',
"Subject":'Temat',
"Journal subject":'Tematyka czasopisma'
},
'Português (Brasil)': {
"Source type":'Tipo de fonte',
"Document type":'Tipo de documento',
//"Record type"
"Database":'Base de dados',
"Title":'Título',
"Author":'Autor',
//"Editor":
"Publication title":'Título da publicação',
"Volume":'Volume',
"Issue":'Edição',
"Number of pages":'Número de páginas',
"ISSN":'ISSN',
"ISBN":'ISBN',
//"DOI":
"Copyright":'Copyright',
"Language":'Idioma',
"Language of publication":'Idioma de publicação',
"Section":'Seção',
"Publication date":'Data de publicação',
"Publication year":'Ano de publicação',
"Year":'Ano',
"Pages":'Páginas',
"School":'Escola',
"Degree":'Graduação',
"Publisher":'Editora',
"Place of publication":'Local de publicação',
"School location":'Localização da escola',
"Country of publication":'País de publicação',
"Identifier / keyword":'Identificador / palavra-chave',
"Subject":'Assunto',
"Journal subject":'Assunto do periódico'
},
'Português (Portugal)': {
"Source type":'Tipo de fonte',
"Document type":'Tipo de documento',
//"Record type"
"Database":'Base de dados',
"Title":'Título',
"Author":'Autor',
//"Editor":
"Publication title":'Título da publicação',
"Volume":'Volume',
"Issue":'Edição',
"Number of pages":'Número de páginas',
"ISSN":'ISSN',
"ISBN":'ISBN',
//"DOI":
"Copyright":'Copyright',
"Language":'Idioma',
"Language of publication":'Idioma de publicação',
"Section":'Secção',
"Publication date":'Data da publicação',
"Publication year":'Ano da publicação',
"Year":'Ano',
"Pages":'Páginas',
"School":'Escola',
"Degree":'Licenciatura',
"Publisher":'Editora',
"Place of publication":'Local de publicação',
"School location":'Localização da escola',
"Country of publication":'País de publicação',
"Identifier / keyword":'Identificador / palavra-chave',
"Subject":'Assunto',
"Journal subject":'Assunto da publicação periódica'
},
'Русский': {
"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":'Издательство',
"Place of publication":'Место публикации',
"School location":'Местонахождение учебного заведения',
"Country of publication":'Страна публикации',
"Identifier / keyword":'Идентификатор / ключевое слово',
"Subject":'Тема',
"Journal subject":'Тематика журнала'
},
'ไทย': {
"Source type":'ประเภทของแหล่งข้อมูล',
"Document type":'ประเภทเอกสาร',
//"Record type"
"Database":'ฐานข้อมูล',
"Title":'ชื่อเรื่อง',
"Author":'ผู้แต่ง',
//"Editor":
"Publication title":'ชื่อเอกสารสิ่งพิมพ์',
"Volume":'เล่ม',
"Issue":'ฉบับที่',
"Number of pages":'จำนวนหน้า',
"ISSN":'ISSN',
"ISBN":'ISBN',
//"DOI":
"Copyright":'ลิขสิทธิ์',
"Language":'ภาษา',
"Language of publication":'ภาษาของเอกสารสิ่งพิมพ์',
"Section":'ส่วน',