-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathliv-en.gen
4275 lines (4275 loc) · 503 KB
/
liv-en.gen
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
S-0 <2en> Pǟgiņ vȯnnõ mäd kolēgõn, ēsti, leț ja ka līvõ kīel kontaktõd tuņšlijizõn Lembit Vaban, kis tämpõ sai Lețmō ja Ēstimō Uļļiztažād ministrijd Kīel ovpālka!
W-0 0.044 seconds
H-0 -0.8061832785606384 Thank you very much for Lembit Vaban, the researcher of contacts with our college, Estonian, Latvian and also Livonian, who today received the honour of Latvian and Estonian Ministry of Foreign Affairs.
D-0 -0.8061832785606384 Thank you very much for Lembit Vaban, the researcher of contacts with our college, Estonian, Latvian and also Livonian, who today received the honour of Latvian and Estonian Ministry of Foreign Affairs.
P-0 -2.1909 -0.6480 -1.4842 -0.0556 -0.9739 -1.8705 -0.0152 -0.1173 -0.0869 -0.8209 -0.2051 -1.5134 -2.1288 -0.4466 -0.3713 -0.3159 -0.3028 -1.2784 -0.3685 -1.6263 -0.3392 -0.0809 -0.2002 -0.0516 -0.3838 -0.9952 -1.1526 -0.0644 -0.6885 -0.0351 -3.1402 -0.1628 -1.2076 -0.7440 -0.9157 -2.4414 -0.2937 -1.0500 -0.1999 -0.1022 -0.8810 -0.2545 -1.6967 -0.8059 -2.1281 -0.2489
S-1 <2en> Tēriņtõm ūdtõ Ēstimō prezidentõ Alar Karis – kunāgizt Tartu Iļīzskūol rektōrt, kis paldīņ, Ēstimō Rov muzej direktōr vȯlds vȱidab līvõd pierādõkst!
W-1 0.044 seconds
H-1 -0.8139235973358154 Speaking to the new president of Estonia, Alar Karis, the former rektor of the University of Tartu, who now, the Director of the Estonian National Museum, holds Livonian traditions!
D-1 -0.8139235973358154 Speaking to the new president of Estonia, Alar Karis, the former rektor of the University of Tartu, who now, the Director of the Estonian National Museum, holds Livonian traditions!
P-1 -1.8711 -0.4256 -0.0949 -0.6513 -1.5872 -0.3171 -1.5416 -0.1860 -0.0828 -1.6127 -0.0348 -0.0640 -0.0381 -0.0793 -0.7294 -2.2212 -0.0477 -3.6491 -0.2921 -0.3782 -1.4147 -0.1151 -0.1186 -0.0470 -0.9066 -0.2853 -2.5423 -1.5484 -0.9981 -2.4064 -0.2601 -0.4968 -0.4588 -0.5648 -0.0401 -0.6732 -1.6451 -0.1937 -2.2914 -0.0585 -0.5746 -0.0499 -2.9057 -0.1878 -0.5896 -0.1636
S-2 <2en> Laimonis Rudzītisõn – Rīgõ līvõd tagāntuļļizõn – 115!
W-2 0.016 seconds
H-2 -0.6281173229217529 For Laimonis Rudzītis – for the backbone of Riga Livs – 115!
D-2 -0.6281173229217529 For Laimonis Rudzītis – for the backbone of Riga Livs – 115!
P-2 -3.1024 -0.3913 -0.1881 -0.0253 -0.0473 -0.0418 -0.0262 -0.6247 -1.2288 -0.4814 -2.1722 -1.2811 -0.0762 -0.1912 -0.7076 -0.8266 -0.2226 -1.4093 -0.3495 -0.0116 -0.2434 -0.1697
S-3 <2en> Kū ažā – Līvõ sõv iļļiskūol ja Lōz täm
W-3 0.041 seconds
H-3 -1.3068686723709106 The six thing – Livonian war high school and Livonian her
D-3 -1.3068686723709106 The six thing – Livonian war high school and Livonian her
P-3 -1.9048 -2.3333 -1.5586 -0.5202 -2.0729 -0.0856 -3.0977 -0.0870 -1.5721 -3.8766 -0.3671 -0.2448 -1.6423 -0.0588 -0.0107 -0.1819 -3.1490 -0.7601
S-4 <2en> Līvõ sõviļīzskūolst, mis sugīz 2013. āigasts, sīe irdõksõks um jaggõvõtājizt īti foto Līvõd rāndas tundtõb Lōz tam jūs.
W-4 0.031 seconds
H-4 -0.8603734970092773 From the Livonian Warrior School, which took place in 2013, its tradition is the similar photo of participants on the Livonian coast known as the Livonian tam.
D-4 -0.8603734970092773 From the Livonian Warrior School, which took place in 2013, its tradition is the similar photo of participants on the Livonian coast known as the Livonian tam.
P-4 -2.5469 -1.3522 -0.3381 -0.0918 -0.7134 -0.0270 -2.3047 -1.1411 -0.0666 -1.2005 -0.8188 -0.7555 -2.5351 -0.0443 -0.1071 -0.0760 -0.2809 -1.0829 -0.7382 -1.1611 -2.3718 -2.1951 -1.1186 -0.6202 -0.2809 -1.0029 -0.4142 -0.3571 -0.0625 -0.0586 -0.0295 -0.3777 -2.3739 -1.7991 -1.6958 -0.3804 -0.0299 -0.0995 -0.0442 -3.1228 -0.1554 -0.1635
S-5 <2en> 2021. āigast 30. jūlijst 8. ougust sōņõ Kuoštrõgõl vȯļ jõvā kuolmõz Līvõ sõv iļļiskūol, mis tei LI Līvõd institūt īdskubs Tartu Iļīzskūolõks.
W-5 0.031 seconds
H-5 -0.7652643918991089 From July 30, 2021 until August 8, Koštrõgõl was already the third Livonian war high school, which was established by LI Livonian Institute in partnership with the University of Tartu.
D-5 -0.7652643918991089 From July 30, 2021 until August 8, Koštrõgõl was already the third Livonian war high school, which was established by LI Livonian Institute in partnership with the University of Tartu.
P-5 -0.1752 -0.7901 -0.1175 -0.3368 -0.1202 -0.0527 -0.7965 -0.1141 -0.3043 -1.0330 -0.9964 -0.0303 -1.1605 -0.4712 -1.3949 -0.6587 -0.6535 -0.0592 -1.1754 -0.0809 -4.0030 -0.0361 -0.9415 -3.5535 -0.3593 -0.9183 -0.8744 -1.8463 -3.0344 -0.3462 -0.8552 -1.2058 -0.1025 -0.7402 -0.0692 -0.1143 -1.4226 -1.5980 -0.1614 -1.1943 -0.0843 -0.1196 -0.0159 -0.1519 -0.1673
S-6 <2en> Līvõ sõv iļīzskūol āigal sīe jaggõvõtājizt sait kubbõ līvõ kīel prațțijiztõks, opīztõ līvõ kīel, iļ līvõd istōrij, kultūr ja tämpizpǟva, ka iļ līvõd perīz mōarā – Līvõd rāndaks, mis kūoḑõn sīepierāst sai sõv iļīzskūol suggimiz pāikaks.
W-6 0.197 seconds
H-6 -0.842157244682312 During the Liv Secondary School, its participants gathered with Liv language practising students, learned about Liv history, culture and modern day, as well as about Liv’s final landslide – the Liv Coast, which therefore became the Liv Secondary School event.
D-6 -0.842157244682312 During the Liv Secondary School, its participants gathered with Liv language practising students, learned about Liv history, culture and modern day, as well as about Liv’s final landslide – the Liv Coast, which therefore became the Liv Secondary School event.
P-6 -0.1627 -0.1381 -0.6499 -0.6121 -0.0771 -4.9868 -0.0274 -0.2680 -0.7557 -1.6087 -0.1618 -0.9204 -0.1119 -0.3275 -0.5093 -0.0873 -0.8152 -2.1911 -0.4054 -1.5688 -1.5283 -0.5062 -2.0135 -0.2156 -0.2818 -0.0854 -0.2748 -0.1590 -0.1639 -0.3881 -0.7164 -1.9509 -0.6208 -1.3651 -0.1136 -0.1149 -0.3742 -1.0931 -0.1100 -0.8374 -0.1460 -1.5239 -1.4048 -3.7556 -2.2225 -0.3061 -0.3041 -1.0033 -0.3383 -0.0903 -1.5380 -0.6107 -0.1525 -2.3211 -0.0404 -0.7364 -1.9064 -0.0581 -2.4769 -0.0106 -0.2375 -0.2337 -3.0185 -0.1640
S-7 <2en> Jõvā ežmizõst Līvõ sõviļīzskūolst, mis sugīz 2013. āigasts, sīe irdõksõks um jaggõvõtājizt īti foto Līvõd rāndas tundtõb Lōz tam jūs.
W-7 0.031 seconds
H-7 -0.7616104483604431 Already from the first Livonian Warrior School, which took place in 2013, its tradition is the similar photo of participants on the Livonian coast familiar with the Livonian tam.
D-7 -0.7616104483604431 Already from the first Livonian Warrior School, which took place in 2013, its tradition is the similar photo of participants on the Livonian coast familiar with the Livonian tam.
P-7 -3.1718 -0.0303 -0.1095 -0.8194 -0.2027 -0.1513 -0.3954 -0.0623 -1.2178 -0.0313 -2.3089 -1.2859 -0.0561 -1.1892 -1.8754 -0.8348 -1.9274 -0.0412 -0.1058 -0.0788 -0.2820 -1.3138 -0.7233 -0.9514 -2.1516 -2.0085 -1.1329 -0.5308 -0.2628 -1.0954 -0.4615 -0.4733 -0.0694 -0.0988 -0.0261 -0.3318 -2.5650 -0.1439 -1.1801 -0.5861 -0.0349 -0.1217 -0.0312 -2.2583 -0.1406 -0.1637
S-8 <2en> Lōz täm um Vaid kilā Lōz kōrand eldõm ja rikūz jemīņ äbku kakš āigastsaddõ.
W-8 0.023 seconds
H-8 -0.7554769515991211 The story of him is the elegance and wealth of Vaid village Lōz farm for more than two centuries.
D-8 -0.7554769515991211 The story of him is the elegance and wealth of Vaid village Lōz farm for more than two centuries.
P-8 -1.3866 -2.2824 -1.1793 -1.4171 -0.2504 -0.6206 -0.0935 -2.4541 -0.0419 -0.9019 -0.3686 -0.1929 -0.5666 -0.0930 -0.7674 -2.5520 -1.2958 -0.1540 -0.9052 -1.0948 -0.3080 -0.1099 -0.1069 -0.1663 -0.1723 -0.1610
S-9 <2en> Lōz kōrands um sindõn ežmi opātõks sōnd līvõd opātiji Nikā Polmaņ (1823), 19. āigastsadā 60. āigastist täs um jellõn Launitz aim – sīe jednikā Aņdrõks Launitz 19. āigastsadās um ilzõ kēratõn līvõd<unk> ja mūd irdõkst, Lōz kōrands um vȯnd alliskūol līvõd lapst pierāst (1923. – 1937. āigast sōņõ).
W-9 0.197 seconds
H-9 -0.7882697582244873 Nika Polmaņ, the first teacher of Livonian education at Lōz Farm, was born (1823), from the 60s of the 19th century, here lived the family of Launitz – its former owner Andris Launitz in the 19th century wrote about Livonian politics and other traditions, Lōz Farm has been a sub-school for Livonian children (1923-1937).
D-9 -0.7882697582244873 Nika Polmaņ, the first teacher of Livonian education at Lōz Farm, was born (1823), from the 60s of the 19th century, here lived the family of Launitz – its former owner Andris Launitz in the 19th century wrote about Livonian politics and other traditions, Lōz Farm has been a sub-school for Livonian children (1923-1937).
P-9 -1.5379 -1.2554 -0.0159 -0.2308 -0.3986 -1.1986 -0.1805 -0.9303 -1.2233 -0.7893 -0.0635 -0.4777 -0.2330 -2.3368 -3.0853 -1.8495 -0.8114 -0.0880 -0.3650 -0.9515 -0.3082 -0.0448 -0.8341 -0.0305 -0.4206 -3.4359 -0.1733 -0.2340 -0.4758 -0.3974 -0.1808 -0.0841 -0.1557 -0.0404 -1.2493 -2.1510 -1.6141 -0.2793 -1.2890 -0.1316 -2.0996 -0.1683 -0.0193 -0.8430 -1.7585 -0.5238 -1.8194 -1.3090 -0.1488 -0.1773 -0.0384 -2.0796 -0.1863 -0.0502 -0.0748 -0.0327 -1.6800 -1.2944 -1.9079 -0.0576 -0.1273 -0.0711 -6.2059 -0.5577 -0.6285 -0.2240 -0.1379 -0.4809 -1.7842 -0.4820 -0.0976 -0.0698 -1.6115 -0.3785 -0.7954 -0.9863 -2.5886 -0.5774 -0.0456 -0.1676 -1.4317 -0.0527 -0.1139 -0.0583 -0.1345 -1.2491 -0.0224 -2.5226 -0.0479 -0.0999 -0.1608
S-10 <2en> 20. āigastsadā 30. āigastõd lopāndõkspūol Lōz perīmīekõks sai Alfon Berthold (1910–1993) – kalāmīez, līvõd lūoltiji, rovvīļa tīedaji –, ja ka paldīņ Lōz tam ležgõl jelāb Berthold aim.
W-10 0.044 seconds
H-10 -0.6752005219459534 On the end of the 30s of the 20th century, Alfon Berthold (1910–1993) became the owner of Lōz – a fisherman, a Liv poet, a researcher of national resources – and also the family of Berthold, who currently lives near Lōz.
D-10 -0.6752005219459534 On the end of the 30s of the 20th century, Alfon Berthold (1910–1993) became the owner of Lōz – a fisherman, a Liv poet, a researcher of national resources – and also the family of Berthold, who currently lives near Lōz.
P-10 -1.2543 -0.1047 -1.1856 -0.1524 -0.1649 -1.4859 -0.5912 -0.5420 -0.1842 -0.1941 -0.4322 -0.0506 -0.5650 -0.5502 -0.0287 -0.2201 -1.3217 -0.0688 -0.1167 -0.0117 -0.2573 -0.4425 -0.9664 -1.3880 -0.1484 -1.8831 -1.7084 -0.1783 -0.9341 -0.6847 -0.0881 -0.2276 -0.2199 -0.7003 -1.1022 -0.0565 -0.1070 -0.1218 -0.4154 -0.3704 -2.7608 -0.2076 -0.6234 -2.0360 -2.1036 -0.4411 -0.2049 -0.8157 -1.4628 -0.2739 -0.1283 -0.7784 -1.4955 -0.8058 -2.0916 -0.4473 -0.6382 -1.7211 -0.5125 -0.0788 -0.8498 -0.1599
S-11 <2en> Līvõd sõv iļīzskūol um lebbõ, bet mūnda irg sīestõ um nǟdõb Lețmō TV-s.
W-11 0.016 seconds
H-11 -0.8326249122619629 Livonian war overseas school is over, but some moments of it is visible on Latvian TV.
D-11 -0.8326249122619629 Livonian war overseas school is over, but some moments of it is visible on Latvian TV.
P-11 -2.8443 -0.1067 -2.2877 -0.2485 -1.1705 -3.2104 -0.9536 -0.1760 -1.0548 -0.2888 -0.1781 -0.4934 -0.1701 -0.7557 -0.7955 -0.1898 -1.7181 -1.0695 -0.4815 -1.1453 -0.1256 -0.6699 -0.3280 -0.1904 -0.1635
S-12 <2en> Velkõrd sūr tienū amād jaggõvõtājiztõn ja tigtijiztõn – Tartu Iļīzskūol ASTRA projektõn PER ASPERA, Lețmō Opātõks ja tieud ministrijõn, Lețmō Iļīzskūolõn ja munt sõbrādõn.
W-12 0.044 seconds
H-12 -0.6178171038627625 Another great thanks to all participants and supporters – the project of Tartu University ASTRA PER ASPERA, the Ministry of Education and law of Latvia, the University of Latvia and other friends.
D-12 -0.6178171038627625 Another great thanks to all participants and supporters – the project of Tartu University ASTRA PER ASPERA, the Ministry of Education and law of Latvia, the University of Latvia and other friends.
P-12 -3.0837 -0.5936 -0.7256 -0.7833 -0.1868 -0.1368 -0.8273 -0.1969 -0.2213 -0.0892 -0.6078 -2.3771 -0.8415 -0.9045 -1.7246 -0.1259 -0.0411 -0.0276 -0.8982 -0.0228 -0.1022 -0.0391 -0.0152 -0.2123 -0.8462 -0.2430 -0.1801 -1.4155 -0.3151 -3.1771 -1.9415 -0.0341 -0.2204 -0.8448 -0.0931 -0.1252 -0.0820 -0.3811 -0.5471 -0.2683 -0.2712 -0.1782
S-13 <2en> Īžki tienū Tālsa TVn iļ sidāmliz kubbõsōmiz ja Marc Daniel Skibsted Volhardt, Tuuli Tuisk ja Miina Norvik iļ mǟdõltõkst.
W-13 0.044 seconds
H-13 -0.3862353265285492 Even thanks to Tālsa TV for the heartfelt meeting and Marc Daniel Skibsted Volhardt, Tuuli Tuisk and Miina Norvik for the memories.
D-13 -0.3862353265285492 Even thanks to Tālsa TV for the heartfelt meeting and Marc Daniel Skibsted Volhardt, Tuuli Tuisk and Miina Norvik for the memories.
P-13 -1.5844 -1.0996 -1.4592 -0.5438 -0.3082 -0.1909 -0.0896 -0.2511 -1.7041 -1.3600 -1.2071 -0.0660 -0.8206 -0.3548 -0.2001 -0.0759 -0.0139 -0.0537 -0.1098 -0.1238 -0.0628 -0.0148 -0.0118 -0.1395 -0.1753 -0.1408 -0.0476 -0.0259 -0.0766 -0.0759 -0.2134 -0.0382 -0.0599 -0.0083 -0.0188 -0.2251 -0.8756 -1.2341 -0.2251 -0.1634
S-14 <2en> Mūpõ Kuoštrõgõl īrgõb jõvā kuolmõz Līvõ sõv iļļiskūol!
W-14 0.016 seconds
H-14 -1.230521559715271 A good third Liv war high school begins in Koštrõgõl!
D-14 -1.230521559715271 A good third Liv war high school begins in Koštrõgõl!
P-14 -3.5497 -2.9899 -0.0641 -1.3852 -0.0657 -3.0622 -3.6333 -0.3163 -1.2178 -0.5212 -0.7348 -0.7456 -0.0364 -0.9026 -1.2364 -0.2932 -0.1645
S-15 <2en> Kū ažā – Kūolka bōik jeltõbkuodā
W-15 0.041 seconds
H-15 -0.9245653748512268 Monthly thing – Kolkas bōik residential house
D-15 -0.9245653748512268 Monthly thing – Kolkas bōik residential house
P-15 -1.4185 -0.0344 -1.9163 -1.3893 -0.3929 -0.7727 -0.5570 -0.3125 -0.8775 -0.0788 -3.3575 -0.7078 -0.2043
S-16 <2en> Āigakēras “Ilustrētā Junioriem” Daniels Skulte kizūb “Või līvõ kēļ vel pīlõb?” Āigakēra LI Līvõd institūt abkõks nīžõb iļ līvõ kīel jedmõl ja paldīņ ja iļ nänt ažād, mis līvõ kīels ja lețkīels ātõ ītizt.
W-16 0.044 seconds
H-16 -0.6404769420623779 Daniels Skulte in the magazine “Is the Liv language still standing?” tells us about Liv language before and now and about things that are common in Liv language and Latvian.
D-16 -0.6404769420623779 Daniels Skulte in the magazine “Is the Liv language still standing?” tells us about Liv language before and now and about things that are common in Liv language and Latvian.
P-16 -0.7401 -0.3260 -0.1126 -0.0553 -0.0816 -1.5555 -0.3302 -2.4375 -0.5022 -0.7899 -0.1989 -0.7392 -0.1534 -0.1019 -0.2971 -0.4571 -0.6877 -0.3554 -3.1927 -0.1517 -1.6311 -0.3230 -1.1456 -0.0903 -0.3719 -1.6800 -0.2059 -0.4538 -0.9015 -0.6919 -1.2472 -1.0491 -1.0007 -0.6914 -0.1107 -0.8332 -0.0756 -0.3019 -0.1592 -0.2438 -0.2500 -0.1763
S-17 <2en> Sūr tienū iļ kizzimiz, Daniel!
W-17 0.008 seconds
H-17 -0.4903397262096405 Thank you very much for the question, Daniel!
D-17 -0.4903397262096405 Thank you very much for the question, Daniel!
P-17 -0.8519 -0.0914 -1.2170 -0.0136 -0.6929 -0.6475 -1.0682 -0.1984 -0.0292 -0.4240 -0.1597
S-18 <2en> Knaššõ Jōņȭdõgt ja Jōņpäuvõ!
W-18 0.041 seconds
H-18 -0.6974637508392334 Beautiful John's Day and John's Day!
D-18 -0.6974637508392334 Beautiful John's Day and John's Day!
P-18 -1.8217 -0.8993 -2.1380 -0.1505 -1.6919 -0.3254 -0.3680 -0.1892 -0.1541 -0.1708 -0.2965 -0.1643
S-19 <2en> Kubsrõk Helmī Stalteks
W-19 0.008 seconds
H-19 -0.69659423828125 Kubsrõk Helmī Stalte
D-19 -0.69659423828125 Kubsrõk Helmī Stalte
P-19 -3.5718 -0.2503 -0.7142 -0.0233 -0.1811 -0.7327 -0.1454 -0.3425 -0.0871 -0.9174
S-20 <2en> Rikāz rānda – nǟmõ Irēl!
W-20 0.008 seconds
H-20 -0.8493649363517761 A rich beach – let's see Mazirbe!
D-20 -0.8493649363517761 A rich beach – let's see Mazirbe!
P-20 -1.9830 -0.4405 -0.2674 -1.3466 -2.9935 -0.7968 -0.1537 -0.0358 -1.5250 -0.0632 -0.1274 -1.1473 -0.1614
S-21 <2en> Pǟgiņ vȯnnõ Lețmō īžpīlimiz ūdstimiz āigastpǟvan!
W-21 0.041 seconds
H-21 -0.823506236076355 A lot of luck on the anniversary of the restoration of Latvia’s independence!
D-21 -0.823506236076355 A lot of luck on the anniversary of the restoration of Latvia’s independence!
P-21 -2.0872 -0.4807 -0.2358 -0.2895 -2.4482 -1.1854 -0.3944 -0.1220 -1.1222 -2.6244 -0.1272 -0.3689 -1.3586 -0.1468 -0.2734 -0.5718 -0.1628
S-22 <2en> Tienū amādõn, kis 30. āigastõ tāgižpēḑõn āndizt iļ sīe eņtš īel, bet īžkist īdõn nēšti – līvlizõn Ilmār Geigen!
W-22 0.031 seconds
H-22 -0.6629648804664612 Thank you to everyone who gave his or her voice 30 years ago, but especially to one of them – Livonian Ilmar Geigen!
D-22 -0.6629648804664612 Thank you to everyone who gave his or her voice 30 years ago, but especially to one of them – Livonian Ilmar Geigen!
P-22 -0.4673 -0.1732 -0.3344 -1.5959 -0.1495 -2.1940 -1.5089 -2.4538 -0.0240 -1.1855 -0.5215 -0.1344 -0.0744 -0.6718 -0.8474 -0.4931 -0.5265 -0.3756 -0.1347 -0.2204 -1.1248 -1.7457 -0.0847 -0.4378 -0.0649 -0.1776 -2.1642 -0.1251 -0.2354 -0.0277 -0.7756 -0.1649
S-23 <2en> Lețmō Iļīzskuōl profesōr Janīna Kursīte ja täm aim tēriņtõks amād ēstliztõn.
W-23 0.023 seconds
H-23 -0.6344475746154785 Professor Janīna Kursīte of the University of Latvia and her family would welcome all Estonians.
D-23 -0.6344475746154785 Professor Janīna Kursīte of the University of Latvia and her family would welcome all Estonians.
P-23 -2.0212 -1.0909 -0.3321 -0.0284 -0.1684 -0.0109 -1.1710 -0.8102 -2.8917 -0.1381 -0.0621 -0.3048 -0.5979 -0.1155 -0.6588 -0.9908 -0.6956 -0.5631 -0.2764 -0.2286 -0.1665
S-24 <2en> Lețmō Iļīzskūols um sōnd vaļmõks Renate Blumberga rōntõz iļ līvõd rovkuodā.
W-24 0.016 seconds
H-24 -0.46736645698547363 Renate Blumberga’s book about Livonian National House has been prepared at the University of Latvia.
D-24 -0.46736645698547363 Renate Blumberga’s book about Livonian National House has been prepared at the University of Latvia.
P-24 -1.8183 -0.0239 -0.0256 -0.0932 -0.6179 -1.0074 -0.1439 -0.1245 -0.6902 -1.1466 -0.0798 -0.4305 -0.0813 -1.1282 -0.3326 -0.7611 -0.2043 -1.3740 -0.5669 -0.3834 -0.0869 -0.1370 -0.0366 -0.2204 -0.1695
S-25 <2en> Pǟgiņ vȯnnõ amā sūŗimiz līvõd vaimliz pierāndõks kolektsij prațțijiz –Ēstimō kērandõks muzej – ūd direktorõn – Tõnis Lukas!
W-25 0.031 seconds
H-25 -0.8600612282752991 A lot of luck to the young director of the largest Livonian spiritual attraction collection – Tõnis Lukas – with the writers of the museum in Estonia!
D-25 -0.8600612282752991 A lot of luck to the young director of the largest Livonian spiritual attraction collection – Tõnis Lukas – with the writers of the museum in Estonia!
P-25 -2.1033 -0.4284 -0.2052 -0.3629 -1.3144 -0.7541 -1.5412 -0.1502 -0.1842 -0.3343 -1.4398 -0.2558 -0.0632 -0.8481 -0.0298 -0.3330 -3.9237 -0.1224 -0.4361 -0.5174 -2.2907 -0.0371 -0.0370 -0.1149 -1.9654 -1.2368 -0.8491 -3.4748 -0.1833 -0.2216 -0.5165 -1.8961 -1.5157 -0.7395 -0.3747 -0.1616
S-26 <2en> Kū ažā – Nikā Polmaņ (122 x 207 cm) portrej režisor Uģis Olte tulbizõst mängfilmst “Upurga”.
W-26 0.031 seconds
H-26 -1.2594127655029297 It’s important to note that you have the right to receive the right to receive the right to receive the right to receive the right to receive the right to receive the right to receive the right to receive the right to receive the right to receive the right to receive it.
D-26 -1.2594127655029297 It’s important to note that you have the right to receive the right to receive the right to receive the right to receive the right to receive the right to receive the right to receive the right to receive the right to receive the right to receive the right to receive it.
P-26 -4.8246 -3.3918 -0.1739 -4.4468 -0.5952 -3.0317 -0.5242 -2.0159 -2.8660 -3.1767 -0.6267 -0.3714 -3.8824 -2.5386 -1.7147 -2.4886 -1.4765 -1.8180 -0.8859 -1.4113 -1.0730 -1.2885 -0.5756 -0.6377 -0.7648 -1.0590 -0.5301 -0.4783 -0.7072 -0.9465 -0.5216 -0.4012 -0.6197 -0.8849 -0.5192 -0.3805 -0.6367 -0.8539 -0.5341 -0.3479 -0.6515 -0.8155 -0.5080 -0.3447 -0.5830 -0.7941 -0.4889 -0.3378 -0.5754 -0.7725 -0.5034 -0.3692 -0.4996 -5.7405 -1.3366 -0.1850
S-27 <2en> Um ulzõ tund konferents DHN2020 kērad kub.
W-27 0.041 seconds
H-27 -0.8940125107765198 The article of the conference DHN2020 has been published in the cub.
D-27 -0.8940125107765198 The article of the conference DHN2020 has been published in the cub.
P-27 -1.5540 -3.1929 -1.8351 -0.7729 -0.4739 -0.4099 -0.0820 -0.0484 -0.0350 -1.5514 -0.3798 -0.0700 -0.6964 -0.9051 -2.9752 -0.6955 -0.2465 -0.1681
S-28 <2en> Sīes um lugdõb ka LI Līvõd institūt tuņšlijizt Valts Ernštreits ja Gunta Kļava kēra “Taking the Livonians into the Digital Space”, mis nīžõb iļ digitālizt resursõd ja sīe, ku ne võibõd äbțõ ädāstõd kīeldõn ja kultūrdõn.
W-28 0.197 seconds
H-28 -0.5175825357437134 It also reads the article by Livonian students Valts Ernštreits and Gunta Kļava, “Taking Livonians into the Digital Space”, which tells about digital resources and that they can help troubled bans and cultures.
D-28 -0.5175825357437134 It also reads the article by Livonian students Valts Ernštreits and Gunta Kļava, “Taking Livonians into the Digital Space”, which tells about digital resources and that they can help troubled bans and cultures.
P-28 -0.6030 -0.7008 -0.1825 -0.1403 -0.5551 -0.6146 -2.1660 -1.5412 -0.1954 -0.2974 -0.0424 -1.6704 -0.0276 -0.1083 -0.2887 -0.0076 -0.1602 -0.0438 -0.0624 -0.0957 -0.1860 -0.0117 -0.0885 -0.0674 -0.0181 -0.0473 -1.6630 -1.9006 -0.1254 -0.0105 -0.4081 -0.4272 -0.0599 -1.5678 -0.4896 -1.0635 -0.0327 -0.1362 -1.1145 -0.3403 -2.0541 -0.1476 -1.0690 -0.1537 -0.0587 -0.2354 -1.3417 -0.1655 -0.4962 -0.3101 -2.3787 -0.0528 -1.4039 -0.5986 -0.1511 -0.1515 -0.1737 -0.1678 -0.1652
S-29 <2en> Karl Pajusalu radios nīžõb iļ Ludza ēstlizt kīel.
W-29 0.016 seconds
H-29 -0.5455772876739502 Karl Pajusalu speaks on radio about Ludza's Estonian language.
D-29 -0.5455772876739502 Karl Pajusalu speaks on radio about Ludza's Estonian language.
P-29 -0.8257 -0.0581 -0.0260 -0.0157 -0.1294 -2.5049 -0.1495 -2.0728 -1.0743 -0.2802 -0.0921 -0.3453 -0.0800 -1.4251 -0.1596 -0.3220 -0.3916 -0.2533 -0.1605
S-30 <2en> LI Līvõd institūt tuņšlijizt Elvīra Kalniņa ja Annija Lazdiņa võtīzt jaggõ Tieudmīed īestõ ja nīžiztõ iļ eņtš tīe ja tuņšlimizt.
W-30 0.031 seconds
H-30 -0.5739389657974243 Elvīra Kalniņa and Annija Lazdiņa, students of the LI Liv Institute, participated in the Night of Lawmakers and discussed their work and research.
D-30 -0.5739389657974243 Elvīra Kalniņa and Annija Lazdiņa, students of the LI Liv Institute, participated in the Night of Lawmakers and discussed their work and research.
P-30 -0.8072 -0.0806 -0.0923 -0.1903 -0.0037 -0.3838 -0.0184 -0.2659 -0.0377 -0.4959 -0.0113 -0.6741 -1.6841 -1.1853 -0.8637 -0.9095 -0.4862 -0.5648 -0.4994 -0.3533 -0.9433 -0.1309 -0.2791 -0.4520 -0.5877 -0.2041 -1.8418 -1.6592 -0.3212 -2.3343 -0.5886 -0.6834 -0.1425 -0.5376 -0.1747 -0.1739
S-31 <2en> Pǟgiņ vȯnnõ īžpīlimiz ūdstimiz pǟvan, ārmaz Lețmō!
W-31 0.041 seconds
H-31 -0.6811147332191467 A lot of luck on Independence Renewal Day, dear Latvia!
D-31 -0.6811147332191467 A lot of luck on Independence Renewal Day, dear Latvia!
P-31 -1.8363 -0.3424 -0.1936 -0.2408 -1.0398 -0.9742 -0.4751 -2.2957 -0.4363 -0.1620 -0.2737 -2.0603 -0.0543 -0.1707 -0.1775 -0.1651
S-32 <2en> Tämpõ līvõd virgtõbõd līndidi.
W-32 0.008 seconds
H-32 -1.187949776649475 Today the Livonian elites.
D-32 -1.187949776649475 Today the Livonian elites.
P-32 -0.3041 -1.9860 -0.5170 -0.1908 -0.8977 -0.1954 -4.4738 -1.0918 -0.3321 -2.9160 -0.1627
S-33 <2en> Täs um kūldõb līndõd virgtimiz loul, nei ku sīe um loulõn līvõ kīel ja mīel prațțiji Pētõr Damberg (1909–1987)!
W-33 0.031 seconds
H-33 -0.7942714095115662 Here's the song of bird learning, as it has been songed by Liv language and mind practising Peter Damberg (1909–1987)!
D-33 -0.7942714095115662 Here's the song of bird learning, as it has been songed by Liv language and mind practising Peter Damberg (1909–1987)!
P-33 -0.3987 -2.2903 -0.1425 -1.3115 -0.1784 -0.2425 -2.2520 -2.4677 -0.9637 -0.7336 -1.4641 -1.8155 -0.1056 -1.5164 -1.4576 -0.0537 -0.7338 -0.0373 -0.8705 -0.2219 -0.0335 -1.8695 -0.2673 -0.5927 -2.6414 -0.0227 -0.0857 -0.0181 -0.2008 -0.0151 -0.6140 -0.4282 -0.1645
S-34 <2en> 101 āigastõ tāgižpēḑõn um pūojtõd Jemākīel seļtš, mis ežmi ulzõ antõd rōntõz vȯļ ka ežmi īlmali līvõkēļi rōntõz – Ežmi līvõd lugdõbrōntõz!
W-34 0.031 seconds
H-34 -0.7274227142333984 101 years ago, the Mother’s Language Society was founded, the first published book was also the first worldly Liv book – the first Liv reading book!
D-34 -0.7274227142333984 101 years ago, the Mother’s Language Society was founded, the first published book was also the first worldly Liv book – the first Liv reading book!
P-34 -0.1315 -0.1455 -0.0769 -1.2842 -0.4693 -2.1794 -2.0382 -0.1552 -0.2261 -0.1230 -0.4143 -0.2089 -0.5011 -0.8606 -0.1323 -3.1193 -0.1109 -0.7638 -0.6036 -0.1592 -0.1126 -1.2629 -2.4205 -0.6777 -0.0396 -1.9492 -0.5822 -1.2949 -0.6216 -0.2027 -0.0781 -1.2236 -0.6669 -0.4599 -0.1643
S-35 <2en> Pǟgiņ vȯnnõ!
W-35 0.004 seconds
H-35 -0.2965470850467682 A lot of luck!
D-35 -0.2965470850467682 A lot of luck!
P-35 -0.8447 -0.2245 -0.1825 -0.1844 -0.1814 -0.1617
S-36 <2en> 24. märtsõs seminars iļ digitālizt humanitārizt resursõd kȭlbatimiz võimizt LI Līvõd institūt nīžõb iļ eņtš tīedõd resursõd līvõ kīel ja kultūr pierāst.
W-36 0.031 seconds
H-36 -0.637226939201355 On 24 March, in a seminar on the possibility of using digital humanitarian resources, LI Liv Institute will tell about its resources for Liv language and culture.
D-36 -0.637226939201355 On 24 March, in a seminar on the possibility of using digital humanitarian resources, LI Liv Institute will tell about its resources for Liv language and culture.
P-36 -0.2572 -1.3646 -0.0657 -0.7533 -2.2345 -0.6114 -0.0893 -0.4155 -0.3185 -1.2363 -0.2274 -0.8651 -0.0764 -0.7415 -0.0364 -0.8956 -0.8266 -0.6662 -0.3935 -0.8634 -0.9072 -1.2940 -1.1233 -0.8139 -2.2615 -0.5567 -0.3554 -0.0457 -0.1669 -0.1339 -0.0951 -0.1668 -0.1695
S-37 <2en> Až mēg äb võim päzzõ Kuolkõ, Kūolka tulāb mäd jūr!
W-37 0.041 seconds
H-37 -0.8672589659690857 If we can't get to the house, Kolk comes to us!
D-37 -0.8672589659690857 If we can't get to the house, Kolk comes to us!
P-37 -0.1190 -0.1594 -1.3851 -0.6298 -0.1245 -0.7597 -1.9694 -1.4650 -2.4558 -0.2791 -0.6831 -2.6970 -0.9176 -0.4386 -0.1318 -0.3687 -0.1600
S-38 <2en> LI Līvõd institūt võtāb jaggõ diskusijst iļ alliztrovd kizzimizt – 2. pǟva.
W-38 0.016 seconds
H-38 -0.8181390762329102 LI Livonian Institute participates in a debate on the subject of sub-nationals – Day 2.
D-38 -0.8181390762329102 LI Livonian Institute participates in a debate on the subject of sub-nationals – Day 2.
P-38 -0.9382 -0.5724 -0.4408 -2.7975 -0.0756 -0.2880 -1.3247 -0.2052 -0.1835 -0.7135 -1.1000 -0.4428 -1.6371 -0.6505 -0.2243 -1.5440 -1.6019 -1.6353 -1.3879 -0.3135 -0.4042 -0.1735 -0.1627
S-39 <2en> LI Līvõd institūt võtāb jaggõ diskusijst iļ alliztrovd kizzimizt.
W-39 0.016 seconds
H-39 -0.9008472561836243 LI Livonian Institute participates in a debate on the subject of sub-nationals.
D-39 -0.9008472561836243 LI Livonian Institute participates in a debate on the subject of sub-nationals.
P-39 -1.0142 -0.5589 -0.4998 -2.7909 -0.0664 -0.3341 -1.4404 -0.1982 -0.1699 -0.8738 -0.9784 -0.4207 -1.7690 -1.0559 -0.2089 -1.4116 -1.6345 -1.4979 -1.6305 -0.1999 -0.1639
S-40 <2en> Mūpõ līb rõk ka iļ līvlizt.
W-40 0.008 seconds
H-40 -0.8576200008392334 There will also be talks about Livonian people.
D-40 -0.8576200008392334 There will also be talks about Livonian people.
P-40 -3.5047 -0.3300 -1.2909 -0.1202 -0.7793 -0.9740 -0.3138 -0.7236 -0.2002 -0.1666 -0.5417 -2.3761 -0.5253 -0.1604
S-41 <2en> LI Līvõd institūt tuņšļijiz Uldis Balodis rōntõz “Lutsi kiele lementar. Ludza ēstlizt kīel ābēd” – 2020. āigast paŗīmi rōntõz humanitārliz tieud arāl Lețmō Iļīzskūols!
W-41 0.044 seconds
H-41 -0.7991946935653687 Uldis Balodis, the researcher of the LI Liv Institute, book “Lutsi clip lementar. Ludza Estonian language apps” – the best book of 2020 in the art of humanitarian law at the University of Latvia!
D-41 -0.7991946935653687 Uldis Balodis, the researcher of the LI Liv Institute, book “Lutsi clip lementar. Ludza Estonian language apps” – the best book of 2020 in the art of humanitarian law at the University of Latvia!
P-41 -1.7517 -0.0465 -0.0341 -0.1307 -0.2354 -2.7290 -2.0931 -0.3124 -0.3781 -1.1782 -1.3441 -0.4190 -0.2970 -0.4224 -0.5524 -1.7499 -0.3515 -0.5099 -0.9256 -0.4931 -0.8325 -1.5476 -0.2171 -0.0079 -0.0617 -0.2857 -0.5776 -0.1539 -0.1444 -1.0999 -2.2182 -4.2953 -0.9952 -0.4021 -0.9896 -1.1040 -0.3511 -0.5279 -1.7401 -1.3293 -0.6723 -0.7751 -1.1394 -0.4458 -1.1389 -1.3518 -0.0684 -1.5501 -0.6982 -0.5526 -0.0522 -0.1212 -0.0486 -0.3384 -0.1673
S-42 <2en> 103! Pǟgiņ vȯnnõ sindizpǟvan, ārmaz Ēstimō!
W-42 0.041 seconds
H-42 -0.44905605912208557 103! A lot of luck on Birthday, dear Estonia!
D-42 -0.44905605912208557 103! A lot of luck on Birthday, dear Estonia!
P-42 -0.0181 -0.0913 -1.3457 -0.4168 -0.1573 -0.2550 -0.6474 -1.3937 -0.0677 -0.0105 -0.2406 -1.8938 -0.0504 -0.2863 -0.1465 -0.1637
S-43 <2en> Sūomõ kīeltieudmīe Vilho Setälä 1912. āigasts tīedõd līvõd fotod ni ātõ nǟdõb vērmis.
W-43 0.023 seconds
H-43 -0.5486579537391663 Photos of the Livs made by Finnish lawmaker Vilho Setälä in 1912 are now visible in the twist.
D-43 -0.5486579537391663 Photos of the Livs made by Finnish lawmaker Vilho Setälä in 1912 are now visible in the twist.
P-43 -1.1052 -0.1628 -0.2016 -1.3399 -0.2426 -0.1281 -1.0358 -2.0428 -0.5810 -0.5296 -1.6151 -0.7242 -0.3966 -0.0338 -0.0367 -0.0409 -0.0010 -0.0024 -0.2165 -0.0224 -0.4207 -0.5817 -0.0874 -0.7088 -0.3784 -0.6091 -2.2089 -0.8731 -0.3228 -0.1973 -0.1611
S-44 <2en> Tienū Twan Goosenõn iļ vermtimiz.
W-44 0.041 seconds
H-44 -0.34382548928260803 Thank you Twan Goosen for the verdict.
D-44 -0.34382548928260803 Thank you Twan Goosen for the verdict.
P-44 -0.6176 -0.4032 -0.2896 -0.0148 -0.0132 -0.1017 -0.1011 -0.1686 -1.9806 -0.3996 -0.4578 -0.1219 -0.1164 -0.2124 -0.1588
S-45 <2en> Kurāmō plōnimizarā kazāndõksprogram 2021–2027 lūomiz diskusijs LI Līvõd institūt jūodiji Valts Ernštreits rõkāndõb iļ Kurāmō kīel ja vaimliz pierāndõks pīlimiz ja kȭlbatimiz, kultūr jūrõpäzzimiz võimizt mōarīs ja digiresursõd kȭlbatimiz võimizt.
W-45 0.197 seconds
H-45 -0.9215980172157288 Valts Ernštreits, the head of the LI Liv Institute, speaks in the creative discussion of the Livonian language and spiritual attraction program 2021-2027 about the standing and use of the Kuramaan language and spiritual attraction, the ability to add culture to the countryside and the ability to use digital resources.
D-45 -0.9215980172157288 Valts Ernštreits, the head of the LI Liv Institute, speaks in the creative discussion of the Livonian language and spiritual attraction program 2021-2027 about the standing and use of the Kuramaan language and spiritual attraction, the ability to add culture to the countryside and the ability to use digital resources.
P-45 -3.1125 -0.1094 -0.1612 -0.0073 -0.1967 -0.0636 -0.0572 -0.0783 -0.1649 -1.7484 -1.2805 -0.1374 -0.7779 -1.5953 -0.3499 -0.5404 -0.3313 -0.8748 -0.6089 -0.1476 -1.7161 -1.4573 -0.3080 -1.3192 -0.4056 -0.4405 -4.7238 -0.0666 -0.4543 -0.0294 -4.1305 -0.5860 -0.3459 -3.7928 -0.1383 -2.0169 -0.8965 -0.0286 -0.6167 -0.0296 -1.3646 -0.6164 -2.5914 -0.2138 -2.0807 -0.1479 -1.4445 -0.9304 -2.9920 -1.5469 -0.0769 -0.3738 -0.8545 -1.4542 -0.1617 -0.2774 -0.5593 -2.0751 -0.7435 -2.9343 -0.8296 -1.0923 -0.8802 -2.1343 -0.0546 -0.5028 -0.1949 -1.7928 -0.3752 -0.6268 -0.0500 -0.0364 -0.1737 -0.1695
S-46 <2en> LSM: "Līvõ kīelõn um vajāg pakāndabbõ." Eirop amā ädāstõd kīeldõ um pästāmõst!
W-46 0.023 seconds
H-46 -0.8348991274833679 LSM: "The language of Latvia needs a ambulance." Europe's most threatened language has to be saved!
D-46 -0.8348991274833679 LSM: "The language of Latvia needs a ambulance." Europe's most threatened language has to be saved!
P-46 -0.1230 -0.0124 -0.1689 -0.3318 -0.8451 -1.1029 -0.3977 -1.2503 -0.3726 -3.2152 -2.7539 -0.1230 -0.0205 -0.3165 -2.0482 -1.2492 -0.1505 -0.5158 -2.0649 -0.1425 -0.1694 -1.7790 -1.0485 -0.4004 -1.5528 -0.2239 -0.1632
S-47 <2en> Kaddõnd sõņḑi vȯtšõs: LI Līvõd institūt tuņšliji Uldis Balodis iļ kīeld, jelāmiz Arizonas ja īžeņtš.
W-47 0.031 seconds
H-47 -0.8237766623497009 Looking for lost words: Uldis Balodis, founder of LI Liv Institute on languages, life in Arizona and itself.
D-47 -0.8237766623497009 Looking for lost words: Uldis Balodis, founder of LI Liv Institute on languages, life in Arizona and itself.
P-47 -1.5937 -0.1550 -0.1639 -3.1382 -1.3050 -0.2706 -2.8808 -0.0328 -0.0274 -0.1335 -0.2157 -3.1212 -0.0777 -0.1496 -1.1409 -0.4681 -0.3020 -0.5336 -2.0919 -0.9362 -0.2076 -0.8998 -0.1468 -0.0369 -0.1131 -0.0150 -0.4297 -3.7239 -0.2267 -0.1763
S-48 <2en> Rovvõdvailiz jemākīel pǟvan kilūb ka līvõ kēļ!
W-48 0.041 seconds
H-48 -1.1584683656692505 On the day of national mother tongue, the Liv language also sounds!
D-48 -1.1584683656692505 On the day of national mother tongue, the Liv language also sounds!
P-48 -1.3792 -1.4300 -1.3815 -0.1143 -4.7184 -1.3842 -0.4780 -0.7867 -1.0463 -0.5601 -0.0714 -0.0828 -3.6374 -1.0534 -0.1268 -1.2797 -0.1635
S-49 <2en> Abja-Paluoja Ēstimōl tämnāigast līb sūomõ-ugrõ kultūr pǟjālgab.
W-49 0.016 seconds
H-49 -0.5340902209281921 In Abja-Paluoja Estonia this year will be the main city of Finnish-Upper culture.
D-49 -0.5340902209281921 In Abja-Paluoja Estonia this year will be the main city of Finnish-Upper culture.
P-49 -1.2574 -0.2340 -0.2044 -0.2136 -0.3642 -0.1068 -0.0091 -1.1261 -0.5339 -0.1164 -0.5331 -0.3940 -0.2120 -0.8764 -0.8728 -0.2225 -0.2486 -0.2306 -0.8174 -3.0633 -0.2930 -0.1911 -0.1636
S-50 <2en> Mis kītõbõd lūomõd
W-50 0.004 seconds
H-50 -0.7330471277236938 What say animals
D-50 -0.7330471277236938 What say animals
P-50 -0.0817 -1.8733 -0.7764 -0.2007
S-51 <2en> Lōla īņõ ja op līvõ kīeldõ!
W-51 0.008 seconds
H-51 -1.0190128087997437 Along with winter and learn the Liv language!
D-51 -1.0190128087997437 Along with winter and learn the Liv language!
P-51 -4.5120 -2.2327 -0.4124 -1.8889 -0.4476 -0.2756 -1.3709 -0.4009 -0.0557 -0.0541 -0.4123 -0.1650
S-52 <2en> Iļ touvõarūd nimūd līvõ kīels.
W-52 0.008 seconds
H-52 -0.9571837186813354 The names of the devils in the Liv language.
D-52 -0.9571837186813354 The names of the devils in the Liv language.
P-52 -3.4641 -2.1923 -0.5048 -1.1500 -2.3712 -0.1552 -1.0724 -0.2381 -1.4572 -0.1943 -0.0797 -0.0717 -0.2847 -0.1648
S-53 <2en> Ūomõg um
W-53 0.004 seconds
H-53 -0.7695428729057312 The morning is
D-53 -0.7695428729057312 The morning is
P-53 -0.8124 -1.5445 -0.2883 -0.4330
S-54 <2en> Ūž LI Līvõd institūt projekt līvõ kīel oppimiz pierāst.
W-54 0.041 seconds
H-54 -0.5575956106185913 A new project of LI Liv Institute for Liv language learning.
D-54 -0.5575956106185913 A new project of LI Liv Institute for Liv language learning.
P-54 -1.1695 -0.0803 -0.2195 -1.0016 -1.5333 -0.3459 -0.2393 -1.1785 -0.3676 -0.7964 -0.0406 -0.3275 -0.5338 -0.3640 -0.1661
S-55 <2en> Tämpõ 30 āigastõ tāgižpēḑõn um pūojtõd Vald īžkiz kaitstõb līvõd kultūristōrili arā “Līvõd Rānda” – ežmi līvlizt prațțimizõn pivāstõd vald institutsij Lețmō istōrijs (vizzõ pandõd 2003. āigasts).
W-55 0.044 seconds
H-55 -0.7998211979866028 Today 30 years ago, the State’s specially protected Livonian culturalist art “Livonian Rand” was founded – the first Livonian practice dedicated to the country’s institution in Latvia’s history (the Constitution was established in 2003).
D-55 -0.7998211979866028 Today 30 years ago, the State’s specially protected Livonian culturalist art “Livonian Rand” was founded – the first Livonian practice dedicated to the country’s institution in Latvia’s history (the Constitution was established in 2003).
P-55 -0.3419 -0.3103 -0.1312 -0.0743 -1.0263 -0.4080 -1.3797 -2.0059 -0.1443 -1.1319 -0.6639 -0.4979 -0.3121 -0.0770 -2.7952 -0.0350 -0.1316 -0.9758 -2.4210 -0.8275 -1.6397 -0.0853 -0.0855 -0.0774 -1.1231 -0.3373 -0.5126 -0.6896 -0.2641 -1.5309 -0.1505 -0.1073 -0.5015 -0.0774 -0.0667 -0.0327 -1.8453 -3.9059 -0.1684 -0.4649 -2.4436 -1.0523 -0.1622 -0.8191 -0.1710 -1.4318 -0.1382 -0.1549 -0.0490 -0.2667 -1.9257 -5.4185 -0.4483 -1.5124 -0.1433 -0.5870 -0.1458 -0.1628
S-56 <2en> Kū ažā – Īra kilā rovzt kērad Īra skūol jūodijizõn. Mikšpierāst ne sugīztõ?
W-56 0.016 seconds
H-56 -0.6465497612953186 The six thing – The people of the village of Lielirbe wrote to the head of the Lielirbe school. Why did they happen?
D-56 -0.6465497612953186 The six thing – The people of the village of Lielirbe wrote to the head of the Lielirbe school. Why did they happen?
P-56 -1.5954 -1.1790 -0.8769 -0.6260 -0.9753 -0.3495 -0.3292 -0.6223 -1.5719 -0.1879 -0.9456 -0.4438 -0.0410 -2.0697 -0.2334 -0.3170 -2.3515 -0.1282 -0.3273 -1.7324 -0.0085 -0.1230 -0.8004 -0.1953 -0.0871 -0.3114 -0.3787 -0.2515 -0.1747 -0.1624
S-57 <2en> LI Līvõd institūt jeddõpanmiz pierrõ um Brail alfabēt um tīedõd ka Ludza ēstlizt kīel pierāst! Velkõrd tienū Harris Mowbray’n!
W-57 0.031 seconds
H-57 -0.7389938831329346 According to the suggestion of the LI Liv Institute, the Brail alphabet is also made for Ludza Estonian!
D-57 -0.7389938831329346 According to the suggestion of the LI Liv Institute, the Brail alphabet is also made for Ludza Estonian!
P-57 -1.8543 -0.1690 -0.8585 -2.1882 -0.6872 -0.4981 -1.3119 -0.6013 -0.3512 -0.3900 -1.0104 -0.6716 -1.1209 -0.1427 -0.1646 -0.7775 -0.0145 -0.7232 -0.9512 -0.1933 -1.0615 -0.3885 -0.3716 -0.3044 -0.0782 -1.0510 -0.5103 -2.2467
S-58 <2en> LI Līvõd institūt tuņšliji Uldis Balodis um nominīertõd Ladgaldmō kultūr ovīnda "Boņuks 2020" pierāst iļ Ludza ēsti kīel ābēd.
W-58 0.044 seconds
H-58 -0.6893398761749268 Uldis Balodis, the founder of the LI Liv Institute, has been nominated for the award of Ladgald County Culture Award "Boņuks 2020" for the Estonian language of Ludza.
D-58 -0.6893398761749268 Uldis Balodis, the founder of the LI Liv Institute, has been nominated for the award of Ladgald County Culture Award "Boņuks 2020" for the Estonian language of Ludza.
P-58 -0.3985 -0.0334 -0.0204 -0.1361 -0.1525 -2.7672 -1.4836 -0.2518 -0.1475 -1.0557 -1.1541 -0.4118 -0.4062 -0.5531 -0.2575 -0.8645 -0.4922 -0.1627 -0.0753 -0.1157 -0.6500 -0.6264 -2.5351 -0.2665 -1.7704 -0.1985 -0.1247 -0.0916 -1.4215 -1.9829 -1.7021 -1.1899 -0.0912 -0.2146 -0.0736 -0.0710 -0.2691 -0.8036 -1.4088 -2.0751 -1.3880 -1.6916 -0.0825 -0.2005 -0.1942 -0.1691 -0.1666
S-59 <2en> Lugūd
W-59 0.004 seconds
H-59 -1.102996587753296 Readings
D-59 -1.102996587753296 Readings
P-59 -0.9785 -2.0198 -1.2140 -0.1998
S-60 <2en> Vald prezident un tigtõn radā LI Līvõd institūt jeddõpanmiži tulbiz “Lețlizt istōrilizt mōd pandõks” pierāst.
W-60 0.023 seconds
H-60 -0.9168732166290283 The President of the State has supported the proposals of the LI Liv Institute for the future “Latvian Territory Lands Act”.
D-60 -0.9168732166290283 The President of the State has supported the proposals of the LI Liv Institute for the future “Latvian Territory Lands Act”.
P-60 -0.2426 -0.7088 -0.5413 -0.3563 -1.1493 -1.2226 -0.7454 -1.1826 -1.1635 -0.8049 -0.2615 -1.5587 -0.6568 -0.8311 -1.6030 -0.7921 -0.2447 -1.0061 -0.3940 -2.1118 -0.7186 -0.0974 -4.3962 -0.8045 -0.4025 -0.6666 -1.1600 -0.6057 -0.1607
S-61 <2en> 4. janvārst Lețmō radio 3 programms kilūb ūž rubrik „Või tīedad?”, missõs kuolmõndpäuviš ātõ kūldtõb ka nīžõd iļ līvõd!
W-61 0.031 seconds
H-61 -0.8308704495429993 From January 4, the Latvian radio 3 programme will feature a new rubrik “Do you know?”, in which the stories of Livonian people will be heard on Wednesdays!
D-61 -0.8308704495429993 From January 4, the Latvian radio 3 programme will feature a new rubrik “Do you know?”, in which the stories of Livonian people will be heard on Wednesdays!
P-61 -1.2199 -0.8174 -0.5206 -1.1231 -1.3992 -0.1889 -0.1186 -0.6425 -0.9205 -2.2788 -0.5991 -0.2293 -1.1072 -0.5920 -0.5913 -1.0944 -0.5825 -0.1610 -0.1402 -0.8966 -1.7232 -0.0672 -1.9821 -0.9165 -1.3554 -0.4267 -0.0716 -0.5884 -1.2788 -1.9258 -0.7067 -0.6533 -1.1571 -0.7026 -0.6206 -1.2574 -0.7526 -0.1640
S-62 <2en><unk> nīž āndab vastūks kizzimizõn “Või tīedad, mikš Līvõd pivād sōbõd alz pidtõd ougust ežmiz pūolpǟvan?”
W-62 0.023 seconds
H-62 -0.8778713941574097 The story of the day gives the answer to the question “Do you know why the Livonian festivities are always held from the beginning to the day of the day?”
D-62 -0.8778713941574097 The story of the day gives the answer to the question “Do you know why the Livonian festivities are always held from the beginning to the day of the day?”
P-62 -1.1416 -1.1490 -0.2047 -1.2830 -4.7729 -0.6596 -1.7236 -0.0806 -0.2430 -0.3494 -0.2008 -0.7599 -0.6173 -0.0932 -0.1565 -0.7027 -0.7936 -0.4064 -0.1032 -0.3537 -0.0400 -2.1808 -0.6388 -0.1442 -0.1025 -1.0404 -0.1489 -0.3479 -1.6683 -1.0307 -2.0364 -1.5981 -0.2357 -1.9318 -0.9564 -1.2476 -1.6863 -1.2465 -0.1609
S-63 <2en> Ku ma randõ lǟb
W-63 0.004 seconds
H-63 -0.4702278673648834 When I go to the beach
D-63 -0.4702278673648834 When I go to the beach
P-63 -0.6404 -0.1485 -0.8340 -0.2500 -0.5401 -0.6810 -0.1975
S-64 <2en> Kuolmõz nīž āndab vastūks kizzimizõn “Või tīedad, ku mēg jegāikš mūoštam rōz rõkāndõ līvõ kīeldõ?”
W-64 0.016 seconds
H-64 -0.7935658693313599 The story of the country gives the answer to the question “Do you know that we all understand to speak a little Liv language?”
D-64 -0.7935658693313599 The story of the country gives the answer to the question “Do you know that we all understand to speak a little Liv language?”
P-64 -0.8216 -0.6021 -0.1438 -3.2049 -3.2035 -0.6778 -1.7685 -0.0496 -0.2766 -0.4264 -0.2449 -0.9006 -0.6086 -0.1844 -0.1446 -0.5942 -0.6472 -1.2949 -0.8792 -1.3839 -0.2839 -1.4395 -0.3744 -1.1195 -0.0337 -0.4767 -0.2749 -0.1597
S-65 <2en> Līvõ kēļ um nǟdõb jemīņ ja jemīņ Lețmō kūožis.
W-65 0.041 seconds
H-65 -0.6695035099983215 The Liv language is increasingly visible in the places of Latvia.
D-65 -0.6695035099983215 The Liv language is increasingly visible in the places of Latvia.
P-65 -1.4739 -0.5355 -0.0776 -0.1048 -0.3068 -2.5731 -0.2110 -0.2164 -1.7968 -1.3314 -0.3447 -0.0642 -0.1716 -0.1652
S-66 <2en> Täsā – Kūolka līvõd kubkuodā merk Kūolka kilā sidāms.
W-66 0.041 seconds
H-66 -0.8925907015800476 Here is the goal of the Kolkas Livonian house in the centre of Kolkas village.
D-66 -0.8925907015800476 Here is the goal of the Kolkas Livonian house in the centre of Kolkas village.
P-66 -0.1212 -2.0280 -0.3761 -1.9515 -0.1530 -1.4162 -1.3653 -1.9723 -1.8513 -0.6003 -1.2318 -0.0505 -3.0295 -0.2272 -0.3332 -1.0370 -0.1412 -0.4048 -0.1603 -0.8472 -0.1763 -0.1626
S-67 <2en> Tējizt
W-67 0.004 seconds
H-67 -2.850804567337036 the United States
D-67 -2.850804567337036 the United States
P-67 -2.9114 -6.1470 -1.2530 -1.0919
S-68 <2en> Tuoi nīž āndab vastūks kizzimizõn “Või tīedad, mikšpierāst sūomlizt, ēstlizt ja līvlizt nūzõbõd ilzõ sīe īž meldij jūs?”
W-68 0.031 seconds
H-68 -0.655016303062439 Another story gives the answer to the question “Do you know why the Finnish, Estonian and Livonian rise up at the same meldiah?”
D-68 -0.655016303062439 Another story gives the answer to the question “Do you know why the Finnish, Estonian and Livonian rise up at the same meldiah?”
P-68 -1.1106 -0.1884 -0.1072 -1.1097 -1.3521 -0.0746 -0.1614 -0.3761 -0.2392 -1.3806 -0.6162 -0.0925 -0.1132 -0.9593 -1.1208 -1.7739 -0.6334 -0.5080 -0.4595 -1.4363 -0.1481 -0.1618 -0.4245 -1.0838 -0.4941 -1.2801 -0.3131 -0.0452 -1.1678 -1.0505 -1.2414 -0.2316 -0.1606
S-69 <2en> Līvõ kēļ um nǟdõb jemīņ ja jemīņ Lețmō kūožis.
W-69 0.041 seconds
H-69 -0.6695035099983215 The Liv language is increasingly visible in the places of Latvia.
D-69 -0.6695035099983215 The Liv language is increasingly visible in the places of Latvia.
P-69 -1.4739 -0.5355 -0.0776 -0.1048 -0.3068 -2.5731 -0.2110 -0.2164 -1.7968 -1.3314 -0.3447 -0.0642 -0.1716 -0.1652
S-70 <2en> Täsā – Mērsrags tulbi tõrg.
W-70 0.041 seconds
H-70 -1.0306453704833984 Here is the Mērsrags fire market.
D-70 -1.0306453704833984 Here is the Mērsrags fire market.
P-70 -1.9049 -1.5786 -1.0179 -2.5081 -0.3452 -0.0236 -0.2690 -2.2837 -1.0648 -0.1799 -0.1614
S-71 <2en> Tienū, Mērsraga Informācijas Centrs!
W-71 0.041 seconds
H-71 -1.0658785104751587 Thanks to the mērsraga Information Centre!
D-71 -1.0658785104751587 Thanks to the mērsraga Information Centre!
P-71 -4.4734 -1.2070 -0.8728 -3.1966 -0.4193 -0.3813 -0.2124 -0.0766 -0.3686 -0.3505 -0.1662
S-72 <2en> Kū ažā – Viktor Berthold — līvli, kalāmīez ja aŗštiji.
W-72 0.041 seconds
H-72 -0.5773254632949829 The six things – Viktor Berthold – Livonian, fisherman and healer.
D-72 -0.5773254632949829 The six things – Viktor Berthold – Livonian, fisherman and healer.
P-72 -1.7691 -0.8087 -0.7064 -0.8796 -0.0512 -0.2531 -1.2040 -0.8036 -0.0937 -0.2009 -0.1978 -0.2206 -0.0708 -0.4925 -0.3017 -2.4056 -0.0966 -0.2506 -0.1626
S-73 <2en> 4. janvārst Lețmō radio 3 programms kilūb ūž rubrik „Või tīedad?”, missõs kuolmõndpäuviš ātõ kūldtõb ka nīžõd iļ līvõd!
W-73 0.031 seconds
H-73 -0.8308704495429993 From January 4, the Latvian radio 3 programme will feature a new rubrik “Do you know?”, in which the stories of Livonian people will be heard on Wednesdays!
D-73 -0.8308704495429993 From January 4, the Latvian radio 3 programme will feature a new rubrik “Do you know?”, in which the stories of Livonian people will be heard on Wednesdays!
P-73 -1.2199 -0.8174 -0.5206 -1.1231 -1.3992 -0.1889 -0.1186 -0.6425 -0.9205 -2.2788 -0.5991 -0.2293 -1.1072 -0.5920 -0.5913 -1.0944 -0.5825 -0.1610 -0.1402 -0.8966 -1.7232 -0.0672 -1.9821 -0.9165 -1.3554 -0.4267 -0.0716 -0.5884 -1.2788 -1.9258 -0.7067 -0.6533 -1.1571 -0.7026 -0.6206 -1.2574 -0.7526 -0.1640
S-74 <2en> Ežmiz nīž āndab vastūks kizzimizõn “Või tīedad, ku Eirop Īt amā ädāstõd kēļ um lieudtõb Lețmōld?”
W-74 0.023 seconds
H-74 -0.4575170576572418 The first story gives the answer to the question “Do you know that the most troubled language of the European Union is found from Latvia?”
D-74 -0.4575170576572418 The first story gives the answer to the question “Do you know that the most troubled language of the European Union is found from Latvia?”
P-74 -0.3332 -0.1828 -0.0682 -0.9649 -1.3494 -0.0690 -0.1714 -0.3834 -0.2379 -1.0736 -0.5859 -0.1015 -0.1382 -0.4578 -0.3276 -0.5489 -2.3623 -0.0902 -0.1562 -0.5717 -0.1876 -0.4972 -0.0762 -0.3775 -0.3940 -1.1297 -0.1033 -0.1655 -0.1628
S-75 <2en> Iļ projekt “Lōla īņõ ja op līvõ kīeldõ!”, līvõd riek UNESCO vōŗțõ ja alliztrovd kīeld āigastkim.
W-75 0.031 seconds
H-75 -1.0585918426513672 About the project “Livonian and Liv language!”, the Livonian road to UNESCO marvel and the sub-national languages of the year.
D-75 -1.0585918426513672 About the project “Livonian and Liv language!”, the Livonian road to UNESCO marvel and the sub-national languages of the year.
P-75 -3.9507 -0.5787 -0.0532 -0.2140 -1.8150 -0.2199 -0.7154 -0.3803 -2.5771 -0.5063 -0.0189 -1.2298 -0.6178 -0.2949 -1.0501 -1.0444 -0.0561 -1.4512 -0.0271 -1.6447 -0.3030 -0.0426 -2.5181 -2.3171 -0.9713 -0.6160 -2.8378 -2.1683 -2.1670 -2.0867 -0.6059 -0.8504 -0.6107 -0.3430 -0.1673
S-76 <2en> Tämpõ 900 sekunds – Lețmō Iļīzskūol Līvõd institūt.
W-76 0.041 seconds
H-76 -0.6696150302886963 Today 900 Seconds – Institute of Livonian University of Latvia.
D-76 -0.6696150302886963 Today 900 Seconds – Institute of Livonian University of Latvia.
P-76 -0.4871 -1.8376 -1.2838 -0.1729 -0.2868 -1.7022 -0.2540 -0.6017 -0.1827 -0.1574 -0.9593 -2.1021 -0.1963 -0.0790 -0.2450 -0.1660
S-77 <2en> Vērmõd
W-77 0.004 seconds
H-77 -0.7935557961463928 Values
D-77 -0.7935557961463928 Values
P-77 -1.9433 -0.2151 -0.2222
S-78 <2en> Iļ projekt “Lōla īņõ ja op līvõ kīeldõ!”
W-78 0.041 seconds
H-78 -1.0923810005187988 About the project “Livonian and Livonian!
D-78 -1.0923810005187988 About the project “Livonian and Livonian!
P-78 -3.3793 -0.8341 -0.0439 -0.2524 -2.4961 -0.3137 -0.5856 -0.3445 -3.2791 -1.6921 -0.0230 -0.4384 -0.0752 -2.0533 -0.5749
S-79 <2en> Lōla īņõ ja op līvõ kīeldõ! Ūž LI Līvõd institūt projekt līvõ kīel oppimiz pierāst.
W-79 0.016 seconds
H-79 -0.8486273288726807 A new project of LI Liv Institute for Liv language learning.
D-79 -0.8486273288726807 A new project of LI Liv Institute for Liv language learning.
P-79 -3.3965 -0.2756 -0.7448 -1.0315 -1.9305 -0.4396 -0.1890 -0.8919 -0.5977 -1.3279 -0.0540 -0.3624 -0.4571 -0.7676 -0.2635
S-80 <2en> Lețmō Iļīzskūol Līvõd institūt tārmõb rīemliži Taļžpivḑi ja vȯndzizt Ūdtõ āigastõ!
W-80 0.023 seconds
H-80 -0.89552903175354 The Livonian Institute of the University of Latvia celebrates a happy and happy New Year!
D-80 -0.89552903175354 The Livonian Institute of the University of Latvia celebrates a happy and happy New Year!
P-80 -0.7100 -2.0493 -0.1934 -1.6479 -0.0748 -0.0829 -0.2310 -0.8036 -0.1083 -0.1075 -0.0560 -4.0204 -0.2899 -2.1994 -1.2355 -1.9550 -2.3182 -0.1510 -0.0185 -0.3848 -0.1685
S-81 <2en> ŪDSTÕD: Līvõd ažād Sūomõmō ovātõd kubši.
W-81 0.016 seconds
H-81 -0.8582108616828918 WASHINGS: Livonian products in Finnish sources.
D-81 -0.8582108616828918 WASHINGS: Livonian products in Finnish sources.
P-81 -1.7015 -1.8865 -0.5272 -0.1379 -0.6099 -0.1425 -1.4547 -0.4459 -0.7144 -0.0782 -1.8075 -0.7819 -1.2728 -0.5624 -1.4413 -0.1668
S-82 <2en> Sūomõmō muzejd vōļikštõks tarmõb eņtš bīldidi (ka līvõd pierānõks) vabā kȭlbatimiz pierāst!
W-82 0.031 seconds
H-82 -0.7990826964378357 The authority of Finnish museums offers its bids (including the Livonian pier) for free use!
D-82 -0.7990826964378357 The authority of Finnish museums offers its bids (including the Livonian pier) for free use!
P-82 -0.7019 -4.3814 -0.1598 -0.4899 -0.1734 -0.1592 -0.5435 -0.3273 -2.7408 -1.4527 -0.2557 -0.7410 -1.0789 -2.2795 -0.5568 -0.0638 -0.1703 -0.0201 -1.3333 -0.9144 -0.3497 -0.3181 -0.4112 -0.6077 -0.3802 -0.1655
S-83 <2en> Suggõbõd ūd lōlõd līvõ kīel oppimiz pierāst!
W-83 0.008 seconds
H-83 -0.7936756014823914 New songs for Liv language learning!
D-83 -0.7936756014823914 New songs for Liv language learning!
P-83 -2.5756 -0.0551 -0.1334 -1.5898 -1.6463 -0.0404 -0.3813 -0.3399 -0.9998 -0.1753
S-84 <2en> Pǟgiņ vȯnnõ, ārmaz Sūomõmō!
W-84 0.008 seconds
H-84 -0.4715577960014343 A lot of luck, dear Finland!
D-84 -0.4715577960014343 A lot of luck, dear Finland!
P-84 -1.4921 -0.2369 -0.1861 -0.1780 -0.1903 -1.8629 -0.0451 -0.1970 -0.1653 -0.1620
S-85 <2en> Kū ažā – Kōrli Stalte kēra iļ rō, mis ta um sōnd „Ūd Testament” 42 eksemplār jedst, mis Līvõd Īt vȯstīz Taļžpivad škīnkõd pierāst.
W-85 0.044 seconds
H-85 -0.8304365277290344 The six thing – Kōrli Stalte’s article about the money he has received for the 42 copies of the “World Testament”, which the Livonian Union purchased for the slices of Tallinn.
D-85 -0.8304365277290344 The six thing – Kōrli Stalte’s article about the money he has received for the 42 copies of the “World Testament”, which the Livonian Union purchased for the slices of Tallinn.
P-85 -1.3352 -1.4694 -2.1703 -1.3334 -0.3370 -0.1245 -1.4177 -0.1309 -1.2456 -0.9316 -0.4200 -1.8436 -0.7522 -1.5379 -0.5976 -0.7628 -0.9055 -0.0546 -0.4761 -0.1581 -0.5633 -0.9824 -0.2893 -1.5533 -0.3047 -0.0207 -1.7068 -0.4278 -0.3436 -1.2816 -0.4441 -0.4565 -0.0340 -0.1977 -0.7205 -0.2213 -1.3436 -4.2000 -0.8041 -0.1990 -0.1857 -1.8870 -0.2022 -0.1661
S-86 <2en> 26. novembõrs Lețmō Tieud Akadēmij korespondent nõtkõmõks un vēļdõd LI Līvõd institūt jūodiji Valts Ernštreits.
W-86 0.031 seconds
H-86 -0.6432737708091736 On November 26, Valts Ernštreits, the head of the LI Liv Institute, was elected correspondent of the Latvian Law Academics.
D-86 -0.6432737708091736 On November 26, Valts Ernštreits, the head of the LI Liv Institute, was elected correspondent of the Latvian Law Academics.
P-86 -0.2857 -0.8306 -0.0768 -1.3398 -0.8957 -0.1028 -0.1622 -0.0104 -0.1685 -0.0848 -0.0538 -0.0548 -0.2839 -0.9768 -0.9949 -0.1200 -0.5551 -1.5758 -0.6373 -0.4820 -1.1564 -0.6318 -2.0785 -0.0985 -1.8073 -0.0441 -1.4884 -0.6008 -0.3353 -1.6904 -1.0449 -0.0582 -0.3852 -0.8544 -1.0203 -0.1714
S-87 <2en> Pǟgiņ vȯnnõ Lețmō Republik 102. ja Līvõd plagā 97. sindizpǟvan!
W-87 0.016 seconds
H-87 -0.7218151092529297 A lot of luck in the 102th and 97th birthday of the Republic of Latvia and the Livonian Plan!
D-87 -0.7218151092529297 A lot of luck in the 102th and 97th birthday of the Republic of Latvia and the Livonian Plan!
P-87 -1.8340 -0.4600 -0.2210 -0.3137 -1.4585 -0.3891 -0.3601 -0.8452 -1.2446 -0.1205 -0.1672 -3.0474 -1.0065 -0.2261 -1.0944 -0.1470 -0.0419 -0.4854 -0.7786 -0.7183 -0.3706 -0.7099 -0.0269 -2.1680 -0.3660 -0.1663
S-88 <2en> Tǟtõks: Alvīne Veinberga.
W-88 0.041 seconds
H-88 -1.2838242053985596 The title: Alone Veinberga.
D-88 -1.2838242053985596 The title: Alone Veinberga.
P-88 -2.7697 -5.4659 -0.2837 -2.2987 -1.6395 -1.0814 -0.0471 -0.0166 -0.1723 -0.1896 -0.1576
S-89 <2en> Lūolkub “Trilium” um sōnd Sūomõ-ugrõd kērandõkst asotsiātsij ja Ēstimō Sugrovd program tarmdõb Sūomõ-ugrõd kērandõkst ovpālka lūol kategōrijs.
W-89 0.044 seconds
H-89 -0.9033331274986267 The Luolkube “Trilium” has become the Finnish-Greece authors association and the Estonian Sugrovd program in the Finnish-Greece poetry catalogue.
D-89 -0.9033331274986267 The Luolkube “Trilium” has become the Finnish-Greece authors association and the Estonian Sugrovd program in the Finnish-Greece poetry catalogue.
P-89 -0.7441 -2.0754 -2.7181 -2.0350 -1.2449 -0.3768 -0.1289 -0.0727 -0.0199 -0.2209 -0.3690 -1.4023 -0.8361 -0.3667 -0.2646 -2.8816 -1.4675 -1.2504 -0.1186 -2.7899 -0.2743 -1.5758 -0.3353 -0.9805 -0.5916 -0.5085 -0.0548 -0.1416 -1.2138 -3.5387 -0.3601 -3.3550 -0.1259 -0.0592 -0.1607 -0.1858 -0.0141 -2.0641 -0.1036 -0.0159 -2.7975 -0.2091 -0.0848 -0.3425 -0.1732
S-90 <2en> Ovpālka sōb andtõd jegā āigast 2007. āigastõst
W-90 0.041 seconds
H-90 -0.5460073947906494 Ovpālka will be awarded annually since 2007
D-90 -0.5460073947906494 Ovpālka will be awarded annually since 2007
P-90 -1.1333 -0.1550 -0.8045 -0.0393 -0.5975 -0.1259 -1.2544 -1.0597 -0.0520 -0.9663 -0.2059 -0.1583
S-91 <2en> Kū ažā – foto 1939. āigast 6. august Līvõd rovkuodā vāldiž tīemiz pivšti, kus sai spēļdõd kakš nägțimizt.
W-91 0.023 seconds
H-91 -0.6626445651054382 The six thing – a photo of the opening of the Liv National House on August 6, 1939, in which two shows were played.
D-91 -0.6626445651054382 The six thing – a photo of the opening of the Liv National House on August 6, 1939, in which two shows were played.
P-91 -1.4726 -1.4968 -1.5236 -1.1112 -1.0124 -0.5360 -0.1264 -0.3303 -0.2961 -0.1681 -0.4137 -0.1840 -0.1706 -1.5809 -0.3344 -0.7959 -0.9750 -0.0905 -0.0145 -0.5489 -1.5586 -0.0706 -0.2007 -1.7389 -0.1691 -1.2854 -0.1855 -0.1633
S-92 <2en> Foto pǟl ǟt nǟdõb mȯlmõd nägțimizt aktīerd, bet jemīņ iļ mȯlmõd nägțimizt võib luggõ institūt kuodlīeds.
W-92 0.023 seconds
H-92 -0.7025612592697144 On the photo, both shows are visible by actors, but more about both shows can be read on the institution's home page.
D-92 -0.7025612592697144 On the photo, both shows are visible by actors, but more about both shows can be read on the institution's home page.
P-92 -1.3934 -0.2712 -0.7756 -0.9317 -0.2555 -2.0777 -0.4541 -1.3744 -2.4563 -2.0539 -0.4533 -0.5167 -0.1468 -0.8551 -0.1822 -0.7410 -0.1013 -0.1001 -0.1841 -1.0599 -0.2766 -0.3311 -0.3900 -0.1584 -0.6072 -1.1966 -0.1631 -0.1643
S-93 <2en> 9. novembõrs (11.00–18.00) Ēstimō Literatūr muzējs līb Ēstimō rovvīļa arhīv pūojtijiz Oskar Loorits 120. sindizpǟva tǟtimi.
W-93 0.031 seconds
H-93 -0.535058856010437 On 9 November (11 a.m. to 18 p.m.) the musician of the Estonian Literature will mark the 120th birthday of the founder of the Estonian National Literature Archives.
D-93 -0.535058856010437 On 9 November (11 a.m. to 18 p.m.) the musician of the Estonian Literature will mark the 120th birthday of the founder of the Estonian National Literature Archives.
P-93 -0.3637 -0.7861 -0.1349 -0.1885 -1.5131 -0.1283 -0.0660 -0.1754 -0.9138 -0.7617 -0.8594 -0.1557 -0.0899 -0.1786 -0.6050 -1.1189 -1.4488 -1.0198 -0.1798 -1.3178 -0.2459 -0.0260 -0.0917 -0.1172 -0.1361 -2.0814 -0.3234 -0.0169 -0.1262 -0.2197 -0.1477 -0.3998 -0.4729 -0.5010 -0.2601 -0.1968 -0.8402 -1.6944 -1.1309 -0.0863 -0.3099 -1.1545 -0.7916 -0.1667
S-94 <2en> O. Loorits vȯļ ka līvõd rovvīļa kuoŗŗiji ja tuņšliji.
W-94 0.016 seconds
H-94 -0.6548995971679688 O. Loorits was also a collector and researcher of the Liv people’s resources.
D-94 -0.6548995971679688 O. Loorits was also a collector and researcher of the Liv people’s resources.
P-94 -0.1970 -0.1628 -0.2296 -0.4362 -0.2666 -0.9575 -1.5181 -0.0616 -0.2713 -1.7562 -0.1800 -0.2094 -1.2414 -0.3360 -0.0655 -3.1189 -1.2920 -0.1539 -0.9428 -0.1967 -0.1594
S-95 <2en> Seto Institūtõn tämpõ 5 āigastõ!
W-95 0.008 seconds
H-95 -0.574180006980896 Seto Institute today for 5 years!
D-95 -0.574180006980896 Seto Institute today for 5 years!
P-95 -1.9819 -0.0862 -0.4506 -0.9850 -0.9910 -0.1726 -0.1159 -0.2193 -0.1652
S-96 <2en> Pǟgiņ vȯnnõ!
W-96 0.006 seconds
H-96 -0.29654717445373535 A lot of luck!
D-96 -0.29654717445373535 A lot of luck!
P-96 -0.8447 -0.2245 -0.1825 -0.1844 -0.1814 -0.1617
S-97 <2en> LI Līvõd institūt jūodijiz Valt Ernštreit nīž iļ līvlizt Jemākīel pǟvan Helsinkis.
W-97 0.016 seconds
H-97 -0.476840078830719 The Livonian Institute was led by Valt Ernštreit's story about Livonian Mother Language Day in Helsinki.
D-97 -0.476840078830719 The Livonian Institute was led by Valt Ernštreit's story about Livonian Mother Language Day in Helsinki.
P-97 -1.1648 -1.1723 -0.4040 -0.8560 -0.0351 -0.3683 -1.2550 -1.5296 -0.1146 -0.3244 -0.1494 -0.0215 -0.2439 -0.0956 -0.0901 -0.1977 -2.3932 -0.1485 -0.5193 -0.7957 -0.2852 -0.0459 -0.0303 -0.1450 -0.4201 -1.0633 -0.0790 -0.3541 -0.0736 -0.2366 -0.1698
S-98 <2en> Video Vǟnta Līvõ kultūr päuvšti 2020.
W-98 0.008 seconds
H-98 -0.8568121194839478 Video of Ventspils Livonian Culture heritage 2020.
D-98 -0.8568121194839478 Video of Ventspils Livonian Culture heritage 2020.
P-98 -0.1802 -0.6582 -0.3074 -2.4366 -0.6616 -0.2408 -0.1024 -0.6147 -2.9390 -1.1095 -0.1745
S-99 <2en> V<unk>LGID TĒRIŅTÕD LĪVÕ KULTŪR KĪEL JA ISTŌRIJ PORTĀLS LIVONES.NET!
W-99 0.031 seconds
H-99 -1.2562949657440186 V PSLGID CULTURE OF THE LIVE CULTURE AND ISTORY PORTAL LIVONES.NET!
D-99 -1.2562949657440186 V PSLGID CULTURE OF THE LIVE CULTURE AND ISTORY PORTAL LIVONES.NET!
P-99 -3.7933 -2.8075 -6.3597 -2.0898 -2.6276 -1.1697 -4.5541 -1.3472 -0.2478 -0.7437 -1.8314 -0.7805 -0.9260 -1.3727 -0.3556 -0.5780 -0.1386 -0.3230 -0.8636 -2.2401 -0.4211 -2.1188 -0.9691 -1.3563 -0.0233 -0.2578 -0.4047 -0.0544 -0.0238 -0.1624 -0.0195 -0.3100 -0.1866
S-100 <2en> Tuoi tǟdzi jag um Vīļakub, kus ātõ īdskubs kērad, siḑīmõd ja video iļ līvõd.
W-100 0.023 seconds
H-100 -0.9156079888343811 Another important part is the Welfare Assembly, which contains articles, links and video of Livonian people.
D-100 -0.9156079888343811 Another important part is the Welfare Assembly, which contains articles, links and video of Livonian people.
P-100 -0.6804 -0.1918 -0.5339 -0.5420 -0.5653 -0.2649 -4.5411 -0.7277 -0.0466 -0.1592 -2.2503 -0.5509 -1.0954 -2.3521 -1.9575 -0.2089 -2.5044 -0.2748 -0.7582 -0.8356 -0.7688 -0.0828 -0.1966 -0.7854 -1.4300 -0.2501 -0.1669
S-101 <2en> Jõvvõ ūdstõd portāl kȭlbātimizt!
W-101 0.041 seconds
H-101 -1.4501430988311768 Welcome to the newly updated website!
D-101 -1.4501430988311768 Welcome to the newly updated website!
P-101 -4.1654 -0.1040 -1.1449 -2.1663 -2.3045 -1.9235 -0.4963 -0.5789 -0.1675
S-102 <2en> Līvlizt um Lețmō irgrovž, mis um perīņ Vāldamiersūomõ rovšti, sīen um vȯnd sūr tǟdzit tämpiz lețķīel ja Lețmō kultūr suggimizõs.
W-102 0.031 seconds
H-102 -0.9652756452560425 The Livonian population of Latvia originated from the Baltic Sea Somalia has played a major role in the contemporary Latvian culture and culture of Latvia.
D-102 -0.9652756452560425 The Livonian population of Latvia originated from the Baltic Sea Somalia has played a major role in the contemporary Latvian culture and culture of Latvia.
P-102 -1.5748 -0.2362 -0.5494 -0.2783 -0.1178 -3.0884 -1.1903 -0.0845 -2.5271 -0.1710 -0.7940 -0.2242 -0.4260 -0.0386 -3.3740 -1.0767 -1.0269 -1.9588 -0.7748 -0.3811 -1.2469 -0.2380 -0.0823 -0.9051 -1.7821 -0.1915 -3.4799 -0.3836 -1.9387 -1.3375 -0.0450 -0.1570 -0.1738
S-103 <2en> Tämpi lețkēļ um suggõn līvõd ja muinizt baltõd rovd – latgald, zemgald ja kuršõd – kubbõpūtimizõs, ja kūoḑõn se um alīzõks lețkīel āinagizvīțliz killõn.
W-103 0.044 seconds
H-103 -0.7942278981208801 Hispanic Latvian language has arisen in the congregation of the Livonian and ancient white people – the Latgalds, the undergalds and the Kurds – and is based on the sole sound of the Latvian language.
D-103 -0.7942278981208801 Hispanic Latvian language has arisen in the congregation of the Livonian and ancient white people – the Latgalds, the undergalds and the Kurds – and is based on the sole sound of the Latvian language.
P-103 -1.5763 -1.1877 -0.0985 -0.1627 -0.8370 -0.5116 -2.7488 -0.1295 -0.4857 -1.2681 -2.8136 -1.9953 -0.1334 -0.5257 -1.7601 -0.7519 -0.0925 -0.3251 -0.0497 -0.2055 -0.1283 -0.3025 -0.5135 -1.2453 -1.5238 -2.4351 -0.1290 -0.2586 -0.2001 -1.1965 -0.1862 -0.5601 -1.0004 -1.3799 -0.1180 -0.1713 -0.2666 -0.2326 -1.6599 -1.4633 -0.8180 -0.3082 -0.2096 -1.9445 -0.9672 -0.2704 -0.7823 -1.4665 -0.0565 -1.4665 -0.2432 -1.9195 -0.1181 -0.9277 -0.1841 -0.1650
S-104 <2en> Nei īž līvõd mȯjjimi um nǟdõb ka setmiņ Lețmō irdiz ja tämpiz kultūr arās folklorst sīemnāigad sōņõ.
W-104 0.023 seconds
H-104 -1.0341717004776 The experience of the Livonian people is also visible in several Latvian traditions and contemporary cultures from folklore to food.
D-104 -1.0341717004776 The experience of the Livonian people is also visible in several Latvian traditions and contemporary cultures from folklore to food.
P-104 -1.1114 -3.8562 -0.3094 -1.9075 -0.2775 -0.0996 -0.9282 -0.1318 -1.3467 -0.7131 -0.4015 -0.6937 -1.3690 -1.8411 -2.8697 -2.7202 -1.0063 -0.2400 -1.3834 -0.3136 -0.5404 -0.5773 -1.5299 -0.6263 -0.3599 -1.1272 -0.5118 -0.1641
S-105 <2en> Sīepierāst līvõd irdi kultūr um pandõd ka Lețmō kultūr kanon sizzõl ja Lețmō pūojpandõks agā Satversme preambuls um īžkiz pāinatõd līvõd irdõkst jag lețlizt rov sindimizõst.
W-105 0.031 seconds
H-105 -0.6871698498725891 Therefore, Livonian culture is also included in the Latvian cultural canon and the preamble of the Constitution of Latvia or the Constitution specifically emphasizes the tradition of Livonia in the birth of a part of the Latvian people.
D-105 -0.6871698498725891 Therefore, Livonian culture is also included in the Latvian cultural canon and the preamble of the Constitution of Latvia or the Constitution specifically emphasizes the tradition of Livonia in the birth of a part of the Latvian people.
P-105 -0.9668 -0.9584 -2.1865 -0.0720 -0.7411 -0.0894 -1.7755 -1.0262 -0.1899 -0.9055 -0.1755 -0.5976 -0.5994 -1.6259 -0.8023 -0.4048 -0.5658 -0.5743 -0.8947 -0.5587 -0.1048 -0.8868 -0.2267 -0.1148 -0.6983 -0.0275 -0.8882 -0.4727 -0.1032 -2.3222 -1.4529 -0.4137 -0.5174 -1.3881 -0.3781 -0.7985 -0.0793 -0.0124 -3.2518 -0.3626 -0.3620 -0.1579 -1.4943 -0.3038 -0.1232 -0.6635 -0.3691 -0.3410 -0.1738 -0.1598
S-106 <2en> Līvlizt āt tämpiz sōņõ sõitõnd äb set prațțõ eņtš irdiz kīel ja kultūr, bet sīe ka kazāntõ, ja ni līvõd tämpi kultūr um ikš jag Lețmō tämpizõst kultūrrūimst.
W-106 0.044 seconds
H-106 -0.6805439591407776 The Livonian has traveled so far not only to practise its traditional language and culture, but also to develop it, and now the Livonian hispanic culture is one part of the modern culture of Latvia.
D-106 -0.6805439591407776 The Livonian has traveled so far not only to practise its traditional language and culture, but also to develop it, and now the Livonian hispanic culture is one part of the modern culture of Latvia.
P-106 -1.8952 -0.1537 -0.2452 -0.2886 -0.1994 -1.7694 -2.0762 -1.0458 -2.9141 -0.0231 -0.3312 -0.1406 -0.1480 -1.8615 -0.7502 -0.0172 -1.7175 -1.5062 -0.0982 -0.1763 -0.1129 -1.1011 -0.1361 -0.6617 -0.2653 -0.4018 -0.3552 -0.4745 -0.1917 -0.4777 -0.8256 -0.2875 -0.0944 -0.0557 -0.0521 -1.4434 -2.3744 -0.7661 -0.2241 -0.2294 -0.6377 -0.4444 -0.1254 -0.8161 -1.3408 -2.0370 -0.3884 -0.0310 -0.1548 -0.1633
S-107 <2en> Līvõ kēļ um Urāld kīelaim Vāldamiersūomõ kīeldgrup kēļ, mõitiz äbku lețkēļ, mis um indoeirop kīelaim baltõd kīeldgrup kēļ.
W-107 0.031 seconds
H-107 -0.7812733054161072 The Liv language is the Ural watchim Baltic Seattle group language, otherwise than the Latvian language, which is the Indo-European watchim white language group language.
D-107 -0.7812733054161072 The Liv language is the Ural watchim Baltic Seattle group language, otherwise than the Latvian language, which is the Indo-European watchim white language group language.
P-107 -1.2766 -0.6799 -0.0883 -0.1335 -0.2121 -0.5377 -1.9373 -0.0937 -2.8597 -1.8445 -1.8389 -0.0809 -2.4262 -0.7341 -0.9815 -0.7052 -1.8652 -0.2999 -0.6380 -0.1419 -0.2917 -0.7209 -1.1884 -0.1416 -0.3153 -1.3278 -0.0514 -0.5251 -0.3621 -0.0831 -0.1116 -1.5737 -1.6242 -0.0573 -0.8113 -0.1677 -0.1787
S-108 <2en> Līvõ kīel amā ležglimizt sugūd ātõ ēsti kēļ, sūomõ kēļ ja karēld kēļ, kougimizt sugūd ātõ sāmõ, ungār, mordva ja munt Urāld kīelaim kīeld.
W-108 0.044 seconds
H-108 -1.0071473121643066 The closest members of the Liv language are Estonian, Finnish and Cartene, the most remote are the Finnish, Hungarian, mordva and other Ural language.
D-108 -1.0071473121643066 The closest members of the Liv language are Estonian, Finnish and Cartene, the most remote are the Finnish, Hungarian, mordva and other Ural language.
P-108 -1.2726 -1.0270 -0.1111 -3.5766 -0.3428 -0.3492 -0.4287 -0.0623 -0.2519 -0.4744 -0.3309 -0.2155 -0.1443 -0.3152 -2.9631 -3.2733 -4.1773 -0.4776 -0.8225 -2.5822 -1.6380 -1.8258 -1.5113 -2.5611 -0.2441 -0.0268 -0.3561 -1.2516 -0.6629 -0.2449 -0.4051 -0.2560 -0.0961 -0.1014 -2.4761 -0.2425 -0.1662
S-109 <2en> Līvõ kēļ um lieudtõb UNESCO mōīlma ädāstõd kīeld atlasõs (UNESCO Atlas of the World’s Languages in Danger).
W-109 0.031 seconds
H-109 -0.5243245959281921 The Liv language is found in UNESCO’s World Warned Language Atlas (UNESCO Atlas of the World’s Languages in Danger).
D-109 -0.5243245959281921 The Liv language is found in UNESCO’s World Warned Language Atlas (UNESCO Atlas of the World’s Languages in Danger).
P-109 -1.2309 -0.7719 -0.0735 -0.1878 -0.2401 -1.3023 -0.3186 -0.8182 -0.9998 -0.1367 -1.4093 -2.7513 -1.9057 -0.2126 -1.5219 -0.7605 -0.0144 -0.0451 -0.0186 -0.0271 -0.1798 -0.3528 -0.0937 -0.1626 -0.1475 -0.1096 -0.1763 -0.2555 -0.0767 -0.0067 -0.3016 -0.1695
S-110 <2en> Lețmōl līvõ kīel status um sǟdõd Vald kīel pandõks 4. paragrafs, kus um kītõd: „Vald ūoļikšõb iļ līvõ kīel neku irgjelānikād (autohtond) kīel prațțimiz, kaitsimiz ja kazāntimiz jedst.”
W-110 0.044 seconds
H-110 -0.5711917281150818 In Latvia, the status of the Liv language has been established in Section 4 of the State Language Act, which states: “The State shall care for the skills, protection and development of the Liv language as initiators (autohtons).
D-110 -0.5711917281150818 In Latvia, the status of the Liv language has been established in Section 4 of the State Language Act, which states: “The State shall care for the skills, protection and development of the Liv language as initiators (autohtons).
P-110 -0.8200 -0.0632 -0.9256 -0.2859 -0.1701 -0.1346 -0.9293 -0.3198 -0.0959 -0.1482 -1.6244 -0.1285 -1.0335 -0.1408 -0.8996 -0.8604 -0.1375 -0.1575 -0.8590 -0.2683 -0.2756 -0.7232 -1.5021 -0.5954 -0.3836 -0.5491 -0.4524 -0.2494 -0.6493 -1.6563 -0.5402 -0.1943 -1.3519 -0.2095 -0.1915 -0.3057 -0.0554 -0.1293 -0.2964 -0.1999 -0.0549 -0.0702 -0.1174 -3.6713 -0.4159 -0.3232 -0.8774 -0.4416 -1.6477 -0.1008 -0.4550 -1.3392 -0.2457
S-111 <2en> Līvõ kēļ neku līvõd irdiz kultūr ikš jag um 2009. āigastõst lieudtõb ka Lețmō kultūr kanonst.
W-111 0.023 seconds
H-111 -0.7441197037696838 The Liv language as part of Livonian culture has since 2009 also been found in the Latvian Culture Cannon.
D-111 -0.7441197037696838 The Liv language as part of Livonian culture has since 2009 also been found in the Latvian Culture Cannon.
P-111 -2.2150 -0.5531 -0.0798 -0.0978 -0.6898 -0.9549 -0.1506 -2.1069 -0.0503 -1.3273 -0.0386 -0.4194 -1.1358 -1.0097 -0.1824 -1.9471 -0.4120 -0.2527 -1.0043 -0.8711 -0.9831 -1.5268 -0.3320 -0.6722 -0.1681 -0.1665
S-112 <2en> Vel 19. āigastsadās līvõ kīelkõks rõkāndiz immõr 3000 rištīngt, 20. āigastsadā sidāmõl vȯļ 1500 kīel prațțijizt, bet tämpõ līvõkīelkõks võibõd eņtš vaisõ rõkāndõ immõr 30 rištīngt amās mōilmas.
W-112 0.044 seconds
H-112 -0.7333900928497314 In the 19th century, about 3,000 people spoke in Livonian language, there were 1,500 speakers in the mid-20th century, but about 30 people in the world can speak between Livonian and Livonian.
D-112 -0.7333900928497314 In the 19th century, about 3,000 people spoke in Livonian language, there were 1,500 speakers in the mid-20th century, but about 30 people in the world can speak between Livonian and Livonian.
P-112 -2.2288 -0.3141 -0.4919 -0.1711 -0.0278 -0.8344 -0.5865 -0.6184 -0.0268 -0.3041 -1.5396 -1.8068 -0.3412 -0.0522 -0.6219 -0.3827 -1.8778 -0.4544 -3.2020 -0.2422 -0.1600 -0.0094 -2.9447 -0.1859 -0.4770 -0.1485 -0.3262 -0.2413 -0.1081 -0.0229 -0.4266 -1.1604 -1.8113 -0.0431 -0.1608 -1.5848 -0.7565 -1.9205 -0.7038 -0.4793 -1.0946 -1.1090 -0.0616 -0.0085 -0.2980 -1.6658 -2.1051 -0.0432 -0.0073 -0.0875 -1.6922 -0.1679
S-113 <2en> Amā āiga kazāb ka nänt lug, kis ātõ oppõnd līvõ kīel alīži.
W-113 0.016 seconds
H-113 -0.9115608334541321 All the time, the number of those who have studied the Liv language is also growing.
D-113 -0.9115608334541321 All the time, the number of those who have studied the Liv language is also growing.
P-113 -3.0368 -0.5298 -0.2093 -1.0360 -0.5859 -0.0733 -0.1942 -1.5744 -0.2983 -1.0146 -0.6223 -0.8990 -1.8040 -0.0676 -0.5576 -3.0382 -1.6623 -0.7206 -0.1441 -0.1631
S-114 <2en> Līvõ kīel tundimi um tǟdzi lețkīel mȯistimiz pierāst, sīestõ mȯlmõd kīeld ātõ mȯjõnõd ikštūoizta pitkāld ikštuoizõks īdskubs jellõs.
W-114 0.031 seconds
H-114 -0.7899622321128845 The learning of the Liv language is important for the understanding of the Latvian language, because both languages have long understood each other in working together.
D-114 -0.7899622321128845 The learning of the Liv language is important for the understanding of the Latvian language, because both languages have long understood each other in working together.
P-114 -1.6781 -4.4279 -0.3550 -1.0395 -0.8203 -0.0703 -0.1149 -0.1485 -0.6558 -0.6948 -1.7235 -0.5126 -0.1378 -1.5835 -0.1388 -0.1712 -0.3807 -2.9923 -0.2318 -0.2363 -0.3835 -0.9885 -0.7556 -0.1667 -0.0865 -1.1930 -1.0017 -0.1785 -0.6685 -0.1627
S-115 <2en> Kuigid kīel rõkāndijiži um veitõ, līvõ kēļ um tǟdzi Urāld kīeld tuņšlijizt pierāst, sīestõ se um eņtšvīți ja sīes ātõ lieudtõbõd pǟgiņd vanād ummitõd.
W-115 0.044 seconds
H-115 -0.7560794949531555 While there are few speakers, the Liv language is important for the students of Ural languages, because it is inherent and many old ummites are found in it.
D-115 -0.7560794949531555 While there are few speakers, the Liv language is important for the students of Ural languages, because it is inherent and many old ummites are found in it.
P-115 -1.0298 -0.1480 -0.9709 -0.3161 -1.1832 -0.6811 -0.1716 -0.9546 -1.4756 -0.1787 -0.0867 -0.0788 -0.1731 -0.6130 -0.5916 -1.9999 -0.7100 -0.3476 -0.1816 -0.0741 -1.0436 -0.2541 -0.7263 -0.5913 -0.3170 -2.8708 -1.0433 -0.0036 -0.4026 -0.9588 -0.2934 -3.3746 -0.7334 -3.0245 -0.5021 -0.6096 -0.9349 -0.2741 -0.1593 -0.1601
S-116 <2en> Nei īž līvõ kīel mūoštami um tǟdzi ka līvõd eņtš pierāst, sīestõ kūoḑõn kēļ um alz vȯnd līvlizt eņtštundimiz alīzõks.
W-116 0.023 seconds
H-116 -0.7274169325828552 The knowledge of the Liv language is also important for the Liv language itself, because of which the Liv language has always been the basis of the knowledge of the Livs.
D-116 -0.7274169325828552 The knowledge of the Liv language is also important for the Liv language itself, because of which the Liv language has always been the basis of the knowledge of the Livs.
P-116 -1.2337 -2.0715 -0.1523 -0.8653 -0.2257 -0.0776 -0.1100 -0.2655 -1.0116 -0.2743 -0.3382 -0.7466 -0.2157 -0.0832 -1.7046 -0.3882 -0.4544 -1.8779 -2.2256 -1.1116 -1.4761 -1.4266 -0.0971 -0.0159 -0.4633 -0.2098 -0.2990 -1.5028 -0.1157 -1.0981 -1.8030 -2.0088 -0.2201 -0.7723 -0.0854 -0.0810 -0.9061 -0.1973 -0.1575
S-117 <2en> Tämpõ jegā rištīng võib oppõ līvõ kīeldõ īž, kursiš ja azūmiš, ka setmiņ ilīzskūols.
W-117 0.023 seconds
H-117 -0.929314374923706 Today, every person can learn the Liv language in their own, courses and fields, as well as in several iconic schools.
D-117 -0.929314374923706 Today, every person can learn the Liv language in their own, courses and fields, as well as in several iconic schools.
P-117 -0.3111 -0.8734 -0.6758 -0.3856 -0.7249 -0.8722 -0.7946 -0.6192 -0.0536 -0.0173 -1.3021 -1.6943 -0.2415 -0.2688 -2.7108 -0.3081 -2.0510 -0.4892 -1.6957 -0.1003 -0.1064 -0.7395 -1.6335 -4.0070 -2.0482 -0.2718 -1.6321 -0.1508 -0.1714
S-118 <2en> Lūotõmõst, ku tulbizāigas līvõ kīeldõ võib oppõ ka võrgõs.
W-118 0.016 seconds
H-118 -0.8702965378761292 It should be prayed that in the future the Liv language can also be studied in the network.
D-118 -0.8702965378761292 It should be prayed that in the future the Liv language can also be studied in the network.
P-118 -1.9195 -1.2066 -0.1082 -2.9138 -0.3298 -0.0930 -1.6873 -0.2361 -0.5225 -1.6243 -0.7118 -0.0596 -0.0333 -0.8942 -1.9015 -0.1935 -1.2274 -1.6854 -0.3786 -1.0564 -0.2009 -0.1627
S-119 <2en> Līvlizt ātõ rikkõd äb set ențš kīel ja istōrijõks, bet ka rikkõks ja eņtšvīțliz kultūr pierāndõksõks, missõks võib tundtõbõks sōdõ portāl jags Irdi kultūr.
W-119 0.044 seconds
H-119 -0.9565380811691284 The Livonians are akin to not only the enthusiast language and history, but also the rich and local cultural heritage that can be recognized in the section of the Portal’s Irdi Culture.
D-119 -0.9565380811691284 The Livonians are akin to not only the enthusiast language and history, but also the rich and local cultural heritage that can be recognized in the section of the Portal’s Irdi Culture.
P-119 -1.5940 -0.1417 -0.3052 -0.6871 -2.4955 -0.8659 -3.5534 -3.5115 -0.1429 -0.3083 -0.1682 -1.5717 -1.7439 -0.6490 -0.1457 -0.7067 -0.0958 -0.1773 -0.1486 -0.6165 -0.1108 -0.2267 -0.6393 -2.8089 -0.1537 -1.3448 -0.6149 -1.9798 -2.3146 -0.8737 -0.5652 -1.9354 -1.3306 -0.5648 -0.3681 -0.1472 -0.4032 -3.1123 -0.0959 -2.4630 -0.1615 -1.4594 -0.0438 -0.3120 -0.1778 -0.1642
S-120 <2en> Līvlizt ātõ tīend ja kazāntõbõd jeddõpēḑõn ka eņtš tämpiz kultūr – kuņšt, muzīk ka kērandõks, mis jūrd lǟbõd pigātagā 200 āigastõ tāgižpēḑõn.
W-120 0.031 seconds
H-120 -0.8934321403503418 The Livonians have also developed and developed their contemporary culture – art, music, as well as writers who went to the sea almost 200 years ago.
D-120 -0.8934321403503418 The Livonians have also developed and developed their contemporary culture – art, music, as well as writers who went to the sea almost 200 years ago.
P-120 -0.9880 -0.1829 -0.3987 -0.5249 -2.4633 -0.3776 -0.9971 -1.7653 -0.1664 -0.9006 -0.1093 -1.1885 -0.1251 -1.6158 -0.1978 -0.5035 -0.0557 -1.1489 -2.2250 -0.0425 -0.1645 -2.3018 -0.1441 -2.5255 -1.9687 -0.9640 -0.9037 -4.1756 -0.7523 -0.0151 -0.0821 -0.0785 -0.1592 -0.1649
S-121 <2en> Līvõd tämpiz kultūrõks ja sīe kȭlbatimizõks võib tundtõbõks sōdõ portāl jagsõ Tämpi kultūr.
W-121 0.023 seconds
H-121 -0.8967688679695129 The Livonian contemporary culture and its use can be found in the section of Hispi Culture.
D-121 -0.8967688679695129 The Livonian contemporary culture and its use can be found in the section of Hispi Culture.
P-121 -1.2168 -2.8428 -0.2168 -2.0509 -0.0358 -1.4093 -0.4560 -0.3344 -0.3089 -1.3685 -0.6767 -0.3503 -1.7275 -0.6402 -0.3555 -1.0666 -0.1295 -1.6780 -1.3275 -0.7930 -0.5666 -0.1773
S-122 <2en> Vīļakub jagsõ īdskubs um amāsuglimi tieut iļ līvlizt.
W-122 0.041 seconds
H-122 -0.8831794261932373 Together, there is all kinds of information about the Livonian community.
D-122 -0.8831794261932373 Together, there is all kinds of information about the Livonian community.
P-122 -3.3076 -1.4194 -2.7068 -0.2468 -0.4659 -0.8307 -0.3532 -0.1450 -0.1266 -0.4971 -1.5476 -0.1804 -0.2358 -0.2028 -0.2023 -2.8015 -0.4624 -0.1654
S-123 <2en> Täs ātõ lieudtõbõd tuņšlimizt iļ līvõd istōrij ja kultūr (kīel tuņšlimizt ātõ lieudtõbõd portāl jags lingua.livones.net), rōntõd, võrgõ resursõd, video ja munt.
W-123 0.044 seconds
H-123 -0.46942129731178284 Here are studies on Livonian history and culture (language studies can be found in the section lingua.livones.net), books, network resources, video and others.
D-123 -0.46942129731178284 Here are studies on Livonian history and culture (language studies can be found in the section lingua.livones.net), books, network resources, video and others.
P-123 -1.4449 -0.7782 -0.7440 -1.7200 -0.7572 -0.0692 -0.8524 -0.3100 -0.0854 -0.1484 -0.1156 -0.1754 -2.9241 -0.7281 -0.0976 -0.8162 -0.6285 -0.1555 -0.0261 -0.4206 -1.1360 -0.9671 -1.0088 -0.0235 -0.1231 -0.1414 -0.0924 -0.0247 -0.0372 -0.1391 -0.0312 -0.4505 -0.0709 -0.1952 -0.1953 -0.0561 -0.1715 -0.4547 -0.4396 -0.5070 -0.2495 -0.2037
S-124 <2en> Jagdõ amā āiga täutõbõd ūd kēradõks ja materjalõdõks.
W-124 0.041 seconds
H-124 -0.7211869359016418 The division is filled all the time with new articles and materials.
D-124 -0.7211869359016418 The division is filled all the time with new articles and materials.
P-124 -0.9339 -2.1985 -1.9461 -1.7405 -1.0199 -0.4543 -0.0733 -0.1761 -0.1764 -0.7263 -0.1393 -0.1855 -0.1667 -0.1598
S-125 <2en> Enn Säde dokumentāli film Liivlaste lood (Līvõd nīžõd), 1991 um tīedõd 1988.–1990. āigasts.
W-125 0.031 seconds
H-125 -0.5744693875312805 Enn Säde documentary film The Livonian Stories, 1991, was made from 1988 to 1990.
D-125 -0.5744693875312805 Enn Säde documentary film The Livonian Stories, 1991, was made from 1988 to 1990.
P-125 -1.1367 -0.1087 -0.0362 -0.0940 -0.2658 -0.1577 -0.2574 -1.1764 -0.8483 -0.0636 -2.5478 -0.0613 -1.0886 -0.2357 -1.1552 -0.1345 -0.0116 -0.6947 -0.3536 -2.0642 -1.1763 -0.6128 -0.0879 -0.2961 -0.1030 -0.1677
S-126 <2en> Sīesõ ātõ nǟdõb Oskar Stalte, Elfrīda Žagare, Alfon Berthold, Poulīn Kļaviņa, Aņdrõks Zēberg, Irma Fridrihson.
W-126 0.044 seconds
H-126 -0.29031863808631897 It includes Oskar Stalte, Elfrīda Žagare, Alfon Berthold, Poulīn Kļaviņa, Andris Zēbergs, Irma Fridrihson.
D-126 -0.29031863808631897 It includes Oskar Stalte, Elfrīda Žagare, Alfon Berthold, Poulīn Kļaviņa, Andris Zēbergs, Irma Fridrihson.
P-126 -2.3297 -0.9508 -0.4293 -0.3909 -0.1903 -0.0279 -0.0828 -0.7523 -0.2792 -0.0172 -0.0272 -0.0423 -0.1559 -0.0183 -0.0230 -0.3868 -0.1514 -0.0419 -0.3485 -1.2350 -0.0875 -0.0154 -0.1382 -0.0215 -0.1573 -1.9748 -0.1175 -0.0077 -0.0398 -0.1593 -0.1775 -0.0304 -0.1415 -0.0268 -0.1456 -0.0255 -0.0676 -0.0173 -0.2165 -0.1646
S-127 <2en> Films ātõ kȭlbatõd Ēstimō Film arhīv ja Eesti Telefilm arhīv materiald.
W-127 0.016 seconds
H-127 -0.5191369652748108 The film uses the materials of the Estonian Film Archives and the Estonian Telefilm archive.
D-127 -0.5191369652748108 The film uses the materials of the Estonian Film Archives and the Estonian Telefilm archive.
P-127 -0.5938 -0.3817 -0.9274 -1.1305 -2.4050 -0.3164 -0.3652 -0.3278 -0.0948 -0.4903 -0.1636 -0.6137 -0.2094 -0.0725 -0.4339 -0.0648 -0.5856 -0.1679
S-128 <2en> Stsenārij autor ja režisor – Enn Säde, operator Ago Ruus.
W-128 0.016 seconds
H-128 -0.5101422667503357 The author and director of the scene – Enn Säde, operator Ago Ruus.
D-128 -0.5101422667503357 The author and director of the scene – Enn Säde, operator Ago Ruus.
P-128 -2.8817 -1.5410 -0.4507 -0.1025 -0.3394 -0.2625 -2.1056 -0.9864 -0.0269 -0.1282 -0.0372 -0.1208 -0.2163 -0.3548 -0.0704 -0.0353 -0.0319 -0.1269 -0.2230 -0.1611
S-129 <2en> Līvõ lōlõd um ežmi lețmōl tīedõd dokumentāli film iļ līvlizt.
W-129 0.041 seconds
H-129 -0.46085071563720703 Livonian songs are the first documentary film made in Latvia about Livonian.
D-129 -0.46085071563720703 Livonian songs are the first documentary film made in Latvia about Livonian.
P-129 -2.0988 -0.0550 -0.6424 -0.0681 -0.2596 -0.1678 -0.3472 -0.1846 -0.0859 -0.1935 -0.1956 -0.0761 -2.3036 -0.2316 -0.4858 -0.6689 -0.2422 -0.0802 -0.0092 -0.3483 -1.2311 -0.1632
S-130 <2en> Film um sīe autor, režisor ja operator Andris Slapiņš diplomtīe Nõvkub Vald kinematografij instituts.
W-130 0.031 seconds
H-130 -0.6029725670814514 The film is a diploma work by Andris Slapiņš, the author, director and operator of it.
D-130 -0.6029725670814514 The film is a diploma work by Andris Slapiņš, the author, director and operator of it.
P-130 -0.8652 -0.0941 -0.3574 -1.9087 -0.2257 -0.7119 -0.3858 -0.1107 -0.0678 -0.2214 -0.0335 -1.0270 -1.6953 -0.0499 -0.2429 -0.0465 -0.2963 -0.4786 -0.2927 -1.4891 -2.1434 -0.5214
S-131 <2en> Ēsti Televīzij film Liivi rannal, 1966. (Līvõd rāndas) nägțõb Kurāmō līvõd jelāmiz 1960. āigastiš.
W-131 0.031 seconds
H-131 -0.738953173160553 The Estonian Television film on the Beach of Livs, 1966. (On the Beach of the Livs) shows the life of the Kuramaa Livs in the 1960s.
D-131 -0.738953173160553 The Estonian Television film on the Beach of Livs, 1966. (On the Beach of the Livs) shows the life of the Kuramaa Livs in the 1960s.
P-131 -1.3763 -2.1022 -0.3868 -0.2469 -0.8549 -0.8475 -0.4034 -2.5458 -0.1337 -2.5605 -0.0602 -1.7375 -0.4584 -0.7546 -0.0756 -0.2073 -1.1999 -0.1942 -1.0718 -0.1504 -0.9360 -0.7336 -0.0468 -0.1560 -0.2578 -1.1888 -0.4366 -0.5188 -0.1293 -1.3997 -1.1287 -1.5787 -3.4284 -0.2614 -0.0546 -0.1745 -0.3097 -0.1302 -0.2828 -0.1710 -0.1784 -0.1663
S-132 <2en> Films ātõ nǟdõbõd pǟgiņd tundtõb līvlizt (Hilda Grīva, Katriņ Krason j.m.).
W-132 0.023 seconds
H-132 -0.4365256726741791 Many renowned Livonians (Hilda Grīva, Katriņ Krason, etc.) are seen in the film.
D-132 -0.4365256726741791 Many renowned Livonians (Hilda Grīva, Katriņ Krason, etc.) are seen in the film.
P-132 -1.2280 -3.2368 -0.0184 -0.0676 -0.0824 -0.3476 -0.1981 -0.4172 -1.6425 -0.4873 -0.0725 -0.0845 -0.0224 -0.0382 -0.0346 -0.1587 -0.0091 -0.5597 -0.2696 -0.0665 -1.1980 -0.1077 -0.2463 -0.1526 -0.7195 -0.8161 -0.3671 -0.3059 -0.2336 -0.1789 -0.1652
S-133 <2en> Film um līvõkīelkõks ja ēstikīelkõks, sīes ātõ kūltõbõd rovlōlõd ja tämpizt kompozitsijd.
W-133 0.023 seconds
H-133 -0.5370215177536011 The film is Livonian and Estonian, it hears folk songs and contemporary compositions.
D-133 -0.5370215177536011 The film is Livonian and Estonian, it hears folk songs and contemporary compositions.
P-133 -0.8263 -0.1684 -0.2709 -2.0217 -0.1373 -0.0334 -0.0541 -0.3361 -0.0542 -0.5603 -3.4641 -0.9164 -0.2425 -1.0585 -0.1552 -0.1494 -0.1452 -0.5260 -0.1937 -0.1568 -0.1761 -0.1678
S-134 <2en> Film režisor um Endel Nõmberg, stsenarij autord –Eduard Vääri ja Ants Vist.
W-134 0.023 seconds
H-134 -0.5123983025550842 The film is directed by Endel Nõmberg, the authors of the scene – Eduard Vääri and Ans Vist.
D-134 -0.5123983025550842 The film is directed by Endel Nõmberg, the authors of the scene – Eduard Vääri and Ans Vist.
P-134 -1.2242 -0.2050 -1.7962 -1.0931 -0.1292 -0.0946 -0.0546 -0.0693 -0.0082 -0.1037 -0.0283 -0.4452 -1.5436 -0.5134 -0.5471 -0.1891 -0.3045 -2.5764 -1.0226 -1.4356 -0.0489 -0.0121 -0.1036 -0.3147 -0.5106 -0.0464 -0.0884 -0.1916 -0.1592
S-135 <2en> Viktor Berthold — līvli, kalāmīez ja aŗštiji — 100
W-135 0.041 seconds
H-135 -0.3457474112510681 Viktor Berthold — Livonian, fisherman and healer — 100
D-135 -0.3457474112510681 Viktor Berthold — Livonian, fisherman and healer — 100
P-135 -0.0657 -0.2650 -0.5203 -0.3232 -0.0851 -0.1316 -0.1196 -0.2317 -0.0714 -0.5645 -0.3117 -2.2997 -0.0946 -0.2070 -0.0514 -0.1894
S-136 <2en> Viktor Berthold (1921–2009) vȯļ perri nēšti, kīen aims, kuņtš vel vȯļ jelsõ täm nai Marta (s. Liedāne, 1925–1994) igapǟva kēļ vȯļ līvõ kēļ, ja ka perri, kīenkõks täs īž rāndas võiž rõkāndõ täm sindiz rāndakīelsõ.
W-136 0.044 seconds
H-136 -0.5981996655464172 Viktor Berthold (1921–2009) was the last of those whose family, while his wife Marta (s. Liedane, 1925–1994) was still alive, the daily language was Livonian, and also the last one to speak to in her native coastal language.
D-136 -0.5981996655464172 Viktor Berthold (1921–2009) was the last of those whose family, while his wife Marta (s. Liedane, 1925–1994) was still alive, the daily language was Livonian, and also the last one to speak to in her native coastal language.
P-136 -0.0176 -0.1663 -0.3600 -0.0361 -1.0793 -0.0337 -0.2151 -0.1596 -0.1464 -0.1737 -1.3107 -0.4764 -1.9576 -0.1284 -0.5437 -1.5672 -0.6869 -0.7889 -0.0293 -0.7325 -0.7006 -1.6223 -1.0427 -0.7489 -0.8269 -0.3150 -0.5048 -0.0631 -0.0263 -0.2437 -0.0121 -0.5935 -0.5127 -0.1350 -0.1270 -0.3328 -1.9827 -1.0904 -0.0936 -0.7273 -1.1266 -0.0318 -0.4384 -0.1653 -0.6073 -0.3292 -0.5353 -0.1732 -0.4094 -1.5954 -1.6557 -0.7936 -0.7001 -2.2262 -0.4287 -0.6120 -0.6468 -0.2398 -0.3787 -0.9214 -0.1647
S-137 <2en> 2021. āigast 16. janvārs mǟdlõm Viktor Berthold täm 100 āigast jubilejs.
W-137 0.016 seconds
H-137 -0.41668635606765747 On January 16, 2021, we remember Viktor Berthold at his 100th anniversary.
D-137 -0.41668635606765747 On January 16, 2021, we remember Viktor Berthold at his 100th anniversary.
P-137 -0.1548 -0.7479 -0.0640 -0.2032 -0.0721 -0.4149 -0.3686 -1.9498 -0.0500 -0.1095 -2.0347 -0.3514 -0.0351 -0.1176 -0.0108 -0.2419 -0.1573
S-138 <2en> Viktor Berthold sūr strēk ențš igāst jelīz Kūolkas.
W-138 0.041 seconds
H-138 -0.9702643752098083 Viktor Berthold lived in Kolkata for a long time.
D-138 -0.9702643752098083 Viktor Berthold lived in Kolkata for a long time.
P-138 -0.0337 -0.1632 -1.4351 -2.1793 -0.4057 -1.3686 -1.2022 -2.7944 -0.2676 -1.9222 -0.3139 -0.3638 -0.1638
S-139 <2en> Līvõ ažāks ta amā jemīņ īrgiz jellõ obbõ, ku līvõ kīel mūoštajiži vȯļ pǟlõ īend veitõ ja jegā kīel prațțiji vȯļ īžkiz vertli.
W-139 0.031 seconds
H-139 -0.9369599223136902 As a Liv thing, he mostly began working lately, when the knowledge of Liv language was limited and the skill of each language was exceptionally valuable.
D-139 -0.9369599223136902 As a Liv thing, he mostly began working lately, when the knowledge of Liv language was limited and the skill of each language was exceptionally valuable.
P-139 -1.2920 -0.6555 -0.8392 -0.0470 -3.2317 -0.3729 -1.0254 -2.5129 -0.7401 -0.8443 -0.7810 -1.7316 -0.6602 -0.1960 -2.0722 -1.3523 -0.2921 -0.6089 -0.0416 -0.6722 -1.3096 -1.7294 -0.4872 -1.6757 -2.1961 -1.2057 -0.8021 -0.2837 -0.2529 -1.3390 -0.1480 -0.1267 -0.1665 -0.1649
S-140 <2en> 90. āigastõd īrgandõksõs Viktor īdskubs Martaks opātiz līvõ kīeldõ kūolkanikād pierāst.
W-140 0.016 seconds
H-140 -0.5322819352149963 In the early 90s Viktors, together with Marta, taught the Liv language for survivors.
D-140 -0.5322819352149963 In the early 90s Viktors, together with Marta, taught the Liv language for survivors.
P-140 -0.4229 -0.1258 -0.0495 -0.2878 -0.1780 -0.5831 -0.4405 -2.2809 -1.3538 -0.1624 -1.1507 -0.1433 -0.4041 -1.2760 -0.3536 -0.0599 -0.0804 -0.2964 -2.6260 -0.0512 -0.0420 -0.0432 -0.2008 -0.1626
S-141 <2en> Kuņtš vel Viktorõn vȯļ joudõ, ougust ežmiz pūolpǟvan ta alz vȯļ nǟdõb Līvõd pivši Irēl.
W-141 0.023 seconds
H-141 -0.8853350877761841 While Viktor was still in power, from August to the first day he was always visible in the Livonian torture in Mazirbe.
D-141 -0.8853350877761841 While Viktor was still in power, from August to the first day he was always visible in the Livonian torture in Mazirbe.
P-141 -0.8555 -0.1441 -0.2125 -2.5602 -0.2936 -0.7309 -1.0218 -0.2062 -2.1976 -0.6383 -1.2240 -0.5318 -0.3020 -3.3790 -1.0350 -0.3843 -0.0491 -1.1769 -0.6031 -0.8204 -0.4852 -0.1418 -1.8893 -0.0563 -3.9893 -1.2692 -0.5609 -0.0109 -0.1974 -0.3220 -0.1568
S-142 <2en> Viktor Berthold sīndiz 1921. āigast 16. janvārs Kōrli ja Maŗī Bertholdõd aims Vaid kilā Zūonkõl.
W-142 0.016 seconds
H-142 -0.8248372673988342 Viktor Berthold was born on January 16, 1921, in the family of Kōrli and Berthold Bertholdõd in Vaid village Zūonkõ.
D-142 -0.8248372673988342 Viktor Berthold was born on January 16, 1921, in the family of Kōrli and Berthold Bertholdõd in Vaid village Zūonkõ.
P-142 -0.0272 -0.1282 -1.0183 -0.0448 -0.7110 -2.0433 -0.0914 -0.8604 -0.0669 -1.6357 -0.2295 -0.8180 -0.1371 -0.1060 -0.3458 -0.1548 -2.6286 -4.1062 -1.9191 -1.3990 -0.9910 -0.0874 -0.8136 -0.7107 -0.2098 -0.1618
S-143 <2en> Zūonkõ kōrands kūž sugkazāmt jelīz laigā ja viš līvõd aim – Bertholdõd, kus kazīzt ilzõ setmiņ līvõd kultūr istōrij pierāst tǟdzist rovztõ.
W-143 0.031 seconds
H-143 -0.821330726146698 On Zūonkõ Farm, six tribes lived in a wide and vish Liv family – Bertholds, where several people grew up important for the history of Liv culture.
D-143 -0.821330726146698 On Zūonkõ Farm, six tribes lived in a wide and vish Liv family – Bertholds, where several people grew up important for the history of Liv culture.
P-143 -1.2229 -0.4501 -1.1670 -0.5084 -0.0789 -3.2067 -0.7818 -0.6965 -0.4144 -1.2241 -0.5954 -0.5706 -0.9884 -1.7155 -1.2849 -2.2281 -0.0557 -0.2655 -0.8449 -0.2925 -2.0368 -0.3562 -0.5164 -1.1702 -0.4115 -0.8559 -0.3594 -2.2300 -0.7477 -0.8287 -0.7557 -0.1476 -0.5658 -0.0679 -0.3995 -0.1832 -0.1643
S-144 <2en> Mȯlmõd īdskubs täm veļ Alfon Bertholdõks (līvõd lūoltiji, folklor nīžiji) ne, ilzõ kazzõs, prațīzt līvõ kīel amā eņtš igā.
W-144 0.031 seconds
H-144 -0.48617878556251526 Both together with his brother Alfon Berthold (Livonian poet, folklore narrator) they, growing up, practised the Liv language all their life.
D-144 -0.48617878556251526 Both together with his brother Alfon Berthold (Livonian poet, folklore narrator) they, growing up, practised the Liv language all their life.
P-144 -0.3635 -3.0241 -0.1489 -0.3282 -0.0231 -0.1359 -0.0452 -0.1334 -0.2919 -2.1750 -0.1977 -0.0357 -0.0221 -0.0447 -0.1391 -0.2324 -0.6092 -0.3706 -1.2475 -0.1827 -0.1406 -0.7931 -0.5171 -1.0952 -0.8782 -0.0688 -0.1505 -0.9748 -0.2091 -0.0654 -0.7925 -0.1719 -0.0375 -0.1047 -1.8391 -0.1706 -0.6256 -0.4129 -0.1623
S-145 <2en> Kūoḑõn Bertholdõd aimstõ tuļtõ amā paŗīmõd līvõ kīel rõkāndijid 21. āigastsadās.
W-145 0.016 seconds
H-145 -0.6463037133216858 Just from the Bertholdide family, the best Liv language speakers came in the 21st century.
D-145 -0.6463037133216858 Just from the Bertholdide family, the best Liv language speakers came in the 21st century.
P-145 -1.7218 -0.9660 -1.3021 -1.3290 -2.6008 -0.1630 -1.5626 -0.2583 -0.2703 -0.8786 -0.0383 -0.9844 -0.1029 -0.1529 -0.7552 -0.4865 -0.1401 -0.0398 -0.1251 -0.0230 -0.1557 -0.1623
S-146 <2en> Kōrli ja Maŗī Bertholdõd vaņīmiz pūogaks Alfonõks Vaid kilā Zūonkõl 1920. āigast immõr
W-146 0.016 seconds
H-146 -0.7624119520187378 Kōrli and Mari Bertholdõd with the eldest son of Alfon in Vaid village Zūonkõ around 1920
D-146 -0.7624119520187378 Kōrli and Mari Bertholdõd with the eldest son of Alfon in Vaid village Zūonkõ around 1920
P-146 -0.1937 -0.1923 -3.4268 -0.7944 -1.8043 -0.5462 -1.7133 -0.4751 -0.2699 -0.0115 -1.2173 -0.0245 -0.1228 -1.3200 -0.3239 -0.0881 -0.5633 -0.7646 -1.7671 -0.0264 -0.3652
S-147 <2en> Laz kil Viktor ja Marta Bertholdõd aim vȯļ perri aim rāndas, kis eņtš vail rõkāndõs kȭlbatiz līvõ kīeldõ, mȯlmõd lapst līvõ kīeldõ sīegid izt oppõt.
W-147 0.031 seconds
H-147 -0.6422504782676697 Although the family of Viktors and Marta Bertholdid was the last family on the beach who used the Liv language when talking between themselves, both children did not learn the Liv language.
D-147 -0.6422504782676697 Although the family of Viktors and Marta Bertholdid was the last family on the beach who used the Liv language when talking between themselves, both children did not learn the Liv language.
P-147 -0.4738 -2.2778 -1.2560 -0.1689 -0.0940 -0.8656 -0.4097 -0.6351 -0.1084 -1.7658 -0.8872 -0.2097 -0.1442 -1.2467 -0.3263 -0.2212 -0.5862 -1.8412 -0.8016 -2.0097 -0.2385 -0.0510 -0.0563 -1.6664 -0.8844 -1.1110 -1.1980 -0.1598 -0.2784 -0.1275 -0.6285 -0.1079 -0.5881 -0.3606 -0.1406 -0.0499 -0.0290 -0.8766 -0.1662
S-148 <2en><unk> Ārija Berthold, kis 1995. āigastõst īdskubs tidārõks jelāb AĪVs, mǟdliz nei:
W-148 0.016 seconds
H-148 -0.8988751173019409 Since 1995, Ārija Berthold, who lives together with her daughter in the U.S., remembered so:
D-148 -0.8988751173019409 Since 1995, Ārija Berthold, who lives together with her daughter in the U.S., remembered so:
P-148 -6.6301 -0.0922 -0.8461 -3.1852 -0.0512 -0.1319 -0.1576 -0.3485 -1.2135 -1.5196 -0.1780 -1.1249 -0.0556 -0.1512 -0.4527 -2.3822 -0.1351 -0.1162 -0.1428 -0.1656 -0.3992 -0.2129 -2.4111 -0.1924 -0.1757
S-149 <2en> Mäd kuonnõ sai rõkāndtõd līvõ kēļ.
W-149 0.008 seconds
H-149 -0.616668701171875 Liv language was told at our home.
D-149 -0.616668701171875 Liv language was told at our home.
P-149 -1.1288 -0.0537 -0.4030 -0.3090 -1.9866 -1.2365 -0.2379 -0.4350 -0.2131 -0.1630
S-150 <2en> Ka siz, ku vanbizt izt tōtõ, laz lapst sōgõd arū, mis ne rõkāndõbõd.
W-150 0.016 seconds
H-150 -0.4983518719673157 Also when parents didn't want children to understand what they were talking about.
D-150 -0.4983518719673157 Also when parents didn't want children to understand what they were talking about.
P-150 -0.6709 -0.8599 -0.0702 -1.3636 -0.5219 -0.1382 -0.1414 -1.1405 -0.1212 -0.2870 -0.1259 -0.1471 -1.8913 -0.5609 -0.1074 -0.1653 -0.1593
S-151 <2en> Ma tōž līvõ kīel jarā oppõ.
W-151 0.008 seconds
H-151 -0.30286091566085815 I wanted to learn the Liv language.
D-151 -0.30286091566085815 I wanted to learn the Liv language.
P-151 -0.2753 -0.2008 -0.1903 -0.2617 -1.3099 -0.3099 -0.0615 -0.0374 -0.2207 -0.1612
S-152 <2en> Ni ma tīedab set mūnda sõnā ja mīelõ um īend mūnda loul.
W-152 0.041 seconds
H-152 -0.5132846832275391 Now I know only a few words and there have been some songs left to mind.
D-152 -0.5132846832275391 Now I know only a few words and there have been some songs left to mind.
P-152 -0.1808 -0.3586 -0.1620 -0.4912 -0.2697 -0.0699 -0.2921 -0.3320 -2.3474 -0.7301 -0.6288 -0.9963 -0.0328 -0.1529 -0.8999 -0.9745 -0.5058 -0.1688 -0.1587
S-153 <2en> Ma mõtlõb, ku ma sōks luggõ, sīest ma mǟdlõb, ku jemā opātiz, kui um luggõmõst umlautidi.
W-153 0.031 seconds
H-153 -0.5916569232940674 I think I would be able to read because I remember that my mother taught me how to read onlauts.
D-153 -0.5916569232940674 I think I would be able to read because I remember that my mother taught me how to read onlauts.
P-153 -0.1512 -0.1890 -0.2765 -1.6139 -1.7347 -0.0422 -0.1620 -0.3659 -0.8442 -0.1415 -0.1596 -1.4474 -1.1066 -0.2272 -0.2196 -0.9022 -0.2661 -0.2710 -0.1741 -2.8925 -0.7363 -0.0284 -0.5130 -0.1681 -0.1583
S-154 <2en> Siz ku ma kizīz täm kädst, mikšpierāst minnõn izt opātõt līvõ kīeldõ, ta kītiz vastõ, ku se vȯļ seļļi kēl, mis vȯļ mōzõ pīkstõd, mis iz tūoḑ rõkāndõ.
W-154 0.031 seconds
H-154 -0.7968575358390808 Then, when I asked him why I was not taught the Liv language, he said to the contrary that it was the kind of walk that was suppressed, which was not allowed to speak.
D-154 -0.7968575358390808 Then, when I asked him why I was not taught the Liv language, he said to the contrary that it was the kind of walk that was suppressed, which was not allowed to speak.
P-154 -0.7080 -1.0377 -0.2656 -0.1519 -0.1095 -0.9119 -0.3337 -0.2715 -2.2278 -0.2722 -0.6387 -1.1676 -0.2540 -0.0685 -0.0389 -0.2291 -0.1945 -0.7025 -3.0351 -1.2221 -0.1147 -0.4789 -0.4052 -0.1542 -1.1882 -0.6697 -0.1701 -3.6372 -0.3212 -0.6452 -2.5562 -0.1285 -1.9637 -0.3175 -1.3377 -0.1955 -2.5948 -0.1589 -1.4216 -0.2117 -0.1596
S-155 <2en> Viktor ja Marta Bertholdõd līvõkīel stuņḑs Kūolka alīzskūols 1990. āigastõd īrgandõksõs
W-155 0.016 seconds
H-155 -0.7835627794265747 Viktors un Marts Bertholds in Livonian primary school Kolkas in the early 1990s
D-155 -0.7835627794265747 Viktors un Marts Bertholds in Livonian primary school Kolkas in the early 1990s
P-155 -0.0930 -0.4522 -0.9341 -2.9304 -0.6761 -0.1209 -1.1751 -3.1291 -0.2845 -0.1144 -0.0112 -0.0453 -1.2351 -0.7087 -2.3367 -0.4795 -1.5598 -0.2095 -0.0738 -0.0415 -0.1621 -0.4655
S-156 <2en> 2008. āigast sõv vȯļ ežmi, ku Viktor kūož benk pǟl Līvõd pivši ei tijāks.
W-156 0.016 seconds
H-156 -0.5947899222373962 The 2008 war was the first that Viktor's place on the bench in the Livonian pivots remained empty.
D-156 -0.5947899222373962 The 2008 war was the first that Viktor's place on the bench in the Livonian pivots remained empty.
P-156 -0.3513 -0.2907 -0.5493 -0.1733 -0.2201 -0.1017 -1.8278 -0.2915 -1.7183 -0.1714 -0.1594 -0.2714 -0.3014 -0.1570 -0.1216 -0.9980 -0.4193 -0.8455 -0.0858 -2.2269 -0.0448 -1.1133 -2.0645 -0.4640 -1.0246 -0.8148 -0.1099 -0.1715 -0.1599
S-157 <2en> Viktor Berthold lekš igāniz novvõm, ku ta vȯļ kōdõkskimdõ kōdõks āigastõ vannit 2009. āigast 23. februārs.
W-157 0.023 seconds
H-157 -0.4068600833415985 Viktor Berthold went to any rest when he was eighty-eight years old on 23 February 2009.
D-157 -0.4068600833415985 Viktor Berthold went to any rest when he was eighty-eight years old on 23 February 2009.
P-157 -0.0332 -0.1397 -0.8640 -2.3985 -0.8603 -0.3631 -0.2211 -0.4065 -0.1326 -0.2544 -0.4133 -0.7140 -0.1416 -0.0199 -0.3034 -0.2816 -0.1435 -0.4955 -0.0435 -0.1508 -0.1637
S-158 <2en> Ta novūb Kūolka kālmadtarās.
W-158 0.006 seconds
H-158 -0.7644184827804565 He vacations in Kolkas cemetery.
D-158 -0.7644184827804565 He vacations in Kolkas cemetery.
P-158 -0.7713 -1.6189 -0.2118 -0.6578 -1.5393 -0.5354 -2.1981 -1.0995 -0.0120 -0.1807 -0.1897 -0.1584
S-159 <2en> Zūonkõ kōrandst perīņ Viktor Berthold ja Poulīn Kļaviņa Līvõd rovkuodā 50 āigastõ jubilejs 1989. āigast 5. ougusts
W-159 0.031 seconds
H-159 -0.6286977529525757 Viktor Berthold and Poulīn Kļaviņa 50th anniversary of the Livonian National House on August 5, 1989
D-159 -0.6286977529525757 Viktor Berthold and Poulīn Kļaviņa 50th anniversary of the Livonian National House on August 5, 1989
P-159 -0.3648 -0.1808 -1.1276 -0.1240 -0.4701 -1.2086 -0.1095 -0.0209 -0.1553 -0.0364 -4.2427 -0.2702 -0.0365 -0.1261 -1.1288 -0.2373 -0.1168 -0.7320 -0.0298 -1.1576 -0.5413 -2.0686 -1.2857 -0.1894 -0.3286 -0.0125 -0.6729
S-160 <2en> Kõlbatõd ovātõd:
W-160 0.006 seconds
H-160 -0.7316040992736816 Resources used:
D-160 -0.7316040992736816 Resources used:
P-160 -3.1030 -0.2293 -0.1967 -0.3997 -0.2913 -0.1696
S-161 <2en> Šuvcāne B. „Sauc par Vaidi manu ciemu.” R., Latvijas avīze, 2015. 306.–311.l.p.
W-161 0.031 seconds
H-161 -2.131530523300171 It’s a good idea to get rid of it all the time.
D-161 -2.131530523300171 It’s a good idea to get rid of it all the time.
P-161 -5.2856 -3.4942 -0.1703 -3.2333 -4.0966 -0.7895 -1.0245 -3.5687 -2.7175 -0.1155 -2.1872 -2.9725 -3.1056 -0.3624 -0.8063 -0.1749
S-162 <2en> Kubsrõk Viktor Bertholdõks Kūolkas 2003. āigast ougusts.
W-162 0.016 seconds
H-162 -0.9326354265213013 Cobsrõk with Viktor Berthold in Kolkata in August 2003.
D-162 -0.9326354265213013 Cobsrõk with Viktor Berthold in Kolkata in August 2003.
P-162 -3.3861 -3.4906 -0.5270 -0.4364 -0.1727 -0.5246 -0.0127 -0.0794 -1.5074 -0.3948 -1.6012 -1.1401 -1.0313 -0.2290 -0.2276 -0.1612
S-163 <2en> Video.
W-163 0.004 seconds
H-163 -0.40930813550949097 Video.
D-163 -0.40930813550949097 Video.
P-163 -0.7639 -0.2991 -0.1649
S-164 <2en> Kōmaŗtõn LFK asistent Aldis Pūtelis.
W-164 0.016 seconds
H-164 -0.6163318157196045 Assistant of LFK Aldis Pūtelis.
D-164 -0.6163318157196045 Assistant of LFK Aldis Pūtelis.
P-164 -4.7007 -0.0876 -0.3023 -0.0323 -1.7349 -0.8892 -0.1158 -0.0608 -0.2124 -0.0224 -0.2625 -0.0808 -0.0323 -0.5434 -0.1675
S-165 <2en> Ārija Bertholde kēra Baibai Šuvcānen 2014. āigasts.
W-165 0.016 seconds
H-165 -0.6411759257316589 The letter of Ārija Bertholde Baibai Šuvcānen in 2014.
D-165 -0.6411759257316589 The letter of Ārija Bertholde Baibai Šuvcānen in 2014.
P-165 -3.0543 -0.8814 -1.6302 -2.8226 -0.0535 -0.0915 -0.1858 -0.8174 -0.0160 -0.1763 -0.0277 -0.0249 -0.1089 -0.7995 -0.2367 -0.2808 -0.1676 -0.1659
S-166 <2en> KUOLMÕNDPÄUVŠI RÕKĀNDÕM LĪVÕ KĪELKÕKS
W-166 0.023 seconds
H-166 -1.6824206113815308 WHAT IS THE WORLD WORLD OF THE LIVE
D-166 -1.6824206113815308 WHAT IS THE WORLD WORLD OF THE LIVE
P-166 -2.6804 -0.2253 -0.8729 -3.1173 -2.3211 -2.8549 -1.7096 -0.2490 -4.1026 -1.8608 -0.3793 -2.5415 -0.5975 -0.5928 -1.7631 -1.0508
S-167 <2en> 5. novembõrs Rīgõs tuļtõ īdõkubbõ Līvõ fond ja Līvõ kultūr sidām jūodõd ja rõkāndiztõ ka iļ portāla livones.lv võimiži līvõ kīel kȭlbatimiz ja paŗīmiz oppimiz pierāst.
W-167 0.044 seconds
H-167 -0.6433641910552979 On 5 November, the management of the Liv Foundation and the Liv Culture Centre gathered together in Riga and discussed the victories of the website livones.lv for the use and better learning of Liv language.
D-167 -0.6433641910552979 On 5 November, the management of the Liv Foundation and the Liv Culture Centre gathered together in Riga and discussed the victories of the website livones.lv for the use and better learning of Liv language.
P-167 -0.3161 -1.6278 -0.1089 -0.6641 -1.2649 -1.7039 -0.5125 -0.3662 -0.5310 -0.0895 -0.2895 -0.1619 -0.6816 -0.3680 -0.0980 -0.2158 -0.2519 -1.2658 -0.1092 -0.7126 -0.2683 -0.3282 -0.5900 -0.6651 -0.5716 -4.1104 -0.1042 -0.0411 -0.4498 -0.4690 -1.8726 -0.2714 -0.0474 -0.0551 -0.1331 -0.0439 -0.4803 -1.4720 -2.0102 -0.9726 -2.0040 -0.7915 -0.1317 -0.9593 -0.0851 -0.2794 -0.1630 -0.1720
S-168 <2en> Mȯlmõd organizātsijd loptātiztõ, ku portāl immõrētimi ni tarmõb võimiz līvõ kīelkõks äb set kēratõ ja luggõ tieutõkši, bet ka rõkāndõ võrgõs, portāl rõktubās kūoḑõn eņtš vaisõ.
W-168 0.044 seconds
H-168 -0.7623015642166138 Both organizations decided that the reconsideration of the portal now offers the opportunity not only to write and read messages in Liv language, but also to speak in the network, the portal chats directly between them.
D-168 -0.7623015642166138 Both organizations decided that the reconsideration of the portal now offers the opportunity not only to write and read messages in Liv language, but also to speak in the network, the portal chats directly between them.
P-168 -0.0610 -1.1694 -0.8852 -0.1122 -1.4585 -3.6411 -1.6493 -0.8558 -0.0294 -0.1833 -0.2524 -1.0922 -0.6065 -1.8442 -0.9604 -1.3370 -0.8800 -0.1659 -0.1086 -0.1084 -0.2527 -0.0666 -1.7733 -0.1721 -0.3162 -0.9774 -0.0707 -0.5302 -0.7305 -0.1659 -0.4677 -0.2455 -0.7666 -1.6195 -0.7844 -0.7867 -0.2513 -1.5370 -0.6387 -2.7393 -0.2655 -0.9395 -0.4969 -0.7519 -0.1583 -0.1609
S-169 <2en> Sīepierāst LKS jeddõlpanmiz pierrõ sai loptātõd, ku jeddõpēḑõn (25. novembõrst) jegā kuolmõndpǟva ȭdõn kīela 20.30-st tīera stuņḑ rõktubās võib rõkāndõ līvõ kīelkõks.
W-169 0.031 seconds
H-169 -0.8585243225097656 Therefore, on the basis of the LKS proposal, it was decided that further (from 25 November) every Wednesday evening from 20.30 a.m. in the Liv language chat rooms.
D-169 -0.8585243225097656 Therefore, on the basis of the LKS proposal, it was decided that further (from 25 November) every Wednesday evening from 20.30 a.m. in the Liv language chat rooms.
P-169 -0.7916 -0.3289 -3.4555 -0.5082 -0.0969 -0.1708 -0.7265 -0.8000 -0.0768 -0.9028 -0.5127 -0.2415 -0.1536 -0.3881 -0.1039 -3.6143 -1.5931 -0.1348 -0.0877 -0.4829 -0.1531 -0.2058 -0.9129 -0.3651 -0.5496 -1.3846 -0.4867 -0.0321 -2.7169 -0.1405 -0.0700 -0.1320 -0.8185 -1.7666 -5.2641 -0.0659 -0.3601 -2.7292 -0.9980 -0.7057 -0.1714
S-170 <2en> Rõkāndimiz stūņḑõd jūodijizõks līb Valt Ernštreit.
W-170 0.016 seconds
H-170 -0.615398108959198 The head of the talks will be Valt Ernštreit.
D-170 -0.615398108959198 The head of the talks will be Valt Ernštreit.
P-170 -1.1196 -3.2214 -0.1878 -0.7618 -1.7172 -1.6667 -0.4803 -0.2339 -0.0587 -0.1494 -0.0259 -0.2262 -0.0668 -0.0565 -0.1465 -0.1818 -0.1612
S-171 <2en> Portāla Livones.lv kopienas sadaļa.
W-171 0.008 seconds
H-171 -2.428947687149048 Is it possible to get rid of it in your life?
D-171 -2.428947687149048 Is it possible to get rid of it in your life?
P-171 -4.5471 -3.3576 -1.8306 -2.2642 -0.4590 -4.5964 -2.8285 -0.1282 -3.4530 -3.1635 -3.1955 -3.2305 -0.7720 -0.1792
S-172 <2en> Rõktubā um lieudtõb portāl Rovst jags. Rovst jag tīemiz um tigtõn Nordplus programm.
W-172 0.023 seconds
H-172 -0.7533342242240906 The conversation is found in the section of the website Rovst. The development of the Rovst section has been supported by the Nordplus programme.
D-172 -0.7533342242240906 The conversation is found in the section of the website Rovst. The development of the Rovst section has been supported by the Nordplus programme.
P-172 -0.6324 -3.5056 -0.8511 -3.3147 -0.4779 -0.3792 -0.4387 -0.1602 -0.1813 -1.6796 -1.6401 -1.1642 -0.1357 -0.2443 -0.4524 -2.3553 -0.1389 -0.2178 -0.8493 -0.1599 -0.0957 -1.1257 -0.9359 -0.7027 -0.1597 -0.1291 -0.8528 -0.0153 -0.0982 -0.0210 -1.4111 -0.1640 -0.1699
S-173 <2en> 2011. - ROVDVAIDLI LĪVÕ KĪEL JA KULTŪR ĀIGAST
W-173 0.016 seconds
H-173 -0.9911560416221619 2011 - ROVDVAIDLE LIVE CULTURE AND CULTURE
D-173 -0.9911560416221619 2011 - ROVDVAIDLE LIVE CULTURE AND CULTURE
P-173 -0.2150 -0.4174 -1.0384 -0.1941 -0.0545 -0.0571 -2.2898 -1.1147 -1.6428 -3.5082 -2.2418 -0.2920 -0.2932 -0.2819 -0.5958 -0.5720 -0.1592 -0.1836 -3.6803
S-174 <2en> Rovdvaidli Līvõd sõbrād seļtš ja seļtš Līvõ Kultūr sidām um loptātõn tieudtõ 2011. āigast rovdvaidlizõks līvõ kīel ja kultūr āigastõks.
W-174 0.031 seconds
H-174 -0.6309553980827332 The International Society of Liv Friends and the Society of Liv Culture Centre has decided to celebrate 2011 for the International Year of Liv Language and Culture.
D-174 -0.6309553980827332 The International Society of Liv Friends and the Society of Liv Culture Centre has decided to celebrate 2011 for the International Year of Liv Language and Culture.
P-174 -0.9056 -0.1382 -1.4752 -0.4942 -1.1128 -0.0908 -0.6193 -0.0144 -0.1609 -0.2386 -1.3746 -0.4892 -1.6958 -0.8076 -0.0733 -0.3762 -0.2665 -0.9078 -0.6080 -0.1260 -5.0875 -1.0927 -1.1726 -0.8149 -0.1768 -0.0291 -0.1601 -0.0883 -0.0628 -0.2278 -0.1496 -0.0512 -0.1949 -0.1692
S-175 <2en> Sīen um setmiņ alīztõ, mis ātõ perīņ nei kultūr istōrijst ja ātõ sidtõd tǟdpǟvadõks, ku ka aktuālizt, sīestõ 2011. āigastõs ātõ vȯddõltõb setmiņ unikāld suggimizt.
W-175 0.044 seconds
H-175 -1.0274665355682373 It has several foundations that originate from both cultural history and relate to the day-to-days as well as to topical events are expected since 2011.
D-175 -1.0274665355682373 It has several foundations that originate from both cultural history and relate to the day-to-days as well as to topical events are expected since 2011.
P-175 -0.3801 -0.3357 -1.2468 -1.1520 -0.1309 -1.0698 -3.1656 -0.1808 -0.8363 -0.8908 -0.4663 -0.0505 -0.2492 -1.3306 -0.3843 -0.2873 -1.6968 -3.2979 -2.0975 -0.1796 -0.1697 -0.0696 -0.9937 -3.3271 -0.0886 -0.1032 -1.5484 -1.6737 -0.7218 -1.2682 -2.8272 -0.3953 -2.6423 -0.5344 -0.1695
S-176 <2en> 2011. āigasts līb 150 āigastõ, kuņtš Pētõrburgs Krīevõmō Tieudakadēmij ulzandõksõs tuļ ulzõ A. J. Sjögren ja F. J. Wiedemann īti tīe saksā kīelkõks – ežmi līvõ kīel grammatīk ja sõnārōntõz, missõs ātõ pīktsõd ka ežmizt līvõkēļist rovlūol nägțõkst, lūold ja vaimlizt tekstõd.
W-176 0.197 seconds
H-176 -0.600796103477478 It will be 150 years in 2011 until A. J. Sjögren and F. J. Wiedemann published similar works in German in Peterburg, the first Liv language grammar and dictionary, which also contains the first Liv language national poetry shows, poetry and spiritual texts.
D-176 -0.600796103477478 It will be 150 years in 2011 until A. J. Sjögren and F. J. Wiedemann published similar works in German in Peterburg, the first Liv language grammar and dictionary, which also contains the first Liv language national poetry shows, poetry and spiritual texts.
P-176 -3.0334 -0.3494 -1.3465 -0.0079 -0.0825 -0.4254 -0.0437 -0.7145 -0.5916 -0.1328 -0.6311 -0.1589 -0.2298 -0.1369 -0.0176 -0.0178 -0.1105 -0.2246 -0.0413 -0.1254 -0.1085 -0.1332 -0.0128 -0.0404 -0.0279 -1.3554 -1.7333 -0.7529 -0.1167 -0.0369 -0.8685 -2.3614 -0.4069 -1.7727 -0.2042 -0.0950 -0.3766 -0.0419 -1.6634 -0.0149 -0.0547 -0.2978 -0.0932 -0.0216 -0.0396 -2.0010 -1.3006 -0.6764 -1.9635 -1.8817 -1.2980 -1.2818 -0.0478 -1.2730 -2.6548 -1.4086 -0.1266 -0.0437 -2.1324 -0.2263 -0.3806 -0.1670 -0.0682 -0.3851 -0.2454 -0.1432 -0.1835 -0.3373 -0.1766
S-177 <2en> Tulbiz āigasts līb 90 āigastõ, kuņtš tuļ ulzõ ežmi īlmali rōntõz līvõ kīelkõks – Līvõd ežmi lugdõbrōntõz, missõks Ēstimō Akadēmli jemākīel seļtš (Akadeemiline Emakeele Selts) īrgiz eņtš kēratõkši.
W-177 0.044 seconds
H-177 -0.6209369897842407 The coming year will be 90 years until the first world book in Liv language was published – the first Liv reading book by which the Estonian Academic Mother Language Society (Akadeemiline Emakeele Selts) started its writings.
D-177 -0.6209369897842407 The coming year will be 90 years until the first world book in Liv language was published – the first Liv reading book by which the Estonian Academic Mother Language Society (Akadeemiline Emakeele Selts) started its writings.
P-177 -1.2939 -2.4512 -0.2339 -0.2904 -0.4003 -0.0409 -0.1131 -1.0870 -0.1989 -0.2176 -1.9229 -1.6221 -0.5321 -0.5012 -0.0524 -0.4575 -1.4914 -0.1257 -0.9320 -0.9513 -0.3004 -1.6573 -0.0498 -1.0413 -0.5831 -0.7469 -0.9698 -0.3795 -0.0940 -0.3149 -0.0602 -0.2631 -1.2437 -0.1735 -0.0490 -0.1393 -0.5970 -1.0402 -0.8603 -1.4152 -0.0295 -0.0604 -0.1284 -0.0976 -0.1653 -0.1590 -1.7263 -0.9112 -1.5934 -0.1869 -0.1747 -0.1617
S-178 <2en> 80 āigastõ tāgiž Sūomõmō Akadēmliz sugrovd klub (Akateeminen Heimoklubi) abkõks īrgiz ulzõ tulmõ ežmi līvõkēļi āigakēra – Līvli.
W-178 0.044 seconds
H-178 -0.5569491386413574 80 years ago, the Finnish Academic Society club (Akateeminen Heimoklubi) started to release the first Liv newspaper – Livonian newspaper.
D-178 -0.5569491386413574 80 years ago, the Finnish Academic Society club (Akateeminen Heimoklubi) started to release the first Liv newspaper – Livonian newspaper.
P-178 -0.1300 -0.1076 -0.1126 -1.3019 -1.3004 -0.6962 -0.3795 -0.0351 -0.1725 -2.4388 -1.2439 -0.2578 -0.3345 -0.1025 -0.1278 -0.0311 -0.0868 -0.1053 -0.1690 -0.0760 -0.0752 -0.1693 -1.2737 -2.0262 -2.1121 -0.3681 -0.1115 -1.1022 -0.0404 -1.2646 -0.7238 -0.4592 -0.0384 -0.0682 -0.8095 -0.8944 -0.2495 -0.1686
S-179 <2en> 75 āigastõ tāgižpēḑõn līvli Kōrli Stalte Ēstimō Akadēmliz jemākīel seļtš ilzandõksõl paņ kubbõ ežmiz līvõd Abēd kežkerrõ, mis vīž āigastõ tāgižpēḑõn um lieudtõd Ēstimō arhīvs.
W-179 0.031 seconds
H-179 -0.6100022792816162 75 years ago Stalte Stalte, the Livonian Kōrli, on the task of the Estonian Academic Mother Language Society, gathered the first Liv Abēd manuscript found five years ago in the Estonian archive.
D-179 -0.6100022792816162 75 years ago Stalte Stalte, the Livonian Kōrli, on the task of the Estonian Academic Mother Language Society, gathered the first Liv Abēd manuscript found five years ago in the Estonian archive.
P-179 -0.1045 -0.1019 -0.0987 -1.1031 -0.9396 -0.4453 -1.6729 -1.2590 -0.1515 -0.2178 -0.0290 -2.9224 -1.2070 -3.6134 -0.4668 -2.1801 -0.0839 -0.3059 -0.0200 -0.0921 -0.0596 -0.2491 -1.3712 -0.2313 -0.1822 -0.1761 -1.4206 -0.1301 -0.2130 -0.0769 -0.0795 -0.1021 -1.1560 -0.4593 -0.3474 -0.0199 -1.8371 -0.5416 -0.1109 -0.0997 -0.1759 -0.4348 -0.4104 -0.7557 -0.2383 -0.1666
S-180 <2en> 20 āigastõ tāgiž um pūojtõd valst īžkist kaitstõb kultūristōrili teritōrij Līvõd rānda, bet Lețmō pandõksõs „Lețmō rovd ja etnilizt grupõd vabāst kazzimizõst ja õigõmõst kultūr autonōmij pǟl” līvlizt ātõ kēratõd Lețmō alliztrovd sieggõ.
W-180 0.197 seconds
H-180 -0.9209968447685242 20 years ago Livonian coast was founded from the country’s specially protected cultural territory, while the Livonian people and ethnic groups of Latvia’s law “On free chaos and fair cultural autonomy” have been written by the Livonian peoples of Latvia.
D-180 -0.9209968447685242 20 years ago Livonian coast was founded from the country’s specially protected cultural territory, while the Livonian people and ethnic groups of Latvia’s law “On free chaos and fair cultural autonomy” have been written by the Livonian peoples of Latvia.
P-180 -0.4232 -0.0850 -0.0828 -3.3380 -0.4065 -1.8240 -0.1637 -1.3480 -1.4079 -0.4975 -1.8819 -0.6609 -1.5342 -2.3016 -0.1533 -3.1488 -0.5556 -0.2284 -0.1444 -1.5709 -0.5119 -1.0927 -2.1394 -0.0809 -0.0617 -0.0547 -0.2223 -4.5914 -0.8265 -0.0154 -0.2927 -0.4343 -0.0273 -2.5247 -0.1306 -0.4809 -0.5936 -1.4408 -0.5223 -2.7425 -0.9654 -0.2685 -2.1412 -1.2394 -0.0479 -0.2951 -0.0674 -0.3256 -2.5156 -0.2349 -1.1004 -0.9329 -1.1544 -0.4839 -0.0725 -0.0351 -0.0832 -2.5468 -1.3108 -0.3016 -0.1979 -0.9952 -0.1639
S-181 <2en> Nei īž tulbiz āigasts līb vīž āigastõ līvõ kīel ja kultūr portāl livones.lv pūojtimizõst. Portāl um āinagi medij, mis āndab tieutõkst iļ līvlizt līvõ, leț, engliš ja ka ēsti ja sūomõ kīelkõks.
W-181 0.044 seconds
H-181 -0.5589308142662048 It will be five years since the founding of the Liv language and culture portal livones.lv next year. The portal is the only medium to provide information about Livs in Liv, Latvian, English and Estonian and Finnish.
D-181 -0.5589308142662048 It will be five years since the founding of the Liv language and culture portal livones.lv next year. The portal is the only medium to provide information about Livs in Liv, Latvian, English and Estonian and Finnish.
P-181 -3.0515 -0.9271 -1.5006 -0.3493 -0.1067 -1.5257 -1.0424 -0.7296 -0.1266 -0.1563 -1.3361 -0.3553 -0.1638 -1.0247 -0.1672 -0.0998 -0.2396 -0.1637 -0.0377 -0.0481 -0.1365 -0.0381 -0.9313 -0.0605 -0.8700 -0.8841 -0.1597 -0.4130 -0.1316 -0.1033 -1.5475 -0.4577 -1.8723 -0.4508 -1.9158 -0.4204 -0.0769 -1.1086 -0.1188 -0.5645 -0.0447 -0.4522 -0.2066 -0.1617 -0.0974 -0.5936 -0.6411 -0.2077 -0.1357 -0.3725 -0.1791
S-182 <2en> Līvõ kēļ ja kultūr äb ūotõ set istōrilizt vǟrtõkst, mida katāb āigastkimdõd ja sadād pȯrm.
W-182 0.023 seconds
H-182 -0.7523160576820374 The Liv language and culture are not only historically valuable, covered by decades and hundreds of pain.
D-182 -0.7523160576820374 The Liv language and culture are not only historically valuable, covered by decades and hundreds of pain.
P-182 -1.9925 -0.4162 -0.0710 -0.0793 -0.1494 -0.0605 -0.4667 -0.1469 -1.1109 -2.1855 -1.4470 -1.3740 -0.7368 -0.5582 -0.1150 -3.3155 -0.1937 -0.4365 -0.8436 -0.1501 -0.1017 -1.7414 -0.2011 -0.1620
S-183 <2en> Se um tämpizsōņõ tǟdzizt tuņšlimizt ja tieudlizt lieudõkst ovāt, mis tīeb jo rikkõks tämpiz kultūr jelāmiz ja tarmõb vǟrtõkši nei tieudmīedõn, ku ka amādõn muntõn.
W-183 0.044 seconds
H-183 -0.887288510799408 It is an important source of research and direct findings in modern times that makes richer contemporary cultural life and provides valuable resources for both scientists and everyone else.
D-183 -0.887288510799408 It is an important source of research and direct findings in modern times that makes richer contemporary cultural life and provides valuable resources for both scientists and everyone else.
P-183 -0.7148 -0.3757 -2.2482 -0.2589 -0.2850 -0.2034 -0.4424 -0.3457 -3.0501 -0.7882 -0.3260 -2.4251 -0.8314 -1.0042 -0.7390 -0.4408 -2.9733 -0.1641 -0.9402 -0.3362 -0.8895 -0.1810 -1.8102 -0.7372 -2.0965 -1.0107 -1.4609 -0.3610 -0.1693 -1.2393 -0.0987 -0.1629 -0.1707
S-184 <2en> 2011. āigasts Ēstimōl tulāb ulzõ amā sūŗ līvõ-ēsti-lețkīel sõnārōntõz.
W-184 0.016 seconds
H-184 -0.44015201926231384 In 2011, the largest Liv-Estonian-Latvian dictionary was published in Estonia.
D-184 -0.44015201926231384 In 2011, the largest Liv-Estonian-Latvian dictionary was published in Estonia.
P-184 -0.4456 -0.0556 -0.7484 -1.0613 -1.5441 -0.0862 -0.0650 -0.7920 -0.5157 -0.0619 -0.3577 -0.8114 -0.4536 -0.0303 -0.0634 -0.0338 -0.0406 -2.3503 -0.0965 -0.1426 -0.0291 -0.1716 -0.1670
S-185 <2en> Sīe tēji um tämpizpǟva amā paŗīm līvõ kīel tūndiji ja tuņšliji prof. em. Tiit-Rein Viitso. Sõnārōntõ pierāst ta um kȭlbatõn setmiņ līvõ kīel tekstõd kubīdi, ka līvliz Pētõr Damberg kuoŗdõd kubbõ.
W-185 0.044 seconds
H-185 -0.6518355011940002 It is produced by prof. em. Tiit-Rein Viitso, the best Liv language researcher and researcher of modern day. It has used several Liv language text collections, including collected by Livonian Peter Damberg.
D-185 -0.6518355011940002 It is produced by prof. em. Tiit-Rein Viitso, the best Liv language researcher and researcher of modern day. It has used several Liv language text collections, including collected by Livonian Peter Damberg.
P-185 -0.5291 -1.2488 -1.8548 -0.2611 -0.6579 -0.1485 -0.0421 -0.1444 -0.0367 -0.0698 -0.1477 -0.0350 -0.0684 -0.1494 -0.0403 -0.1190 -0.2263 -0.4849 -0.5249 -1.3468 -0.0449 -0.1856 -2.2093 -0.5501 -0.8328 -1.0740 -0.3249 -1.3329 -2.2605 -0.9885 -0.4321 -2.8591 -0.7824 -1.0853 -1.2396 -0.9274 -0.0621 -0.6294 -0.2179 -1.7931 -0.2765 -0.9146 -0.4153 -2.0161 -0.2188 -0.4194 -0.0750 -0.3789 -0.0331 -1.1847 -0.0163 -0.4516 -0.1792
S-186 <2en> Ūž sõnārōntõz, missõs līb ka līvõ kīel grammatīk, līb ka täudli jõvād kīel nǟgțõbõdõks täutõd optõbrōntõz.
W-186 0.031 seconds
H-186 -0.6468667387962341 The new dictionary, which will include the grammar of the Liv language, will also include a complete study book filled with samples of good language.
D-186 -0.6468667387962341 The new dictionary, which will include the grammar of the Liv language, will also include a complete study book filled with samples of good language.
P-186 -0.7777 -0.3117 -0.2453 -0.0338 -0.0413 -0.5485 -0.5404 -1.0987 -0.8297 -1.5765 -0.0645 -0.0954 -0.6462 -1.3550 -0.2085 -0.0823 -0.0662 -0.2087 -0.1361 -0.5070 -1.7705 -0.7175 -1.2746 -2.2489 -0.7337 -0.8391 -0.2294 -1.8950 -0.1430 -0.4598 -0.8890 -0.9906 -0.2609 -0.1678
S-187 <2en> Tämnāigast 10. detsembõrs Tartu Iļīzskūols Valt Ernštreit ežmizkõrdiz tuņšlimizõks „Līvõ kērakīel suggimi” sai kīeltieud doktārõks, ja 2011. āigasts sīe tīe alīz pǟl tulāb ulzõ ka rōntõz.
W-187 0.044 seconds
H-187 -0.7916727066040039 On December 10th this year, Valt Ernštreit, at the University of Tartu, became a language-directed doctor with the first time research “The case of Latvian Literature”, and in 2011, the book will also be published based on this work.
D-187 -0.7916727066040039 On December 10th this year, Valt Ernštreit, at the University of Tartu, became a language-directed doctor with the first time research “The case of Latvian Literature”, and in 2011, the book will also be published based on this work.
P-187 -0.6261 -1.1257 -0.1112 -0.5165 -1.6033 -0.0735 -1.0718 -0.5392 -0.1468 -0.0335 -0.2167 -0.1035 -0.0838 -0.2915 -0.8573 -2.0868 -1.2604 -0.0391 -0.1166 -0.0147 -0.2026 -1.4597 -0.2809 -3.1394 -1.5133 -1.3833 -0.9413 -0.9858 -1.4809 -0.8239 -0.1125 -1.3633 -0.7449 -1.2402 -1.4043 -2.1162 -0.2006 -1.6457 -0.8090 -0.5811 -0.4696 -1.0279 -0.4177 -1.6059 -0.0337 -1.5038 -1.4224 -0.1253 -1.3298 -0.7715 -0.4711 -0.0800 -1.0934 -0.1957 -1.3981 -0.2934 -0.1701 -0.1607
S-188 <2en> Lețmōl ja Ēstimōl lībõd rovdvaidlizt tieudlizt konferentsõd, nägțõkst ja munt suggimizt.
W-188 0.023 seconds
H-188 -0.48625248670578003 Latvia and Estonia will have international conferences, exhibitions and other events.
D-188 -0.48625248670578003 Latvia and Estonia will have international conferences, exhibitions and other events.
P-188 -0.8496 -0.1276 -0.0364 -0.2573 -0.8574 -0.0434 -1.4954 -0.1738 -0.2137 -2.4458 -0.1848 -0.3735 -0.2843 -0.0465 -0.2221 -0.1686
S-189 <2en> Rovvaidlizõs līvõ kīel ja kultūr āigasts Rovdvaidliz līvõd sõbrād seļtš ja Līvõ Kultūr sidām amā tǟdzizt kubsõtīe partnerd Ēstimōld ātõ Tartu Iļīzskūol, Ēsti kīel institūt, Jemākīel seļtš, Lețmōl – Lețmō Tieud akadēmij, Lețkīel agentūr, Lețmō Natsionāli istōrij muzej j. m.
W-189 0.197 seconds
H-189 -0.4807034134864807 During the International Year of Liv Language and Culture, the main cooperation partners of the International Liv Friends Society and the Liv Culture Centre are the University of Tartu, Estonian Language Institute, Mother Language Society, Latvian Academy of Laws, Lithuanian Language Agency, Latvian National History Museum, etc.
D-189 -0.4807034134864807 During the International Year of Liv Language and Culture, the main cooperation partners of the International Liv Friends Society and the Liv Culture Centre are the University of Tartu, Estonian Language Institute, Mother Language Society, Latvian Academy of Laws, Lithuanian Language Agency, Latvian National History Museum, etc.
P-189 -1.6873 -0.1357 -0.4448 -0.5418 -0.3620 -0.1453 -0.2053 -0.0529 -0.2992 -0.1858 -0.0527 -0.9070 -0.6967 -1.5012 -0.8284 -0.1715 -0.3560 -0.3607 -0.3739 -0.3989 -0.0819 -0.8190 -0.0117 -0.2889 -1.2826 -0.2257 -0.7774 -1.0199 -0.0861 -0.2626 -0.3322 -1.3284 -0.8540 -0.1241 -0.1299 -0.0383 -0.1560 -1.0924 -0.2002 -0.1661 -0.2080 -1.0462 -0.1526 -0.1099 -0.2553 -1.0226 -0.4286 -0.1687 -1.5357 -0.6686 -0.2148 -1.1877 -0.0544 -0.5670 -1.1068 -0.2039 -0.2843 -0.4907 -0.1829 -0.0552 -0.8536 -0.2518 -0.1565 -0.5744
S-190 <2en> Suggimizt koordinātor Lețmōl um Valt Ernštreit, Ēstimōl Tuuli Tuisk ja Sūomõmōl Tapio Mäkeläinen.
W-190 0.044 seconds
H-190 -0.45834845304489136 The coordinator of training in Latvia is Valt Ernštreit, in Estonia Tuuli Tuisk and in Finland Tapio Mäkeläine.
D-190 -0.45834845304489136 The coordinator of training in Latvia is Valt Ernštreit, in Estonia Tuuli Tuisk and in Finland Tapio Mäkeläine.
P-190 -1.1387 -2.0426 -0.1323 -0.0896 -0.0876 -0.8370 -3.5763 -0.7831 -0.2460 -0.3691 -0.0177 -0.1387 -0.0218 -0.1819 -0.0546 -0.0641 -0.1713 -0.2149 -1.2265 -0.1145 -1.2675 -0.0533 -0.0762 -0.0905 -0.0603 -0.2422 -0.8852 -0.1409 -1.4660 -0.0666 -0.0994 -0.1102 -0.0590 -0.0175 -0.0206 -0.6231 -0.1721
S-191 <2en> Profesōr Mati Hint tēriņtimi Rovvaidliz līvõ kīel ja kultūr āigast konferentsõn 25.11.2011. Tartus
W-191 0.031 seconds
H-191 -0.43779662251472473 Professor Mati Hint congratulations to the International Liv Language and Culture Year Conference 25.11.2011 in Tartu
D-191 -0.43779662251472473 Professor Mati Hint congratulations to the International Liv Language and Culture Year Conference 25.11.2011 in Tartu
P-191 -0.7788 -0.1326 -0.0654 -0.0631 -0.0861 -1.5681 -0.1639 -0.0211 -0.1344 -0.6732 -0.3062 -0.3277 -1.5987 -0.0553 -0.4173 -0.1774 -0.0626 -0.6970 -0.7117 -0.7187 -0.0407 -0.0138 -1.7731 -0.0226 -0.3354
S-192 <2en> Min mõtkõd āt tämpõ Rāndas ja näntkõks, kis rāndakīeldõ tõurõks pidābõd.
W-192 0.016 seconds
H-192 -0.7152726650238037 My ideas are today in the Beach and with those who keep the coastal language expensive.
D-192 -0.7152726650238037 My ideas are today in the Beach and with those who keep the coastal language expensive.
P-192 -0.2292 -1.2476 -0.7924 -0.8210 -0.5857 -1.5458 -1.2411 -0.4561 -0.4264 -0.3070 -0.3264 -1.2223 -0.7138 -2.1183 -0.4567 -0.1110 -0.6663 -0.1624 -0.1608
S-193 <2en> Las näntõn vȯlkõ tikkiž amā sīe jelāmi jõvīst.
W-193 0.008 seconds
H-193 -0.4459928572177887 Let them have all that life well.
D-193 -0.4459928572177887 Let them have all that life well.
P-193 -0.2844 -0.1729 -0.8929 -0.2462 -1.3690 -0.2114 -0.4857 -0.1900 -0.1613
S-194 <2en> Ažād attõ kērabist, las ne vȯlgõd, bet mēg äb tōm rāndakīeldõ unnõ.
W-194 0.016 seconds
H-194 -0.6417114734649658 Things are from the script, let them be, but we don't want to forget the coastal language.
D-194 -0.6417114734649658 Things are from the script, let them be, but we don't want to forget the coastal language.
P-194 -1.1606 -0.3790 -1.9862 -0.8866 -2.1763 -0.2653 -0.5869 -0.1065 -0.4204 -0.4384 -0.6059 -0.1596 -0.1138 -1.2088 -0.6863 -0.1326 -0.1846 -0.2324 -0.0972 -1.1239 -2.4964 -0.1731 -0.0777 -0.1840 -0.1602
S-195 <2en> Ammõ jõvvõ vēļõb täddõn amādõn – Mati Hint.
W-195 0.041 seconds
H-195 -0.7925353646278381 Anything good will allow you all – Mati Hint.
D-195 -0.7925353646278381 Anything good will allow you all – Mati Hint.
P-195 -4.1841 -0.4625 -1.0626 -1.1097 -1.3334 -0.2441 -0.4768 -0.9066 -0.6954 -0.1098 -0.0789 -0.0834 -0.1894 -0.1588
S-196 <2en> Kēra um pandõd portālõ Lețmō Republik Kultūr ministrij tigtimizõl.
W-196 0.016 seconds
H-196 -0.6550546884536743 The list has been set up in support of the Ministry of Culture of the Republic of Latvia.
D-196 -0.6550546884536743 The list has been set up in support of the Ministry of Culture of the Republic of Latvia.
P-196 -0.8724 -3.7011 -2.1509 -0.1021 -2.2154 -0.2727 -1.8155 -0.1551 -0.1462 -0.1892 -0.1569 -0.2139 -0.0240 -0.1499 -0.1568 -0.0152 -0.1291 -0.0573 -0.4121 -0.1652
S-197 <2en> PROFESŌR MATI HINT TĒRIŅTIMI
W-197 0.041 seconds
H-197 -1.2521960735321045 PROFESOR MATI HINT TESTS
D-197 -1.2521960735321045 PROFESOR MATI HINT TESTS
P-197 -0.9709 -0.2423 -0.5544 -2.9550 -1.1574 -3.3660 -1.2782 -0.2468 -0.0515 -1.3811 -2.5544 -1.3083 -0.2123
S-198 <2en> Mäd lapstõn um võtāmõst nänt vanstpēḑõn ka eņtš vȱidamiz alā.
W-198 0.016 seconds
H-198 -1.0175814628601074 Our children also need to take them to the conspiracies of their own.
D-198 -1.0175814628601074 Our children also need to take them to the conspiracies of their own.
P-198 -0.4205 -0.2749 -2.6316 -0.8681 -0.1768 -0.2303 -0.8442 -1.4837 -2.0468 -3.7099 -0.4076 -0.0682 -1.1019 -0.0713 -1.8979 -0.7719 -1.1977 -0.9677 -0.1630
S-199 <2en> Ta um kōļõn vȱidatõ irdist kīelstõ.
W-199 0.041 seconds
H-199 -0.9380908012390137 He has tried to keep up with the usual language.
D-199 -0.9380908012390137 He has tried to keep up with the usual language.
P-199 -0.4874 -0.5165 -0.5284 -0.0981 -0.6747 -2.8127 -0.5108 -2.6895 -2.4573 -0.1417 -0.1819 -0.1581