-
Notifications
You must be signed in to change notification settings - Fork 0
/
urlsample-records.mrk
3427 lines (3251 loc) · 169 KB
/
urlsample-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 01049nam a2200289Ki 4500
=008 130515s1860\\\\ie\g\\\\o\\\\\000\0\eng\d
=041 1\$aenggle$hgle
=043 \\$ae-ie---
=090 \\$aPB1395.M7$bM3 1860eb
=245 04$aThe poets and poetry of Munster$h[electronic resource] :$ba selection of Irish songs by the poets of the last century /$cwith poetical translations by James Clarence Mangan ; biographical sketches of the authors by John O'Daly.
=250 \\$a3rd ed.
=260 \\$aDublin :$bJ. O'Daly,$c1860.
=300 \\$a290 p. :$bmusic ;$c16 cm.
=650 \0$aIrish poetry$zIreland$zMunster$xTranslations into English.
=650 \0$aSongs, Irish$zIreland$zMunster$xTranslations into English.
=651 \0$aMunster (Ireland)$vPoetry.
=700 1\$aMangan, James Clarence,$d1803-1849
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99100743450001021$w(OCoLC)ocm44429503
=940 \\$aOCA
=LDR 02322nam a2200481Ki 4500
=008 130515m19021914enk\\\\\o\\\\\000\0\eng\\
=041 0\$aenggle
=043 \\$ae-ie---
=090 4$aDA930$b.K4 1902eb
=090 0$aPB1353$b.I6 vol. 4, 8-9 1902eb
=082 04$a941.51
=100 1\$aKeating, Geoffrey,$d1570?-1644?
=245 14$aThe history of Ireland$h[electronic resource] /$cby Geoffrey Keating, D.D., ed. with translation and notes by David Comyn [and Patrick S. Dinneen].
=260 \\$aLondon :$bPublished for the Irish texts Society by D. Nutt,$c1902-14.
=300 \\$a4 v. ;$c23 cm.
=490 1\$aPublications - Irish Texts Society ;$v4, 8, 9, 15
=500 \\$aVol. 1, edited by David Comyn; v. 2-4, by Rev. Patrick S. Dinneen.
=500 \\$aIrish and English on opposite pages.
=505 0\$aI. Containing the Introduction and the first book of the history. 1902.--II. Containing the first book of the history from sect. XV to the end. 1908.--III. Containing the second book of the history. 1908.--IV. Containing the genealogies and synchronisms, with an index which includes the elucidation of place names and annotations to text of Vols. I. II. III. 1914.
=650 07$aGeschichte.$2swd
=651 \0$aIreland$xHistory$yTo 1172.
=651 \7$aIrland$2swd
=700 1\$aComyn, David,$d1854-1907,$eed.
=700 1\$aDinneen, Patrick S.$q(Patrick Stephen),$d1860-1934,$eed.
=776 08$iOnline version:$aKeating, Geoffrey, 1570?-1644?$tHistory of Ireland.$dLondon, Published for the Irish texts Society by D. Nutt, 1902-14$w(OCoLC)603333924
=776 08$iOnline version:$aKeating, Geoffrey, 1570?-1644?$tHistory of Ireland.$dLondon, Published for the Irish texts Society by D. Nutt, 1902-14$w(OCoLC)610030802
=810 2\$aIrish Texts Society$n(4,8,9,15)
=830 \0$aIrish Texts Society (Series) ;$vv. 4, 8, 9, 15.
=938 \\$aKirtas Technologies, Inc.$bKRTS$n508556
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99101303260001021$w(OCoLC)ocm01697855
=940 \\$aOCA
=LDR 01254nam a2200277Ki 4500
=008 130515s1913\\\\ie\acfg\o\\\\\000\0dgle\d
=090 \\$aPB1399.B67$bS45 1913eb
=100 1\$aBreathnach, Micheál,$d1881-1908.
=245 10$aSlioÄt de sgrÃoá¸inniḠá¹ÃÄÃl á¸reaṫnaiÄ¡$h[electronic resource] :$bmaille le n-a á¸eaṫaiḠ/$cTomás Mac Doá¹naill do sgrÃoá¸.
=246 3\$aSliocht de sgrÃbhinnibh MhÃchÃl Bhreathnaigh
=260 \\$aBaile Ãṫa Cliaṫ :$bM.H. Guill agus a á¹ac,$c1913.
=300 \\$axxxviii, 123 p., [4] leaves of plates :$bill., music, ports. ;$c19 cm.
=505 0\$aRéaá¹á¸ocal.--Beaṫa á¹ÃÄÃl á¸reaṫnaiÄ¡.--Seilg i measg na nAlp.--Lean lorg na laoÄra.--An triúr amadán.--An céad lá ar meallaḠmé ó'n sgoil.--Seilg na meaá¸on oiá¸Äe.--Sgéala ó'n doá¹an ṫoir.--Coá¹ráḠcois teineaá¸.--ÃráideaÄt.--LitreaÄa.--Filiá¸eaÄt.
=600 10$aBreathnach, Micheál,$d1881-1908.
=700 12$aMac Domhnaill, Tomás.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99101651650001021$w(OCoLC)ocm06999192
=940 \\$aOCA
=LDR 01169nam a2200337Ki 4500
=008 130515s1892\\\\enk\\\\\o\\\\\000\1\iri\\
=041 0\$airieng
=090 \$aPB1347$b.O5 1892eb
=100 1\$aO'Grady, Standish Hayes,$d1832-1915$eed. and tr.
=245 10$aSilva gadelica (I-XXXI)$h[electronic resource] :$ba collection of tales in Irish with extracts illustrating persons and places /$ced. from mss. and tr. by Standish H. O'Grady.
=260 \\$aLondon :$bWilliams and Norgate,$c1892.
=300 \\$a2 v. ;$c26 cm.
=500 \\$aIncludes hagiology, legend, Ossianic lore, and fiction.
=505 0\$av. 1. Irish text.--v. 2. Translation and notes.
=650 \0$aIrish literature.
=650 \0$aFolklore$zIreland.
=650 \0$aIrish literature$vTranslations into English$xTranslations into English.
=650 \0$aEnglish literature.
=650 \0$aTales$zIreland.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99101659880001021$w(OCoLC)ocm02503575
=940 \\$aOCA
=LDR 01077nam a2200301Ki 4500
=008 130515s1917\\\\enka\\\\o\\\\\000\0\eng\\
=090 \$aPB53$b.P3 1917eb
=090 \\$aPB35$b.P2 1917eb
=100 1\$aPalmer, Harold E.,$d1877-1949.
=245 14$aThe scientific study & teaching of languages$h[electronic resource] :$ba review of the factors and problems connected with the learning and teaching of modern languages, with an analysis of the various methods which may be adopted in order to attain satisfactory results /$cby Harold E. Palmer.
=260 \\$aLondon :$bG. Harrap & company,$c1917.
=300 \\$a328 p. :$bfold. diagrs. ;$c24 cm.
=650 \0$aLanguages, Modern$xStudy and teaching.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99102841990001021$w(OCoLC)ocm05512766
=940 \\$aOCA
=856 40$uhttp://www.archive.org/details/scientificstudyt00palm
=LDR 01234nam a2200313Ki 4500
=008 130515s1895\\\\ie\\\\\\o\\\\\000\1\gle\d
=041 1\$agle$aeng$hgle
=090 \\$aPB1397$b.T752 1895eb
=130 0\$aTóruigheacht Dhiarmada agus Ghráinne.$lIrish & English.
=245 10$aTóruiÄ¡eaÄt á¸iarmuda agus Ä ráinne =$bThe pursuit of Diarmuid and Grainne /$cre-edited for the Society for the Preservation of the Irish Language, with notes, and a complete vocabulary by Richard J. O'Duffy.
=246 31$aPursuit of Diarmuid and Grainne
=250 \\$aNew and enl. ed.
=260 \\$aDublin :$bM.H. Gill,$c1895.
=300 \\$a2 v. in 1 ;$c16 cm.
=500 \\$aText in Irish with English translation, introduction, and notes.
=500 \\$aPt. 2 introduction signed "S. H. O'G.," Standish Hayes O'Grady.
=600 00$aFinn MacCumhaill,$d3rd cent.
=650 \0$aEpic literature, Irish.
=700 1\$aO'Duffy, Richard J.
=700 1\$aO'Grady, Standish Hayes,$d1832-1915.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99103576250001021$w(OCoLC)ocm56983699
=940 \\$aOCA
=LDR 00876nam a2200289Ki 4500
=008 130515s1873\\\\nyu\\\\\o\\\\\000\0\eng\d
=090 \\$aPB1223$b.B7x 1873eb
=100 1\$aBourke, Ulick J.$q(Ulick Joseph),$d1829-1887.
=245 10$aEasy lessons$h[electronic resource] :$bor, Self-instruction in Irish /$cby Ulick J. Bourke.
=246 3\$aSelf-instruction in Irish
=260 \\$aNew York :$bHaverty,$c1873.
=300 \\$a390 p. ;$c19 cm.
=650 \0$aIrish language$xGrammar.
=650 \0$aIrish language$xSelf-instruction.
=650 \0$aIrish language$vReaders.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99103689760001021$w(OCoLC)ocm03386677
=940 \\$aOCA
=856 40$uhttp://www.archive.org/details/easylessonsorself00bour
=LDR 00967nam a2200253Ki 4500
=008 130515s1863\\\\enkd\\\\ob\\\\001\0\eng\d
=041 1\$aeng$hger
=090 \\$aPB1283$b.E35 1863eb
=100 1\$aEbel, Hermann Wilhelm,$d1820-1875.
=245 10$aCeltic studies$bfrom the German /$cof Dr. Hermann Ebel, with an introduction on roots, stems, and derivatives, and on case-endings of nouns in the Indo-European languages by William K. Sullivan ...
=260 \\$aLondon ;$aEdinburgh :$bWilliams and Norgate,$c1863.
=300 \\$axxviii, [3]-221, [1] p. :$bfold. chart. ;$c23 cm.
=504 \\$aIncludes bibliographical references and indexes.
=650 \0$aCeltic languages.
=700 1\$aSullivan, W. K.$q(William Kirby),$d1821-1890.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99104851590001021$w(OCoLC)ocm15242013
=940 \\$aOCA
=856 40$uhttp://www.archive.org/details/celticstudiesfro00ebel
=LDR 01232nam a2200337Ki 4500
=008 130515s1852\\\\ie\\\\\\o\\\\\001\1\gle\d
=043 \\$ae-ie---
=090 4$aPB1398$b.O4 1852eb
=100 1\$aO'Daly, Aengus,$dd. 1617.
=245 14$aThe tribes of Ireland$h[electronic resource] :$ba satire /$cby Aenghus O'Daly ; with poetical translation by the late James Clarence Mangan ; together with an historical account of the family of O'Daly ; and an introduction to the history of satire in Ireland by John O'Donovan.
=260 \\$aDublin :$bJ. O'Daly,$c1852.
=300 \\$a112 p. ;$c23 cm.
=500 \\$aIrish and English on opposite pages.
=500 \\$aIncludes index.
=530 \\$aAlso issued online.
=600 30$aDaly family.
=651 \0$aIreland$xHistory$vSources.
=700 1\$aMangan, James Clarence,$d1803-1849.
=700 1\$aO'Donovan, John,$d1809-1861.
=938 \\$aKirtas Technologies, Inc.$bKRTS$n303945
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99105155140001021$w(OCoLC)ocm03992278
=940 \\$aOCA
=LDR 00735nam a2200229Ki 4500
=008 130515s1909\\\\ie\\\\\\o\\\\\000\0\eng\d
=090 \\$aPB1281$b.M4 1909eb
=100 1\$aMeyer, Kuno,$d1858-1919.
=245 12$aA primer of Irish metrics$h[electronic resource] :$bWith a glossary and an appendix containing an alphabetical list of the poets of Ireland.
=260 \\$aDublin:$bSchool of Irish Learning,$c1909.
=300 \\$avii, 63 p. ;$c21 cm.
=650 \0$aIrish language$xVersification.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99105863190001021$w(OCoLC)ocm27779266
=940 \\$aOCA
=856 40$uhttp://www.archive.org/details/primerofirishmetr00meye
=LDR 00807nam a2200253Ki 4500
=008 130515s1908\\\\enk\\\\\o\\\\\000\0\eng\d
=090 \\$aPB1347$b.I7 vol.10 1908eb
=100 1\$aMacalister, Robert Alexander Stewart,$d1870-1950.
=245 14$aThe story of the crop-eared dog$h[electronic resource] :$bthe story of Eagle-boy.
=260 \\$aLondon :$bFor the Irish texts society by D. Nutt,$c1908.
=300 \\$a207 p. ;$c23 cm.
=440 \0$aIrish Texts Society (Series) ;$vvol. 10
=600 10$aMacalister, Robert Alexander Stewart,$d1870-1950.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99106317740001021$w(OCoLC)ocm11669317
=940 \\$aOCA
=LDR 01026nam a2200301Ki 4500
=008 130515s1902\\\\ie\\\\\\o\\\\\000\0\gle\d
=041 1\$agleeng
=090 \\$aPB1227$b.A33 1902eb
=100 1\$aAhern, James L.
=245 10$aLeaá¸ar mion-cainte i nGaeá¸ilg & i mBéarla =$bAn Irish-English conversation book /$cSéamus L. Ã' Acaoirinn.
=246 3\$aLeabhar mion-cainte i nGaeilge & i mBéarla
=246 30$aIrish-English conversation book
=260 \\$aWaterford :$bN. Harvey,$c1902.
=300 \\$av. ;$c21 cm.
=500 \\$aCover title.
=500 \\$a"Compiled for the Waterford Branch of the Gaelic League"--Cover.
=546 \\$aPhrases given in Irish and English.
=650 \0$aIrish language$vConversation and phrase books.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99106346220001021$w(OCoLC)ocm49684002
=940 \\$aOCA
=856 40$3pt.1$uhttp://www.archive.org/details/leaarmioncaintei01aher
=856 40$3pt.2$uhttp://www.archive.org/details/leaarmioncaintei02aher
=LDR 01040nam a2200325Ki 4500
=008 130515s1908\\\\ie\\\\\\o\\\\\000\1\gle\d
=041 0\$agleng
=090 \\$aPB1225$b.S54 1908eb
=100 1\$aSheehan, M.$q(Michael),$d1870-1945.
=245 10$aCnó coilleaḠcraoá¸aiÄ¡e$h[electronic resource] :$bthe Irish of the people /$cby M. Sheehan.
=246 3\$aCnó coilleadh craobhaighe
=246 30$aIrish of the people
=250 \\$aSchool ed.
=260 \\$aDublin :$bGill,$c1908.
=300 \\$a97 p. ;$c19 cm.
=500 \\$aPreface signed "Micheál à SÃothcháin."
=546 \\$aText in Irish, notes in Irish and English, and preface in English.
=650 \0$aIrish language$vReaders.
=650 \0$aFolk literature, Irish.
=650 \0$aFolklore$zIreland$zWaterford (County).
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99106346240001021$w(OCoLC)ocm49684001
=940 \\$aOCA
=856 40$uhttp://www.archive.org/details/cncoilleacraoaie00shee
=LDR 01417nam a2200373Ki 4500
=008 130515s1883\\\\ie\\\\\\o\\\\\000\0\eng\d
=041 1\$aenggle$hgle
=090 \\$aPB1423$b.A54 1883eb
=130 0\$aAided chlainne Lir.
=245 10$aOiá¸e Äloinne Lir =$bThe fate of the children of Lir.
=246 30$aOidhe chloinne Lir
=246 1\$aFate of the children of Lir
=260 \\$aDublin :$bM.H. Gill,$c1883.
=300 \\$axvi, 147 p. ;$c17 cm.
=500 \\$a"Published for the Society for the Preservation of the Irish Language."
=500 \\$aText, translation and notes taken, with some revision, from Eugene O'Curry's edition in Atlantis, v. 4.--cf. Pref.
=500 \\$aEdited by R.J. O'Duffy.--cf. Ireland (Eire). National Library, Dublin. Bibliography of Irish philology ... Dublin, 1913, p. 82.
=546 \\$aText in Irish and English.
=650 \0$aSagas, Irish Gaelic$xCycle of mythology and Tuatha de Danann.
=700 1\$aO'Duffy, Richard J.,$eed.
=700 1\$aO'Looney, Brian,$eed.
=710 2\$aSociety for the Preservation of the Irish Language.
=740 0\$aOidhe chloinne Lir.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99106348480001021$w(OCoLC)ocm48902514
=940 \\$aOCA
=LDR 01092nam a2200277Ki 4500
=008 130515s1915\\\\ie\\\\\\o\\\\\000\1\gle\d
=041 0\$agleeng
=090 \\$aPB1399.O544$bG83 1915eb
=100 1\$aO'Leary, Peter,$d1839-1920.
=245 10$aGuaire$h[electronic resource] /$cPeadar Ua LaoÄ¡aire do sgrÃoḠó'n seana-sgéal "Imtheacht na tromdháime" ; Conall CearnaÄ do Äuir i n-eagar.
=260 \\$aBaile Ãṫa Cliaṫ :$bMuintir na Leaá¸ar Gaeá¸ilge :$bBrún agus à Nóláin,$c1915.
=300 \\$a2 v. ;$c19 cm.
=500 \\$a"Guaire is a modernization of the old tale, Imtheacht na trom-dháimhe,... and has also been designated as 'The introduction to Táin bó Cuailgne'"--Introduction.
=546 \\$aText in Irish with explanatory material in English.
=730 0\$aImtheacht na tromdháimhe.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99106349590001021$w(OCoLC)ocm49706198
=940 \\$aOCA
=LDR 00942nam a2200289Ki 4500
=008 130515s1903\\\\ie\\\\\\o\\\\\000\0\gle\d
=041 0\$agleeng
=090 \\$aPB1227$b.O255 1903eb
=100 1\$aà Conceanainn, Tomás Bán,$d1870-1961.
=245 10$aMion-Äoá¹ráá¸$h[electronic resource] :$bleaá¸ar cainte Gaeá¸ilge-Béarla /$cTomás Ua ConÄeanainn.
=246 3\$aMion-chomhrádh
=246 30$aLeaá¸ar cainte Gaeá¸ilge-Béarla
=246 3\$aLeabhar cainta Gaedhilge-Béarla
=260 \\$aBaile Ãṫa Cliaṫ :$bConnraḠna Gaeá¸ilge,$c1903.
=300 \\$ax, 161 p. ;$c18 cm.
=650 \0$aIrish language$vConversation and phrase books.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99106350440001021$w(OCoLC)ocm21492254
=940 \\$aOCA
=856 40$uhttp://www.archive.org/details/mionorleaarcaint00conc
=LDR 00988nam a2200301Ki 4500
=008 130515s1899\\\\ie\\\\\\o\\\\\000\pdgle\d
=041 0\$agleeng
=090 \\$aPB1398.D46$bA65 1899eb
=100 1\$aDenn, Patrick,$d1756-1828.
=245 10$aAighneas an pheacaig leis an m-bas$h[electronic resource] :$bcommonly known as Eachtra an bháis /$cedited with introduction and vocabulary [by P. Power]
=246 30$aEachtra an bháis
=260 \\$aWaterford :$bHarvey,$c1899.
=300 \\$a24 p. ;$c19 cm.
=546 \\$aReligious poem in Irish with explanatory material in English.
=650 \0$aIrish poetry.
=700 1\$aO Suilleabhain, Tadhg Gaelach,$d1715-1795$esupposed author.
=700 1\$aPower, P.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99106350490001021$w(OCoLC)ocm06313975
=940 \\$aOCA
=LDR 00818nam a2200253Ki 4500
=008 130515s1919\\\\ie\a\\\\o\\\\\000\f\gle\d
=090 \\$aPB1399.O797$bJ56 1919eb
=100 1\$aà Siochfhradha, Pádraig,$d1883-1964.
=245 10$aJimÃn á¹Ã¡ire Ṫaiá¸g$h[electronic resource] /$c"An Seaá¸ac" do scrÃoḠ(Pádraig à SioÄá¸raá¸a)
=246 3\$aJimÃn Mháire Thaidhg
=260 \\$aBaile Ãṫa Cliaṫ :$bCoá¹luÄt OideaÄais na hÃireann,$c1919.
=300 \\$a[ii], 115 p. :$bill. ;$c19 cm.
=650 \0$aIrish language.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99106350600001021$w(OCoLC)ocm06472463
=940 \\$aOCA
=LDR 00850nam a2200253Ki 4500
=008 130515s1820\\\\stk\\\\\o\\\\\000\0\lat\\
=090 \\$aPB1357$b.M13 1820eb
=100 1\$aMacpherson, James,$d1736-1796.
=245 10$aPhingalÄis$h[electronic resource] :$bsive Hibernia liberata, epicum Ossianis poema, e celtico sermone conversum, tribus praemissis disputationibus, et subsequentibus notis /$cAugusto Frederico ... Sussexiae duci, dictatum. Ab A. Macdonald.
=260 \\$aEdinburgi :$bJ. Moir,$c1820.
=300 \\$a228 p. ;$c26 cm.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99107207470001021$w(OCoLC)ocm03783496
=940 \\$aOCA
=LDR 01016nam a2200313Ki 4500
=008 130515s1904\\\\ie\\\\\\o\\\\\001\0\gle\d
=090 \\$aPB1225.C5$bB7 1904eb
=245 00$aBolg an t-soláṫair$h[electronic resource] :$bcnuasaÄ sean-rócán /$c"FÃnÄ¡in na Leaá¹na" do á¸ailiÄ¡.
=246 3\$aBolg an t-soláthair
=260 \\$aI mBaile Ãṫa Cliaṫ :$bar n-a Äur i gcló do ÄonnraḠna Gaeá¸ilge,$c1904.
=300 \\$a40 p. ;$c18 cm.
=440 \0$aLeaá¸airÃnà Gaeá¸ilge le haÄ¡aiḠan tsluaiÄ¡ ;$v14
=500 \\$aIncludes word index.
=650 \0$aBallads, Irish.
=650 \0$aSongs, Irish.
=700 1\$aMac Coluim, Fionán,$d1875-,$ecomp.
=773 18$w(Aleph)001919817BCL50$gno. 39031011757309
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99107207910001021$w(OCoLC)ocm06428926
=940 \\$aOCA
=856 40$uhttp://www.archive.org/details/bolgtsolaircnuas00macc
=LDR 00969nam a2200313Ki 4500
=008 130515s1913\\\\ie\\\\\\o\\\\\001\0\iri\d
=041 0\$airieng
=090 \\$aPB1223$b.O15 1913eb
=100 1\$aà Catháin, Seán,$dd. 1937.
=245 10$aCeaÄta cainnte gramadaiÄ¡e$h[electronic resource] :$bthe practical grammar of modern Irish /$cby Seaġán à Caṫáin.
=246 3\$aCeachta cainnte gramadaighe
=250 \\$a4th ed., enl.
=260 \\$aBaile Ãṫa Cliaṫ :$bM. H. MacGuill,$c1913.
=300 \\$a224 p. ;$c23 cm.
=500 \\$aAt head of title: Do-Äum glóire Dé agus onóra na h-Ãireann.
=500 \\$aIncludes index.
=650 \0$aIrish language$xGrammar.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99107208070001021$w(OCoLC)ocm06701377
=940 \\$aOCA
=856 40$uhttp://www.archive.org/details/ceatacainntegram00cath
=LDR 01152nam a2200301Ki 4500
=008 130515s1913\\\\gw\\\\\\ob\\\\000\0\ger\\
=090 \$aPB35$b.F5 1913eb
=100 1\$aFlagstad, Christian Benedict,$d1867-
=245 10$aPsychologie der sprachpädagogik$h[electronic resource] :$bversuche zu einer darstellung der prinzipien des fremdsprachlichen unterrichts auf grund der psuchologischen natur der sprache /$cvon Chr. B. Flagstad ... Mit einigen kürzungen und änderungen vom verfasser aus dem dänischen übersetzt.
=260 \\$aLeipzig ;$aBerlin :$bB.G. Teubner,$c1913.
=300 \\$axxviii, 370 p. ;$c23 cm.
=504 \\$a"Verzeichnis der angeführten literatur": p.[xxv]-xxviii.
=650 \0$aLanguages, Modern$xStudy and teaching.
=650 \0$aLanguage and languages$xStudy and teaching.
=650 \0$aLanguage and languages.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99107209340001021$w(OCoLC)ocm18313142
=940 \\$aOCA
=856 40$uhttp://www.archive.org/details/psychologiedersp00flag
=LDR 00783nam a2200253Ki 4500
=008 130515s1919\\\\ie\\\\\\o\\\\\000\0\iri\d
=090 \\$aPB1397.A34$bO433 1919eb
=100 10$aKnott, Eleanor.
=245 10$aFoclóir d'Eisirt$h[electronic resource] /$cEleanor Knott do Äuir le Äéile.
=260 \\$aBaile Ãṫa Cliaṫ :$bBrún agus à Nóláin,$c1919?
=300 \\$a56 p. ;$c19 cm.
=700 1\$aO'Leary, Peter,$d1839-1920.$tEisirt.
=940 \\$aIRISH WOMEN WRITERS, NINETEENTH, EARLY TWENTIETH CENTURY
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99107301960001021$w(OCoLC)ocm41306125
=940 \\$aOCA
=LDR 01356nam a2200265Ki 4500
=008 130515s1818\\\\enk\\\\\o\\\\\000\0\eng\d
=043 \\$an-gl---
=090 \\$aPB1283$b.V3 1818eb
=100 1\$aVallancey, Charles,$d1721-1812.
=245 13$aAn essay on the antiquity of the Irish language$h[electronic resource] :$bbeing a collation of the Irish with the Punic language /$cwith a preface, proving Ireland to be the Thule of the ancients addressed to the literati of Europe, to which is added a correction of the mistakes of Mr. LH Wyd in reading the ancient Irish manuscript Lives of the patriarchs ; and of those committed by Mr.Baretti in his Collation of the Irish with the Biscayan language And, Remarks on the Essay on the antiquity of the Irish language, addressed to the printer of the London Chronicle, in the year 1772, By Charles Vallancey.
=250 \\$a3d ed.
=260 \\$aLondon :$bPrinted for Richard Ryan,$c1818.
=300 \\$a115 p. ;$c22 cm.
=500 \\$a"Printed verbatim from the second edition in Colonel Vallancey's Collectanea."
=650 \0$aIrish language.
=651 \0$aQaanaaq (Greenland)
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99107500800001021$w(OCoLC)ocm02624338
=940 \\$aOCA
=856 40$uhttp://www.archive.org/details/essayonantiquity00vall
=LDR 01499nam a2200373Ki 4500
=008 130515s1892\\\\ie\\\\\\ob\\\\001\0\lat\b
=041 0\$alateng
=090 \$aPB1202$b.A2 vol.3 1892eb
=090 \\$aPB1202.A2$bM32x 1892eb
=100 1\$aMacCarthy, Bartholomew,$eed.
=245 14$aThe Codex palatino-vaticanus, no. 830$h[electronic resource] :$b(texts, translations and indices) /$cby B. MacCarthy, D. D.
=260 \\$aDublin :$bAcademy House,$c1892.
=300 \\$a450 p. ;$c22 cm.
=490 1\$aRoyal Irish academy. Todd lecture series ;$vv. 3
=500 \\$aA description of the codex, and of the chronicle of Marianus scotus which it contains, with the passages of Irish interests, "hagiographic, linguistic, and historical", from the chronicle; also illustrative extracts from the Leabhar braec, the Books of Leinster and Ballymote, and the Annals of Tigernach.
=504 \\$aIncludes bibliographical references and indexes.
=650 \0$aIrish language$xVersification.
=700 0\$aMarianus Scotus,$d1028-1082?
=730 0\$aCodex palatino-vaticanus, no. 830.
=730 0\$aLeabhar braec.
=730 0\$aBook of Leinster.
=730 0\$aLeabhar Bhaile an Mhuta.
=830 \0$aTodd lecture series$vv. 3..
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99107583730001021$w(OCoLC)ocm04102954
=940 \\$aOCA
=856 40$uhttp://www.archive.org/details/codexpalatinovati00macc
=LDR 01204nam a2200313Ki 4500
=008 130515s1908\\\\ie\\\\\\o\\\\\000\0\lat\\
=041 0\$alatengiri
=090 \$aPB1281$b.M6 1908eb
=090 \\$aPB1281$b.M64x 1908eb
=100 1\$aMolloy, Francis,$dfl. 1660.
=245 10$aDe prosodia hibernica:$h[electronic resource] /$cauthore reverendo patre fratre Francisco ó Molloy...[Romae: MDCLXXVII] On Irish prosody: written by the Rev. Father Francis ó Molloy...at Rome, A.D. 1677 and now translated by Tomás à Flannghaile.
=260 \\$aDublin :$bM. H. Gill & son, ltd.,$c1908.
=300 \\$avii, 114 p. ;$c19 cm.
=500 \\$aLast twelve chapters of the author's "Grammatica latino- hibernica."
=500 \\$aLatin and English on opposite pages.
=500 \\$aIrish poems, some with Latin versions, mostly by the author (p. 108- 114)
=650 \0$aIrish language$xRhythm.
=700 1\$aFlannery, Thomas,$d1846-1916,$eed. and tr.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99107584030001021$w(OCoLC)ocm02379416
=940 \\$aOCA
=856 40$uhttp://www.archive.org/details/deprosodiahiberni00moll
=LDR 00813nam a2200253Ki 4500
=008 130515s1919\\\\ie\\\\\\o\\\\\000\1\iri\d
=090 \\$aPB1399.L4$bE3 1919eb
=130 0\$aAided Fergusa.
=245 10$aEisirt$h[electronic resource] /$can t-Aṫair Peadar Ua LaoÄ¡aire, CanónaÄ, S.P., do sgrÃoḠó'n seana sgéal "EaÄtra rÃÄ¡ Ṫuaiṫe LuÄra is lupracán go h-Eaá¹ain".
=260 \\$aBaile Ãṫa Cliaṫ :$bBrún agus Nuallán,$c1919.
=300 \\$a102 p. ;$c17 cm.
=700 1\$aO'Leary, Peter,$d1839-1920
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99108494750001021$w(OCoLC)ocm06572663
=940 \\$aOCA
=LDR 00886nam a2200277Ki 4500
=008 130515s1919\\\\ie\\\\\\o\\\\\000\0\iri\d
=090 \\$aPB1399.L4$bA6 1919eb
=100 1\$aO'Leary, Peter,$d1839-1920.
=245 10$aÃr ndóiṫin araon$h[electronic resource] /$can t-Aṫair Peadar Ua LaoÄ¡aire, CanonaÄ, S.P., do sgrÃoḠ; an t-Aṫair Risteard Pléimeann d[o] Äuir i n-eagar.
=246 3\$aÃr ndóithin araon
=260 \\$aBaile Ãṫa Cliaṫ :$bBrún agus Nuallán,$c1919.
=300 \\$av, 110 p. ;$c18 cm.
=650 \0$aFolklore$zIreland.
=700 1\$aPléimeann, Risteárd,$eed.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99108495140001021$w(OCoLC)ocm06728271
=940 \\$aOCA
=LDR 01130nam a2200313Ki 4500
=008 130515s1914\\\\ie\g\\\\o\\\\\000\0biri\d
=043 \\$ae-uk---
=045 \\$au4u4
=090 \\$aPB1399.L2$bA3 1914eb
=100 1\$aMac Neill, Eoin,$d1867-1945.
=245 10$aAlasdair Mac Colla$h[electronic resource] :$bsain-eolus ar a Ä¡nÃoá¹arṫaiḠgaisge /$cSeosaá¹ Laoide do Äuir le Äéile ; déantúsaà Eoin á¹ac Néill agus ó Niall Mac á¹uireaá¸aiÄ¡ sa leaá¸ar so.
=260 \\$aBaile Ãṫa Cliaṫ :$bClóá¸anna Teo., ar n-a Äur amaÄ do ÄonnraḠna Gaeá¸ilge,$c1914.
=300 \\$axx, 76 p. :$bill., music ;$c18 cm.
=600 10$aMacColla, Alasdair,$dd. 1647.
=651 \0$aGreat Britain$xHistory$yCivil War, 1642-1649.
=700 1\$aMac Muiredaigh, Niall,$dfl. 1700.
=700 1\$aLaoide, Seosamh,$dd. 1939,$eed.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99108495290001021$w(OCoLC)ocm06096543
=940 \\$aOCA
=LDR 01044nam a2200301Ki 4500
=008 130515s1905\\\\ie\\\\\\o\\\\\001\0\iri\d
=041 0\$airieng
=090 \\$aPB1399.H7$bT2 1905eb
=100 0\$aFinn MacCumhaill,$d3rd cent.
=245 10$aTeaÄt & imṫeaÄt an Ä iolla Deacair & tóruiÄ¡eaÄt Äonáin & a ÄuideaÄtan$h[electronic resource] /$cSeaÄ¡an Ua hÃgáin & Seosaá¹ Laoide do Äuir i n-eagar.
=246 3\$aTeacht & imtheacht an Ghiolla Deacair & tóruigheacht Chonáin & a chuideachtan
=260 \\$a[Baile Ãṫa Cliaṫ] :$bar n-a Äur amaÄ do ÄonnraḠna Gaeá¸ilge,$c1905.
=300 \\$a158 p. ;$c17 cm.
=500 \\$aIncludes indexes.
=700 1\$aO'Hogan, John,$d1869-1947,$eed.
=700 1\$aLaoide, Seosamh,$dd. 1939,$eed.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99108495440001021$w(OCoLC)ocm06472385
=940 \\$aOCA
=LDR 00793nam a2200277Ki 4500
=008 130515s1918\\\\ie\\\\\\o\\\\\000\p\gle\d
=090 \\$aPB1399.O4467$bC35 1918eb
=100 1\$aà hAnnracháin, Peadar,$d1879-
=245 13$aAn Äaise Ä¡arḠ:$h[electronic resource] /$cdánta a scrÃoá¸aḠle Peadar à h-AnnraÄáin.
=246 3\$aChaise gharbh
=260 \\$aAṫ Cliaṫ :$bCló na gCoinneal,$c1918.
=300 \\$a37 p. ;$c19cm.
=500 \\$aPoems in Irish.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99108495900001021$w(OCoLC)ocm21577709
=940 \\$aOCA
=LDR 00960nam a2200289Ki 4500
=008 130515s1916\\\\ie\\\\\\o\\\\\000\0\iri\d
=082 \\$a891.6282
=090 \\$aPB1399$b.H18 1916eb
=100 1\$aHaicead, Padraigin.
=245 10$aSaothar filidheachta an athar PádraignÌı Haicéad d'ord San Doiminic$h[electronic resource] /$car n-a thiomargadh agus ar n-a chuir i n-eagar do Thadhg à Dhonnchadha i. Torna.
=260 \\$aBaile Ãtha Cliath :$bGill,$c1916.
=300 \\$axxiii, 192 p. ;$c19 cm.
=500 \\$a"Ar n-a chur amach do Chumann Bhuanchoimeádtha na Gaeilge" - t.p.
=504 \\$aIncludes bibliographical references
=700 1\$aUa Donnchadha, Tadhg.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99108496320001021$w(OCoLC)ocm17520712
=940 \\$aOCA
=LDR 00774nam a2200265Ki 4500
=008 130515s1901\\\\ie\\\\\\o\\\\\000\1\iri\d
=090 \\$aPB1399.F4$bG7 1901eb
=100 1\$aNÃ Fhaircheallaigh, Ãna.
=245 10$aGráḠagus cráá¸$h[electronic resource] :$búirsgéilÃn /$cÃna Nà FhairÄeallaiÄ¡ do sgrÃoá¸.
=246 3\$aGrádh agus crádh
=260 \\$aBaile Ãṫa Cliaṫ :$bConnraḠna Gaeá¸ilge,$c1901.
=300 \\$a28 p. ;$c16 cm.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99108498240001021$w(OCoLC)ocm20947656
=940 \\$aOCA
=LDR 00750nam a2200265Ki 4500
=008 130515s1910\\\\ie\\\\\\o\\\\\000\1\iri\d
=090 \\$aPB1399.D9$bM9 1910eb
=100 1\$aà Dubhghaill, Séamus,$d1855-1929.
=245 10$aMuinntear na tuaṫa$h[electronic resource] /$cSéamus à Duá¸Ä¡aill do scrÃoá¸.
=246 3\$aMuinntear na tuatha
=260 \\$aBaile Ãṫa Cliaṫ :$bM. H. Gill,$c1910.
=300 \\$a129 p. ;$c18 cm.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99108498520001021$w(OCoLC)ocm17401565
=940 \\$aOCA
=LDR 00945nam a2200265Ki 4500
=008 130515s1901\\\\ie\\\\\\o\\\\\000\1\iri\d
=090 \\$aPB1399.D5$bC8 1901eb
=100 1\$aDinneen, Patrick S.$q(Patrick Stephen),$d1860-1934.
=245 10$aCormac Ua Conaill$h[electronic resource] :$bsgéal á¸aineas le h-ÃirÄ¡e amaÄ agus dÃṫ-ÄeannaḠIarla na Deasá¹uá¹an (A.D. 1579-1583) /$cleis an Aṫair Pádraig Ua DuinnÃn.
=260 \\$aBaile Ãṫa Cliaṫ :$bConnraḠna Gaeá¸ilge,$c1901.
=300 \\$a90 p. ;$c18 cm.
=500 \\$aIncludes word index.
=600 10$aDesmond, Gerald Fitzgerald,$c15th earl of,$dca. 1538-1583$vFiction.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99108498680001021$w(OCoLC)ocm20937158
=940 \\$aOCA
=LDR 00862nam a2200277Ki 4500
=008 130515s1906\\\\ie\\\\\\o\\\\\000\0biri\d
=090 \\$aPB1399.C3$bB81 1906eb
=100 1\$aUa Ceallaigh, Sean,$d1872-1957.
=245 10$aBrian Bóirá¹e$h[electronic resource] :$ba ṡaoÄ¡al agus a á¸eaṫa /$cSeán Ua CeallaiÄ¡ do Äuir le ÄeÃle.
=246 3\$aBrian Bóirmhe
=250 \\$a[1st ed.]
=260 \\$aI mBaile Ãṫa Cliaṫ :$bar n-a Äur amaÄ do ÄonnraḠna Gaeá¸ilge,$c1906.
=300 \\$axii, 131 p. ;$c19 cm.
=600 00$aBrian,$cKing of Ireland,$d926-1014
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99108500040001021$w(OCoLC)ocm06418085
=940 \\$aOCA
=LDR 01083nam a2200325Ki 4500
=008 130515s1902\\\\ie\\\\\\o\\\\\000\0\iri\d
=041 0\$airi$beng
=082 \\$a891.6283
=090 \\$aPB1398$b.S94 1902eb
=100 1\$aà Súilleabháin, Eoghan Ruadh.
=245 10$aAmhráin Eoghain Ruaidh U ÌıShúilleabháin$h[electronic resource] :$bmaille le beathaidh an fhilidh agus foclóir /$ciar n-a gcruinniughadh agus a gcur i n-eagar leis an Athair Pádraig Ua DuinnnÌı.
=250 \\$aAn dara heag.
=260 \\$aBaile Ãtha Cliath :$bConnradh na Gaedhilge,$c1902.
=300 \\$axlviii, 210 p. ;$c18 cm.
=500 \\$aOriginally published: 1901
=500 \\$aIntroduction and notes in English
=504 \\$aIncludes bibliographical references
=700 1\$aUa DuinnnÌı, Pádraig.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99108500840001021$w(OCoLC)ocm17520947
=940 \\$aOCA
=LDR 01010nam a2200289Ki 4500
=008 130515s1905\\\\ie\\\\\\o\\\\\001\0\iri\d
=041 0\$airieng
=090 \\$aPB1398$b.G29 1905eb
=100 1\$aMac Gearait, Piaras.
=245 10$aAá¹ráin á¹iarais á¹ic Gearailt$h[electronic resource] :$ban té be Äeann coá¹airle ar Äúirt na mBúrdún, maille le cunntas éigin ar a á¸eaṫaiḠagus foclóir /$cRiseárd à FoÄ¡luá¸a ("FiaÄra ÃilgeaÄ") do á¸ailiÄ¡ is do Äéad-Äuir i n-eagar a Äéile.
=260 \\$aI mBaile Ãṫa Cliaṫ :$bÄonnraḠna Gaeá¸ilge,$c1905.
=300 \\$aiv, 138 p. ;$c19 cm.
=500 \\$aPoems.
=500 \\$aIncludes word index.
=700 1\$aFoley, Richard,$d1873-1957,$eed.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99108501250001021$w(OCoLC)ocm06051883
=940 \\$aOCA
=LDR 01069nam a2200301Ki 4500
=008 130515s1903\\\\ie\\\\\\o\\\\\001\0\iri\d
=041 0\$airieng
=090 \\$aPB1398.F3$bD31 1903eb
=100 1\$aFerriter, Pierce,$dd. 1653.
=245 10$aDánta á¹iarais Feiritéir$h[electronic resource] :$bmaille le beaṫaiḠan á¸iliḠis foclóir /$ciar n-a gcruinniuÄ¡aḠagus a gcur i gcéad-eagar leis an Aṫair Pádraig Ua DuinnÃn.
=246 3\$aDánta Phiarais Feiritéir
=260 \\$aI mBaile Ãṫa Cliaṫ :$bar n-a gcur amaÄ do ÄonnraḠna Gaeá¸ilge,$c1903.
=300 \\$axxv, [1], 82 p. ;$c19 cm.
=440 \0$aGaelic League series.$pIrish texts ;$v5
=500 \\$aIncludes word index.
=700 1\$aDinneen, Patrick S.$q(Patrick Stephen),$d1860-1934$eed.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99108501370001021$w(OCoLC)ocm06935299
=940 \\$aOCA
=LDR 00938nam a2200289Ki 4500
=008 130515s1915\\\\ie\\\\\\o\\\\\001\0\iri\d
=041 0\$airieng
=090 \\$aPB1398.B8$bL2 1915eb
=130 0\$aTáin bó Cúailnge.
=245 10$aBrisleaÄ á¹Ã³r á¹aiÄ¡e Muirṫeiá¹ne$h[electronic resource] :$bsgéal ruá¸raiÄ¡eaÄta /$cSeosaá¹ Laoide do Äuir i n-eagar.
=260 \\$aBaile Ãṫa Cliaṫ :$bClóá¸anna Teo., ar n-a Äur amaÄ do ÄonnraḠna Gaeá¸ilge,$c1915.
=300 \\$axi, 86 p. ;$c17 cm.
=500 \\$aIncludes index of proper names.
=650 00$aCuchulain (Legendary character)
=700 1\$aLaoide, Seosamh,$dd. 1939,$eed.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99108501790001021$w(OCoLC)ocm06270661
=940 \\$aOCA
=LDR 00787nam a2200265Ki 4500
=008 130515s1908\\\\enk\\\\\o\\\\\000\0\eng\d
=041 0\$airieng
=090 \\$aPB1397.T3$bS81 1908eb
=130 0\$aTáin bó Cúailnge.
=245 10$aStories from the Táin$h[electronic resource] /$cedited, with vocabulary by John Strachan.
=260 \\$aDublin :$bSchool of Irish Learning ;$aLondon :$bD. Nutt,$c1908.
=300 \\$avi, 125 p. :$bfront. (port.) ;$c18 cm.
=700 1\$aStrachan, John,$d1862-1907.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99108501820001021$w(OCoLC)ocm03490481
=940 \\$aOCA
=LDR 01256nam a2200361Ki 4500
=008 130515m18801881ie\\\\\\o\\\\\000\1\gle\d
=041 1\$agleeng$hgle
=090 \\$aPB1397$b.T752 1880eb
=130 0\$aTóruigheacht Dhiarmada agus Ghráinne.
=245 10$aTóruiÄ¡eaÄt á¸iarmuda agus Ä ráinne =$bThe pursuit of Diarmuid and Grainne.
=246 3\$aPursuit of Diarmuid and Grainne
=246 3\$aTóruigheacht Dhiarmuda agus Ghráinne
=260 \\$aDublin :$bM. H. Gill,$c1880-1881.
=300 \\$a2 v. ;$c17 cm.
=500 \\$aText in Irish with English translation, introduction, and notes.
=500 \\$a"Published for the Society for the Preservation of the Irish Language."
=500 \\$aPt. 2 introduction signed "S. H. O'G.," Standish Hayes O'Grady.
=600 00$aFinn MacCumhaill,$d3rd cent.
=650 \0$aEpic literature, Irish.
=700 1\$aO'Grady, Standish Hayes,$d1832-1915.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99108501930001021$w(OCoLC)ocm20803440
=940 \\$aOCA
=LDR 00766nam a2200265Ki 4500
=008 130515s1903\\\\ie\a\\\\o\\\\\000\1\iri\d
=090 \\$aPB1380$b.H6 1903eb
=100 1\$aà hAodha, Tomás.
=245 13$aAn gioblaÄán$h[electronic resource] :$bfinnsgéal nuaá¸-á¸Ã©anta /$cTomás à hAoá¸a do sgrÃoá¸.
=246 3\$aGioblachán
=260 \\$aBaile Ãṫa Cliaṫ :$bConnraḠna Gaeá¸ilge,$c1903.
=300 \\$a108 p. :$bill. ;$c18 cm.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99108502470001021$w(OCoLC)ocm20504476
=940 \\$aOCA
=LDR 00984nam a2200301Ki 4500
=008 130515s1888\\\\ie\\\\\\o\\\\\000\1\eng\d
=041 1\$aengiri$hiri
=090 \\$aPB1423.C55$bS6 1888eb
=245 00$aOiá¸e Äloinne Tuireann =$bThe fate of the Children of Tuireann /$cedited for the Society for the Preservation of the Irish Language, with notes, translation, and a complete vocabulary by Richard J. O'Duffy.
=246 3\$aOidhe Chloinne Tuireann
=260 \\$aDublin :$bGill,$c1888.
=300 \\$axx, 249 p. ;$c17 cm.
=700 1\$aO'Duffy, Richard J.
=730 02$aOidheadh Chloinne Tuireann.
=730 0\$aSraith mhiotaseolaÃoch.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99108511500001021$w(OCoLC)ocm19976472
=940 \\$aOCA
=LDR 00917nam a2200277Ki 4500
=008 130515s1903\\\\ie\a\\\jo\\\\\000\1\iri\d
=090 \\$aPB1399.R9$bS6 1903eb
=100 1\$aRyan, W. P.$q(William Patrick),$d1867-1942.
=245 10$aSÃá¸eóga ag obair$h[electronic resource] :$bsgéalta le h-aÄ¡aiḠan aosa óig /$cUilliam Ua Riain do sgrÃoḠ; [illustrated by Ua Fágáin]
=246 3\$aSÃdheóga ag obair
=260 \\$aBaile Ãṫa Cliaṫ :$bConnraḠna Gaeá¸ilge,$c1903.
=300 \\$a34 p., [4] leaves of plates :$bill. ;$c19 cm.
=440 \0$aSgéalta nua-á¸Ã©anta ;$v6
=700 1\$aUa Fágáin,$eill.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99108512770001021$w(OCoLC)ocm06367092
=940 \\$aOCA
=LDR 01179nam a2200301Ki 4500
=008 130515s1913\\\\ie\\\\\\o\\\\\000\0\iri\d
=041 0\$airieng
=043 \\$ae-ie---
=090 \\$aPB1399.R7$bM2 1913eb
=245 00$aMaiÄ¡dean an tSoluis agus sgéalta eile$h[electronic resource] :$bsgéalaiá¸á¹«e ṪÃre Conaill d'innis /$cFeargus Mac RóiÄ¡ a sgrÃoḠsÃos agus a Äuir i n-eagar.
=246 3\$aMaighdean an tSoluis agus sgealta eile
=260 \\$aDundalk :$bW. Tempest, Dundalgan Press,$c1913.
=300 \\$a67 p. ;$c22 cm.
=505 0\$aMaiÄ¡dean an tSoluis.--An CroÄaire TárnoÄt.--Sgéal an á¸eará¸oá¹ain Äruim.--Ingéan Äormaic á¹ic Ãirt.--LeabaiḠÄluiá¹riÄ¡e.--Bean an á¸iÄ¡eadóra.--An Gasúr a á¸Ã ag imirt CrónaÃ.--SeaÄt n-Ãige, &c.--Tagra.--Foclóir.
=650 10$aFolklore$zIreland$zTirconnell.
=700 1\$aO Muirgheasa, Enri,$ecomp. and ed.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99108512920001021$w(OCoLC)ocm06459977
=940 \\$aOCA
=LDR 00813nam a2200265Ki 4500
=008 130515s1918\\\\ie\\\\\\o\\\\\001\1\iri\d
=090 \\$aPB1399.N3$bS7 1918eb
=100 1\$aà Neachtain, Seán,$d1655-1728.
=245 10$aStair Ãamuinn Uà Chléire$h[electronic resource] /$cdo réir Shéain Uà NeaÄtain ; i n-eagar ag EoÄ¡an à NeaÄtain.
=260 \\$a[Baile Ãṫa Cliaṫ] :$bM. H. Mac an Ghuill,$c1918.
=300 \\$aix, 112 p. ;$c18 cm.
=500 \\$aIncludes word index.
=700 1\$aà Neachtain, Eoghan.$eed.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99108513390001021$w(OCoLC)ocm06509451
=940 \\$aOCA
=LDR 00973nam a2200289Ki 4500
=008 130515s1912\\\\ie\\\\\\o\\\\\000\0\iri\d
=041 0\$airieng
=090 \\$aPB1399.M9$bC3 1912eb
=130 0\$aCeithearnach UÃ Dhomhnaill.
=245 10$aCeiṫearnaÄ Uà á¸oá¹naill$h[electronic resource] :$bnó eaÄtra an ÄeitearnaiÄ¡ Äaoil-Riaá¸aiÄ¡ /$cdo réir druinge ; Ãnrà Ua MuirÄ¡easa do Äuir i n-eagar as láiá¹sgrÃá¸inn OirÄ¡iallaiÄ¡.
=246 3\$aCeithearnach UÃ Dhomhnaill
=260 \\$aI mBaile Ãṫa Cliaṫ :$bar n-a Äur amaÄ do ÄonnraḠna Gaeá¸ilge,$c1912.
=300 \\$axii, 43 p. ;$c19 cm.
=500 \\$aFolk tale.
=700 1\$aO Muirgheasa, Enri,$eed.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99108513680001021$w(OCoLC)ocm06728153
=940 \\$aOCA
=LDR 00928nam a2200277Ki 4500
=008 130515s1906\\\\ie\\\\\\o\\\\\000\1\gle\d
=041 0\$agleeng
=090 \\$aPB1225$b.O63 1906eb
=100 1\$aà Máille, MÃcheál,$dd. 1911.
=245 10$aEoÄaiḠMac Rà 'n-Ãirinn$h[electronic resource] /$cMiÄeál à Máille ("Diarmaid Donn") do scrÃoá¸.
=246 3\$aEochaidh Mac RÃ 'n-Ãirinn
=260 \\$aI mBaile Ãṫa Cliaṫ :$bar n-a Äur amaÄ do ÄonnraḠna Gaeá¸ilge,$c1906.
=300 \\$a70 p. ;$c18 cm.
=440 \0$aSgéalta nua-á¸Ã©anta ;$v6
=546 \\$aText in Irish ; footnotes and glossary in Irish and English.
=650 \0$aIrish language$vReaders.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99108524730001021$w(OCoLC)ocm44171586
=940 \\$aOCA
=856 40$uhttp://www.archive.org/details/eoaimacrnirinn00mill
=LDR 00724nam a2200241Ki 4500
=008 130515s1920\\\\ie\\\\\\o\\\\\000\0\gle\d
=090 \\$aPB1225$b.O635 1920eb
=100 1\$aà Máille, Tomás,$d1880-1938.
=245 14$aAn Ä¡aoṫ aniar$h[electronic resource] /$cTomás à Máille do sgrÃoá¸.
=246 3\$aGhaoth aniar
=260 \\$aBaile Ãṫa Cliaṫ :$bCoá¹luÄt OideaÄais na hÃireann,$c1920.
=300 \\$a174 p. ;$c18 cm.
=650 \0$aIrish language$vReaders.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99108525000001021$w(OCoLC)ocm07907107
=940 \\$aOCA
=856 40$uhttp://www.archive.org/details/aoaniar00mill
=LDR 00882nam a2200277Ki 4500
=008 130515s1920\\\\ie\\\\\\o\\\\\000\0\gle\d
=041 0\$agleeng
=090 \\$aPB1223$b.O66 1920eb
=100 1\$aO'Nolan, Gerald.
=245 12$aA key to the exercises in Studies in modern Irish :$nPart 1$h[electronic resource] /$cby Gerald O'Nolan.
=260 \\$aDublin :$bEducational Co. of Ireland,$c1920.
=300 \\$a77 p. ;$c19 cm.
=546 \\$aText in Irish with explanatory material in English.
=650 \0$aIrish language$xGrammar.
=650 \0$aIrish language$xComposition and exercises.
=740 0\$aStudies in modern Irish.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99108525940001021$w(OCoLC)ocm27468696
=940 \\$aOCA
=856 40$uhttp://www.archive.org/details/keytoexercisesin00onol
=LDR 00891nam a2200289Ki 4500
=008 130515s1921\\\\ie\\\\\\o\\\\\000\0\gle\d
=041 0\$agleeng
=090 \\$aPB1223$b.O32 1921eb
=100 1\$aà CuÃv, Shán,$d1875-1940.
=245 13$aAn cóá¹gar$h[electronic resource] :$bÄun na Gaeá¸ilge d'foÄ¡luim /$cShán à CuÃv, do Äuir le Äéile.
=246 3\$aCómhgar
=250 \\$aNew and rev. ed.
=260 \\$ai mBaile Ãṫa Cliaṫ :$bBrún agus à Nóláin,$c1921.
=300 \\$a24 p. ;$c18 cm.
=500 \\$aCover title.
=546 \\$aText in Irish with prefatory material in English.
=650 \0$aIrish language$xGrammar.
=006 m d
=007 cr uuu---uuuuu
=040 \\$aBXM$cBXM
=533 \\$aElectronic reproduction.$bSan Francisco, Calif. :$cOpen Content Alliance,$d2013.$nMode of access: Internet.
=776 18$cOriginal$w(Alma)99108526570001021$w(OCoLC)ocm49347236
=940 \\$aOCA
=856 40$uhttp://www.archive.org/details/cgarunnagaeilged00cuvs
=LDR 01034nam a2200313Ki 4500
=008 130515s1907\\\\ie\\\\\\o\\\\\000\0\iri\d
=090 \\$aPB1398.M9$bD6 1907eb
=100 1\$aà Murchadha, Seán,$d1700-1762.