-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample-records.mrk
4406 lines (4230 loc) · 157 KB
/
sample-records.mrk
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
=LDR 01336aam a2200373 1 4500
=001 99118737900001021
=004 ABC9734
=005 20130326134508.0
=008 120610s1906\\\\iek\\\\\\\\\\\001\0\eng\d
=035 \\$a(Aleph)000192026BCL01
=035 \\$a(OCoLC)ocm02746876
=035 \\$a(GRSN)00208246 89
=035 \\$a(GRSN)00208246
=035 9\$aABC9734
=040 \\$aIUL$cIUL$dBXM
=041 0\$aengiri
=043 \\$ae-uk-ni
=050 \\$aPB1202$b.A2 v.14
=099 \\$aPB1202.A2 v.14
=100 1\$aMeyer, Kuno,$d1858-1919$eed. and tr.
=245 14$aThe death-tales of the Ulster heroes /$c[edited and translated by Kuno Meyer]
=260 \\$aDublin :$bHodges, Figgis,$c1906.
=300 \\$avii, 52 p. ;$c23 cm.
=490 0\$aRoyal Irish Academy. Todd lecture series ; v.14
=500 \\$aIrish and English on opposite pages.
=500 \\$aIncludes index.
=505 0\$aThe death of Conchobar.--The death of Lóegaire Búadach.--The death of Celtchar Mac Uthechair.--The death of Fergus Mac Róich.--The death of Cet Mac Magach.--Notes.--Index nominum.--Index locorum.--Glossary.
=650 \0$aEpic literature, Irish$xUlster cycle.
=650 \0$aFolklore$zIreland.
=650 \0$aCelts$vFolklore$xFolklore.
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 08/08/2000
=950 \\$aOL
=966 \\$lONEILL$mMONO
=LDR 00985nam a2200277Ii 4500
=001 99116251210001021
=005 20130327172814.0
=008 120610s1906\\\\ie\\\\\\\\\\\\000\1\gle\d
=035 \\$a(Aleph)001698761BCL01
=035 \\$a(OCoLC)ocm06722258
=040 \\$aMNT$cMNT
=049 \\$aBXMM
=090 \\$aPB1225$b.O78 1906
=100 1\$aÓ Ruaidhrí, Seaghán.
=245 10$aSúil Uí Ḋuḃda le hÁrd na Ríoġ /$bSeaġán Ua Ruaiḋrí do sgríoḃ ; Seosaṁ Laoide do ċuir an foclóirín leis.
=246 3\$aSúil Uí Dhubhda le hÁrd na Ríogh
=260 \\$aI mBaile Áṫa Cliaṫ :$bar n-a ċur amaċ do Ċonnraḋ na Gaeḋilge,$c1906.
=300 \\$a14 p. ;$c17 cm.
=490 1\$aAṫ-Ċlóḋanna ó'n "Irisleaḃar" ;$v2
=650 \0$aIrish language$vReaders.
=700 1\$aLaoide, Seosamh,$dd. 1939.
=830 \0$aAth-Chlódhanna ó'n "Irisleabhar" ;$v2.
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 05/06/2002
=950 \\$aOL
=994 \\$aE0$bBXM
=LDR 01289cam a2200337Ka 4500
=001 99120352600001021
=005 20130327164205.0
=008 120610s1904\\\\ie\\\\\\\\\\\\000\0\gle\d
=035 \\$a(Aleph)001690921BCL01
=035 \\$a(OCoLC)ocm39779091
=040 \\$aI4K$cI4K$dBXM
=041 0\$agleeng
=049 \\$aBXMM
=090 \\$aPB1225$b.O533 1904
=100 1\$aÓ Laoghaire, Pádraig.
=245 10$aPáidín O Dálaiġ :$ban dara roinn de sgéaluiḋeaċt ċuige muṁan /$cag Pádraig Ó Laoġaire ; Seosaṁ Taoide do ċuir i n-eagar.
=246 3\$aPáidín O Dálaigh
=260 \\$aBaile Áṫa Cliaṫ :$bar n-a ċur amaċ do Ċonnraḋ na Gaeḋilge,$c1904.
=300 \\$a61 p. ;$c18 cm.
=440 \0$aLeaḃairíní Gaeḋilge le haġaiḋ an tsluaiġ ;$v15
=490 1\$aLeaḃairíní Gaeḋilge le haġaiḋ an tSluaiġ ;$v15
=546 \\$aText in Irish with glossary in Irish and English.
=650 \0$aIrish language$vReaders.
=650 \0$aFolk literature, Irish$zIreland$zMunster.
=700 1\$aLaoide, Seosamh,$dd. 1939.
=773 18$w(Aleph)001919817BCL50$gno. 39031011757309
=830 \0$aLeabhairíní Gaedhilge le haghaidh an tSluaigh ;$v15.
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 04/03/2002
=950 \\$aOL
=994 \\$aE0$bBXM
=LDR 00896nam a2200277Ia 4500
=001 99116251560001021
=005 20130327172239.0
=008 120610s1907\\\\ie\af\\\\\\\\\000\0\gle\d
=035 \\$a(Aleph)001698754BCL01
=035 \\$a(OCoLC)ocm17612994
=040 \\$aEIS$cEIS
=043 \\$ae-ie---
=049 \\$aBXMM
=090 \\$aPB1225$b.O6433 1907
=092 \\$a941.5$fONE
=100 10$aÓ Neachtain, Eoghan.
=245 10$aStair-ċeaċta.$nleaḃar a dó /$cEoġan Ó Neaċtain do sgríoḃ ; an tarraingṫeoireaċt ó láiṁ Ṡeoirse Uí Ḟágáin.
=246 3\$aStair-cheachta
=260 \\$aBaile Áṫa Cliaṫ :$bConnraḋ na Gaeḋilge,$c1907.
=300 \\$a133 p., [5] p. of plates :$bill. ;$c19 cm.
=650 \0$aIrish language$vReaders.
=651 \0$aIreland$xHistory.
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 05/06/2002
=950 \\$aOL
=994 \\$aE0$bBXM
=LDR 01006cam a2200313 i 4500
=001 99121258320001021
=004 ACQ5949
=005 20130328115610.0
=008 120610s1905\\\\ie\\\\\\\\\\\\000\0biri\d
=035 \\$a(Aleph)000440488BCL01
=035 \\$a(OCoLC)ocm06721033
=035 \\$a(GRSN)00464172 89
=035 \\$a(GRSN)00464172
=035 9\$aACQ5949
=040 \\$aMNT$cMNT$dBXM
=049 \\$aBXMM
=090 \\$aPB1225.C711$bG6
=099 \9$aPB1225.C711G6
=100 1\$aÓ Concheanainn, Tomás,$d1870-1960.
=240 10$aGormfhlaith
=245 10$aGormḟlaiṫ :$binġean árd-ríoġ Éireann /$cTomás Ua Conceanainn do sgríoḃ.
=260 \\$aI mBaile Áṫa Cliaṫ :$bar n-a ċur amaċ do Ċonnraḋ na Gaeḋilge,$c1905.
=300 \\$a32 p. ;$c17 cm.
=440 \0$aSgéalta nua-ḋéanta ;$v8
=600 00$aGormflaith,$cdaughter of Flann Sionna, King of Tara,$dca. 870-919.
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 08/08/2000
=950 \\$aOL
=966 \\$lONEILL$mMONO
=LDR 00820nam a2200265Ka 4500
=001 99119052310001021
=005 20130423133414.0
=008 120610s1922\\\\ie\a\\\\\\\\\\000\f\gle\d
=035 \\$a(Aleph)001703210BCL01
=035 \\$a(OCoLC)ocm49706839
=040 \\$aBXM$cBXM
=049 \\$aBXMM
=090 \\$aPB1399.O797$bJ56 1922
=100 1\$aÓ Siochfhradha, Pádraig,$d1883-1964.
=245 10$aJimín Ṁáire Ṫaiḋg /$c"An Seaḃac" do scríoḃ (Pádraig Ó Sioċḟraḋa)
=246 3\$aJimín Mháire Thaidhg
=250 \\$aSchool ed.
=260 \\$aBaile Áṫa Cliaṫ :$bMaunsel agus Roberts,$c1922.
=300 \\$a115 p. :$bill. ;$c19 cm.
=650 \0$aIrish language.
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 05/13/2002
=948 \\$aLTI 05/20/2002
=950 \\$aOL
=994 \\$aE0$bBXM
=LDR 00673cam a2200217M 4500
=001 99118766770001021
=005 20130422172211.0
=008 120610s1910\\\\ie\\\\\\\\\\\\000\d\gla\d
=035 \\$a(Aleph)002972873BCL01
=035 \\$a(OCoLC)ocm81176558
=040 \\$aMH$cHLS$dBXM
=049 \\$aBXMM
=090 \\$aPB1399.M152$bA46 1910
=100 1\$aMac Domhnaill, Tomás.
=245 10$aÁine agus Caoimhghin :$bdráma éin-ghníomha.
=260 \\$aBaile Átha Cliath,$bClódhanna teo. ar n-a chur amach do Chonnradh na Gaedhilge,$c1910.
=300 \\$avi, 14 p. ;$c18 cm.
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 09/30/2011
=950 \\$aOL
=994 \\$aC0$bBXM
=LDR 01128nam a2200301 1 4500
=001 99125254670001021
=004 ADB4332
=005 20130423114213.0
=008 120610s1914\\\\ie\\\\\\\\\\\\000\1\iri\d
=035 \\$a(Aleph)000501636BCL01
=035 \\$a(OCoLC)ocm06024355
=035 \\$a(GRSN)00531987 89
=035 \\$a(GRSN)00531987
=035 9\$aADB4332
=040 \\$aMNT$cMNT$dBXM
=049 \\$aBXMM
=090 \\$aPB1399.O4$bC43 1914
=100 1\$aO Conaire, Padraic,$d1883-1928.
=240 10$aCheád chloch
=245 14$aAn ċeád ċloċ :$bsgéalta /$cPádraic Ó Conaire do sgrióḃ.
=260 \\$aI mBaile Áṫa Cliaṫ :$bClodanna teo., ar n-a ċur amaċ do Ċonnraḋ na Gaeḋilge,$c1914.
=300 \\$a101 p. ;$c19 cm.
=500 \\$aShort stories.
=505 0\$aAn ċéad ċloċ.--An ċoiṁṫiġeaċ a raiḃ aġaiḋ an ḃáis air.--Teatrarc na gaililí.--Baintreaḃaċ an ḟíona agus a mac.--Aba-cána-lú!--Cleaṁnas san oirṫear.--Díoġaltas na mban.--Ná leig sinn i gCaṫuġaḋ.
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 08/08/2000
=950 \\$aOL
=966 \\$lONEILL$mMONO
=LDR 01137cam a2200325 i 4500
=001 99125264490001021
=004 ADB4647
=005 20130422181001.0
=008 120610s1915\\\\ie\\\\\\\\\\\\000\0\iri\d
=035 \\$a(Aleph)000501951BCL01
=035 \\$a(OCoLC)ocm06961613
=035 \\$a(GRSN)00532303 89
=035 \\$a(GRSN)00532303
=035 9\$aADB4647
=040 \\$aMNT$cMNT$dBXM
=041 0\$airieng
=049 \\$aBXMM
=090 \\$aPB1399.M8$bB3
=099 \9$aPB1399.M8B3
=100 1\$aÓ Murchadha, Domhnall.
=245 10$aBeirt Ġaeḋilgeoirí 'na gcoṁnaiḋe 'sa ċaṫair /$cDoṁnall Ó Murċaḋa ("Doṁnall na Gréine") ó Ḋairḃre do sgríoḃ ; Seosaṁ Laoide do ċuir i n-eagar.
=246 3\$aBeirt Ghaedhilgeoirí 'na gcomhnaidhe 'sa chathair
=260 \\$aI mBaile Áṫa Cliaṫ :$bClóḋanna, ar n-a ċur amaċ do Ċonnraḋ na Gaeḋilge,$c1915.
=300 \\$aviii, 91 p. ;$c19 cm.
=650 \0$aIrish language$vConversation and phrase books.
=700 1\$aLaoide, Seosamh,$dd. 1939.
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 08/08/2000
=950 \\$aOL
=966 \\$lONEILL$mMONO
=LDR 00901nam a2200265 4500
=001 99124282500001021
=004 AEP6016
=005 20130325170924.0
=008 120610s1853\\\\gw\\\\\\\\\\\\001\0\lat\\
=010 \\$a10029273 /rev
=035 \\$a(Aleph)000693385BCL01
=035 \\$a(OCoLC)ocm02533654
=035 9\$aAEP6016
=040 \\$aDLC$cLLM
=049 \\$aBXMM
=050 \\$aPB1019$b.Z6 1853
=100 1\$aZeuss, Johann Kaspar,$d1806-1856.
=245 10$aGrammatica celtica.$bE monumentis vetustis tam hibernicae linguae quam britannicae dialecti, cambricae, cornicae, armoricae nec non e gallicae priscae reliquiis construxit$cJ. C. Zeuss ...
=260 \\$aLipsiae,$bapud Weidmannos,$c1853.
=300 \\$a2 v.$c23 cm.
=500 \\$aPaged continuously.
=650 \0$aCeltic languages$xGrammar, Historical.
=901 \\$aDigitized$bBCL$pPartial work$vv.1$sBC20130317
=948 \\$aLTI 08/08/2000
=950 \\$aOL
=LDR 01079cam a2200277 4500
=001 99119766630001021
=005 20130412111713.0
=008 120610s1900\\\\enkb\\\\\\\\\\001\0dgler\
=010 \\$a02008667
=035 \\$a(Aleph)002413639BCL01
=035 \\$a(OCoLC)ocm09417646
=040 \\$aDLC$cCUZ$dCUZ$dOCL$dOCLCG
=041 0\$agleeng
=049 \\$aBXMM
=050 00$aPB1347$b.I7 vol.3
=100 1\$aO'Rahilly, Egan,$dfl. 1670-1724.
=245 10$aDánta Aodhagáin Uí Rathaille;$bthe poems of Egan O'Rahilly, to which are added miscellaneous pieces illustrating their subjects and languages;$ced. with introduction, translation, notes and glossary by Rev. Patrick S. Dinneen, M.A.
=260 \\$aLondon,$bPublished for the Irish Texts Society by D. Nutt,$c1900.
=300 \\$alxii p., 304 p. , 14 p. ;$c23 cm.
=490 1\$aIrish Texts Society$v3
=700 1\$aDinneen, Patrick S.$q(Patrick Stephen),$d1860-1934.
=830 \0$aIrish Texts Society (Series) ;$vv. 3.
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 05/09/2008
=950 \\$aOL
=994 \\$aC0$bBXM
=LDR 00902cam a2200265Ia 4500
=001 99122575440001021
=005 20130326164247.0
=008 120610m19051906ie\\\\\\\\\\\\000\0\eng\d
=035 \\$a(Aleph)001650525BCL01
=035 \\$a(OCoLC)ocm18237019
=040 \\$aCUY$cCUY$dDCU$dBXM
=041 0\$aenggle
=049 \\$aBXMM
=090 \\$aPB1223$b.H42
=100 1\$aHenry, John Patrick,$d1862-1930.
=245 12$aA hand-book of modern Irish :$bspecially compiled for the use of students in intermediate schools and Gaelic League classes /$cby Seagán P. Mac Énrí (John P. Henry).
=246 30$aHandbook of modern Irish
=260 \\$aDublin :$bM.H. Gill,$c1904-1906.
=300 \\$a4 v. ;$c18 cm.
=546 \\$aText in English and Irish.
=650 \0$aIrish language$xGrammar.
=901 \\$aDigitized$bBCL$pPartial work {dollar}v pt.1-pt.2$sBC20130317
=948 \\$aLTI 01/04/2002
=950 \\$aOL
=994 \\$aE0$bBXM
=LDR 02308nam a2200433ua 4500
=001 99123058680001021
=004 AFH1222
=005 20130412114942.0
=008 120610s1914\\\\enkabh\\\\\\\\000\0\eng\d
=035 \\$a(Aleph)000868550BCL01
=035 \\$a(OCoLC)ocm29446156
=035 9\$aAFH1222
=040 \\$aVT2$cVT2$dBXM
=041 0\$aengiri
=049 \\$aBXMM
=050 \4$aPB1347$b.I7 vol. 16
=245 00$aLife of St. Declan of Ardmore :$b(edited from ms. in Bibliothèque royale, Brussels), and Life of St. Mochuda of Lismore, (edited from ms. in Library of Royal Irish Academy) /$cwith introduction, translation, and notes, by Rev. P. Power.
=246 30$aLife of St. Mochuda of Lismore
=246 3\$aBetha Decclain
=246 3\$aBeatha Mochuda
=246 18$aLives of S.S. Declan and Mochuda
=260 \\$aLondon :$bIrish Texts Society,$c1914.
=300 \\$axxxi, 202, 28 p., [2] leaves of plates (1 folded) :$bill., facsim., 1 folded map ;$c23 cm.
=490 1\$a[Publications] / Irish texts society ;$vv. 16
=500 \\$aEnglish and Irish on opposite pages.
=500 \\$aIncludes the Irish Texts Society's 16th annual report, list of members, etc. at back of volume (p. [1]-28).
=500 \\$aSpine title: Lives of S.S. Declan and Mochuda.
=500 \\$aIrish caption titles: Betha Decclain; Beatha Mochuda.
=500 \\$a"The life [of St. Declan] herewith presented was copied in 1629 by Brother Michael O'Clery ... from an older ms. of Eochy O'Heffernan's dated 1582 ... apparently O'Clery did more than transcribe, he re-edited, as was his wont, into the literary irish of his day ... The "Life" [of St. Mochuda of Carthach] ... is in its present form a comparatively late production, it was transcribed by [John Murphy] between 1740 and 1750".--Introduction.
=600 00$aDeclan,$cSaint, Bishop of Ardmore$xLegends.
=600 00$aCarthach,$cSaint, Bishop of Lismore,$dfl. 570-637$xLegends.
=700 1\$aO'Clery, Michael,$d1575-1643.
=700 1\$aPower, P.$q(Patrick),$d1862-1951
=710 2\$aRoyal Irish Academy.$bLibrary.$kManuscript.$nM. 23, 50.
=710 2\$aBibliothèque royale Albert Ier.$kManuscript.$n4190-4200.
=830 \0$aIrish Texts Society (Series) ;$vvol. 16..
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 08/08/2000
=950 \\$aOL
=LDR 01088nam a2200301 i 4500
=001 99118738120001021
=004 ABC9726
=005 20130326121020.0
=008 120610s1887\\\\ie\\\\\\\\\\\\001\0\eng\\
=010 \\$a06029946
=035 \\$a(Aleph)000192018BCL01
=035 \\$a(OCoLC)ocm04097802
=035 9\$aABC9726
=040 \\$aDLC$cRSC
=041 0\$aengirilat
=049 \\$aBXMM
=050 0\$aPB1202$b.A2
=130 0\$aLeabhar braec.
=245 14$aThe passions and the homilies from Leabhar breac;$btext, translation, and glossary /$cby Robert Atkinson.
=260 \\$aDublin,$bPublished by the [Royal Irish] Academy,$c1887.
=300 \\$avi, 957 p. ;$c22 cm.
=490 1\$aRoyal Irish Academy. Todd lecture series,$vv. 2
=500 \\$aIncludes "Irish lexicography: an introductory lecture," by Robert Atkinson, which was alos issued in separate form as "Todd lecture series, v. 2, pt. 1.
=700 1\$aAtkinson, R.$q(Robert),$d1839-1908$eed. and tr.
=830 \0$aTodd lecture series$vv.2..
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 08/08/2000
=950 \\$aOL
=LDR 00959nam a2200325 i 4500
=001 99125272090001021
=004 ADB4409
=005 20130412142256.0
=008 120610s1910\\\\ie\\\\\j\\\\\\000\m\gle\d
=035 \\$a(Aleph)000501713BCL01
=035 \\$a(OCoLC)ocm05591695
=035 \\$a(GRSN)00532066 89
=035 \\$a(GRSN)00532066
=035 9\$aADB4409
=040 \\$aMNT$cMNT$dBXM
=041 0\$agleeng
=049 \\$aBXMM
=090 \\$aPB1359$b.D84 1910
=099 \9$aPB1359.F581
=245 00$aDuanaire na macaoṁ :$ba selection of Irish poetry for schools and colleges /$cedited by Tomás Ó Flannghaile.
=246 3\$aDuanaire na macaomh
=260 \\$aDublin :$bM. H. Gill,$c1910.
=300 \\$aviii, 267 p. ;$c19 cm.
=546 \\$aText in Irish and English.
=650 \0$aIrish poetry.
=700 1\$aFlannery, Thomas,$d1846-1916.
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 08/08/2000
=950 \\$aOL
=966 \\$lONEILL$mMONO
=LDR 01108nam a2200349Ia 4500
=001 99122941430001021
=005 20130416130537.0
=008 120610s1901\\\\ie\\\\\\\\\\\\000\0\eng\d
=035 \\$a(Aleph)000798317BCL01
=035 9\$aAFA0949
=035 \\$a(OCoLC)ocm21499400
=040 \\$aEIS$cEIS$dBXM
=041 1\$aenggle$hgle
=043 \\$ae-ie---
=049 \\$aBXMM
=090 \\$aPB1398.C67$bM65 1901
=092 \\$a891.6208$fCELE/10
=100 0\$aCorbmacán.
=245 10$aMóirthimchell Éirenn uile dorigne Muirchertach Mac Néill /$cedited with translation and glossary by Edmund Hogan.
=260 \\$aDublin :$bGaelic League,$c1901.
=300 \\$a68 p. ;$c15 cm.
=500 \\$aPoem found in the Leabhar Gabhála.
=546 \\$aEnglish and Irish text on facing pages.
=650 \0$aEpic poetry, Irish.
=651 \0$aIreland$xHistory.$yTo 1172$vSources.
=700 1\$aHogan, Edmund.
=730 0\$aLebor Gabála Érenn.$lEnglish & Irish.$kSelections.
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 08/08/2000
=948 \\$aLTI 05/07/2001
=950 \\$aOL
=994 \\$aE0$bBXM
=LDR 01443cam a2200349Ia 4500
=001 99117977390001021
=005 20130325165825.0
=008 120610s1899\\\\enka\\\\\\\\\\000\0\eng\d
=035 \\$a(Aleph)000184549BCL01
=035 9\$aABC2257
=035 \\$a(OCoLC)ocm08481980
=040 \\$aGPM$cGPM$dBXM
=049 \\$aBXMM
=050 \4$aPB77$b.S7 1899
=090 \\$aPB77$b.S7
=100 1\$aSoames, Laura,$d1840-1895.
=245 10$aIntroduction to English, French and German phonetics,$bwith reading lessons and exercises /$cby Laura Soames.
=250 \\$aNew ed., rev. and ed.$bby Wilhelm Vietor.
=260 \\$aLondon :$bS. Sonnenschein ;$aNew York :$bThe Macmillan Co.,$c1899.
=300 \\$a1 v. (various pagings) :$bill. ;$c20 cm.
=490 0\$aIntroductory science textbooks
=500 \\$aPt. II: Reading lessons and exercises; A phonetic reading book (English, French and German) has special t.-p.
=650 \0$aPhonetics.
=650 \0$aEnglish language$xPhonetics.
=650 \0$aFrench language$xPhonetics.
=650 \0$aGerman language$xPhonetics.
=700 1\$aViëtor, Wilhelm,$d1850-1918,$eed.
=776 08$iOnline version:$aSoames, Laura, 1840-1895.$tIntroduction to English, French and German phonetics.$bNew ed., rev. and ed.$dLondon : S. Sonnenschein ; New York : The Macmillan Co., 1899$w(OCoLC)615342338
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 08/08/2000
=950 \\$aOL
=994 \\$aC0$bBXM
=LDR 01261cam a2200337 4500
=001 99125273960001021
=005 20130416173409.0
=008 120610s1917\\\\ie\\\\\\\\\\\\000\0dgle\\
=010 \\$a53051047
=035 \\$a(Aleph)000501659BCL01
=035 9\$aADB4355
=035 \\$a(OCoLC)ocm05164698
=040 \\$aDLC$cMNT$dOCL$dOCLCQ
=041 0\$agleeng
=043 \\$ae-ie---$ae-uk-ni
=049 \\$aBXMM
=050 0\$aPB1414$b.M43
=090 \\$aPB1399.D5$bM2
=110 2\$aMaguire of Fermanagh family.
=245 14$aMé Guiḋir Ḟearmanaċ.$bThe Maguires of Fermanagh .i. Maġnus agus Giolla Íosa, "ḋá ṁac Ḋuinn Ṁóir mic Raġnaill": iar n-a ċur i n-eagar maille le díonḃrollaċ, gluair, aistriuġaḋ, flaiṫṡeanċur, dinnṡeanċur, &c. leis an Aṫair Pádraig Ua Duinnín.
=260 \\$aBaile Áṫa Cliaṫ,$bM.H. Gill,$c1917.
=300 \\$a140 p.$c19 cm.
=610 20$aMaguire of Fermanagh family.
=651 \0$aFermanagh (Northern Ireland)$xHistory.
=700 1\$aDinneen, Patrick S.$q(Patrick Stephen),$d1860-1934$eeditor and translator.
=740 01$aMaguires of Fermanagh.
=740 01$aMe Guidhir Fearmanach.
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 08/08/2000
=950 \\$aOL
=994 \\$aC0$bBXM
=LDR 00878nam a2200289 i 4500
=001 99123068170001021
=004 AFH1648
=005 20130416122129.0
=008 120610s1901\\\\ie\\\\\\\\\\\\001\0\iri\d
=035 \\$a(Aleph)000868976BCL01
=035 \\$a(OCoLC)ocm06500815
=035 9\$aAFH1648
=040 \\$aMNT$cMNT
=041 0\$airieng
=049 \\$aBXMM
=090 \\$aPB1397.E188$bE23 1901
=130 0\$aEachtra Lomnochtáin.
=245 10$aEachtra Lomnochtáin :$bIrish text /$cedited by Osborne J. Bergin and John MacNeill.
=260 \\$aDublin :$bGaelic league,$c190l.
=300 \\$a211 p. ;$c17 cm.
=440 \0$aGaelic League publications
=500 \\$aIncludes word index.
=700 1\$aBergin, Osborn,$d1873-1950$ejoint ed.
=700 1\$aMac Neill, Eoin,$d1867-1945,$ejoint ed.
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 08/08/2000
=950 \\$aOL
=LDR 01238nam a2200349 1 4500
=001 99116250090001021
=004 ACM8962
=005 20130328150857.0
=008 120610s1904\\\\ie\\\\\\\\\\\\000\0\engm\
=010 \\$a05004445
=035 \\$a(Aleph)000421933BCL01
=035 \\$a(OCoLC)ocm02556788
=035 \\$a(GRSN)00451969 89
=035 \\$a(GRSN)00451969
=035 9\$aACM8962
=040 \\$aDLC$cLLM$dBXM
=041 0\$aengiri
=049 \\$aBXMM$c4
=050 \\$aPB1291$b.D5
=099 \\$aPB1291.D5
=100 1\$aDinneen, Patrick S.$q(Patrick Stephen),$d1860-1934.
=245 10$aFoclóir Gaeḋilge agus Béarla.$bAn Irish-English dictionary, being a thesaurus of words, phrases and idioms of the modern Irish language, with explanations in English.$cComp. and ed. by Rev. Patrick S. Dinneen, M. A.
=246 3\$aIrish-English dictionary
=260 \\$aDublin,$bFor the Irish texts society by M. H. Gill & son, ltd.; [etc. etc.]$c1904.
=300 \\$axvi, 803 p.$c19 cm.
=650 \0$aIrish language$vDictionaries$xEnglish.
=650 \0$aEnglish language$vDictionaries$xIrish.
=710 2\$aIrish Texts Society.
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 08/08/2000
=950 \\$aOL
=966 \\$lONEILL$mMONO
=LDR 01232nam a2200349 i 4500
=001 99118913080001021
=004 AFH2684
=005 20130326135253.0
=008 120610s1911\\\\ie\\\\\\\\\\\\001\0\eng\d
=035 \\$a(Aleph)000870012BCL01
=035 \\$a(OCoLC)ocm02746706
=035 9\$aAFH2684
=040 \\$aIUL$cIUL$dOCL
=041 0\$aengiri
=043 \\$ae-ie---
=049 \\$aBXMM
=090 \\$aPB1202$b.A2 vol. 17
=245 00$aBetha Colmáin maic Lúacháin =$bLife of Colmán son of Lúachan /$cedited from a ms. in the library of Rennes, with translation, introd., notes, and indices by Kuno Meyer.
=260 \\$aDublin :$bHodges, Figgis;$aLondon :$bWilliams & Norgate,$c1911.
=300 \\$axvii, 142 p. ;$c23 cm.
=490 1\$aRoyal Irish Academy. Todd lecture series ;$vv. 17
=500 \\$aIrish and English on opposite pages.
=500 \\$aIncludes indexes.
=600 00$aColman,$cSaint,$dd. 689?
=650 \0$aSaints$zIreland$vBiography.
=650 \0$aIrish literature.
=700 1\$aMeyer, Kuno,$d1858-1919$eed. and tr.
=710 1\$aRennes (France).$bBibliotheque municipale.
=830 \0$aTodd lecture series$vv. 17.
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 08/08/2000
=950 \\$aOL
=LDR 00824aam a2200301 1 4500
=001 99118753200001021
=004 ABC9876
=005 20130326154319.0
=008 120610s1900\\\\ie\\\\\\\\\\\\000\0\eng\\
=010 \\$a02013051 //r
=035 \\$a(Aleph)000192168BCL01
=035 \\$a(OCoLC)ocm03720530
=035 \\$a(GRSN)00208394 89
=035 \\$a(GRSN)00208394
=035 9\$aABC9876
=040 \\$aDLC$cMNT$dBXM
=041 0\$aengiri
=050 \\$aPB1223$b.C7
=099 \\$aPB1223.C7
=100 1\$aCraig, J. P.$q(James Patrick)
=245 10$aModern Irish grammar,$cby J. P. Craig.
=260 \\$aDublin,$bSealy, Bryers & Walker,$c1900.
=300 \\$axx, 163 p.$c19 cm.
=650 \0$aIrish language$xGrammar.
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 08/08/2000
=950 \\$aOL
=966 \\$lONEILL$mMONO
=LDR 01090nam a2200289Ii 4500
=001 99122029590001021
=005 20130326164615.0
=008 120610s1910\\\\ie\\\\\\\\\\\\000\0\gle\d
=035 \\$a(Aleph)001689374BCL01
=035 \\$a(OCoLC)ocm03928079
=040 \\$aMNT$cMNT$dBXM
=041 0\$agleeng
=049 \\$aBXMM
=090 \\$aPB1223$b.L982
=100 1\$aLynch, Denis M.
=245 10$aComplete course of Irish composition :$bwith full vocabularies, idiomatic sentences, selected continuous pieces, examples of the irregular verbs, and A treatise on prosody for use in intermediate and other schools and Gaelic league classes /$cby Denis M. Lynch.
=250 \\$a2nd ed., rev. and extended.
=260 \\$aDublin :$bGill,$c1910.
=300 \\$aviii, 124 p. ;$c19 cm.
=650 \0$aIrish language$xComposition and exercises.
=650 \0$aIrish language$xGrammar.
=650 \0$aIrish language$xVersification.
=710 2\$aIrish Self-Determination League of Great Britain.
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 03/06/2002
=950 \\$aOL
=994 \\$aE0$bBXM
=LDR 00954cam a2200277Ia 4500
=001 99116224790001021
=005 20130412141122.0
=008 120610s1911\\\\ie\c\\\\\\\\\\000\m\eng\d
=035 \\$a(Aleph)001698436BCL01
=035 \\$a(OCoLC)ocm02556620
=040 \\$aLLM$cLLM$dOCL$dOCLCQ
=041 0\$aenggle
=049 \\$aBXMM
=090 \\$aPB1353$b.G55 1911
=245 00$aGill's Irish reciter :$ba selection of gems from Ireland's modern literature ; cnuasaċt seód as scriḃinniḃ Éireann /$cedited by J.J. O'Kelly.
=246 1\$iAt head of title:$aFéiṫe fódla
=250 \\$a3rd ed.
=260 \\$aDublin :$bM.H. Gill & Sons,$c1911.
=300 \\$axxi, 352 p. :$bports. ;$c19 cm.
=546 \\$aText in English and Irish ; explanatory material in English.
=650 \0$aIrish literature.
=700 1\$aUa Ceallaigh, Sean,$d1872-1957.
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 05/06/2002
=950 \\$aOL
=994 \\$aE0$bBXM
=LDR 00916aam a2200301 1 4500
=001 99117777670001021
=004 ABC5571
=005 20130430145601.0
=008 120610s1920\\\\ie\\\\\\\\\\\\000\0\eng\d
=035 \\$a(Aleph)000187863BCL01
=035 \\$a(OCoLC)ocm03092147
=035 \\$a(GRSN)00203880 89
=035 \\$a(GRSN)00203880
=035 9\$aABC5571
=040 \\$aFHM$cFHM$dBXM
=041 1\$aenggae
=090 \\$aPB1421$b.J7
=099 \\$aPB1421.J7
=245 00$aOld Celtic romances,$ctranslated from the Gaelic.
=250 \\$a[3d ed.]
=260 \\$aDublin,$bEducational Co. of Ireland,$c1920 [pref. 1907]
=300 \\$axx, 473 p. ;$c19 cm.
=650 \0$aEpic literature, Irish$vTranslations into English$xTranslations into English.
=700 1\$aJoyce, P. W.$q(Patrick Weston),$d1827-1914.
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 08/08/2000
=950 \\$aOL
=966 \\$lONEILL$mMONO
=LDR 00871aam a2200301 1 4500
=001 99118751600001021
=004 ABC9901
=005 20130327122300.0
=008 120610s1879\\\\xx\\\\\\\b\\\\000\0\ger\d
=035 \\$a(Aleph)000192193BCL01
=035 \\$a(OCoLC)ocm05292840
=035 \\$a(GRSN)00208420 89
=035 \\$a(GRSN)00208420
=035 9\$aABC9901
=040 \\$aCWR$cCWR$dBXM
=041 0\$ageriri
=090 \\$aPB1223$b.W76
=099 \\$aPB1223.W76
=100 1\$aWindisch, Ernst,$d1844-1918.
=245 10$aKurzgefasste Irische Grammatik :$bmit Lesestücken /$cvon Ernst Windisch.
=260 \\$aLeipzig :$bHirzel,$c1879.
=300 \\$ax, 149 p. ;$c23 cm.
=504 \\$aIncludes bibliographical references.
=650 \0$aIrish language$xGrammar.
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 08/08/2000
=950 \\$aOL
=966 \\$lONEILL$mMONO
=LDR 01080nam a2200325 1 4500
=001 99125264620001021
=004 ADB4637
=005 20130416123129.0
=008 120610s1787\\\\sc\\\\\\\\\\\\000\0\eng\\
=010 \\$a01009385
=035 \\$a(Aleph)000501941BCL01
=035 \\$a(OCoLC)ocm04629965
=035 \\$a(GRSN)00532293 89
=035 \\$a(GRSN)00532293
=035 9\$aADB4637
=040 \\$aDLC$cJNA$dm/c$dBXM
=049 \\$aBXMM
=050 \\$aPB1648$b.S6
=090 \\$aPB1397.F4$bS5
=099 \9$aPB1397.F4S5
=100 1\$aSmith, John,$d1747-1807.
=245 10$aSean dana;$ble Oisian, Orran, Ulann, &c.$cAncient poems of Ossian, Orran, Ullin, &c. Collected in the western Highlands and isles; being the originals of the translations some time ago published in the Gaelic antiquities. By John Smith, D. D.
=260 \\$aEdinburgh,$bC. Elliot; [etc., etc.]$c1787.
=300 \\$avi, 348 p.$c21 cm.
=600 00$aOssian.
=650 \0$aScottish Gaelic poetry.
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 08/08/2000
=950 \\$aOL
=966 \\$lONEILL$mMONO
=LDR 01152cam a2200313Ia 4500
=001 99122019170001021
=005 20130328164329.0
=008 120610m19051911ie\\\\\\\dr\\\000\0\gle\d
=035 \\$a(Aleph)001697117BCL01
=035 \\$a(OCoLC)ocm06999392
=040 \\$aMNT$cMNT$dOCL
=041 0\$agleeng
=043 \\$ae-ie---
=049 \\$aBXMM
=090 \\$aPB1295$b.P67
=245 00$aPost-ṡeanċas :$bi n-a ḃfuil cúigí, dúiṫċí, conntaeṫe, & bailte puist na h-Éireann /$cSeosaṁ Laoide do ċuir i n-eagar.
=246 3\$aPost-sheanchas
=260 \\$aI mBaile Áṫa Cliaṫ :$bar n-a ċur amaċ do Ċonnraḋ na Gaeḋilge,$c1905-1911.
=300 \\$a2 v. ;$c18 cm.
=500 \\$aDirectory of place names for postal use.
=505 0\$aCuid I. Sacsḃéarla-Gaeḋilg -- Cuid II. Gaeḋilg-Sacsḃéarla.
=650 \0$aIrish language$vGlossaries, vocabularies, etc.
=650 \0$aIrish language$vTerms and phrases.
=650 \0$aPostal service$zIreland$vDirectories.
=700 1\$aLaoide, Seosamh,$dd. 1939.
=901 \\$aDigitized$bBCL$pEntire work$vcuid 1-cuid 2$sBC20130317
=948 \\$aLTI 04/03/2002
=950 \\$aOL
=994 \\$aE0$bBXM
=LDR 01741nam a2200409ua 4500
=001 99123070010001021
=004 AFH1535
=005 20130412133230.0
=008 120610m19081953enk\\\\\\\\\\\001\0\eng\d
=035 \\$a(Aleph)000868863BCL01
=035 \\$a(OCoLC)ocm29446066
=035 9\$aAFH1535
=040 \\$aVT2$cVT2$dBXM
=041 0\$aengiri
=049 \\$aBXMM
=050 \4$aPB1347$b.I7 vol. 7,28,43
=130 0\$aDuanaire Finn.
=245 10$aDuanaire Finn =$bThe book of the Lays of Fionn : Irish text with translation into English /$cby Eoin MacNeill.
=246 31$aBook of the Lays of Fionn
=260 \\$aLondon :$bPublished for the Irish Texts Society by D. Nutt,$c1908-1953.
=300 \\$a3 v. ;$c23 cm.
=490 1\$a[Publication] / Irish Texts Society ;$vv. 7, 28, 43
=500 \\$aEnglish and Irish.
=500 \\$aContains LXIX poems from a manuscript in the Franciscan library, Dublin.
=500 \\$aThe introduction includes an account of the Fenian cycle.
=500 \\$aPart II, edited and translated by Gerard Murphy.
=500 \\$aIrish texts society (28th) annual report, list of members, etc. at end of volume 2 (Ir. Tex. Soc., 28).
=500 \\$aPart III, introduction, notes, appendices and glossary by Gerard Murphy, indexes by Gerard Murphy and Anna O'Sullivan, appendices G and L by I.L. Foster and Brendan Jennings.
=500 \\$aIncludes indexes.
=600 00$aFinn MacCumhaill,$d3rd cent.
=700 1\$aMac Neill, Eoin,$d1867-1945.
=700 1\$aMurphy, Gerard.
=710 2\$aFranciscan Convent (Dublin, Ireland).$bLibrary.$kManuscript.
=830 \0$aIrish Texts Society (Series) ;$vvol. 7, 28, 43..
=901 \\$aDigitized$bBCL$pPartial work$vv.7$sBC20130317
=948 \\$aLTI 08/08/2000
=950 \\$aOL
=LDR 00986nam a2200313Ia 4500
=001 99119028300001021
=005 20130328124448.0
=008 120610s1899\\\\ie\\\\\\\\\\\\000\0\gle\d
=035 \\$a(Aleph)001703023BCL01
=035 \\$a(OCoLC)ocm35336282
=040 \\$aBRL$cBRL
=041 0\$aenggle
=049 \\$aBXMM
=090 \\$aPB1227$b.O526 1899
=100 1\$aO'Leary, Peter,$d1839-1920.
=245 10$aMion-ċaint :$ban easy Irish phrase book /$ccompiled for the Gaelic League by the Rev. Peter O'Leary.
=246 30$aMion-chaint
=246 30$aEasy Irish phrase book
=260 \\$aDublin :$bGaelic League,$c1899.
=300 \\$a67 p. ;$c19 cm.
=440 \0$aGaelic League publications
=546 \\$aIrish and English in parallel columns.
=650 \0$aIrish language$vConversation and phrase books.
=710 2\$aGaelic League (Ireland)
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 05/13/2002
=948 \\$aLTI 05/20/2002
=950 \\$aOL
=994 \\$aE0$bBXM
=LDR 00938nam a2200301Ka 4500
=001 99119039600001021
=005 20130328123400.0
=008 120610s1922\\\\ie\\\\\\\\\\\\000\0\gle\d
=035 \\$a(Aleph)001703119BCL01
=035 \\$a(OCoLC)ocm49701209
=040 \\$aBXM$cBXM
=041 0\$agleeng
=049 \\$aBXMM
=090 \\$aPB1227$b.N534 1922
=100 1\$aNí Cheallacháin Máire.
=245 10$aIrish at school, or =$bGaeḋilg sa scoil.$nBook 1 /$cby Máire Ní Ċeallaċáin.
=246 30$aGaeḋilg sa scoil
=246 3\$aGaeilge sa scoil
=260 \\$aDublin :$bM.H. Gill,$c1922.
=300 \\$a80 p. ;$c22 cm.
=440 \0$aFé ḃrat Ḃriġde
=546 \\$aIrish, Irish pronunciation, and English in parallel columns.
=650 \0$aIrish language$vConversation and phrase books.
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 05/13/2002
=948 \\$aLTI 05/20/2002
=950 \\$aOL
=994 \\$aX0$bBXM
=LDR 01109cam a2200289 i 4500
=001 99118766740001021
=005 20130412155355.0
=008 120610s1904\\\\ie\b\\\\\\\\\\000\0\gle\d
=035 \\$a(Aleph)002972874BCL01
=035 \\$a(OCoLC)ocm06296787
=040 \\$aMNT$cMNT$dOCLCQ$dOCLCG
=041 0\$agleeng
=049 \\$aBXMM
=090 \\$aPB1397.F5$bC6 1904
=100 0\$aFinn MacCumhaill,$d3rd cent.
=245 10$aMac-ġníoṁarṫa Ḟinn : slioċt Saltraċ Ċaisil =$bThe youthful exploits of Fionn : from the Saltair of Cashel : re-issue for the use of schools /$cthe ancient text, modern Irish version, new literal translation, vocabulary, notes, and map by David Comyn.
=246 3\$aYouthful exploits of Fionn
=260 \\$aDublin :$bM.H. Gill,$c1904.
=300 \\$a121 p. :$bfolded map ;$c17 cm.
=490 1\$aGaelic texts for students.
=700 1\$aComyn, David,$d1854-1907,$eeditor.
=700 1\$aÓ Maelconaire, Tuileagrach,$dfl. 1673.
=830 \0$aGaelic texts for students.
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 09/30/2011
=950 \\$aOL
=994 \\$aC0$bBXM
=LDR 00944nam a2200289Ia 4500
=001 99119037580001021
=005 20130328124135.0
=008 120610s1906\\\\ie\\\\\\\\\\\\000\0\gle\d
=035 \\$a(Aleph)001703144BCL01
=035 \\$a(OCoLC)ocm49701843
=040 \\$aBXM$cBXM
=041 1\$aeng$hgle
=049 \\$aBXMM
=090 \\$aPB1227$b.O49 1906
=100 1\$aÓ hAodha, Tomás.
=245 10$aCainnt scoile =$bSchool talk, an Irish-English conversation book for use in elementary schools and Gaelic League classes.$nPart 2 /$cby Tomás o hAoḋa.
=246 30$aSchool talk
=260 \\$aDublin :$bFallon,$c1906.
=300 \\$a24 p. ;$c18 cm.
=490 0\$aSchool and college series
=546 \\$aText in Irish with English translation.
=650 \0$aIrish language$vConversation and phrase books.
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 05/13/2002
=948 \\$aLTI 05/20/2002
=950 \\$aOL
=994 \\$aX0$bBXM
=LDR 01016cam a2200301Ii 4500
=001 99122020690001021
=005 20130327182452.0
=008 120610s1907\\\\ie\\\\\\\\\\\\001\0\gle\d
=035 \\$a(Aleph)001689167BCL01
=035 \\$a(OCoLC)ocm06283312
=040 \\$aMNT$cMNT
=041 0\$agleeng
=049 \\$aBXMM
=090 \\$aPB1225$b.T35 1907
=130 0\$aTáin bó Cúailnge.$kSelections.
=245 10$aDearg-ruaṫar Ċonaill Ċearnaiġ :$bsgéal ruḋraiġeaċta /$cSeosaṁ Laoide do ċuir i n-eagar.
=246 3\$aDearg-ruathar Chonaill Chearnaigh
=260 \\$ai mBaile Áṫa Cliaṫ :$bar n-a ċur amaċ do Ċonnraḋ na Gaeḋilge,$c1907.
=300 \\$aviii, 116 p. ;$c17 cm.
=500 \\$aIncludes indexes.
=546 \\$aText in Irish with glossary in Irish and English.
=650 \0$aIrish language$vReaders.
=650 \0$aFolklore$zIreland.
=700 1\$aLaoide, Seosamh,$dd. 1939.
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 03/06/2002
=950 \\$aOL
=994 \\$aE0$bBXM
=LDR 01180nam a2200361 4500
=001 99125264730001021
=004 ADB4632
=005 20130416122553.0
=008 120610s1911\\\\ie\\\\\\\\\\\\001\p\gle\\
=010 \\$a54051310
=035 \\$a(Aleph)000501936BCL01
=035 \\$a(OCoLC)ocm04083264
=035 \\$a(GRSN)00532288 89
=035 \\$a(GRSN)00532288
=035 9\$aADB4632
=040 \\$aDLC$cMNT$dm/c$dBXM
=041 0\$agleeng
=049 \\$aBXMM
=050 0\$aPB1397.F4$b05
=090 \\$aPB1397.F4$bL43 1911
=099 \9$aPB1397.F4C3
=245 00$aLeabar na laoiṫeaḋ :$ba collection of Ossianic poems /$cedited with notes, introduction, and a full vocabulary for the use of intermediate students by J.J. O'Kelly.
=246 3\$aLeabhar na laoitheadh
=260 \\$aDublin :$bGill,$c1911.
=300 \\$alxii, 150 p. ;$c19 cm.
=500 \\$aPartly from the volumes of the Ossianic Society.
=546 \\$aPoems in Irish with explanatory material in English.
=600 00$aOssian,$d3rd cent.$vPoetry.
=700 1\$aUa Ceallaigh, Sean,$d1872-1957.
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 08/08/2000
=950 \\$aOL
=966 \\$lONEILL$mMONO
=LDR 01090aam a2200325 1 4500
=001 99118736930001021
=004 ABC9775
=005 20130326144505.0
=008 120610s1909\\\\xx\\\\\\\b\\\\001\0\ger\\
=010 \\$a12014650
=035 \\$a(Aleph)000192067BCL01
=035 \\$a(OCoLC)ocm03546059
=035 \\$a(GRSN)00208288 89
=035 \\$a(GRSN)00208288
=035 9\$aABC9775
=040 \\$aDLC$cAKR$dBXM
=050 \\$aPB1220$b.T5
=099 \\$aPB1220.T5
=100 1\$aThurneysen, Rudolf,$d1857-1940.
=245 10$aHandbuch des Alt-irischen;$bGrammatik, Texte und Wörterbuch,$cvon Rudolf Thurneysen.
=260 \\$aHeidelberg,$bC. Winter,$c1909.
=300 \\$a2 v.$c21 cm.
=490 0\$aIndogermanische Bibliothek. 1. Abt. Sammlung indogermanischer Lehr- und Handbücher. 1. Reihe: Grammatiken. 6. Bd.
=504 \\$a"Wichtigere Hilfsmittel": v. 1, p. 13-15.
=505 0\$aI. T. Grammatik.--II. T. Texte mit Wörterbuch.
=650 \0$aIrish language$yTo 1100.
=901 \\$aDigitized$bBCL$pPartial work$vv.1$sBC20130317
=948 \\$aLTI 08/08/2000
=950 \\$aOL
=966 \\$lONEILL$mMONO
=LDR 00888cam a2200277Ka 4500
=001 99116245150001021
=005 20130327171348.0
=008 120610s1901\\\\ie\\\\\\\\\\\\000\0\gle\d
=035 \\$a(Aleph)001698861BCL01
=035 \\$a(OCoLC)ocm30418080
=040 \\$aBUQ$cBUQ$dBXM
=049 \\$aBXMM
=090 \\$aPB1225$b.O64 1901
=100 1\$aÓ Neachtain, Eoghan.
=245 10$aI dTaoiḃ na hOibre /$cEoġan Ó Neaċtain do sgríoḃ.
=246 3\$aI dTaoibh na hOibre
=260 \\$aBaile Áṫa Cliaṫ :$bConnraḋ na Gaeḋilge,$c1901.
=300 \\$a16 p. ;$c22 cm.
=490 1\$aLeaḃairíní Gaeḋilge le hAġaiḋ an tSluaiġ ;$v3
=500 \\$aCover title.
=650 \0$aIrish language$vReaders.
=830 \0$aLeabhairíní Gaeilge le hAghaidh an tSluaigh ;$v3.
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 05/06/2002
=950 \\$aOL
=994 \\$aE0$bBXM
=LDR 00953nam a2200313Ii 4500
=001 99121258640001021
=005 20130327154414.0
=008 120610s1904\\\\ie\a\\\j\\\\\\000\1\gle\d
=035 \\$a(Aleph)000440484BCL01
=035 9\$aACQ5945
=035 \\$a(OCoLC)ocm06247096
=040 \\$aMNT$cMNT
=041 0\$agleeng
=049 \\$aBXMM
=090 \\$aPB1225$b.C8
=100 1\$aCraig, J. P.$q(James Patrick)
=240 10$aIasgaireacht Séamuis bhig
=245 10$aIasgaireaċt Ṡéamuis ḃig /$cle Séamus 'A Creag.
=260 \\$aDublin :$bSealy, Bryers, & Walker,$c1904.
=300 \\$a121 p. :$bill. ;$c19 cm.
=440 \0$aModern Irish texts ;$v4
=500 \\$aSeries statement from cover.
=546 \\$aText in Irish with glossary and notes in Irish and English.
=650 \0$aIrish language$vReaders.
=901 \\$aDigitized$bBCL$pEntire work$sBC20130317
=948 \\$aLTI 08/08/2000
=948 \\$aLTI 03/06/2002
=950 \\$aOL
=994 \\$aE0$bBXM
=LDR 01400nam a2200361 4500
=001 99123058420001021
=004 AFH1230
=005 20130412114246.0
=008 120610s1919\\\\enk\\\\\\\\\\\000\0\iri\c
=010 \\$a20002550
=035 \\$a(Aleph)000868558BCL01
=035 \\$a(OCoLC)ocm01110620
=035 9\$aAFH1230
=040 \\$aDRB$cDRB$dBXM
=041 1\$airieng$hlat
=049 \\$aBXMM
=050 0\$aPB1347$b.I7 vol. 19
=245 00$aGabháltas Serluis Mhóir.$bThe conquests of Charlemagne;$ced. from the Book of Lismore and three other vellum mss., by Douglas Hyde.
=246 31$aConquests of Charlemagne