-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlv-en.gen
4275 lines (4275 loc) · 530 KB
/
lv-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> Daudz laimes mūsu kolēģim, igauņu, latviešu un arī lībiešu valodas kontaktu pētniekam Lembitam Vabam, kurš šodien saņēmis Latvijas un Igaunijas Ārlietu ministriju Valodu balvu!
W-0 0.063 seconds
H-0 -0.6597260236740112 A lot of luck to our colleague, Estonian, Latvian and also Livonian contact researcher Lembit Vaba, who has received the Latvian and Estonian Ministry of Foreign Affairs Award today!
D-0 -0.6597260236740112 A lot of luck to our colleague, Estonian, Latvian and also Livonian contact researcher Lembit Vaba, who has received the Latvian and Estonian Ministry of Foreign Affairs Award today!
P-0 -4.4824 -2.1115 -0.1916 -0.5950 -1.4995 -0.3507 -0.2017 -0.3656 -1.7614 -0.2051 -0.0341 -0.3574 -1.4308 -0.6868 -0.0665 -0.6885 -0.0250 -0.1237 -0.2300 -0.1862 -0.3465 -0.0334 -0.1697 -0.4861 -0.5180 -0.2307 -1.1848 -1.0237 -1.1818 -1.4670 -0.3596 -0.0926 -0.8006 -0.2159 -0.0399 -0.1634 -1.1595 -0.5197 -0.6345 -0.1680
S-1 <2en> Sveicam jauno Igaunijas prezidentu Alaru Karisu – kādreizējo Tartu Universitātes rektoru, kurš patlaban, būdams Igaunijas nacionālā muzeja direktors, glabā lībiešu mantojumu!
W-1 0.052 seconds
H-1 -0.6577023863792419 Congratulations to the young president of Estonia Alar Karis, the former rektor of the University of Tartu, who, now the director of the Estonian National Museum, retains the Livonian heritage!
D-1 -0.6577023863792419 Congratulations to the young president of Estonia Alar Karis, the former rektor of the University of Tartu, who, now the director of the Estonian National Museum, retains the Livonian heritage!
P-1 -3.6776 -0.0687 -0.0240 -0.4702 -0.1451 -1.0622 -1.1623 -1.3850 -0.2484 -0.1043 -0.1239 -0.2802 -0.1484 -0.1706 -1.4925 -1.2616 -0.0330 -1.8210 -0.1900 -0.2520 -1.1494 -0.0821 -0.1228 -0.0430 -1.1650 -0.2686 -2.2918 -0.8283 -2.2703 -0.5870 -0.1749 -0.3579 -0.5411 -0.1460 -0.0406 -0.1845 -1.8051 -0.2068 -0.5388 -2.5666 -0.0412 -0.0436 -0.0319 -0.0412 -0.4395 -0.1656
S-2 <2en> Laimonim Rudzītim – Rīgas lībiešu pēcnācējam – 115!
W-2 0.042 seconds
H-2 -2.1557607650756836 If you want to be a good friend, you will need to be a good friend.
D-2 -2.1557607650756836 If you want to be a good friend, you will need to be a good friend.
P-2 -5.1431 -1.1952 -3.8382 -0.5862 -3.7444 -1.8955 -4.0828 -2.9420 -1.0826 -1.6898 -2.9991 -2.1967 -0.7984 -3.0845 -2.8551 -0.5981 -1.0100 -1.0435 -0.1742
S-3 <2en> Mēneša priekšmets – Lībiešu vasaras universitāte un Lāžu ozols
W-3 0.042 seconds
H-3 -1.217108130455017 The subject of the month – University of Livonian Summer and Lage Oak
D-3 -1.217108130455017 The subject of the month – University of Livonian Summer and Lage Oak
P-3 -3.4044 -4.0103 -0.2760 -0.3231 -1.2521 -0.7546 -1.6238 -0.1999 -3.2166 -0.4447 -0.1162 -0.8609 -0.5926 -0.2610 -3.3771 -1.7254 -0.3836 -0.0582 -0.2445
S-4 <2en> Par Lībiešu vasaras universitātes tradīciju kopš pirmās tās norises 2013. gadā kļuvusi tās dalībnieku kopīgā fotogrāfija pie Lībiešu krastā slavenā Lāžu ozola.
W-4 0.052 seconds
H-4 -1.9567281007766724 It’s also important to note that you have the right to receive information about your personal data and your personal data.
D-4 -1.9567281007766724 It’s also important to note that you have the right to receive information about your personal data and your personal data.
P-4 -4.5958 -3.3085 -0.1721 -4.3288 -2.8592 -0.5428 -2.6676 -0.4356 -2.3003 -2.7246 -2.9904 -0.6619 -0.3108 -3.6324 -2.7360 -1.2347 -1.5039 -2.0695 -0.7054 -3.3860 -2.4018 -1.0402 -0.5028 -1.6451 -0.1619
S-5 <2en> No 2021. gada 30. jūlija līdz 8. augustam Košragā norisinājās jau trešā Lībiešu vasaras universitāte, kuru rīkoja LU Lībiešu institūts sadarbībā ar Tartu Universitāti.
W-5 0.052 seconds
H-5 -0.8158980011940002 In Koshrag from July 30 to August 8, 2021, the third Livonian Summer University was held by LU Livonian Institute in cooperation with the University of Tartu.
D-5 -0.8158980011940002 In Koshrag from July 30 to August 8, 2021, the third Livonian Summer University was held by LU Livonian Institute in cooperation with the University of Tartu.
P-5 -5.0706 -3.0199 -1.4521 -1.0711 -1.6565 -1.3392 -0.2177 -0.0831 -1.9415 -0.0704 -0.0775 -0.1997 -0.0929 -1.0304 -0.9670 -0.2319 -2.7237 -0.3929 -2.1876 -0.0471 -0.4018 -0.1473 -0.9933 -1.1746 -0.3802 -0.9798 -1.8898 -0.1048 -0.0925 -0.0598 -0.0506 -0.2977 -0.6190 -0.1309 -0.8401 -0.1131 -0.1172 -0.0188 -0.1841 -0.1678
S-6 <2en> Lībiešu vasaras universitātes laikā dalībnieki apguva lībiešu valodu, tikās ar lībiešu valodas runātājiem, iepazina lībiešu vēsturi, kultūru un mūsdienas, tostarp lībiešu pēdējo vēsturiski apdzīvoto teritoriju – Lībiešu krastu, kas tieši tāpēc izraudzīts par vasaras universitātes norises vietu.
W-6 0.163 seconds
H-6 -0.6775345206260681 During the Livonian Summer University, participants studied the Liv language, met with Liv language speakers, learned about Liv history, culture and modern times, including the last historically populated territory of Livonian coast designated as the site of the Summer University.
D-6 -0.6775345206260681 During the Livonian Summer University, participants studied the Liv language, met with Liv language speakers, learned about Liv history, culture and modern times, including the last historically populated territory of Livonian coast designated as the site of the Summer University.
P-6 -2.9525 -0.1283 -0.4575 -3.0128 -0.4644 -1.4577 -0.0346 -0.5935 -0.6649 -1.0509 -0.3466 -1.1535 -1.3665 -0.1480 -0.0465 -0.1377 -0.3939 -0.2165 -0.3476 -0.3771 -0.0608 -0.3138 -0.1801 -0.1602 -0.2930 -2.0757 -0.4625 -1.0006 -0.0533 -0.7134 -0.1633 -0.0806 -0.3939 -1.2815 -1.5615 -0.4013 -0.1619 -0.4967 -0.6986 -1.0262 -0.2161 -0.3873 -0.0565 -0.5400 -0.4492 -1.1904 -0.0696 -0.3853 -0.6102 -0.7236 -2.2130 -1.6063 -0.8350 -1.2803 -0.6376 -1.0332 -0.8221 -0.2720 -0.2160 -0.1784
S-7 <2en> Par Lībiešu vasaras universitātes tradīciju kopš pirmās tās norises 2013. gadā kļuvusi tās dalībnieku kopīgā fotogrāfija pie Lībiešu krastā slavenā Lāžu ozola.
W-7 0.052 seconds
H-7 -1.9567281007766724 It’s also important to note that you have the right to receive information about your personal data and your personal data.
D-7 -1.9567281007766724 It’s also important to note that you have the right to receive information about your personal data and your personal data.
P-7 -4.5958 -3.3085 -0.1721 -4.3288 -2.8592 -0.5428 -2.6676 -0.4356 -2.3003 -2.7246 -2.9904 -0.6619 -0.3108 -3.6324 -2.7360 -1.2347 -1.5039 -2.0695 -0.7054 -3.3860 -2.4018 -1.0402 -0.5028 -1.6451 -0.1619
S-8 <2en> Lāžu ozols ir Vaides ciema Lāžu sētas rota un bagātība vairā nekā divus gadsimtus.
W-8 0.044 seconds
H-8 -2.4190080165863037 Is it possible to get rid of it in the future?
D-8 -2.4190080165863037 Is it possible to get rid of it in the future?
P-8 -4.3018 -3.2702 -2.0049 -2.3255 -0.4668 -4.6613 -2.9099 -0.1294 -3.5198 -3.0721 -1.9725 -4.2866 -0.7724 -0.1730
S-9 <2en> Lāžu sētā dzimis pirmais profesionāli izglītotais lībiešu skolotājs Nika Polmanis (1823), kopš 19. gs. 60. gadiem te saimniekojusi Launicu dzimta, kuras pārstāvis Andrejs Launics 19. gadsimtā pierakstījis lībiešu kāzu aprakstu un sadzīves ieražas, Lāžu mājās ir bijusi pamatskola lībiešu bērniem (no 1923. līdz 1937. gadam).
W-9 0.163 seconds
H-9 -0.6710368394851685 The first professionally educated Liv teacher Nika Polmanis (1823) was born in the Livonian plant since the 60s of the 19th century, whose representative Andrejs Launics wrote about the Livonian wedding description and the homegrance, has been a primary school for Livonian children (from 1923 to 1937).
D-9 -0.6710368394851685 The first professionally educated Liv teacher Nika Polmanis (1823) was born in the Livonian plant since the 60s of the 19th century, whose representative Andrejs Launics wrote about the Livonian wedding description and the homegrance, has been a primary school for Livonian children (from 1923 to 1937).
P-9 -3.4439 -1.8181 -0.7986 -0.2050 -0.2206 -0.0247 -0.1082 -0.6070 -0.0541 -0.3349 -0.5228 -0.2887 -0.0164 -0.1364 -0.9240 -0.0209 -0.6062 -0.1748 -0.0221 -0.7542 -0.6387 -3.8890 -0.0375 -1.0437 -0.0379 -1.8437 -0.9569 -0.2444 -1.1125 -0.2070 -2.4418 -0.2213 -0.2043 -0.1403 -0.0218 -1.0547 -0.9802 -0.3083 -0.6465 -0.2378 -0.1768 -0.0498 -0.1562 -0.1171 -0.5428 -1.7190 -0.6844 -1.2121 -0.0317 -0.1542 -0.0385 -0.2817 -0.5220 -0.1816 -2.0617 -2.2277 -4.0798 -0.4436 -1.7107 -1.4952 -0.5305 -1.3518 -0.5496 -0.1166 -0.2183 -1.0402 -0.0335 -0.1264 -0.0632 -0.1120 -0.6184 -0.0727 -0.1478 -0.0017 -0.3483 -1.7961 -0.0394 -0.4447 -0.1643
S-10 <2en> 20. gs. 30. gadu beigās par Lāžu saimnieku kļuva Alfons Bertholds (1910–1993) – zvejnieks, lībiešu dzejnieks, tautas garamantu zinātājs –, un arī pašlaik Lāžu ozola pakājē šeit saimnieko Bertholdu dzimta.
W-10 0.163 seconds
H-10 -0.8543376326560974 In the late 20th century, Alfons Bertholds (1910–1993) became the owner of the Laasis – a fisherman, a Liv poet, a researcher in the spirits of the nation – and also currently host the native of Bertholds here on the foot of the Laasi oak.
D-10 -0.8543376326560974 In the late 20th century, Alfons Bertholds (1910–1993) became the owner of the Laasis – a fisherman, a Liv poet, a researcher in the spirits of the nation – and also currently host the native of Bertholds here on the foot of the Laasi oak.
P-10 -3.5438 -0.3376 -0.1758 -1.6863 -1.2295 -0.0900 -1.1557 -0.3345 -0.0246 -0.4100 -0.0983 -0.1531 -0.3498 -0.0788 -0.1126 -0.0099 -0.2092 -0.2997 -1.1261 -1.8803 -0.1507 -2.1202 -0.7389 -3.3770 -2.0830 -0.9515 -0.5539 -0.0615 -0.2459 -0.3787 -0.7432 -0.6589 -0.0464 -0.4520 -0.0844 -0.4586 -0.4469 -2.4274 -0.3251 -1.0408 -0.9615 -1.8877 -0.4670 -0.2381 -0.6966 -0.7546 -0.3162 -0.2089 -1.4083 -1.3084 -0.6079 -2.6608 -1.4176 -0.8966 -0.2794 -0.6429 -1.8914 -2.0068 -0.2592 -2.2282 -0.1234 -0.6079 -0.3692 -2.4180 -2.3850 -0.0613 -0.1804 -0.1612
S-11 <2en> Lībiešu vasaras universitāte ir beigusies, bet daži tās mirkļi skatāmi Latvijas TV.
W-11 0.044 seconds
H-11 -0.8037378787994385 The Livonian Summer University is over, but some of its moments are watched on Latvian TV.
D-11 -0.8037378787994385 The Livonian Summer University is over, but some of its moments are watched on Latvian TV.
P-11 -3.1990 -4.4729 -0.5103 -1.0067 -0.0395 -0.5048 -0.1990 -1.0384 -0.3772 -0.5442 -0.4548 -0.2298 -0.1853 -0.1117 -0.3471 -0.1616 -1.2828 -1.5194 -1.5155 -0.1740 -0.6876 -0.3982 -0.1693 -0.1605
S-12 <2en> Vēlreiz liels paldies visiem dalībniekiem un atbalstītājiem – Tartu Universitātes ASTRA projektam PER ASPERA, Izglītības un zinātnes ministrijai, Latvijas Universitātei un citiem draugiem.
W-12 0.052 seconds
H-12 -0.9223047494888306 It is also 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 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 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 the right to receive the right to receive the right to receive the right of 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.
D-12 -0.9223047494888306 It is also 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 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 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 the right to receive the right to receive the right to receive the right of 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.
P-12 -4.7707 -1.7212 -3.4076 -2.7721 -0.5419 -2.6969 -0.3834 -2.7706 -2.4727 -2.5951 -0.4067 -0.2163 -3.2469 -2.5599 -2.0820 -1.6838 -1.7572 -1.9665 -1.4156 -1.1601 -1.4677 -1.4362 -0.9599 -0.6359 -1.1370 -1.1587 -0.8358 -0.5109 -1.0265 -1.0489 -0.7696 -0.4338 -0.8996 -0.9691 -0.7228 -0.4159 -0.8730 -0.9380 -0.7203 -0.3871 -0.8519 -0.8954 -0.6787 -0.3826 -0.7439 -0.8709 -0.6291 -0.3655 -0.7078 -0.8477 -0.6264 -0.4007 -0.6077 -0.8056 -0.6347 -0.4172 -0.6632 -0.7856 -0.6340 -0.4477 -0.6155 -0.7659 -0.6325 -0.4872 -0.6155 -0.7634 -0.6255 -0.4826 -0.6005 -0.7440 -0.6140 -0.4573 -0.5584 -0.7317 -0.5764 -0.4807 -0.5545 -0.7109 -0.6084 -0.4964 -0.5631 -0.6863 -0.6142 -0.5267 -0.5579 -0.6753 -0.6452 -0.5856 -0.5626 -0.6511 -0.6851 -0.6180 -0.5688 -0.6512 -0.6858 -0.6730 -0.5910 -0.6466 -0.6529 -0.6512 -0.5714 -0.6337 -0.6610 -0.6658 -0.5609 -0.6215 -0.7145 -0.6903 -0.5579 -0.6211 -0.7385 -0.7157 -0.5621 -0.6315 -0.7489 -0.7253 -0.5359 -0.6327 -0.7414 -0.7506 -0.5476 -0.6446 -0.7321 -0.7457 -0.5404 -0.6402 -0.7473 -0.7477 -0.5509 -0.6259 -0.7464 -0.7786 -0.5484 -0.6279 -0.8014 -0.8199 -0.5621 -0.6330 -0.8130 -0.9835 -0.5859 -0.6332 -0.7863 -0.9900 -0.5848 -0.6287 -0.8437 -1.2398 -0.6079 -0.6237 -0.8751 -1.3981 -0.6669 -0.6341 -0.9166 -3.9576 -0.8417 -2.2072 -0.7689 -0.6549 -0.6450 -1.3142 -0.9752 -0.6719 -0.6378 -1.2216 -1.3276 -0.7276 -0.6513 -1.1588 -1.5209 -0.8106 -0.6599 -1.1898 -1.8021 -0.8579 -0.6631 -1.2148 -2.0311 -0.9076 -0.6694 -1.3110 -3.6305 -0.1587
S-13 <2en> Īpašs paldies Talsu TV par sirsnīgo tikšanos un Marc Daniel Skibsted Volhardt, Tuuli Tuisk un Miina Norvik par iespaidiem.
W-13 0.052 seconds
H-13 -0.3619031608104706 Special thanks to Talsi TV for the affectionate meeting and Marc Daniel Skibsted Volhardt, Tuuli Tuisk and Miina Norvik for the impressions.
D-13 -0.3619031608104706 Special thanks to Talsi TV for the affectionate meeting and Marc Daniel Skibsted Volhardt, Tuuli Tuisk and Miina Norvik for the impressions.
P-13 -3.6049 -0.0476 -0.8743 -0.6861 -0.1395 -0.6331 -0.0353 -0.1541 -2.3113 -1.2751 -0.1281 -0.0929 -0.3701 -0.4694 -0.2892 -0.0911 -0.0152 -0.0493 -0.1141 -0.1313 -0.0828 -0.0052 -0.0126 -0.1302 -0.1919 -0.2269 -0.0317 -0.0306 -0.0824 -0.0698 -0.1804 -0.0188 -0.0343 -0.0070 -0.0273 -0.1436 -1.2007 -0.2175 -0.2477 -0.2232 -0.1616
S-14 <2en> Rīt Košragā sākas jau trešā Lībiešu vasaras universitāte!
W-14 0.018 seconds
H-14 -1.1699234247207642 It is 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 the right to receive the right to receive the right to receive it.
D-14 -1.1699234247207642 It is 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 the right to receive the right to receive the right to receive it.
P-14 -4.2845 -1.6801 -3.8214 -0.6152 -3.1050 -0.4711 -2.7626 -2.5082 -2.9891 -0.5341 -0.2757 -3.2222 -2.5659 -2.0267 -2.0013 -1.7356 -1.8811 -1.2549 -1.2008 -1.3852 -1.3411 -0.8798 -0.6290 -1.0759 -1.1251 -0.7745 -0.4882 -1.0101 -1.0160 -0.7307 -0.4217 -0.9138 -0.9519 -0.6941 -0.3721 -0.8557 -0.9167 -0.6784 -0.3515 -0.8708 -0.8803 -0.6074 -0.3360 -0.7976 -0.8519 -0.5830 -0.3275 -0.7629 -0.8305 -0.5862 -0.3591 -0.5994 -0.7976 -0.5935 -0.3795 -0.6199 -0.7734 -0.6000 -0.4160 -0.6095 -0.7538 -0.5759 -0.4471 -0.5977 -5.7261 -1.3741 -0.1814
S-15 <2en> Mēneša priekšmets – Kolkas bākas dzīvojamā ēka
W-15 0.018 seconds
H-15 -0.9109190702438354 Monthly object – Kolkas beacon residential building
D-15 -0.9109190702438354 Monthly object – Kolkas beacon residential building
P-15 -4.6261 -0.0319 -0.8265 -0.9593 -0.5266 -0.4324 -0.2142 -1.8406 -0.3982 -0.0751 -1.3158 -0.3857 -0.2094
S-16 <2en> Žurnālā “Ilustrētā Junioriem” Daniels Skulte vaicā “Vai joprojām pastāv lībiešu valoda?” Žurnāls ar LU Lībiešu institūta palīdzību sniedz atbildes par lībiešu valodu mūsdienās un senāk, kā arī par lībiešu un latviešu valodas saikni.
W-16 0.163 seconds
H-16 -0.7371059656143188 In the magazine “Illustrated Juniors” Daniels Skulte asks “Is there still a Liv language?” The magazine, with the help of the LU Liv Institute, provides answers about Liv language nowadays and ancient times, as well as about the link between Liv and Latvian.
D-16 -0.7371059656143188 In the magazine “Illustrated Juniors” Daniels Skulte asks “Is there still a Liv language?” The magazine, with the help of the LU Liv Institute, provides answers about Liv language nowadays and ancient times, as well as about the link between Liv and Latvian.
P-16 -4.4347 -1.1966 -4.1902 -0.9791 -0.5227 -0.6298 -0.1258 -0.0805 -0.0293 -0.2013 -0.4768 -0.0263 -1.0425 -0.1428 -0.0415 -0.0850 -0.3657 -0.0402 -0.6605 -2.0006 -0.1828 -0.7617 -0.6007 -1.0021 -0.9924 -0.0789 -0.0843 -0.1053 -0.6370 -1.2294 -2.6741 -1.1387 -0.1769 -0.2306 -0.1492 -1.3803 -0.0452 -1.5828 -0.1131 -0.1676 -0.4802 -2.1416 -0.7110 -0.1590 -0.9698 -0.8432 -0.0702 -0.1922 -1.9549 -0.5049 -0.0257 -0.1511 -0.2151 -1.7468 -1.3431 -0.9929 -0.6952 -0.1253 -0.1026 -0.5439 -1.3070 -2.1152 -0.0616 -1.4543 -0.0562 -0.5901 -0.0933 -0.4502 -0.1587
S-17 <2en> Liels paldies Danielam par uzdoto jautājumu!
W-17 0.014 seconds
H-17 -0.5978254675865173 Thank you very much for your question.
D-17 -0.5978254675865173 Thank you very much for your question.
P-17 -0.9249 -0.1432 -0.8002 -0.0134 -0.4763 -1.2341 -0.4109 -1.2115 -0.1660
S-18 <2en> Lustīgu līgošanu!
W-18 0.013 seconds
H-18 -1.4005199670791626 It is 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 it.
D-18 -1.4005199670791626 It is 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 it.
P-18 -4.8221 -1.6938 -3.7651 -0.6175 -3.5726 -0.5409 -2.4494 -2.6922 -3.0630 -0.5332 -0.3565 -3.4331 -2.5391 -1.8770 -2.2264 -1.9271 -1.8980 -1.1118 -1.4970 -1.5290 -1.4440 -0.7724 -0.7542 -1.2171 -1.2053 -0.6548 -0.5716 -1.1343 -1.0734 -0.6144 -0.4903 -1.0224 -1.0011 -0.5872 -0.4386 -0.9586 -0.9645 -0.5930 -0.4226 -0.9721 -0.9253 -0.5486 -0.3932 -0.9043 -0.8898 -0.5138 -0.3707 -0.8592 -5.5170 -1.2964 -0.1715
S-19 <2en> Saruna ar Helmī Stalti
W-19 0.014 seconds
H-19 -1.003186821937561 Helmī Stalti
D-19 -1.003186821937561 Helmī Stalti
P-19 -4.1188 -0.1963 -0.5958 -0.0432 -0.1184 -0.1982 -1.7516
S-20 <2en> Bagātā jūrmala – tiksimies Mazirbē!
W-20 0.018 seconds
H-20 -1.3302730321884155 Rich seaside – we will meet in Maryland!
D-20 -1.3302730321884155 Rich seaside – we will meet in Maryland!
P-20 -4.9094 -0.7623 -2.2787 -1.2169 -2.6979 -1.0781 -0.0999 -0.2188 -1.9787 -0.0804 -0.4775 -0.1646
S-21 <2en> Daudz laimes Latvijai neatkarības atjaunošanas gadadienā!
W-21 0.014 seconds
H-21 -1.263113260269165 It is 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 the right to receive it.
D-21 -1.263113260269165 It is 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 the right to receive it.
P-21 -4.8836 -1.6912 -3.9403 -0.5299 -3.1190 -0.4498 -2.5781 -2.4269 -2.9556 -0.4892 -0.2887 -3.2653 -2.6468 -1.9753 -1.7031 -1.8495 -1.9577 -1.2400 -0.9799 -1.4831 -1.4368 -0.9105 -0.5715 -1.1615 -1.1667 -0.7796 -0.4927 -1.1147 -1.0477 -0.7251 -0.4125 -0.9911 -0.9778 -0.6808 -0.3920 -0.9051 -0.9451 -0.6639 -0.3852 -0.9236 -0.9040 -0.6061 -0.3647 -0.8686 -0.8709 -0.5827 -0.3364 -0.8350 -0.8390 -0.5835 -0.3596 -0.6409 -0.8028 -0.5852 -0.3777 -0.6582 -5.5840 -1.3867 -0.2006
S-22 <2en> Paldies ikvienam, kas pirms 30 gadiem balsoja par neatkarības atjaunošanu, bet īpaši vienam no tiem – lībietim Ilmāram Geigem!
W-22 0.052 seconds
H-22 -0.8265239000320435 Thank you to everyone who voted 30 years ago for restoration of independence, but especially to one of them, we will be Ilmary Geigem!
D-22 -0.8265239000320435 Thank you to everyone who voted 30 years ago for restoration of independence, but especially to one of them, we will be Ilmary Geigem!
P-22 -5.2920 -0.1457 -0.5567 -1.1747 -0.3385 -0.6977 -0.3959 -0.1143 -0.0928 -0.4337 -1.1017 -0.2747 -0.1690 -0.5681 -1.4109 -0.9168 -1.0412 -0.4933 -0.3641 -0.1782 -2.0944 -2.5881 -0.3950 -1.6113 -0.1206 -1.6752 -0.0657 -0.2156 -0.3744 -0.5562 -0.1658
S-23 <2en> Draudzīgs sveiciens visiem igauņiem no Latvijas Universitātes profesores Janīnas Kursītes un viņas ģimenes.
W-23 0.044 seconds
H-23 -1.9320508241653442 It’s important to note that you have the right to receive information about your personal data and your personal data.
D-23 -1.9320508241653442 It’s important to note that you have the right to receive information about your personal data and your personal data.
P-23 -4.8945 -3.5243 -0.1768 -4.2832 -0.5609 -3.0354 -0.4823 -2.0614 -2.6789 -3.2112 -0.6467 -0.3605 -3.3447 -2.9013 -1.4159 -1.5029 -2.0556 -0.6576 -3.0939 -2.2208 -1.0255 -0.5174 -1.5531 -0.1644
S-24 <2en> Latvijas Universitāte tapusi Renātes Blumbergas grāmata par lībiešu tautas namu.
W-24 0.042 seconds
H-24 -1.1848818063735962 It is also 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 the right to receive the right to receive the right to receive it.
D-24 -1.1848818063735962 It is also 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 the right to receive the right to receive the right to receive it.
P-24 -4.9364 -1.7384 -3.7743 -3.1595 -0.5856 -3.0520 -0.4428 -2.7748 -2.6010 -2.6605 -0.4169 -0.2190 -3.2568 -2.5923 -1.8971 -1.5201 -1.7558 -1.9419 -1.1825 -0.9602 -1.4530 -1.3770 -0.8052 -0.5812 -1.1485 -1.1443 -0.6997 -0.4863 -1.0396 -1.0420 -0.6421 -0.4152 -0.9140 -0.9713 -0.6088 -0.4002 -0.8960 -0.9497 -0.6012 -0.3697 -0.8569 -0.9101 -0.5597 -0.3620 -0.7442 -0.8814 -0.5328 -0.3467 -0.7242 -0.8593 -0.5220 -0.3774 -0.6091 -0.8193 -0.5196 -0.3901 -0.6400 -0.7952 -0.5135 -0.4239 -0.5867 -0.7703 -0.5208 -0.4574 -0.5756 -5.7361 -1.3564 -0.1684
S-25 <2en> Sveicam lielākās lībiešu nemateriālā mantojuma kolekcijas glabātāja – Igaunijas Literatūras muzeja – jauno direktoru Tenisu Lukasu!
W-25 0.052 seconds
H-25 -0.5483351349830627 Welcome to Teniss Lukasu, the new director of the largest Livonian intangible heritage collection – Estonian Literature Museum!
D-25 -0.5483351349830627 Welcome to Teniss Lukasu, the new director of the largest Livonian intangible heritage collection – Estonian Literature Museum!
P-25 -4.2565 -0.1552 -2.1907 -0.0892 -1.4895 -0.0055 -0.2948 -0.1701 -0.6746 -0.4837 -0.0639 -0.2542 -0.4788 -0.9414 -0.7669 -0.0531 -0.1522 -0.0647 -0.3197 -0.2382 -0.0096 -0.0431 -0.1423 -0.0926 -1.3484 -1.2517 -0.0484 -0.2026 -0.3661 -0.0519 -0.6760 -0.1710
S-26 <2en> Mēneša priekšmets – Nika Polmaņa lielformāta (122 x 207 cm) portrets no režisora Uģa Oltes topošās spēlfilmas “Upurga”.
W-26 0.063 seconds
H-26 -2.442727565765381 Is it possible to get rid of it in the future?
D-26 -2.442727565765381 Is it possible to get rid of it in the future?
P-26 -4.6011 -3.3784 -1.9160 -2.2999 -0.4555 -4.4812 -2.8985 -0.1282 -3.4772 -3.1934 -1.9299 -4.4373 -0.8262 -0.1754
S-27 <2en> Iznācis konferences DHN2020 rakstu krājums.
W-27 0.018 seconds
H-27 -2.4024527072906494 Is it possible to get rid of it in your life?
D-27 -2.4024527072906494 Is it possible to get rid of it in your life?
P-27 -4.0914 -3.4098 -1.9536 -2.3496 -0.4556 -4.5372 -2.7912 -0.1288 -3.4275 -3.2043 -3.1000 -3.2092 -0.7977 -0.1786
S-28 <2en> Tajā lasāms arī LU Lībiešu institūta pētnieku Valta Ernštreita un Guntas Kļavas raksts “Taking the Livonians into the Digital Space” par iespējām, ko digitalajām humanitārās zinātnes var piedāvāt apdraudētajām valodām un kultūrām.
W-28 0.163 seconds
H-28 -0.5387409329414368 It also reads Valta Ernštreita and Gunta Kļava’s article “Taking the Livonians into the Digital Space” about the opportunities that digital humanitarian sciences can offer to endangered languages and cultures.
D-28 -0.5387409329414368 It also reads Valta Ernštreita and Gunta Kļava’s article “Taking the Livonians into the Digital Space” about the opportunities that digital humanitarian sciences can offer to endangered languages and cultures.
P-28 -3.6133 -1.2946 -0.1761 -0.1130 -1.4074 -1.0442 -0.0505 -0.3915 -0.4253 -0.2439 -0.4251 -2.3678 -0.0181 -0.5376 -0.2626 -0.8404 -0.1987 -1.3297 -0.1440 -0.2351 -0.9079 -0.0971 -0.0116 -0.8024 -0.0662 -0.2090 -0.2663 -0.0085 -0.2665 -0.6879 -0.0337 -0.1172 -0.4201 -0.2969 -0.7721 -1.0601 -1.4216 -0.2313 -1.4907 -0.0348 -0.5705 -0.4375 -0.2503 -0.9546 -0.9952 -0.0062 -0.2303 -0.0874 -0.1435 -0.0754 -0.1585 -0.1617 -0.1615
S-29 <2en> Karls Pajusalu radio stāsta par Ludzas igauņu valodu.
W-29 0.042 seconds
H-29 -0.6197502017021179 Karl Pajusalu radio tells about Ludza Estonian.
D-29 -0.6197502017021179 Karl Pajusalu radio tells about Ludza Estonian.
P-29 -3.4574 -0.6916 -0.0276 -0.0326 -0.0956 -1.4514 -0.6371 -0.1651 -0.4729 -0.1707 -0.5358 -0.2075 -0.6913 -0.4982 -0.1614
S-30 <2en> LU Lībiešu institūta zinātniskās asistentes Elvīra Kalniņa un Annija Lazdiņa piedalījās Zinātnieku naktī un stāstīja par savu pieredzi, pienākumiem un pētījumiem.
W-30 0.052 seconds
H-30 -1.321157693862915 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-30 -1.321157693862915 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-30 -5.1079 -3.4833 -0.1713 -4.4209 -0.6377 -2.9432 -0.4974 -2.0091 -2.8201 -3.2614 -0.6570 -0.3850 -3.6756 -2.5678 -1.7767 -2.6429 -1.7011 -1.8805 -0.9582 -1.5978 -1.3381 -1.3954 -0.6033 -0.7216 -1.0200 -1.1397 -0.5461 -0.5223 -0.9448 -1.0257 -0.5278 -0.4299 -0.8192 -0.9665 -0.5114 -0.4095 -0.8017 -0.9322 -0.5348 -0.3793 -0.7748 -0.8806 -0.5051 -0.3760 -0.6751 -0.8507 -0.4794 -0.3660 -0.6547 -0.8290 -0.4848 -0.4006 -0.5429 -5.8466 -1.3629 -0.1915
S-31 <2en> Daudz laimes neatkarības atjaunošanas dienā, dārgā Latvija!
W-31 0.018 seconds
H-31 -0.8579440712928772 A lot of luck on the day of restoration of independence, dear Latvia!
D-31 -0.8579440712928772 A lot of luck on the day of restoration of independence, dear Latvia!
P-31 -4.7156 -2.4435 -0.1789 -0.4701 -1.6097 -1.2840 -0.5722 -0.1641 -0.9036 -0.2333 -0.2058 -0.2197 -0.9021 -0.0136 -0.3125 -0.1895 -0.1669
S-32 <2en> Šodien lībieši modina putnus.
W-32 0.014 seconds
H-32 -0.9077801704406738 Today, the Livs are awakening the birds.
D-32 -0.9077801704406738 Today, the Livs are awakening the birds.
P-32 -3.2045 -1.1424 -0.7974 -0.8634 -0.0896 -1.2292 -1.1622 -1.1549 -0.0931 -1.6397 -0.0870 -0.1771 -0.1606
S-33 <2en> Noklausieties putnu modināšanas dziesmu lībiešu dzejnieka un kultūras glabātāja Pētera Damberga izpildījumā!
W-33 0.044 seconds
H-33 -0.8048422336578369 Listen to the song of bird awakening in the performance of the Liv poet and cultural keeper Peter Damberg!
D-33 -0.8048422336578369 Listen to the song of bird awakening in the performance of the Liv poet and cultural keeper Peter Damberg!
P-33 -4.5582 -0.2913 -0.8755 -1.6531 -0.4413 -2.6373 -0.5238 -0.0549 -1.8069 -0.6272 -0.4124 -0.1925 -1.8373 -0.1784 -0.0514 -0.2526 -0.0908 -0.2058 -0.2668 -1.6099 -0.0501 -0.9503 -0.0124 -0.3750 -0.1661
S-34 <2en> Pirms 101 gada Igaunijā dibināta Dzimtās valodas biedrība, kuras pirmā izdotā grāmata – Pirmā lībiešu lasāmgrāmata kļuva pirmo laicīgo grāmatu lībiešu valodā!
W-34 0.052 seconds
H-34 -0.8035891652107239 101 years ago in Estonia was founded by the Born Language Society, whose first published book – the First Liv Reading Book – became the first time-old book in Liv language!
D-34 -0.8035891652107239 101 years ago in Estonia was founded by the Born Language Society, whose first published book – the First Liv Reading Book – became the first time-old book in Liv language!
P-34 -4.1556 -0.7075 -0.1038 -3.5767 -0.0424 -1.4302 -0.5726 -1.3903 -0.3434 -2.2463 -0.0841 -0.0360 -0.0283 -0.7529 -0.5507 -0.0477 -0.0495 -1.4765 -0.0438 -0.7203 -1.1520 -0.6816 -0.3170 -0.0429 -2.0767 -0.7517 -1.0476 -0.6952 -0.0565 -0.1709 -0.0760 -1.8029 -1.9626 -1.1512 -0.3615 -0.1794 -1.0171 -0.0438 -0.4488 -0.3846 -0.1686
S-35 <2en> Daudz laimes!
W-35 0.004 seconds
H-35 -0.46984073519706726 A lot of luck!
D-35 -0.46984073519706726 A lot of luck!
P-35 -1.6361 -0.3359 -0.1887 -0.2729 -0.2188 -0.1667
S-36 <2en> 24.martā seminārā par digitālo humanitāro resursu izmantošanas iespējām LU Lībiešu institūts stāstīs par tā veidotajiem resursiem lībiešu valodai un kultūrai.
W-36 0.052 seconds
H-36 -1.9635649919509888 It’s important to note that you have the right to use your personal data for the purpose of protecting your personal data and your personal data.
D-36 -1.9635649919509888 It’s important to note that you have the right to use your personal data for the purpose of protecting your personal data and your personal data.
P-36 -4.8809 -3.5229 -0.1740 -4.4653 -0.6034 -2.9496 -0.5195 -2.2387 -2.7596 -3.3877 -0.6078 -0.3460 -4.4280 -2.6382 -2.3506 -0.6861 -2.7426 -2.4135 -0.9471 -0.1395 -4.7772 -0.9802 -0.8316 -0.2930 -2.9368 -3.2366 -1.2435 -0.4589 -1.1855 -0.1625
S-37 <2en> Ja nevaram tikt uz Kolku, Kolka nāk pie mums!
W-37 0.018 seconds
H-37 -0.5742498636245728 If we can’t get to Kolka, Kolka comes to us!
D-37 -0.5742498636245728 If we can’t get to Kolka, Kolka comes to us!
P-37 -1.1431 -0.5605 -0.7808 -0.9896 -0.1244 -0.8889 -0.5047 -1.1413 -0.3127 -0.5724 -0.2242 -0.0600 -0.9516 -0.6874 -0.1290 -0.5274 -0.1642
S-38 <2en> LU Lībiešu institūts piedalās diskusijā par pirmiedzivotāju jautājumiem – 2.diena.
W-38 0.042 seconds
H-38 -2.0966637134552 It’s a good idea to get rid of it, and it’s a good idea.
D-38 -2.0966637134552 It’s a good idea to get rid of it, and it’s a good idea.
P-38 -4.9747 -3.5186 -0.1731 -3.2147 -4.1129 -0.7620 -0.9804 -3.6372 -2.6620 -0.1153 -2.2270 -4.4124 -2.6065 -2.6872 -0.6954 -0.1779 -3.0405 -1.1552 -0.3318 -2.3681 -0.1770
S-39 <2en> LU Lībiešu institūts piedalās diskusijā par pirmiedzivotāju jautājumiem.
W-39 0.018 seconds
H-39 -0.9090463519096375 The Livonian Institute participates in discussions on first-degree issues.
D-39 -0.9090463519096375 The Livonian Institute participates in discussions on first-degree issues.
P-39 -3.1711 -4.1646 -0.4583 -0.9213 -0.0455 -0.1110 -1.0860 -0.1709 -0.1283 -0.9473 -1.2516 -0.6917 -1.4845 -0.6722 -1.4779 -0.3641 -0.0635 -0.6421 -0.1688 -0.1604
S-40 <2en> Rīt tajā gaidāma arī uzruna par lībiešiem.
W-40 0.018 seconds
H-40 -1.3119831085205078 It is also possible to talk about the Livonian people tomorrow.
D-40 -1.3119831085205078 It is also possible to talk about the Livonian people tomorrow.
P-40 -4.4260 -1.7479 -2.8155 -2.9624 -0.3433 -2.3679 -0.2245 -1.4808 -0.3788 -0.1060 -0.7148 -0.3134 -2.2671 -0.4309 -0.2512 -0.1613
S-41 <2en> LU Lībiešu institūta pētnieka Ulda Baloža grāmata “Lutsi kiele lementar. Ludzas igauņu valodas ābece” – 2020. gada izcilākā grāmata humanitāro zinātņu jomā Latvijas Universitātē!
W-41 0.063 seconds
H-41 -0.6352104544639587 Ulda Baloža, researcher of the LU Lībiešu Institute, book “Lutsi clip lementar. Ludza Estonian language apple” – the best book in the field of humanities at the University of Latvia in 2020.
D-41 -0.6352104544639587 Ulda Baloža, researcher of the LU Lībiešu Institute, book “Lutsi clip lementar. Ludza Estonian language apple” – the best book in the field of humanities at the University of Latvia in 2020.
P-41 -2.7577 -0.0091 -0.0542 -1.0872 -0.0382 -0.3561 -0.9523 -0.1704 -0.4936 -1.1065 -0.2078 -1.4007 -0.1789 -0.0592 -0.7896 -0.8855 -1.0442 -0.4341 -0.0972 -0.1634 -0.2171 -0.6923 -1.2153 -0.1275 -0.0063 -0.0548 -0.2738 -0.7434 -0.2291 -0.9381 -0.4926 -1.4166 -0.6520 -0.9645 -0.5235 -1.0095 -0.9909 -2.7772 -0.6100 -1.6480 -1.0213 -0.4848 -0.1247 -0.6665 -0.2887 -0.3269 -0.5656 -0.0758 -0.1321 -0.0785 -1.7350 -0.1203 -0.1780
S-42 <2en> 103! Daudz laimes dzimšanas dienā, dārgā Igaunija!"
W-42 0.018 seconds
H-42 -0.7404585480690002 103! A lot of luck on the birthday, dear Estonia!"
D-42 -0.7404585480690002 103! A lot of luck on the birthday, dear Estonia!"
P-42 -0.0270 -0.2894 -1.1738 -0.6001 -0.2310 -0.5776 -1.8074 -2.0485 -0.6239 -0.4089 -0.6961 -0.0163 -0.4791 -1.9523 -0.1756
S-43 <2en> Somu valodnieka Vilho Seteles 1912. gadā tapusī lībiešu fotogrāfiju kolekcija tagad apskatāma krāsās.
W-43 0.044 seconds
H-43 -0.8449753522872925 In 1912 the Finnish Livonian photography collection was now displayed in colors.
D-43 -0.8449753522872925 In 1912 the Finnish Livonian photography collection was now displayed in colors.
P-43 -4.7195 -0.2141 -0.2664 -2.1317 -0.3335 -2.7068 -0.2590 -0.1322 -0.0357 -0.5097 -0.6286 -0.0957 -1.1703 -0.4636 -1.9004 -0.1200 -0.2617 -1.1738 -0.2205 -0.2351 -0.1664
S-44 <2en> Paldies Tvanam Gosenam par izkrāsošanu.
W-44 0.018 seconds
H-44 -0.808640718460083 Thanks to Tvana Gosen for painting.
D-44 -0.808640718460083 Thanks to Tvana Gosen for painting.
P-44 -1.7176 -1.7003 -0.9898 -0.1104 -0.0335 -0.1421 -0.1993 -2.6292 -0.4057 -0.1586
S-45 <2en> Kurzemes plānošanas reģiona attīstības programmas 2021–2027 izstrādes diskusijā LU Lībiešu institūta vadītājs Valts Ernštreits par Kurzemes valodas un nemateriālā mantojuma saglabāšanu un izmantošanu, kultūras pieejamību reģionos un digitālo resursu izmantošanu.
W-45 0.063 seconds
H-45 -0.5209982395172119 In the discussion of the development of Kurzeme planning region development programme 2021-2027, Head of LU Lībiešu Institute Valts Ernštreits on the preservation and use of Kurzeme language and intangible heritage, cultural accessibility in regions and the use of digital resources.
D-45 -0.5209982395172119 In the discussion of the development of Kurzeme planning region development programme 2021-2027, Head of LU Lībiešu Institute Valts Ernštreits on the preservation and use of Kurzeme language and intangible heritage, cultural accessibility in regions and the use of digital resources.
P-45 -4.7615 -1.3407 -1.1078 -0.6920 -0.7910 -0.1092 -0.3982 -3.7553 -0.1603 -0.4104 -0.7365 -0.2651 -0.1104 -0.6566 -0.3093 -0.0348 -0.6943 -0.0294 -0.7500 -1.4160 -0.1424 -1.0278 -0.8112 -0.1570 -0.0416 -0.9943 -0.1815 -0.1539 -0.1326 -0.0168 -0.2633 -0.0822 -0.3345 -0.1215 -0.9479 -1.0259 -0.0519 -0.1405 -0.3088 -0.1513 -0.2866 -0.0451 -0.3438 -0.4914 -0.1402 -0.1540 -0.2535 -0.0180 -0.0828 -0.0553 -0.1852 -1.1073 -1.0219 -0.5727 -0.2186 -0.3664 -1.0963 -0.2212 -0.1505 -0.0247 -0.0364 -0.1719 -0.1636
S-46 <2en> LSM: "Lībiešu valodai nepieciešama reanimācija". Aicina glābt Eiropā apdraudētāko valodu.
W-46 0.044 seconds
H-46 -0.5796736478805542 LSM: "Livonian language needs reanimation." Calls for the rescue of Europe's most endangered language.
D-46 -0.5796736478805542 LSM: "Livonian language needs reanimation." Calls for the rescue of Europe's most endangered language.
P-46 -1.5531 -0.0181 -0.2613 -0.5642 -1.8825 -0.1353 -1.1261 -0.1985 -1.0870 -0.8404 -0.1840 -0.1787 -0.0351 -0.1323 -0.8673 -2.3832 -0.1625 -0.2004 -1.6536 -0.8638 -0.1741 -1.2646 -0.2642 -0.1556 -0.4989 -0.6070 -0.0145 -0.1672 -0.0873 -0.2443 -0.1647
S-47 <2en> Zudušos vārdus meklējot: LU Lībiešu institūta pētnieks Uldis Balodis par valodām, dzīvi Arizonā un sevi.
W-47 0.052 seconds
H-47 -1.2451668977737427 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 the right to receive it.
D-47 -1.2451668977737427 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 the right to receive it.
P-47 -4.9999 -3.5022 -0.1722 -4.2734 -0.5825 -3.0375 -0.5076 -2.0099 -2.7100 -3.1787 -0.6099 -0.3606 -3.7998 -2.5640 -1.7792 -2.5216 -1.5959 -1.8448 -0.9894 -1.4751 -1.2289 -1.3164 -0.6242 -0.6591 -0.9240 -1.0915 -0.5684 -0.4830 -0.8576 -0.9811 -0.5582 -0.4006 -0.7700 -0.9196 -0.5453 -0.3752 -0.7662 -0.8863 -0.5496 -0.3519 -0.7461 -0.8382 -0.5295 -0.3528 -0.6600 -0.8189 -0.5275 -0.3449 -0.6504 -0.8012 -0.5309 -0.3750 -0.5445 -0.7687 -0.5508 -0.3909 -0.5878 -5.7901 -1.3581 -0.1726
S-48 <2en> Starptautiskajā dzimtās valodas dienā skanēs arī lībiešu valoda!
W-48 0.018 seconds
H-48 -1.2613362073898315 The International Mother Language Day will also sound the Liv language!
D-48 -1.2613362073898315 The International Mother Language Day will also sound the Liv language!
P-48 -3.3011 -4.7066 -1.8111 -1.3121 -0.3987 -0.7648 -0.7839 -1.3449 -2.1715 -0.2303 -0.0664 -0.2706 -0.3309 -0.1659
S-49 <2en> Abja-Paluoja Igaunijā šogad būs somugru kultūras galvaspilsēta.
W-49 0.018 seconds
H-49 -0.549022912979126 Abja-Paluoja will be the Finnish cultural capital in Estonia this year.
D-49 -0.549022912979126 Abja-Paluoja will be the Finnish cultural capital in Estonia this year.
P-49 -3.2061 -0.1479 -0.3828 -0.3142 -0.1435 -0.0073 -0.9956 -0.8803 -0.9882 -0.1881 -1.2727 -0.0794 -0.6396 -0.0248 -0.2074 -0.0574 -0.1892 -0.1580
S-50 <2en> Ko saka dzīvnieki
W-50 0.004 seconds
H-50 -0.868066668510437 What the animals say
D-50 -0.868066668510437 What the animals say
P-50 -0.5460 -2.9355 -0.2095 -0.4082 -0.2411
S-51 <2en> Dziedi līdzi un mācies lībiešu valodu!
W-51 0.014 seconds
H-51 -1.2288371324539185 Singer and learn the Liv language!
D-51 -1.2288371324539185 Singer and learn the Liv language!
P-51 -5.4090 -2.0657 -0.9172 -0.2999 -2.4871 -0.1858 -0.0752 -0.1554 -0.5241 -0.1691
S-52 <2en> Par debespušu nosaukumiem lībiešu valodā.
W-52 0.018 seconds
H-52 -1.2155115604400635 For the name of the sky in the Livonian language.
D-52 -1.2155115604400635 For the name of the sky in the Livonian language.
P-52 -5.2724 -2.3971 -2.6247 -0.3173 -1.2097 -1.6544 -0.2510 -1.2045 -0.5455 -0.0535 -2.0154 -0.0358 -0.2815 -0.2069 -0.1630
S-53 <2en> Ir rīts
W-53 0.004 seconds
H-53 -1.306523084640503 It's morning
D-53 -1.306523084640503 It's morning
P-53 -3.0886 -1.9420 -0.1479 -1.1184 -0.2357
S-54 <2en> Jauns LU Lībiešu institūta projekts lībiešu valodas apguvei.
W-54 0.018 seconds
H-54 -2.2379472255706787 Is it a good idea to get rid of it?
D-54 -2.2379472255706787 Is it a good idea to get rid of it?
P-54 -4.5466 -3.3632 -1.9140 -3.1738 -3.2622 -0.9861 -0.8127 -3.6680 -2.8281 -0.1318 -2.5635 -1.6595 -0.1841
S-55 <2en> Šajā dienā pirms 30 gadiem dibināta pirmā lībiešu saglabāšanai paredzētā Latvijas valsts institūcija Valsts īpaši aizsargājamā lībiešu kultūrvēsturiskās teritorijas “Lībiešu krasts” (likvidēta 2003. gadā).
W-55 0.063 seconds
H-55 -0.7533919811248779 This day, 30 years ago, the first Latvian public institution designed to preserve the Livonian state specially protected Livonian cultural historic territory “Livonian Coast” (licensed in 2003) was founded.
D-55 -0.7533919811248779 This day, 30 years ago, the first Latvian public institution designed to preserve the Livonian state specially protected Livonian cultural historic territory “Livonian Coast” (licensed in 2003) was founded.
P-55 -4.5381 -1.6896 -1.8471 -0.5282 -0.1277 -0.1001 -1.3321 -0.4471 -0.2103 -0.5942 -1.4589 -0.1587 -2.2403 -0.7087 -0.5997 -1.1833 -0.2953 -0.0681 -0.3577 -0.1182 -3.3103 -1.4486 -0.3568 -0.0709 -0.3630 -0.0530 -0.0141 -0.0713 -0.0522 -2.1877 -0.0895 -0.9455 -0.8898 -0.0691 -0.0257 -0.0626 -1.1201 -0.1137 -0.6180 -3.5653 -0.1106 -0.1478 -0.1772 -0.0811 -0.6939 -0.4047 -0.9285 -0.1795 -0.1625
S-56 <2en> Mēneša priekšmets – Lielirbes ciema iedzīvotāju deklarācijas Lielirbes skolas pārzinei. Kāpēc tās tapa?
W-56 0.044 seconds
H-56 -0.818718671798706 The subject of the month – declarations of the residents of Lielirbe village to the controller of Lielirbe School. Why did they do?
D-56 -0.818718671798706 The subject of the month – declarations of the residents of Lielirbe village to the controller of Lielirbe School. Why did they do?
P-56 -2.0405 -1.2299 -0.2468 -0.3303 -0.5462 -0.7695 -1.7680 -0.3810 -0.9569 -0.7759 -1.7516 -0.8377 -0.2035 -0.2168 -0.0082 -0.0105 -0.4220 -1.1183 -0.5668 -4.5174 -0.1856 -0.1567 -0.0154 -0.0091 -1.5853 -0.3413 -0.3004 -1.0213 -0.6542 -2.2105 -0.8540 -0.1672
S-57 <2en> Pēc LU Lībiešu institūta ierosinājuma Braila alfabēts arī Ludzas igauņu valodai! Vēlreiz pateicamies Harisam Moubrijam!
W-57 0.052 seconds
H-57 -0.7758249044418335 Following the suggestion of the LU Lībiešu Institute, the Braila Alphabet is also for Ludza Estonian! Thanks again to Haris Moubria!
D-57 -0.7758249044418335 Following the suggestion of the LU Lībiešu Institute, the Braila Alphabet is also for Ludza Estonian! Thanks again to Haris Moubria!
P-57 -3.7535 -0.5645 -1.3385 -0.2045 -0.3834 -1.1180 -0.1176 -2.8558 -0.2876 -0.0644 -0.1868 -0.8155 -1.0961 -0.6009 -0.9556 -1.0951 -0.0508 -0.3129 -2.1832 -0.3153 -2.7544 -0.6987 -0.8300 -0.1948 -0.4803 -0.2673 -1.6963 -0.4966 -0.7684 -0.1364 -0.1082 -0.0498 -0.1292 -0.0986 -1.0298 -0.4991 -0.1675
S-58 <2en> LU Lībiešu institūta pētnieks Uldis Balodis nominēts Latgales kultūras balvai "Boņuks 2020" par "Ludzas igauņu valodas ābeci".
W-58 0.063 seconds
H-58 -2.0889830589294434 It’s a good idea to get rid of it, but it’s a good idea.
D-58 -2.0889830589294434 It’s a good idea to get rid of it, but it’s a good idea.
P-58 -5.0677 -3.3932 -0.1711 -3.2065 -4.0828 -0.7207 -0.9639 -3.5798 -2.6665 -0.1159 -2.2410 -4.4110 -2.8081 -2.0713 -0.7619 -0.1718 -3.3313 -1.2760 -0.3524 -2.3011 -0.1746
S-59 <2en> Skaitļi
W-59 0.004 seconds
H-59 -0.6434094309806824 Numbers
D-59 -0.6434094309806824 Numbers
P-59 -1.3784 -0.3147 -0.2371
S-60 <2en> Valsts prezidents atbalstījis virkni LU Lībiešu institūta priekšlikumu topošajam “Latviešu vēsturisko zemju likumam”.
W-60 0.044 seconds
H-60 -0.9404128193855286 The President has supported a series of proposals from the LU Lībiešu Institute for the upcoming “Latvian Historic land law”.
D-60 -0.9404128193855286 The President has supported a series of proposals from the LU Lībiešu Institute for the upcoming “Latvian Historic land law”.
P-60 -3.0211 -4.4183 -0.8189 -0.6957 -0.6822 -0.2151 -0.1246 -1.4408 -1.0736 -0.9801 -0.0920 -2.0145 -0.2689 -0.0981 -0.3094 -0.5629 -0.6811 -2.1487 -0.0282 -1.0606 -0.4616 -1.2831 -0.0274 -0.6814 -1.5803 -0.4479 -0.9589 -0.1562
S-61 <2en> No 4. janvāra Latvijas Radio 3 pārraidē „Rīta regtaims” skan jauna izzinoša rubrika „Vai zini?”, kurā trešdienās klausāmi arī stāsti par lībiešiem!
W-61 0.063 seconds
H-61 -1.21753990650177 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 the right to receive it.
D-61 -1.21753990650177 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 the right to receive it.
P-61 -4.8311 -3.3914 -0.1733 -4.4193 -0.6234 -2.9184 -0.5199 -2.0732 -2.7848 -3.3314 -0.6342 -0.3389 -3.7736 -2.5516 -1.8771 -2.5016 -1.4983 -1.7339 -0.9645 -1.4097 -1.1482 -1.2170 -0.5970 -0.6191 -0.8391 -1.0313 -0.5365 -0.4623 -0.7721 -0.9283 -0.5283 -0.3750 -0.6804 -0.8658 -0.5348 -0.3592 -0.6781 -0.8350 -0.5515 -0.3361 -0.6739 -0.7828 -0.5400 -0.3281 -0.6051 -0.7582 -0.5487 -0.3190 -0.5884 -0.7394 -0.5609 -0.3375 -0.4979 -0.7040 -0.5826 -0.3472 -0.5312 -5.7554 -1.4269 -0.1806
S-62 <2en> Ceturtajā stāstā rodama atbilde uz jautājumu „Vai zini, kādēļ lībiešu svētki tiek svinēti augusta pirmajā sestdienā?”
W-62 0.044 seconds
H-62 -0.6824877858161926 In the fourth story, the answer to the question “Do you know why the Livonian festival is celebrated on the first Saturday of August?”
D-62 -0.6824877858161926 In the fourth story, the answer to the question “Do you know why the Livonian festival is celebrated on the first Saturday of August?”
P-62 -4.7781 -2.2038 -0.5753 -0.3955 -0.8151 -2.2003 -0.3577 -1.1685 -0.4357 -0.1672 -0.9823 -0.3057 -0.1350 -0.1862 -0.5359 -0.9043 -0.2699 -0.0428 -0.3391 -0.0476 -2.1607 -0.4591 -0.3990 -0.1177 -0.3202 -0.7598 -0.1613 -0.0354 -0.1855 -0.0580 -0.1491 -0.1877
S-63 <2en> Kad es eju uz jūrmalu
W-63 0.014 seconds
H-63 -0.8328992128372192 When I go to the seaside
D-63 -0.8328992128372192 When I go to the seaside
P-63 -0.9429 -0.2459 -2.2518 -0.3785 -0.5084 -1.8645 -0.2493 -0.2221
S-64 <2en> Trešajā stāstā rodama atbilde uz jautājumu „Vai zini, ka mēs katrs mazliet protam runāt lībiski?”
W-64 0.044 seconds
H-64 -1.0080645084381104 In the third story, the answer to the question “Do you know that we can talk a little bit about it?”
D-64 -1.0080645084381104 In the third story, the answer to the question “Do you know that we can talk a little bit about it?”
P-64 -4.5088 -2.2050 -0.6259 -0.4439 -0.7845 -1.8049 -0.2784 -0.8949 -0.4932 -0.1846 -1.4263 -0.3290 -0.2230 -0.1712 -1.3372 -0.7187 -1.6718 -0.8520 -1.3047 -0.8738 -0.0340 -3.1218 -0.4257 -0.3134 -0.1748
S-65 <2en> Lībiešu valoda parādās aizvien jaunās Latvijas vietās.
W-65 0.014 seconds
H-65 -0.9031586050987244 The Liv language appears in the new places of Latvia.
D-65 -0.9031586050987244 The Liv language appears in the new places of Latvia.
P-65 -3.0845 -1.4980 -0.5736 -0.0853 -0.6053 -0.8882 -1.8839 -0.3609 -1.8821 -0.4291 -0.0465 -0.2416 -0.1621
S-66 <2en> Šeit Kolkas Lībiešu saieta nams norāde Kolkas ciema centrā.
W-66 0.042 seconds
H-66 -1.306519865989685 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-66 -1.306519865989685 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-66 -5.1175 -3.4517 -0.1749 -4.2134 -0.6003 -3.0243 -0.5227 -2.1186 -2.7690 -3.3015 -0.5817 -0.3726 -3.7550 -2.6362 -1.5992 -2.4817 -1.8135 -1.8722 -0.8004 -1.3586 -1.3834 -1.3634 -0.5402 -0.6349 -1.0770 -1.1404 -0.4991 -0.4845 -0.9790 -1.0362 -0.4822 -0.4090 -0.8647 -0.9740 -0.4803 -0.3899 -0.8764 -0.9433 -0.4916 -0.3621 -0.8605 -0.9050 -0.4683 -0.3541 -0.7404 -0.8775 -0.4370 -0.3319 -0.7149 -0.8567 -0.4476 -0.3706 -0.6165 -5.7070 -1.3088 -0.1918
S-67 <2en> Darītāji
W-67 0.004 seconds
H-67 -1.860744595527649 Workers
D-67 -1.860744595527649 Workers
P-67 -4.9881 -0.3987 -0.1954
S-68 <2en> Otrajā stāstā rodama atbilde uz jautājumu „Vai zini, kādēļ somi, igauņu un lībieši ceļas kājās pie vienas un tās pašas melodijas?”
W-68 0.052 seconds
H-68 -0.8671313524246216 In the second story, the answer to the question “Do you know why the Finnishs, Estonians and Livs rise to the same melody?”
D-68 -0.8671313524246216 In the second story, the answer to the question “Do you know why the Finnishs, Estonians and Livs rise to the same melody?”
P-68 -4.5456 -1.4333 -0.3980 -0.2864 -1.0549 -2.3555 -0.2745 -0.9420 -0.4068 -0.1697 -0.9844 -0.2762 -0.1544 -0.2002 -0.5385 -1.8080 -0.3146 -1.1985 -0.2308 -0.1866 -0.2385 -0.2920 -2.2109 -0.0967 -1.1521 -2.7688 -1.6692 -0.2832 -0.1256 -0.3178 -1.2134 -0.3074 -0.1808
S-69 <2en> Lībiešu valoda parādās aizvien jaunās Latvijas vietās.
W-69 0.014 seconds
H-69 -0.9031586050987244 The Liv language appears in the new places of Latvia.
D-69 -0.9031586050987244 The Liv language appears in the new places of Latvia.
P-69 -3.0845 -1.4980 -0.5736 -0.0853 -0.6053 -0.8882 -1.8839 -0.3609 -1.8821 -0.4291 -0.0465 -0.2416 -0.1621
S-70 <2en> Šeit – topošais Mērsraga tirgus.
W-70 0.014 seconds
H-70 -0.7637854218482971 Here is the upcoming Mērsraga market.
D-70 -0.7637854218482971 Here is the upcoming Mērsraga market.
P-70 -2.2836 -1.1417 -0.5578 -1.4421 -0.0210 -3.0062 -0.1504 -0.0297 -0.0983 -0.0914 -0.1819 -0.1613
S-71 <2en> Paldies, Mērsraga Informācijas Centrs!
W-71 0.018 seconds
H-71 -0.9236922264099121 Thank you, Mērsraga Information Centre!
D-71 -0.9236922264099121 Thank you, Mērsraga Information Centre!
P-71 -3.2696 -0.0891 -0.5628 -4.7076 -0.2485 -0.0334 -0.1292 -0.1011 -0.4422 -0.4110 -0.1660
S-72 <2en> Mēneša priekšmets – Viktoram Bertholdam — lībietim, zvejniekam un dziedniekam – 100
W-72 0.044 seconds
H-72 -0.5937666893005371 The subject of the month – Viktoram Bertholdam – the Livonian, fisherman and healer – 100
D-72 -0.5937666893005371 The subject of the month – Viktoram Bertholdam – the Livonian, fisherman and healer – 100
P-72 -3.1105 -1.4050 -0.3056 -0.4309 -0.8999 -0.7950 -0.0369 -0.8698 -0.0625 -0.1910 -0.2420 -1.8951 -1.3678 -0.1430 -1.0800 -0.0542 -0.2157 -0.1415 -0.6501 -0.2541 -0.1218 -0.0723 -0.1440 -0.0932 -0.2623
S-73 <2en> No 4. janvāra Latvijas Radio 3 pārraidē skan jauna izzinoša rubrika „Vai zini?”, kurā trešdienās klausāmi arī stāsti par lībiešiem!
W-73 0.052 seconds
H-73 -1.2592723369598389 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-73 -1.2592723369598389 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-73 -4.7562 -3.3708 -0.1750 -4.3180 -0.6237 -2.9112 -0.5206 -2.0650 -2.7694 -3.3174 -0.6511 -0.3513 -3.7336 -2.5504 -1.8598 -2.6257 -1.4689 -1.7243 -0.9389 -1.5049 -1.1112 -1.2101 -0.5812 -0.6533 -0.8009 -1.0267 -0.5217 -0.4657 -0.7380 -0.9204 -0.5168 -0.3773 -0.6520 -0.8599 -0.5239 -0.3570 -0.6545 -0.8287 -0.5410 -0.3309 -0.6572 -0.7806 -0.5284 -0.3245 -0.5913 -0.7580 -0.5388 -0.3140 -0.5731 -0.7390 -0.5579 -0.3367 -0.4902 -5.7522 -1.4762 -0.1939
S-74 <2en> Pirmajā stāstā rodama atbilde uz jautājumu “Vai zini, ka apdraudētākā valoda Eiropas Savienībā atrodama Latvijā?"
W-74 0.044 seconds
H-74 -0.6550578474998474 The first story reads the answer to the question “Do you know that the most endangered language in the European Union is found in Latvia?”
D-74 -0.6550578474998474 The first story reads the answer to the question “Do you know that the most endangered language in the European Union is found in Latvia?”
P-74 -3.1295 -2.0592 -0.9057 -3.1655 -0.2300 -0.9435 -0.7490 -0.1877 -0.4927 -0.2033 -0.8723 -0.2983 -0.1331 -0.2132 -0.7209 -0.4606 -0.4086 -1.0748 -0.0115 -0.2211 -0.0674 -0.4182 -0.2980 -0.5719 -0.0957 -1.3605 -0.3343 -0.1287 -0.0457 -0.3277 -0.1782
S-75 <2en> Par projektu “Dziedi līdzi un mācies lībiešu valodu!”, lībiešu ceļu uz UNESCO un pirmiedzīvotāju valodu desmitgadi.
W-75 0.052 seconds
H-75 -1.2264304161071777 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 the right to receive it.
D-75 -1.2264304161071777 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 the right to receive it.
P-75 -4.8206 -3.5050 -0.1757 -4.3406 -0.5823 -3.0456 -0.5045 -1.9282 -2.8244 -3.3178 -0.5806 -0.3517 -3.7909 -2.5855 -1.6722 -2.4113 -1.5820 -1.8048 -0.9066 -1.3991 -1.2079 -1.2648 -0.5996 -0.6376 -0.8972 -1.0642 -0.5565 -0.4726 -0.8276 -0.9654 -0.5454 -0.3918 -0.7348 -0.9065 -0.5251 -0.3684 -0.7323 -0.8727 -0.5368 -0.3451 -0.7090 -0.8290 -0.5155 -0.3447 -0.6352 -0.8107 -0.4932 -0.3351 -0.6299 -0.7925 -0.4899 -0.3643 -0.5376 -0.7570 -0.5048 -0.3869 -0.5726 -5.7624 -1.3506 -0.1831
S-76 <2en> Šodien 900 sekundēs - Latvijas Universitātes Lībiešu instītuts.
W-76 0.042 seconds
H-76 -2.240752696990967 Is it a good idea to get rid of it?
D-76 -2.240752696990967 Is it a good idea to get rid of it?
P-76 -4.3087 -3.3553 -1.8881 -3.1396 -3.4912 -1.0345 -0.8022 -3.6456 -2.7741 -0.1320 -2.5990 -1.7756 -0.1840
S-77 <2en> Krāsas
W-77 0.004 seconds
H-77 -0.5897026658058167 Colors
D-77 -0.5897026658058167 Colors
P-77 -1.1245 -0.4230 -0.2216
S-78 <2en> Par projektu “Dziedi līdzi un mācies lībiešu valodu!”
W-78 0.018 seconds
H-78 -1.2624479532241821 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-78 -1.2624479532241821 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-78 -4.9735 -3.4130 -0.1784 -4.1871 -0.5997 -3.0609 -0.5161 -1.9341 -2.8311 -3.2258 -0.5879 -0.3368 -3.8467 -2.5066 -1.6970 -2.2921 -1.6220 -1.7864 -0.9402 -1.3356 -1.1715 -1.2523 -0.6303 -0.6170 -0.8599 -1.0533 -0.5765 -0.4583 -0.7784 -0.9482 -0.5568 -0.3808 -0.7033 -0.8824 -0.5454 -0.3584 -0.6974 -0.8497 -0.5615 -0.3305 -0.6834 -0.8071 -0.5427 -0.3345 -0.6112 -0.7799 -0.5217 -0.3213 -0.5988 -0.7588 -0.5346 -0.3511 -0.5175 -5.6862 -1.3498 -0.2157
S-79 <2en> Dziedi līdzi un mācies lībiešu valodu! Jauns LU Lībiešu institūta projekts lībiešu valodas apguvei.
W-79 0.044 seconds
H-79 -0.7590265870094299 Laul with you and learn the Liv language! New project of the LU Liv Institute for learning the Liv language.
D-79 -0.7590265870094299 Laul with you and learn the Liv language! New project of the LU Liv Institute for learning the Liv language.
P-79 -4.3535 -0.7418 -1.9183 -0.7735 -0.2541 -0.1391 -1.5646 -0.1810 -0.0870 -0.1574 -0.5083 -1.2760 -0.4480 -1.0123 -1.9824 -0.1517 -0.9579 -0.1215 -0.5420 -0.9927 -1.1328 -0.4966 -0.0818 -0.0677 -0.0834 -0.2918 -0.1768
S-80 <2en> Latvijas Universitātes Lībiešu institūts novēl priecīgus Ziemassvētkus un laimīgu Jauno gadu!
W-80 0.044 seconds
H-80 -0.712249755859375 The Livonian Institute of the University of Latvia wants happy Christmas and happy New Year!
D-80 -0.712249755859375 The Livonian Institute of the University of Latvia wants happy Christmas and happy New Year!
P-80 -2.9683 -3.3280 -0.3603 -0.6099 -0.0941 -0.0787 -0.2632 -1.4906 -0.0999 -0.1303 -0.0749 -2.4009 -0.5969 -0.3378 -0.2323 -0.4972 -0.0966 -0.1354 -0.2817 -0.1681
S-81 <2en> ATJAUNOTS: Lībiešu priekšmeti Somijas Avotu krātuvēs.
W-81 0.042 seconds
H-81 -1.0735234022140503 Renewed: Livonian objects in Finnish Source storage.
D-81 -1.0735234022140503 Renewed: Livonian objects in Finnish Source storage.
P-81 -4.7807 -2.3379 -0.4138 -0.1469 -1.8419 -0.4876 -0.5044 -0.0684 -1.0261 -0.6993 -0.4543 -0.4203 -1.2328 -1.5248 -0.1635
S-82 <2en> Somijas muzeju valde atver savas foto kolekcijas (arī lībiešu mantojumu) publiskai lietošanai!
W-82 0.044 seconds
H-82 -0.4312880337238312 The Finnish Museum Board opens its photo collections (including the Livonian heritage) for public use!
D-82 -0.4312880337238312 The Finnish Museum Board opens its photo collections (including the Livonian heritage) for public use!
P-82 -1.5927 -0.1925 -0.2108 -0.4112 -0.5820 -0.1780 -0.2708 -1.8750 -0.0480 -0.3195 -0.4915 -0.2658 -1.2852 -1.1222 -0.0393 -0.0558 -0.0487 -0.0582 -0.1644 -0.3044 -0.0983 -0.2016 -0.3691 -0.1661
S-83 <2en> Top jaunas dziesmas lībiešu valodas apguvei!
W-83 0.014 seconds
H-83 -0.8031955361366272 Top new songs for learning the Liv language!
D-83 -0.8031955361366272 Top new songs for learning the Liv language!
P-83 -4.8416 -0.3112 -0.0882 -0.1634 -0.6264 -0.9935 -1.7366 -0.2696 -0.0710 -0.1060 -0.2614 -0.1694
S-84 <2en> Daudz laimes, dārgā Somija!
W-84 0.014 seconds
H-84 -0.6249966621398926 Good luck, dear Finland!
D-84 -0.6249966621398926 Good luck, dear Finland!
P-84 -3.0930 -0.0228 -0.3606 -0.6859 -0.0140 -0.4064 -0.2510 -0.1663
S-85 <2en> Mēneša priekšmets – Kārļa Staltes apliecinājums par saņemto maksu par lībiešu valodā tulkotā „Ūž Testament” (Jaunā Derība) 42 eksemplāriem, ko Līvu savienība iegādājās Ziemassvētku dāvanām.
W-85 0.063 seconds
H-85 -1.1874903440475464 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 the right to receive the right to receive the right to receive it.
D-85 -1.1874903440475464 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 the right to receive the right to receive the right to receive it.
P-85 -4.9962 -3.5496 -0.1734 -4.2512 -0.5931 -2.8454 -0.4788 -2.0503 -2.7956 -3.3898 -0.6430 -0.2895 -3.6602 -2.5833 -2.2954 -1.7962 -1.5119 -1.8416 -1.2910 -1.0181 -1.0951 -1.3877 -0.7621 -0.7421 -0.8227 -1.1846 -0.6612 -0.6952 -0.7612 -1.0808 -0.6135 -0.5770 -0.6246 -1.0001 -0.6031 -0.5590 -0.6023 -0.9731 -0.6175 -0.5460 -0.5522 -0.9312 -0.6436 -0.5245 -0.4861 -0.9157 -0.6413 -0.4860 -0.4578 -0.9083 -0.6278 -0.5158 -0.3864 -0.8844 -0.6349 -0.5681 -0.3965 -0.8826 -0.6422 -0.6220 -0.3720 -0.8578 -0.7124 -0.6940 -0.3648 -4.9994 -1.8490 -0.2302
S-86 <2en> 26. novembrī par Latvijas Zinātņu akadēmijas korespondētājlocekli ievēlēts LU Lībiešu instiūta vadītājs Valts Ernštreits.
W-86 0.063 seconds
H-86 -2.0700736045837402 It’s a good idea to get rid of it all over the world.
D-86 -2.0700736045837402 It’s a good idea to get rid of it all over the world.
P-86 -5.0138 -3.4754 -0.1724 -3.1819 -4.1037 -0.7474 -0.9413 -3.6084 -2.6999 -0.1165 -2.2736 -2.8234 -4.2481 -0.5754 -0.1820 -0.8513 -0.1768
S-87 <2en> Daudz laimes Latvijas Republikas 102. un Lībiešu karoga 97. dzimšanas dienā!
W-87 0.042 seconds
H-87 -1.169838547706604 It is 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 the right to receive the right to receive the right to receive it.
D-87 -1.169838547706604 It is 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 the right to receive the right to receive the right to receive it.
P-87 -4.8586 -1.7123 -3.9787 -0.5506 -3.0824 -0.4549 -2.6290 -2.4243 -2.9175 -0.4660 -0.2892 -3.2233 -2.5627 -2.0003 -1.8159 -1.7505 -1.9135 -1.2755 -1.0470 -1.4048 -1.3567 -0.9085 -0.5871 -1.0758 -1.1403 -0.8026 -0.4718 -1.0144 -1.0294 -0.7521 -0.4036 -0.8959 -0.9536 -0.7120 -0.3620 -0.8157 -0.9138 -0.7050 -0.3547 -0.8319 -0.8702 -0.6340 -0.3386 -0.7648 -0.8408 -0.6199 -0.3285 -0.7299 -0.8159 -0.6367 -0.3554 -0.5619 -0.7817 -0.6480 -0.3760 -0.5812 -0.7561 -0.6569 -0.4128 -0.5848 -0.7402 -0.6343 -0.4519 -0.5566 -5.7319 -1.3553 -0.1710
S-88 <2en> Zīmējums: Alvīne Veinberga.
W-88 0.014 seconds
H-88 -2.373790979385376 Is it possible to get rid of it in your life?
D-88 -2.373790979385376 Is it possible to get rid of it in your life?
P-88 -4.0564 -3.3657 -1.8943 -2.1834 -0.4499 -4.5983 -2.7630 -0.1276 -3.4085 -3.1640 -3.1396 -3.0965 -0.8100 -0.1759
S-89 <2en> Dzejas krājums “Trilium” ir saņēmis Somugru literatūru asociācijas un Igaunijas Radu tautu programmas literatūras balvu dzejas kategorijā.
W-89 0.052 seconds
H-89 -2.404741048812866 Is it possible to get rid of it in your life?
D-89 -2.404741048812866 Is it possible to get rid of it in your life?
P-89 -4.3837 -3.2855 -1.9163 -2.3120 -0.4438 -4.4699 -2.8292 -0.1292 -3.4076 -3.1799 -3.1927 -3.0741 -0.8648 -0.1777
S-90 <2en> Balva tiek piešķirta kopš 2007. gada.
W-90 0.013 seconds
H-90 -0.5020274519920349 The award has been awarded since 2007.
D-90 -0.5020274519920349 The award has been awarded since 2007.
P-90 -1.4629 -1.0429 -0.1954 -0.1451 -0.8978 -0.0244 -0.0875 -0.1603
S-91 <2en> Mēneša priekšmets – fotogrāfija no 1939. gada 6. augusta Lībiešu tautas nama atklāšanas sarīkojuma, kurā tika spēlētas veselas divas izrādes.
W-91 0.052 seconds
H-91 -0.9329726099967957 It is also 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 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 the right to receive the right to receive it.
D-91 -0.9329726099967957 It is also 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 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 the right to receive the right to receive it.
P-91 -5.0741 -1.7779 -3.7012 -3.3124 -0.5692 -3.0325 -0.4474 -2.8442 -2.5325 -2.6464 -0.4611 -0.2280 -3.2984 -2.5892 -1.8802 -1.5856 -1.6847 -1.9126 -1.1712 -1.0474 -1.3257 -1.3447 -0.8062 -0.5886 -1.0322 -1.1083 -0.7017 -0.4755 -0.9234 -1.0011 -0.6567 -0.4025 -0.8104 -0.9304 -0.6282 -0.3898 -0.7822 -0.8981 -0.6328 -0.3614 -0.7502 -0.8511 -0.6114 -0.3560 -0.6560 -0.8283 -0.5832 -0.3471 -0.6520 -0.8039 -0.5713 -0.3726 -0.5452 -0.7668 -0.5782 -0.3802 -0.5805 -0.7491 -0.5756 -0.4077 -0.5297 -0.7266 -0.5776 -0.4482 -0.5220 -0.7180 -0.5763 -0.4497 -0.5043 -0.6929 -0.5738 -0.4060 -0.4736 -0.6803 -0.5298 -0.4257 -0.4705 -0.6573 -0.5482 -0.4249 -0.4564 -0.6252 -0.5258 -0.4344 -0.4508 -0.6061 -0.5608 -0.4823 -0.4251 -0.5774 -0.5779 -0.5083 -0.3999 -0.5793 -0.5782 -0.5357 -0.4121 -0.5749 -0.5743 -0.5503 -0.3958 -0.5661 -0.5622 -0.5431 -0.3834 -6.1283 -1.0887 -0.1600
S-92 <2en> Šajā fotogrāfijā ir abu izrāžu aktieri, bet vairāk par abām izrādēm lasāms mēneša priekšmeta aprakstā.
W-92 0.044 seconds
H-92 -0.8018455505371094 This photograph contains actors from both outlets, but more about both shows can be read in the description of the subject of the month.
D-92 -0.8018455505371094 This photograph contains actors from both outlets, but more about both shows can be read in the description of the subject of the month.
P-92 -4.3704 -0.4775 -1.0902 -0.2306 -1.0551 -0.2486 -4.7535 -1.0876 -0.0609 -0.1558 -0.6191 -0.3689 -0.6086 -1.3809 -1.0732 -0.6273 -0.8215 -0.1430 -0.0999 -0.2927 -0.7522 -1.4617 -0.1659 -0.2350 -0.3663 -0.3900 -0.2240 -0.5521 -0.1768 -0.1661
S-93 <2en> 9. novembrī Igaunijas Literārajā muzejā tiks svinēta Igaunijas Folkloras arhīva dibinātāja Oskara Loritsa 120 gadu dzimšanas diena.
W-93 0.052 seconds
H-93 -0.5955416560173035 On 9 November, the Estonian Literary Museum will celebrate the 120th anniversary of the founder of the Estonian Folklor Archive Oskars Lorits.
D-93 -0.5955416560173035 On 9 November, the Estonian Literary Museum will celebrate the 120th anniversary of the founder of the Estonian Folklor Archive Oskars Lorits.
P-93 -4.2157 -0.8270 -0.1759 -0.9539 -0.5922 -2.0389 -0.0103 -0.0545 -0.6152 -0.0551 -0.8375 -0.1150 -0.3516 -0.2805 -0.8291 -0.0918 -0.1564 -1.2054 -0.1207 -0.3039 -0.8438 -0.6362 -0.1277 -0.1192 -0.1769 -0.8763 -0.6196 -0.8255 -0.4937 -0.1288 -0.1109 -0.5319 -0.7618 -0.1656
S-94 <2en> Viena no Oskara Loritsa izpētes jomām bija lībiešu folklora.
W-94 0.042 seconds
H-94 -0.7255311012268066 One of Oskara Loritsa’s research areas was Livonian Folklore.
D-94 -0.7255311012268066 One of Oskara Loritsa’s research areas was Livonian Folklore.
P-94 -4.5491 -0.2804 -0.9524 -0.8004 -0.1228 -0.1984 -0.3420 -1.1024 -1.4424 -0.1698 -0.2675 -0.8852 -0.3054 -0.7971 -0.0583 -1.0974 -0.0408 -1.1003 -0.6780 -0.4243 -0.1860 -0.1613
S-95 <2en> Setu institūtam šodien 5 gadi!
W-95 0.013 seconds
H-95 -1.4201043844223022 For the seven institutes today 5 years!
D-95 -1.4201043844223022 For the seven institutes today 5 years!
P-95 -4.9577 -1.2934 -3.0798 -1.2376 -1.9772 -0.4138 -0.6456 -0.1212 -0.3057 -0.1691
S-96 <2en> Daudz laimes!
W-96 0.004 seconds
H-96 -0.46984073519706726 A lot of luck!
D-96 -0.46984073519706726 A lot of luck!
P-96 -1.6361 -0.3359 -0.1887 -0.2729 -0.2188 -0.1667
S-97 <2en> LU Lībiešu institūta vadītāja Valta Ernštreita stāstījums par lībiešiem Dzimtās valodas dienā Helsinkos.
W-97 0.044 seconds
H-97 -2.032857894897461 It’s important to note that you have the right to receive information about your personal data.
D-97 -2.032857894897461 It’s important to note that you have the right to receive information about your personal data.
P-97 -4.8098 -3.5190 -0.1750 -4.3396 -0.5927 -3.0756 -0.5218 -2.0077 -2.7291 -3.2827 -0.6057 -0.3725 -3.7940 -2.8830 -1.3043 -1.5240 -2.0964 -0.6554 -2.2059 -0.1629
S-98 <2en> Ieskats Ventspils lībiešu kultūras dienās 2020.
W-98 0.014 seconds
H-98 -0.8762100338935852 Inspication of Ventspils Livonian Culture Day 2020.
D-98 -0.8762100338935852 Inspication of Ventspils Livonian Culture Day 2020.
P-98 -3.6243 -2.3286 -2.4169 -0.6412 -0.7671 -0.0722 -0.3961 -0.0658 -0.5282 -0.1112 -0.1313 -0.2233 -0.7956 -0.1652
S-99 <2en> Esiet sveicināti lībiešu kultūras, valodas un vēstures portālā Livones.net!
W-99 0.042 seconds
H-99 -0.37041494250297546 Welcome to Livones.net Livones!
D-99 -0.37041494250297546 Welcome to Livones.net Livones!
P-99 -0.4976 -0.2037 -0.2446 -0.0447 -0.0664 -0.1857 -0.1798 -1.6210 -0.0798 -0.0690 -0.9101 -0.3425
S-100 <2en> Sadaļā Krātuve apkopoti un sagrupēti raksti, saites un video par lībiešu tematiku.
W-100 0.044 seconds
H-100 -0.8901734948158264 In the Book section, articles, links and videos about Livonian theme are gathered and grouped.
D-100 -0.8901734948158264 In the Book section, articles, links and videos about Livonian theme are gathered and grouped.
P-100 -4.1316 -0.7804 -4.0475 -0.4756 -0.9303 -0.5428 -0.1650 -0.1819 -0.2753 -0.2271 -2.0163 -2.3876 -0.0433 -0.3798 -0.0985 -0.5845 -0.9465 -0.5347 -1.7981 -0.1271 -0.2183 -0.8479 -0.1297 -0.2162 -0.1684
S-101 <2en> Vēlam veiksmi lībiešu kultūras iepazīšanā!
W-101 0.018 seconds
H-101 -1.236909031867981 We wish you luck in learning about Livonian culture!
D-101 -1.236909031867981 We wish you luck in learning about Livonian culture!
P-101 -3.0736 -2.1638 -2.0161 -2.5460 -0.5495 -2.6656 -0.8412 -1.4481 -0.0412 -0.8445 -0.0599 -0.2306 -0.6704 -0.1664
S-102 <2en> Lībieši ir Baltijas jūras somu cilmes Latvijas pamattauta, kurai bijusi liela nozīme mūsdienu latviešu valodas un kultūras tapšanā.
W-102 0.044 seconds
H-102 -0.7618054747581482 Libians are the basic nation of Latvia of the Baltic Sea Finnish origin, which played a major role in the development of modern Latvian language and culture.
D-102 -0.7618054747581482 Libians are the basic nation of Latvia of the Baltic Sea Finnish origin, which played a major role in the development of modern Latvian language and culture.
P-102 -5.2502 -0.6186 -0.3021 -0.3052 -1.0202 -2.8770 -1.5449 -0.2528 -0.9949 -0.2073 -1.0235 -0.7520 -0.2172 -0.2102 -1.2225 -0.6372 -0.5593 -0.6045 -0.2946 -1.6689 -0.1830 -0.0688 -1.4524 -0.7812 -0.1540 -0.3769 -0.0819 -0.1811 -0.1313 -0.0743 -0.1672 -0.1623
S-103 <2en> Mūsdienu latviešu valoda veidojusies lībiešu un seno baltu cilšu – latgaļu, zemgaļu un kuršu – saskarsmē, un tieši šī mijiedarbe ir pamatā tās unikālajam skanējumam.
W-103 0.063 seconds
H-103 -0.7890504002571106 The modern Latvian language has been formed in contact with the Livonian and ancient white tribes – Latin, underminded and whose – and this interaction is based on its unique sound.
D-103 -0.7890504002571106 The modern Latvian language has been formed in contact with the Livonian and ancient white tribes – Latin, underminded and whose – and this interaction is based on its unique sound.
P-103 -2.9953 -3.3610 -0.0389 -0.2906 -1.3939 -2.7041 -0.9250 -0.6669 -0.2617 -0.1804 -0.9917 -0.5310 -0.0820 -0.5819 -0.0390 -0.2411 -0.1142 -0.3125 -0.0733 -0.1381 -0.1843 -1.0061 -0.1561 -0.2841 -0.7614 -3.6428 -2.0521 -0.3955 -0.4778 -0.8034 -1.0473 -1.2119 -0.3439 -1.4985 -1.7657 -0.2486 -0.9760 -0.2182 -0.2297 -0.0160 -0.0691 -0.4508 -0.1671
S-104 <2en> Līdzīgi lībiešu ietekme jūtama dažādas Latvijas tradicionālās un mūsdienu kultūras jomās no folkloras līdz pat kulinārajam mantojumam.
W-104 0.044 seconds
H-104 -0.6405283808708191 Similarly, the influence of the Livs is felt in various fields of Latvian traditional and contemporary culture, from folklor to culinary heritage.
D-104 -0.6405283808708191 Similarly, the influence of the Livs is felt in various fields of Latvian traditional and contemporary culture, from folklor to culinary heritage.
P-104 -4.7434 -0.1099 -0.4859 -0.9339 -0.5019 -0.3973 -1.1785 -0.6356 -0.0753 -0.9907 -0.7900 -0.1816 -0.2229 -1.1174 -0.8832 -0.1390 -1.5291 -0.2964 -0.1201 -0.8406 -0.3086 -1.5116 -0.1494 -0.4506 -0.8856 -0.4695 -0.0442 -0.0769 -0.0668 -0.0139 -0.1836 -0.1635
S-105 <2en> Tāpēc lībiešu tradicionālā kultūra iekļauta Latvijas kultūras kanonā un Latvijas Republikas Satversmes preambulā īpaši uzsvērta lībiešu tradīciju loma latviešu identitātes veidošanā.
W-105 0.052 seconds
H-105 -0.5970963835716248 This is why traditional Livonian culture is included in the Latvian Culture Canon and the Preamble of the Constitution of the Republic of Latvia emphasizes the role of Livonian traditions in the formation of Latvian identity.
D-105 -0.5970963835716248 This is why traditional Livonian culture is included in the Latvian Culture Canon and the Preamble of the Constitution of the Republic of Latvia emphasizes the role of Livonian traditions in the formation of Latvian identity.
P-105 -4.7222 -1.0889 -0.4196 -2.6125 -0.9641 -0.0436 -0.5957 -0.0331 -0.0538 -0.3599 -0.4316 -0.2087 -0.3447 -0.2027 -0.4448 -0.5088 -1.4730 -0.2718 -0.7832 -1.0735 -0.5542 -0.1167 -0.8004 -0.1222 -0.2350 -0.1604 -0.1435 -0.0394 -0.1227 -0.0425 -3.0408 -0.3628 -1.8104 -0.1072 -0.3022 -0.2704 -0.0353 -0.0115 -0.0293 -0.0122 -0.2268 -0.1600 -1.4445 -1.5358 -0.1291 -0.4445 -0.0396 -0.1587 -0.1632
S-106 <2en> Lībieši līdz pat mūsdienām spējuši ne tikai saglabāt savu valodas un kultūras savdabību, bet arī to attīstīt, iekļaujoties Latvijas mūsdienu kultūrtelpā.
W-106 0.052 seconds
H-106 -0.9774735569953918 The Livonian has been able not only to preserve the nature of its language and culture, but also to develop it by joining the contemporary cultural space of Latvia.
D-106 -0.9774735569953918 The Livonian has been able not only to preserve the nature of its language and culture, but also to develop it by joining the contemporary cultural space of Latvia.
P-106 -3.3604 -3.5800 -1.0826 -1.3765 -0.1112 -0.8898 -1.1415 -0.3441 -1.3211 -0.1282 -0.1173 -0.8419 -2.1242 -2.6539 -0.1891 -1.5034 -0.5864 -0.1666 -0.1446 -1.5900 -0.0933 -0.7962 -0.2624 -0.1087 -0.3365 -1.1461 -4.1517 -0.1470 -1.1703 -1.5650 -0.8800 -0.6192 -0.2505 -0.0220 -0.2227 -0.1647
S-107 <2en> Lībiešu valoda pieder pie urāliešu valodu saimes Baltijas jūras somu valodu grupas atšķirībā no latviešu valodas, kas ietilpst indoeiropiešu valodu saimes baltu valodu grupā.
W-107 0.052 seconds
H-107 -0.7607441544532776 The Liv language belongs to the Ural language family of the Baltic Sea Finnish language group, unlike the Latvian language, which is part of the Indo-European group of white languages.
D-107 -0.7607441544532776 The Liv language belongs to the Ural language family of the Baltic Sea Finnish language group, unlike the Latvian language, which is part of the Indo-European group of white languages.
P-107 -2.7296 -1.0971 -1.3789 -0.1349 -0.4805 -0.1391 -0.1647 -0.4452 -2.1555 -0.2314 -2.3990 -0.5034 -1.1545 -0.2698 -0.0235 -0.2470 -0.1728 -2.1227 -0.0721 -1.0947 -0.6019 -0.0883 -1.2145 -0.0717 -0.4300 -1.4628 -0.7231 -1.2459 -0.7211 -0.1316 -0.2349 -2.4322 -0.0950 -0.5649 -0.1038 -1.6007 -0.4284 -0.3322 -1.3423 -0.1819 -0.1672
S-108 <2en> Lībiešu valodai tuvākās radu valodas ir igauņu, somu un karēļu, tālākās – sāmu, ungāru, mordviešu un citas urāliešu saimei piederīgās valodas.
W-108 0.063 seconds
H-108 -1.0197386741638184 The Liv language is the language of Estonian, Finnish and warrior, the further languages of the Sami, Hungarian, Mordwich and other Ural family.
D-108 -1.0197386741638184 The Liv language is the language of Estonian, Finnish and warrior, the further languages of the Sami, Hungarian, Mordwich and other Ural family.
P-108 -2.8784 -3.3590 -0.4550 -0.1437 -0.8560 -1.3158 -3.1185 -0.6572 -0.2528 -0.2062 -0.0615 -0.3157 -2.9720 -0.1781 -0.3974 -0.9955 -0.7687 -4.4545 -1.0931 -0.5334 -1.2076 -0.7113 -1.5854 -0.3042 -0.0279 -0.1964 -1.2010 -1.4540 -0.4735 -0.5670 -0.3871 -0.1474 -2.0374 -0.0810 -1.8142 -0.3543 -0.1679
S-109 <2en> Lībiešu valoda ir iekļauta UNESCO pasaules apdraudēto valodu atlasā (UNESCO Atlas of the World’s Languages in Danger) kā kritiski apdraudēta valoda.
W-109 0.052 seconds
H-109 -0.4931648373603821 The Liv language is included in the UNESCO Atlas of the World’s Languages in Danger as a critically endangered language.
D-109 -0.4931648373603821 The Liv language is included in the UNESCO Atlas of the World’s Languages in Danger as a critically endangered language.
P-109 -2.4122 -2.1212 -0.5929 -0.1339 -0.3033 -0.5336 -0.2039 -1.8690 -2.1164 -0.0676 -0.0208 -0.2483 -0.1804 -0.6437 -0.4147 -0.2053 -0.1493 -0.2789 -0.1729 -0.1615 -0.0838 -0.0076 -0.8894 -0.4614 -0.0826 -0.3770 -0.3600 -0.0086 -0.1572 -0.0379 -0.3173 -0.1686
S-110 <2en> Latvijā lībiešu valodas statuss noteikts Valsts valodas likuma 4. pantā, kurā sacīts: „Valsts nodrošina lībiešu valodas kā pirmiedzīvotāju (autohtonu) valodas saglabāšanu, aizsardzību un attīstību.”
W-110 0.063 seconds
H-110 -0.5660274624824524 In Latvia, the status of the Liv language is defined in Section 4 of the State Language Law, which states: “The State ensures preservation, protection and development of the Liv language as an indigenous (author) language.”
D-110 -0.5660274624824524 In Latvia, the status of the Liv language is defined in Section 4 of the State Language Law, which states: “The State ensures preservation, protection and development of the Liv language as an indigenous (author) language.”
P-110 -4.0575 -0.1726 -0.9009 -0.7804 -0.3629 -0.1361 -0.7932 -0.2639 -0.0526 -0.1764 -0.3150 -2.0889 -0.2279 -0.6287 -1.0908 -0.1426 -0.1674 -0.7736 -0.2957 -0.7831 -0.7142 -0.5075 -0.8892 -0.3560 -0.6201 -0.4149 -0.4710 -0.9118 -0.1443 -0.7657 -0.2007 -0.2618 -0.3111 -0.0707 -0.1427 -0.2564 -0.1648 -0.0379 -0.0893 -0.1782 -1.6767 -1.4117 -0.0080 -0.0048 -0.4973 -1.4015 -0.0896 -1.1533 -0.1304 -0.6156 -0.1598
S-111 <2en> Tāpat lībiešu valoda kā lībiešu tradicionālās kultūras daļa kopš 2009. gada iekļauta Latvijas kultūras kanonā.
W-111 0.042 seconds
H-111 -0.7814370393753052 The Liv language as part of the traditional Liv culture has also been incorporated into the Latvian Culture Canoe since 2009.
D-111 -0.7814370393753052 The Liv language as part of the traditional Liv culture has also been incorporated into the Latvian Culture Canoe since 2009.
P-111 -3.1119 -1.5670 -0.0596 -0.0866 -2.7601 -0.3705 -0.1484 -1.0437 -0.8677 -0.6013 -0.0418 -0.3415 -0.7383 -0.6002 -0.5867 -1.2294 -1.1244 -0.5454 -0.0672 -0.4550 -1.2236 -2.1107 -0.2807 -0.0654 -0.1246 -0.1657
S-112 <2en> Vēl 19. gs. lībiski runāja ap 3000 cilvēku, 20. gs. vidū bija ap 1500 valodas pratēju, bet mūsdienās labi sazināties lībiski spēj ap 30 cilvēkiem visā pasaulē.
W-112 0.063 seconds
H-112 -0.8894968628883362 In 19th century, about 3,000 people spoke Livonianly, about 1,500 language skills in the mid-20th century, but nowadays, about 30 people around the world have been able to communicate well.
D-112 -0.8894968628883362 In 19th century, about 3,000 people spoke Livonianly, about 1,500 language skills in the mid-20th century, but nowadays, about 30 people around the world have been able to communicate well.
P-112 -4.9814 -3.3586 -1.1009 -0.0653 -1.5256 -1.2777 -1.2036 -0.0376 -0.2634 -1.6656 -2.6768 -0.6595 -0.2928 -0.0821 -0.7135 -0.4758 -1.7395 -0.2285 -0.0073 -1.8147 -3.0887 -1.1356 -0.2130 -0.3742 -0.2928 -0.1661 -0.0161 -0.3666 -0.6522 -1.2304 -0.3528 -0.0105 -0.1451 -2.2887 -1.3470 -0.0566 -0.1398 -1.7784 -0.1357 -0.1176 -1.4102 -1.3466 -0.2453 -0.1660 -0.7964 -0.3052 -0.1837 -0.1642
S-113 <2en> Pastāvīgi aug arī to skaits, kuri apguvuši lībiešu valodas pamatus.
W-113 0.042 seconds
H-113 -0.8650152087211609 The number of people who have obtained the basics of the Liv language is constantly growing.
D-113 -0.8650152087211609 The number of people who have obtained the basics of the Liv language is constantly growing.
P-113 -2.8846 -0.6950 -0.1847 -3.1294 -0.3238 -1.4710 -1.6571 -0.7464 -0.5999 -1.0307 -0.2901 -0.6761 -0.2937 -0.0565 -0.1659 -0.5374 -1.6914 -0.3349 -0.3707 -0.1611
S-114 <2en> Zināšanas par lībiešu valodu un arī tās prasme ir svarīga, lai izprastu latviešu valodu, jo abas valodas ir ietekmējušās ilgajā mijiedarbībā.
W-114 0.052 seconds
H-114 -0.7997125387191772 The knowledge of the Liv language and also its skills are important to understand the Latvian language, because both languages have been influenced in long-term interaction.
D-114 -0.7997125387191772 The knowledge of the Liv language and also its skills are important to understand the Latvian language, because both languages have been influenced in long-term interaction.
P-114 -3.0272 -1.5281 -0.7169 -0.7697 -0.4097 -0.0648 -0.0618 -0.4056 -1.1741 -0.3138 -0.7236 -0.6701 -0.2961 -1.3033 -0.3844 -0.7679 -0.1273 -0.0624 -1.1568 -1.4352 -0.6950 -0.1834 -0.3834 -1.1462 -1.5363 -0.1327 -1.2240 -1.0305 -1.6451 -0.1632 -0.6315 -2.0579 -0.1627
S-115 <2en> Lai gan valodas pratēju ir maz, lībiešu valoda ir ļoti svarīga urāliešu valodu pētniekiem, jo tā ir savdabīga un ietver daudzas senas īpašības.
W-115 0.052 seconds
H-115 -0.8355820178985596 While there are few linguistic skills, the Liv language is very important for ural researchers because it is natural and includes many ancient characteristics.
D-115 -0.8355820178985596 While there are few linguistic skills, the Liv language is very important for ural researchers because it is natural and includes many ancient characteristics.
P-115 -3.3050 -0.1529 -0.7854 -0.3855 -1.3921 -2.7036 -0.8878 -0.0586 -2.3247 -0.3218 -1.2317 -0.1191 -0.1709 -0.1320 -0.1843 -0.8860 -0.1531 -0.6584 -0.4346 -0.2843 -2.4924 -0.1002 -1.1436 -0.3392 -0.3752 -2.8113 -0.2479 -1.0049 -0.2134 -0.0601 -1.8803 -0.1721 -0.1618
S-116 <2en> Tāpat arī valodas prasme ir būtiska pašiem lībiešiem, jo tieši valoda vienmēr bijusi lībiešu pašapziņas pamatā.
W-116 0.044 seconds
H-116 -0.8721851706504822 It is also important for the Livonian people to have language skills, because it is always the basis for Livonian self-confidence.
D-116 -0.8721851706504822 It is also important for the Livonian people to have language skills, because it is always the basis for Livonian self-confidence.
P-116 -4.4981 -1.6984 -2.6165 -0.6166 -0.7780 -1.0962 -0.2968 -0.0650 -1.0396 -0.1309 -0.5460 -0.5469 -4.2375 -0.7451 -0.1070 -0.9985 -0.8066 -1.2455 -0.7222 -1.0177 -1.1843 -0.2612 -1.1970 -0.7542 -0.0450 -1.1037 -0.0333 -0.1251 -0.2653 -1.1416 -0.1609 -0.0407 -0.0302 -0.2115 -0.1635
S-117 <2en> Mūsdienās lībiešu valodu ir iespējams apgūt pašmācības ceļā, kursos un nometnēs, kā arī dažās augstskolās.
W-117 0.044 seconds
H-117 -0.7570064067840576 It is possible to learn the Liv language today on a self-learning path, courses and camps, as well as in some universities.
D-117 -0.7570064067840576 It is possible to learn the Liv language today on a self-learning path, courses and camps, as well as in some universities.
P-117 -4.7962 -1.0969 -1.9910 -0.5573 -1.0311 -1.7493 -0.3464 -0.0510 -0.0424 -0.6395 -1.2447 -1.7994 -0.0849 -0.1659 -2.1290 -0.0490 -0.0436 -0.9412 -0.2938 -0.9330 -0.3265 -0.1212 -0.2895 -0.8957 -0.6741 -0.1352 -0.1009 -0.7470 -0.2676 -0.3612 -0.1545 -0.1651
S-118 <2en> Cerams, ka nākotnē to būs iespējams apgūt arī tīmeklī.
W-118 0.018 seconds
H-118 -0.8816252946853638 I hope that in the future it will be possible to learn on the web too.
D-118 -0.8816252946853638 I hope that in the future it will be possible to learn on the web too.
P-118 -1.9672 -0.2683 -1.4428 -2.5817 -0.2148 -0.0434 -1.7451 -0.6659 -0.6361 -1.0974 -0.2275 -1.0409 -1.5288 -0.1741 -0.9491 -0.9589 -0.1669 -0.1603
S-119 <2en> Lībieši ir unikāli ne tikai ar savu valodu un vēsturi, bet arī ar bagātīgo un savdabīgo kultūras mantojumu, kurā ieskatu sniedz portāla sadaļa Tradicionālā kultūra.
W-119 0.063 seconds
H-119 -0.7383154034614563 The Livonian is unique not only with its language and history, but also with rich and savvy cultural heritage, in which the section of the portal Traditional Culture provides insights.
D-119 -0.7383154034614563 The Livonian is unique not only with its language and history, but also with rich and savvy cultural heritage, in which the section of the portal Traditional Culture provides insights.
P-119 -2.5497 -1.4638 -0.5122 -0.7986 -0.1057 -1.2227 -0.0406 -0.4000 -0.1637 -0.2815 -0.7329 -0.1728 -0.1776 -0.0646 -0.5166 -0.1191 -0.5292 -0.1447 -2.4558 -0.1722 -0.8240 -0.9439 -0.5471 -0.0127 -0.6298 -1.8433 -0.0549 -1.4796 -0.7492 -0.4138 -0.6406 -1.5585 -2.7905 -0.0998 -0.9953 -0.8487 -0.8821 -0.6898 -0.1666
S-120 <2en> Lībieši ir izveidojuši un turpina attīstīt savu moderno kultūru – mākslu, mūziku un literatūru, kuras saknes iesniedzas teju 200 gadu senā pagātnē.
W-120 0.052 seconds
H-120 -0.723808765411377 The Livonian has established and continues to develop its modern culture – art, music and literature, the roots of which will be presented in almost 200 years of history.
D-120 -0.723808765411377 The Livonian has established and continues to develop its modern culture – art, music and literature, the roots of which will be presented in almost 200 years of history.
P-120 -2.5689 -1.7081 -0.8930 -0.8959 -0.1563 -0.9697 -1.8848 -0.1708 -0.7217 -0.1712 -0.1835 -0.1832 -0.7953 -0.5386 -0.1379 -1.1258 -0.0491 -0.2086 -0.0326 -0.3278 -0.0306 -0.5558 -1.4683 -0.0116 -0.6381 -0.3016 -0.0525 -2.0346 -1.6352 -0.5014 -1.0909 -1.7966 -0.0282 -0.1900 -1.4734 -1.6482 -0.1628 -0.1620
S-121 <2en> Ar lībiešu moderno kultūru un tās izpausmēm var iepazīties portāla sadaļā Mūsdienu kultūra.
W-121 0.042 seconds
H-121 -0.6089272499084473 The modern Livonian culture and its expressions can be found in the section of the portal Modern Culture.
D-121 -0.6089272499084473 The modern Livonian culture and its expressions can be found in the section of the portal Modern Culture.
P-121 -2.9840 -2.2020 -1.8597 -0.0548 -1.6571 -0.0381 -0.1837 -0.2432 -0.0486 -0.7477 -0.1683 -0.2997 -0.1253 -1.1596 -0.4546 -0.1224 -0.5750 -0.1201 -0.1678 -0.6048 -0.3605 -0.0990 -0.1730 -0.1654
S-122 <2en> Krātuves sadaļā apkopota visdažādākā publiski pieejamā informācija par lībiešiem.
W-122 0.042 seconds
H-122 -1.0438040494918823 The section of the store gathers the most diverse publicly available information about the Livonian people.
D-122 -1.0438040494918823 The section of the store gathers the most diverse publicly available information about the Livonian people.
P-122 -3.3405 -2.6377 -0.4856 -0.2256 -4.2828 -1.9917 -0.2218 -0.8460 -0.8925 -2.1129 -0.1400 -0.7391 -0.7624 -0.0561 -0.7861 -0.7724 -0.4237 -0.0772 -0.7378 -0.5413 -1.5855 -0.1877 -0.1609
S-123 <2en> Te atrodami pētījumi par lībiešu vēsturi un kultūru (uz valodu attiecināmie pētījumi meklējami portāla sadaļā lingua.livones.net), grāmatas, tīmekļa resursi, video u.c.
W-123 0.063 seconds
H-123 -0.6054779291152954 There are studies on Livonian history and culture (language studies can be found in the section of lingua.livones.net), books, web resources, video etc.
D-123 -0.6054779291152954 There are studies on Livonian history and culture (language studies can be found in the section of lingua.livones.net), books, web resources, video etc.
P-123 -5.1041 -0.6238 -0.2364 -1.1965 -1.3339 -0.0621 -0.6342 -0.1342 -0.0777 -0.1556 -0.0850 -0.5998 -3.1781 -1.3510 -0.2326 -0.6117 -0.8860 -0.2012 -0.1153 -0.6356 -0.6303 -1.9063 -1.1869 -0.3301 -0.0255 -0.1306 -0.1396 -0.0808 -0.0268 -0.0391 -0.1394 -0.0371 -0.3711 -0.1045 -0.1973 -0.1351 -0.0788 -0.2149 -0.6919 -1.0705 -0.1765 -0.2623
S-124 <2en> Sadaļa pastāvīgi tiek papildināta ar jaunām publikācijām un ziņām.
W-124 0.042 seconds
H-124 -0.5375409126281738 The section is constantly updated with new publications and news.
D-124 -0.5375409126281738 The section is constantly updated with new publications and news.
P-124 -1.5759 -0.5762 -0.3325 -0.2584 -2.0328 -0.3833 -0.1447 -0.0663 -0.1704 -0.1441 -0.6427 -0.4969 -0.1638
S-125 <2en> Enna Sedes (Enn Säde) veidotā dokumentālā filma Liivlaste lood (Lībiešu stāsti), 1991 Liivlaste lood (Lībiešu stāsti) filmēta 1988.-1990. gadā.
W-125 0.063 seconds
H-125 -0.6504238843917847 The documentary by Enna Sede (Enn Säde) was filmed in 1988-1990.
D-125 -0.6504238843917847 The documentary by Enna Sede (Enn Säde) was filmed in 1988-1990.
P-125 -3.0142 -2.3689 -0.0462 -2.2211 -0.1899 -0.1038 -0.2162 -0.4956 -1.0360 -0.1049 -0.0229 -0.0240 -0.1207 -0.5938 -1.3840 -0.7438 -0.1336 -0.6659 -0.5589 -0.0834 -0.3947 -0.0330 -0.8100 -0.2447
S-126 <2en> Tajā redzami Oskars Stalte, Elfrīda Žagare, Alfons Bertholds, Paulīne Kļaviņa, Andris Zēbergs, Irma Fridrihsone.
W-126 0.063 seconds
H-126 -0.3228369653224945 It sees Oskars Stalte, Elfrīds Žagare, Alfons Bertholds, Paulīne Kļaviņa, Andris Zēbergs, Irma Fridrihsone.
D-126 -0.3228369653224945 It sees Oskars Stalte, Elfrīds Žagare, Alfons Bertholds, Paulīne Kļaviņa, Andris Zēbergs, Irma Fridrihsone.
P-126 -4.2176 -3.2704 -0.1892 -0.5915 -0.3960 -0.0570 -0.2479 -0.0336 -0.0933 -0.6897 -1.2065 -0.0212 -0.0309 -0.2009 -0.1678 -0.0540 -0.0258 -0.1850 -0.2123 -0.2131 -0.1605 -0.0307 -0.1698 -0.1342 -0.0838 -0.0202 -0.2306 -0.0077 -0.1598 -0.0025 -0.1328 -0.0083 -0.0507 -0.1290 -0.1781 -0.0368 -0.1492 -0.0203 -0.1367 -0.0181 -0.0440 -0.1519 -0.0147 -0.1935 -0.1599
S-127 <2en> Filmā izmantoti Igunijas Filmu arhīva un Igaunijas Telefilmas arhīva materiāli.
W-127 0.042 seconds
H-127 -0.7564429044723511 The film used the materials of the Igunian Film archive and the Estonian Telefilm archive.
D-127 -0.7564429044723511 The film used the materials of the Igunian Film archive and the Estonian Telefilm archive.
P-127 -2.8473 -0.4815 -1.2114 -2.0288 -0.7219 -0.3586 -0.2059 -2.8355 -0.5161 -0.4357 -0.1029 -0.0814 -0.2263 -1.0287 -0.1125 -0.0767 -1.3897 -0.0346 -0.2710 -0.1623
S-128 <2en> Scenārija autora un režsors – Enns Sede, operators Ago Rūss.
W-128 0.044 seconds
H-128 -0.5974500775337219 The author and director of the scene – Enns Sede, operator Ago Rūss.
D-128 -0.5974500775337219 The author and director of the scene – Enns Sede, operator Ago Rūss.
P-128 -3.2202 -2.4000 -0.5221 -0.2727 -0.3314 -0.3166 -1.9671 -1.0863 -0.0337 -0.5903 -0.0862 -0.1197 -0.2126 -0.3872 -0.0784 -0.0315 -0.2265 -0.1642 -0.1343 -0.2077 -0.1576
S-129 <2en> Līvõ lōlõd (Lībiešu dziesma) ir pirmā Latvijā tapusī dokumentālā filma par lībiešiem.
W-129 0.044 seconds
H-129 -0.7347081303596497 Livonian songs (Livonian Song) are the first Latvian tapusi documentary about Livonian.
D-129 -0.7347081303596497 Livonian songs (Livonian Song) are the first Latvian tapusi documentary about Livonian.
P-129 -4.5225 -0.0502 -0.4505 -0.1146 -1.2224 -0.5899 -0.9880 -0.7713 -0.0391 -0.0097 -0.0398 -1.0066 -0.2491 -0.4462 -0.2237 -0.0903 -1.8994 -1.8705 -0.0792 -1.9524 -0.0488 -0.0363 -1.4717 -0.7595 -0.0463 -0.1715 -0.6212 -1.3685 -0.1676
S-130 <2en> Filma ir tās autora, režisora un operatora Andra Slapiņa diplomdarbs Vissavienības Valsts kinematogrāfijas institūtā.
W-130 0.052 seconds
H-130 -0.6165825128555298 The film is a diploma work by its author, director and operator Andra Slapiņa at the All-Union National Institute of Kinematography.
D-130 -0.6165825128555298 The film is a diploma work by its author, director and operator Andra Slapiņa at the All-Union National Institute of Kinematography.
P-130 -2.9508 -0.9116 -0.3126 -0.8498 -0.2030 -1.0394 -0.8781 -0.7670 -0.0458 -0.1812 -0.0668 -0.4354 -0.3959 -0.7508 -0.9495 -0.0678 -0.4925 -0.0302 -0.9282 -0.4068 -1.0798 -1.3526 -0.2091 -0.1946 -0.9775 -0.5152 -0.4212 -1.8963 -0.0818 -0.1753 -0.4699 -0.1506 -0.1602
S-131 <2en> Igaunijas Televīzijas filma Liivi rannal, 1966. ļauj ieskatīties Kurzemes lībiešu dzīvē 1960. gados.
W-131 0.044 seconds
H-131 -0.938599169254303 In 1966, the Estonian Television film on the Liv Coast allows you to view the life of Kurzeme Livonians in the 1960s.
D-131 -0.938599169254303 In 1966, the Estonian Television film on the Liv Coast allows you to view the life of Kurzeme Livonians in the 1960s.
P-131 -4.9446 -2.1415 -0.1576 -1.4816 -1.6455 -0.2963 -1.2623 -0.2111 -0.7561 -2.2849 -0.3908 -2.9050 -0.0678 -1.6522 -1.8855 -1.2836 -0.1628 -1.9726 -0.6031 -0.4616 -0.1364 -0.4604 -0.0711 -0.7117 -0.6887 -0.0512 -0.6619 -1.4705 -0.2189 -0.1655 -0.2000 -0.1704 -0.1770 -0.1621
S-132 <2en> Filmā redzami daudzi pazīstami lībieši (Hilda Grīva, Katrīna Krāsona u.c.).
W-132 0.044 seconds
H-132 -1.2867521047592163 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-132 -1.2867521047592163 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-132 -4.8777 -3.4210 -0.1757 -4.2942 -0.6052 -3.0080 -0.5145 -2.0981 -2.7715 -3.1813 -0.6002 -0.3449 -3.6359 -2.5641 -1.7940 -2.3739 -1.6371 -1.8549 -0.9410 -1.2736 -1.2534 -1.3330 -0.6167 -0.6097 -0.9671 -1.1224 -0.5653 -0.4736 -0.9020 -1.0170 -0.5447 -0.3901 -0.7958 -0.9459 -0.5369 -0.3759 -0.7845 -0.9103 -0.5452 -0.3604 -0.7747 -0.8565 -0.5276 -0.3490 -0.6755 -0.8316 -0.5172 -0.3308 -0.6710 -0.8136 -0.5190 -0.3541 -0.5662 -5.7664 -1.3087 -0.1798
S-133 <2en> Filma pamatā ir lībiski un igauniski, tajā dzirdamas lībiešu tautasdziesmas un mūsdienu lībiešu kompozīcijas.
W-133 0.044 seconds
H-133 -0.5384413003921509 The film is based on Livonian and Estonian, it hears Livonian folk songs and contemporary Liv compositions.
D-133 -0.5384413003921509 The film is based on Livonian and Estonian, it hears Livonian folk songs and contemporary Liv compositions.
P-133 -2.9985 -1.1537 -0.3269 -0.0608 -0.5263 -1.1452 -0.1330 -0.0330 -0.0920 -0.2704 -0.0210 -1.1526 -2.8546 -0.1199 -0.1885 -1.1646 -0.0427 -0.4011 -0.0439 -1.3842 -0.0705 -0.1789 -0.1707 -0.3162 -0.1771 -0.0523 -0.5344 -0.1973 -0.1810 -0.1621
S-134 <2en> Filmas režisors ir Endels Nembergs (Endel Nõmberg), scenārija autori – Eduards Vēri (Eduard Vääri) un Antss Vists (Ants Vist).
W-134 0.063 seconds
H-134 -0.5231168270111084 The film director is Endel Nõmberg, the authors of the film – Edgars Vēri (Eduard Vääri) and Ansis Vists (Ants Vist).
D-134 -0.5231168270111084 The film director is Endel Nõmberg, the authors of the film – Edgars Vēri (Eduard Vääri) and Ansis Vists (Ants Vist).
P-134 -2.5066 -0.9776 -2.2155 -0.3029 -0.0235 -0.1218 -0.1955 -0.1037 -0.0285 -0.8074 -1.2042 -0.4545 -0.2373 -0.2709 -0.2313 -1.9232 -1.8124 -1.0147 -0.2011 -0.0222 -0.1927 -0.7001 -0.1391 -0.0437 -0.0102 -0.2116 -0.3204 -0.4213 -0.3277 -1.5903 -0.0364 -0.0871 -0.7306 -0.6382 -0.2860 -0.1108 -0.0418 -0.1004 -0.1227 -0.1590
S-135 <2en> Viktoram Bertholdam – lībietim, zvejniekam un dziedniekam – 100
W-135 0.042 seconds
H-135 -0.7709259986877441 Viktoram Bertholdam – 100 for the Livonian, fisherman and healer
D-135 -0.7709259986877441 Viktoram Bertholdam – 100 for the Livonian, fisherman and healer
P-135 -4.4582 -0.7894 -0.0564 -0.3465 -0.4402 -0.7347 -1.7523 -1.1232 -1.9160 -0.0914 -0.5165 -0.0504 -0.2898 -0.1005 -0.5559 -0.3173 -0.1495 -0.0844 -0.8750
S-136 <2en> Viktors daudzējādā ziņā bija pēdējais. Pēdējais no tiem, kura ģimenē, kamēr vēl bija dzīva viņa sieva Marta (dz. Liedāne, 1925–1994), ikdienas saziņa notika lībiski, viens no lībiešu valodas zinātājiem, pie kura brauca igauņu un somu zinātnieki, un pēdējais, ar kuru tepat piekrastē varēja brīvi patērzēt dzimtajā lībiešu valodā.
W-136 0.163 seconds
H-136 -0.725216269493103 Viktors was in many ways the last. The last one in the family, while his wife Martha was still alive (born in Liedane 1925–1994), daily communication took place in Livonian, one of the Liv language researchers driving to Estonian and Finnish scientists, and the last one with whom on the same coast was freely consumed in the native Liv language.
D-136 -0.725216269493103 Viktors was in many ways the last. The last one in the family, while his wife Martha was still alive (born in Liedane 1925–1994), daily communication took place in Livonian, one of the Liv language researchers driving to Estonian and Finnish scientists, and the last one with whom on the same coast was freely consumed in the native Liv language.
P-136 -0.1140 -0.2160 -0.5588 -1.1572 -0.1582 -0.6553 -0.2304 -0.2770 -1.3877 -0.8138 -0.1413 -0.9334 -0.7871 -1.3666 -0.0659 -1.7826 -0.3908 -0.3354 -0.0223 -1.5524 -0.2872 -0.9892 -0.4028 -0.0790 -0.9844 -1.3940 -1.5447 -0.3742 -1.3734 -0.1389 -1.0207 -0.0258 -0.6419 -0.0090 -0.2468 -2.5075 -1.3867 -1.0096 -0.0201 -0.8859 -0.5818 -0.0848 -0.2111 -0.4411 -0.4597 -0.1885 -0.1308 -0.2405 -0.9467 -0.0365 -0.5213 -2.1281 -2.4506 -1.6097 -0.7191 -0.2568 -0.0770 -1.5634 -0.9188 -0.1831 -0.3720 -0.2978 -0.0851 -1.6086 -0.5204 -3.0771 -0.4426 -1.7817 -0.5950 -1.8724 -1.0755 -1.3670 -2.0160 -0.1243 -0.2058 -0.8047 -0.2162 -0.3679 -0.0210 -0.2732 -0.1637 -0.1620
S-137 <2en> 2021. gada 16. janvārī pieminam Viktoru Bertholdu 100 gadu jubilejā.
W-137 0.042 seconds
H-137 -1.188938856124878 It is also 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 the right to receive the right to receive the right to receive it.
D-137 -1.188938856124878 It is also 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 the right to receive the right to receive the right to receive it.
P-137 -4.9183 -1.7398 -3.6293 -3.1359 -0.5457 -2.9962 -0.4461 -2.7854 -2.5097 -2.6266 -0.4207 -0.2283 -3.4314 -2.5725 -1.9087 -1.6386 -1.7326 -1.9272 -1.2358 -1.1035 -1.4090 -1.3602 -0.8428 -0.6195 -1.1152 -1.1304 -0.7209 -0.4986 -1.0247 -1.0273 -0.6501 -0.4276 -0.9018 -0.9618 -0.6177 -0.4098 -0.8916 -0.9350 -0.6135 -0.3769 -0.8600 -0.8967 -0.5716 -0.3706 -0.7381 -0.8691 -0.5399 -0.3557 -0.7165 -0.8457 -0.5409 -0.3908 -0.6129 -0.8065 -0.5459 -0.4127 -0.6516 -0.7857 -0.5440 -0.4522 -0.6057 -0.7643 -0.5446 -0.4889 -0.5951 -5.7922 -1.3163 -0.1669
S-138 <2en> Viktors Bertholds lielu dzīves daļu nodzīvoja Kolkā.
W-138 0.018 seconds
H-138 -0.577265202999115 Viktors Bertholds lived a large part of life in Kolka.
D-138 -0.577265202999115 Viktors Bertholds lived a large part of life in Kolka.
P-138 -2.4232 -0.3357 -0.0600 -0.1161 -0.2827 -0.8522 -1.2159 -0.1091 -0.1682 -1.3190 -0.1406 -0.3674 -0.5344 -0.5750 -0.1595
S-139 <2en> Lībiešu lietai tā īsti viņš pieslējās jaunākajos laikos, kad lībiešu valodas pratēju bija palicis maz, kad katrs valodas runātājs bija kļuvis par īpašu vērtību.
W-139 0.063 seconds
H-139 -1.130553126335144 In the case of the Lithuanian, he really agreed in the latest times, when the Liv language speakers had remained little when each speaker had become a special value.
D-139 -1.130553126335144 In the case of the Lithuanian, he really agreed in the latest times, when the Liv language speakers had remained little when each speaker had become a special value.
P-139 -5.0507 -2.7784 -2.0283 -0.1697 -0.8951 -1.1840 -0.0888 -1.9798 -0.8426 -2.1267 -1.3537 -1.0760 -0.3651 -1.5269 -0.6341 -1.7814 -0.1857 -2.0159 -0.8451 -0.0699 -0.2818 -2.6383 -0.9150 -1.0918 -1.1756 -1.0958 -0.7775 -0.9534 -1.0447 -0.3446 -0.2056 -0.6217 -1.5568 -0.6465 -0.1904 -0.1624
S-140 <2en> 90. gadu sākumā Viktors kopā ar Martu mācīja lībiešu valodu kolceniekiem.
W-140 0.042 seconds
H-140 -0.8640661835670471 In the early 90s Viktors taught Liv language to collectors along with Mart.
D-140 -0.8640661835670471 In the early 90s Viktors taught Liv language to collectors along with Mart.
P-140 -3.8594 -0.3559 -0.1704 -0.3965 -0.1736 -0.9304 -0.3472 -1.1169 -1.2003 -0.0551 -2.2550 -0.8043 -0.7037 -0.1145 -1.9556 -0.4935 -0.0916 -1.2286 -0.1648
S-141 <2en> Kamēr vien Viktors spēja, augusta pirmajā sestdienā viņš vienmēr bija sastopams Lībiešu svētkos Mazirbē.
W-141 0.044 seconds
H-141 -2.2380471229553223 Is it a good idea to get rid of it all the time?
D-141 -2.2380471229553223 Is it a good idea to get rid of it all the time?
P-141 -4.3301 -3.3009 -1.9016 -3.2305 -3.4295 -1.0551 -0.8048 -3.7159 -2.8235 -0.1335 -2.4987 -3.6226 -4.0405 -0.3864 -0.3554 -0.1798
S-142 <2en> Viktors Bertholds piedzima 1921. gada 16. janvārī lībiešu Kārļa un Marijas Bertholdu ģimenē Vaides Žonakos.
W-142 0.052 seconds
H-142 -0.7146638631820679 Viktors Bertholds was born on 16 January 1921 in the family of Livonian Carl and Mary Bertholds in Vaide Jeancos.
D-142 -0.7146638631820679 Viktors Bertholds was born on 16 January 1921 in the family of Livonian Carl and Mary Bertholds in Vaide Jeancos.
P-142 -4.7685 -0.1792 -0.0594 -0.1431 -0.5442 -0.0486 -1.0369 -1.0735 -0.0423 -0.7909 -0.0609 -0.2371 -0.5963 -0.4552 -0.1330 -0.3506 -0.0423 -0.3216 -0.0736 -0.6663 -1.8496 -0.2795 -0.8055 -0.2115 -2.1273 -0.3393 -0.1992 -0.9871 -3.3671 -0.3438 -1.0812 -0.2116 -0.1576
S-143 <2en> Žonaki vismaz sešās paaudzēs bija mājvieta plašajai un lībiski stiprajai Bertholdu dzimtai, kurā izauga vairākas lībiešu kultūrvēsturē nozīmīgas personības.
W-143 0.063 seconds
H-143 -0.9811530113220215 The jungles for at least six generations were home to the vast and Livonianly strong birth of Bertholdu, in which several important personalities in the Liv cultural history grew.
D-143 -0.9811530113220215 The jungles for at least six generations were home to the vast and Livonianly strong birth of Bertholdu, in which several important personalities in the Liv cultural history grew.
P-143 -2.8338 -2.6827 -1.1344 -0.1564 -0.3523 -2.9431 -0.1033 -0.0686 -0.0445 -0.0426 -0.1485 -0.5586 -0.9076 -0.1469 -0.6588 -1.2329 -0.2292 -3.7625 -0.3735 -0.6231 -0.0632 -2.4676 -0.4185 -3.8840 -0.5828 -0.1039 -1.1921 -0.3680 -1.6322 -0.0757 -0.8585 -2.5036 -1.8614 -0.0516 -2.1461 -0.6832 -0.9841 -0.0219 -1.1245 -0.6493 -0.9622 -0.3907 -0.1612
S-144 <2en> Abi ar brāli Alfonu Bertholdu (lībiešu dzejnieks, folkloras teicējs), uzaugdami strikti lībiskā ģimenē, viņi saglabāja lībiešu valodu dzīvu visu mūžu.
W-144 0.063 seconds
H-144 -0.6125912666320801 Both with brother Alfon Berthold (Livonian poet, folklorist) growing firmly in the Livonian family, they kept the Liv language alive all their life.
D-144 -0.6125912666320801 Both with brother Alfon Berthold (Livonian poet, folklorist) growing firmly in the Livonian family, they kept the Liv language alive all their life.
P-144 -5.0503 -0.8754 -0.4213 -0.0527 -0.3138 -0.1493 -0.5269 -0.8423 -0.1793 -0.0766 -0.0221 -0.0594 -0.0925 -0.2950 -0.9859 -1.5742 -1.0404 -0.7674 -1.0326 -0.2457 -0.5520 -0.6553 -0.2554 -0.0301 -1.2452 -0.0268 -0.1233 -0.9409 -0.2249 -1.1267 -0.8348 -0.1008 -0.0367 -0.1259 -0.1277 -1.9305 -0.3062 -0.6453 -0.4474 -0.1646
S-145 <2en> Tieši Bertholdu dzimtas pēcnācēji bija labākie dzimtās lībiešu valodas runātāji mūsdienās.
W-145 0.042 seconds
H-145 -1.230849027633667 It was the best speakers of the native Liv language nowadays.
D-145 -1.230849027633667 It was the best speakers of the native Liv language nowadays.
P-145 -4.1944 -2.3285 -1.9967 -2.1683 -3.2593 -0.6225 -0.5436 -1.0531 -0.5484 -0.6881 -0.0406 -0.0969 -3.3843 -0.1894 -0.0110 -0.1409 -0.7179 -0.1716
S-146 <2en> Kārlis un Marija Bertholdi ar vecāko dēlu Alfonu Vaides Žonakos ap 1920. gadu.
W-146 0.044 seconds
H-146 -1.2121073007583618 It is 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 the right to receive the right to receive it.
D-146 -1.2121073007583618 It is 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 the right to receive the right to receive it.
P-146 -4.7298 -1.7748 -3.9805 -0.6143 -3.2531 -0.4662 -2.6043 -2.5288 -2.8863 -0.4743 -0.2644 -3.3002 -2.5824 -1.9211 -1.8049 -1.6785 -1.9439 -1.2048 -1.1524 -1.3691 -1.4230 -0.8646 -0.6110 -1.0662 -1.1600 -0.7617 -0.4850 -1.0016 -1.0518 -0.7176 -0.4141 -0.8930 -0.9851 -0.6800 -0.3745 -0.8187 -0.9551 -0.6739 -0.3615 -0.8267 -0.9102 -0.5973 -0.3513 -0.7717 -0.8843 -0.5774 -0.3425 -0.7486 -0.8622 -0.5668 -0.3711 -0.5825 -0.8235 -0.5791 -0.3950 -0.5957 -0.7992 -0.5752 -0.4327 -0.5990 -5.7502 -1.4180 -0.1698
S-147 <2en> Kaut Viktora un Martas Bertholdu ģimene faktiski bija pēdējā šai piekrastē, kura savā starpā ikdienā sarunājās lībiski, abu bērni lībiešu valodu tomēr neiemācījās.
W-147 0.052 seconds
H-147 -0.8640579581260681 It is 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 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 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 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.
D-147 -0.8640579581260681 It is 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 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 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 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.
P-147 -4.9718 -1.8123 -4.0156 -0.6063 -3.1356 -0.4494 -2.7348 -2.5128 -2.9897 -0.4897 -0.2705 -3.2410 -2.5805 -2.0456 -2.0133 -1.5850 -1.9180 -1.3664 -1.2507 -1.3013 -1.4192 -0.9923 -0.6324 -0.9580 -1.1488 -0.8499 -0.4759 -0.9458 -1.0256 -0.8039 -0.4082 -0.8211 -0.9449 -0.7497 -0.3596 -0.7346 -0.9025 -0.7639 -0.3433 -0.7332 -0.8577 -0.6966 -0.3310 -0.6940 -0.8315 -0.6750 -0.3286 -0.6712 -0.8095 -0.6710 -0.3614 -0.5117 -0.7761 -0.6734 -0.3780 -0.5207 -0.7511 -0.6690 -0.3990 -0.5360 -0.7325 -0.6372 -0.4202 -0.5270 -0.7230 -0.6534 -0.4311 -0.5213 -0.7137 -0.6330 -0.4041 -0.5036 -0.7020 -0.5930 -0.4080 -0.4820 -0.6679 -0.6295 -0.4247 -0.4813 -0.6598 -0.6187 -0.4322 -0.4702 -0.6364 -0.6278 -0.4825 -0.5027 -0.6137 -0.6576 -0.5087 -0.4678 -0.6040 -0.6617 -0.5298 -0.4573 -0.6133 -0.6596 -0.5843 -0.4618 -0.6159 -0.6351 -0.5951 -0.4472 -0.5961 -0.6712 -0.6149 -0.4351 -0.6035 -0.6806 -0.6272 -0.4443 -0.6105 -0.6711 -0.6424 -0.4305 -0.6036 -0.6462 -0.6611 -0.4182 -0.6112 -0.6580 -0.6779 -0.4240 -0.6158 -0.6855 -0.7148 -0.4371 -0.6068 -0.6761 -0.7541 -0.4348 -0.5953 -0.7149 -0.8086 -0.4307 -0.5983 -0.7542 -0.9103 -0.4666 -0.6090 -0.7714 -0.9516 -0.4724 -0.6139 -0.7875 -1.1614 -0.4919 -0.6110 -0.8276 -1.2899 -0.5239 -0.6190 -0.8800 -1.5681 -0.5506 -0.6201 -0.9346 -1.5787 -0.5743 -0.6234 -0.9705 -1.7421 -0.5699 -0.6179 -1.0604 -1.8475 -0.6051 -0.6231 -1.1335 -1.9496 -0.6714 -0.6286 -1.2120 -2.0768 -0.7128 -0.6249 -1.2667 -3.7868 -0.1618
S-148 <2en> Meita Ārija Bertholde, kura kopš 1995. gada ar meitu Baibu ir pārcēlusies uz dzīvi ASV, atcerējās:
W-148 0.044 seconds
H-148 -0.6347882151603699 Daughter Ārija Bertholde, who has moved to life with daughter Baibu since 1995, remembered:
D-148 -0.6347882151603699 Daughter Ārija Bertholde, who has moved to life with daughter Baibu since 1995, remembered:
P-148 -4.1571 -0.0620 -0.1343 -0.8147 -0.0767 -0.1005 -0.7304 -0.2101 -0.1870 -0.3545 -2.0635 -0.9208 -0.6851 -0.6720 -0.5677 -0.0110 -1.0865 -0.3188 -0.0939 -0.7988 -0.5028 -0.1613 -0.3559 -0.1697
S-149 <2en> Mūsu mājās ikdienā vienmēr runāja lībiski.
W-149 0.014 seconds
H-149 -1.4417669773101807 We always talked in our home everyday.
D-149 -1.4417669773101807 We always talked in our home everyday.
P-149 -4.1922 -1.5209 -0.9151 -0.3299 -3.7170 -0.6054 -1.4553 -1.2894 -0.2311 -0.1614
S-150 <2en> Arī tad, kad vecāki negribēja, lai bērni saprot, ko viņi runā.
W-150 0.042 seconds
H-150 -0.6363320350646973 Also when parents did not want children to understand what they were talking about.
D-150 -0.6363320350646973 Also when parents did not want children to understand what they were talking about.
P-150 -2.4836 -0.9637 -0.3347 -1.8942 -0.1449 -0.1077 -1.3768 -0.1315 -0.1336 -0.1288 -0.1761 -1.2232 -0.6410 -0.1125 -0.1691 -0.1601
S-151 <2en> Es gribēju valodu iemācīties.
W-151 0.013 seconds
H-151 -0.4655124545097351 I wanted to learn the language.
D-151 -0.4655124545097351 I wanted to learn the language.
P-151 -0.7340 -0.5377 -0.1888 -0.1588 -1.5321 -0.2317 -0.1796 -0.1613
S-152 <2en> Tagad zinu tikai nedaudz vārdu, un atmiņā palikušas dažas dziesmas.
W-152 0.018 seconds
H-152 -0.9623413681983948 I know only a few words now, and some songs remain in memory.
D-152 -0.9623413681983948 I know only a few words now, and some songs remain in memory.
P-152 -2.4279 -1.0764 -1.5820 -0.1180 -1.2561 -0.3932 -1.2646 -1.6306 -0.2390 -1.7632 -0.1118 -0.1255 -2.2481 -0.7105 -1.0758 -0.1764 -0.1607
S-153 <2en> Domāju, lasīt es varētu, jo atceros, ka mamma mācīja, kā jālasa umlauti.
W-153 0.044 seconds
H-153 -0.9031575918197632 I think I could read because I remember that my mother taught me how to read it.
D-153 -0.9031575918197632 I think I could read because I remember that my mother taught me how to read it.
P-153 -2.4587 -2.3293 -0.8217 -1.3598 -0.1879 -0.4182 -0.4178 -0.1072 -1.5349 -0.2485 -0.8742 -0.2603 -0.8019 -0.3736 -0.2155 -0.0634 -4.2060 -0.3202 -0.1609
S-154 <2en> Kad viņai prasīju, kāpēc man nemācīja valodu, viņa atbildēja, ka tā bija neatzīta un neatļauta valoda.
W-154 0.044 seconds
H-154 -0.562933623790741 When I asked her why I didn’t learn the language, she replied that it was an unidentified and unauthorized language.
D-154 -0.562933623790741 When I asked her why I didn’t learn the language, she replied that it was an unidentified and unauthorized language.
P-154 -2.9985 -0.1658 -0.1878 -0.3293 -0.3682 -0.9245 -1.1859 -1.0313 -0.1435 -0.6547 -2.2912 -0.1283 -0.3868 -0.0684 -0.9200 -0.7272 -0.4049 -0.3221 -0.5327 -0.1604 -1.9869 -0.0632 -0.0487 -0.2610 -0.2486 -0.0081 -0.0045 -0.5139 -0.0540 -0.1694 -0.1611
S-155 <2en> Viktors un Marta Bertholdi lībiešu valodas stundā Kolkas pamatskolā 1990. gadu sākumā
W-155 0.042 seconds
H-155 -1.0831882953643799 It is 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 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-155 -1.0831882953643799 It is 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 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-155 -4.6098 -1.7705 -3.9001 -0.6345 -3.2714 -0.4550 -2.6057 -2.5528 -2.9959 -0.4811 -0.2852 -3.3981 -2.6069 -1.8480 -1.9093 -1.7352 -1.9699 -1.0921 -1.2757 -1.3821 -1.3870 -0.8028 -0.6768 -1.0685 -1.1504 -0.7062 -0.5385 -1.0304 -1.0503 -0.6671 -0.4598 -0.9225 -0.9922 -0.6263 -0.4119 -0.8373 -0.9651 -0.6143 -0.3996 -0.8302 -0.9343 -0.5412 -0.3770 -0.7625 -0.9092 -0.5111 -0.3683 -0.7226 -0.8848 -0.5061 -0.4030 -0.5614 -0.8434 -0.5126 -0.4296 -0.5776 -0.8138 -0.5038 -0.4580 -0.5806 -0.7948 -0.4832 -0.4843 -0.5658 -0.7790 -0.5036 -0.4901 -0.5657 -0.7708 -0.4903 -0.4615 -0.5267 -0.7644 -0.4637 -0.4654 -0.4938 -5.7900 -1.3959 -0.1652
S-156 <2en> 2008. gada vasara bija pirmā, kad Viktora vieta uz soliņa Lībiešu svētkos palika tukša.
W-156 0.044 seconds
H-156 -2.1982483863830566 This is the first time you have to go to bench the Livonian holiday.
D-156 -2.1982483863830566 This is the first time you have to go to bench the Livonian holiday.
P-156 -5.2811 -1.8050 -3.2254 -2.4324 -1.1064 -3.3109 -3.3075 -2.2181 -4.1881 -2.3333 -3.6426 -1.5539 -3.0056 -2.8715 -0.2390 -0.1517 -0.0490 -2.0495 -1.0278 -0.1663
S-157 <2en> Viktors Bertholds mūžībā devās astoņdesmit astoņu gadu vecumā 2009. gada 23. februārī.
W-157 0.042 seconds
H-157 -0.870464563369751 Viktors Bertholds went forever eighty-eight years old on 23 February 2009.
D-157 -0.870464563369751 Viktors Bertholds went forever eighty-eight years old on 23 February 2009.
P-157 -4.2565 -0.2619 -0.0649 -0.1479 -3.0596 -2.0986 -1.9496 -1.0392 -0.5941 -0.2262 -0.0130 -0.4819 -0.4228 -0.2132 -0.3567 -0.0446 -0.2721 -0.1656
S-158 <2en> Atdusas Kolkas kapos.
W-158 0.014 seconds
H-158 -1.3704291582107544 Refrigeration in Kolkas grave.
D-158 -1.3704291582107544 Refrigeration in Kolkas grave.
P-158 -3.3403 -3.3676 -0.5864 -1.2773 -0.5876 -1.3226 -0.6731 -3.0207 -0.5158 -0.2222 -0.1612
S-159 <2en> Seno Žonaku bijušie iemītnieki Viktors Bertholds un Paulīne Kļaviņa Lībiešu tautas nama 50 gadu jubilejas svētkos Mazirbē 1989. gada 5. augustā.
W-159 0.063 seconds
H-159 -1.2474056482315063 It is also 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 the right to receive the right to receive it.
D-159 -1.2474056482315063 It is also 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 the right to receive the right to receive it.
P-159 -5.0995 -1.7917 -3.4531 -3.3714 -0.5820 -3.1616 -0.4493 -2.6483 -2.5203 -2.6717 -0.4946 -0.2458 -3.3324 -2.5674 -1.9987 -1.7394 -1.7694 -1.9553 -1.2830 -1.1306 -1.4828 -1.4108 -0.8526 -0.6233 -1.1840 -1.1503 -0.7348 -0.5064 -1.1152 -1.0453 -0.6690 -0.4121 -0.9644 -0.9782 -0.6304 -0.3930 -0.9258 -0.9524 -0.6411 -0.3612 -0.8848 -0.9089 -0.5916 -0.3546 -0.7732 -0.8874 -0.5428 -0.3473 -0.7498 -0.8669 -0.5301 -0.3716 -0.6276 -0.8265 -0.5280 -0.3795 -0.6515 -0.7996 -0.5121 -0.4078 -0.6025 -5.8125 -1.4099 -0.1687
S-160 <2en> Izmantotie materiāli:
W-160 0.004 seconds
H-160 -0.42948535084724426 Materials used:
D-160 -0.42948535084724426 Materials used:
P-160 -0.8921 -0.4227 -0.3231 -0.3395 -0.1700
S-161 <2en> Šuvcāne B. „Sauc par Vaidi manu ciemu.” R., Latvijas avīze, 2015. 306.–311.lpp.
W-161 0.052 seconds
H-161 -1.0079011917114258 “Success for Vaidi my village.” R., Latvian newspaper, 2015. 306.–311.lpp.
D-161 -1.0079011917114258 “Success for Vaidi my village.” R., Latvian newspaper, 2015. 306.–311.lpp.
P-161 -5.0226 -3.9537 -1.0011 -2.0797 -0.1481 -4.2109 -0.3330 -0.0959 -1.8431 -0.0996 -1.1092 -0.5692 -0.1460 -0.2067 -0.3504 -0.1249 -0.3173 -2.3741 -0.6731 -0.2612 -0.9032 -0.0426 -0.1796 -0.7665 -0.0306 -0.1868 -0.1842
S-162 <2en> Saruna ar Viktoru Bertholdu Kolkā 2003. gada augustā.
W-162 0.018 seconds
H-162 -1.0990511178970337 In August 2003, the conversation with Viktors Bertholds in Kolka.
D-162 -1.0990511178970337 In August 2003, the conversation with Viktors Bertholds in Kolka.
P-162 -4.7973 -0.4420 -0.1257 -1.2302 -2.4651 -2.0241 -0.7695 -0.0684 -1.1575 -0.0664 -1.2669 -1.5721 -0.1757 -1.0223 -0.2372 -0.1645
S-163 <2en> Videoieraksts.
W-163 0.004 seconds
H-163 -1.3433645963668823 Video recording.
D-163 -1.3433645963668823 Video recording.
P-163 -3.6913 -1.2312 -0.2882 -0.1628
S-164 <2en> Ierakstījis LFK asistents Aldis Pūtelis.
W-164 0.018 seconds
H-164 -1.939540982246399 It’s important to note that you have the right to receive the right to receive the right to receive the right to receive information.
D-164 -1.939540982246399 It’s important to note that you have the right to receive the right to receive the right to receive the right to receive information.
P-164 -4.7379 -3.4477 -0.1729 -4.3450 -0.6304 -3.0230 -0.5253 -1.9924 -2.8374 -3.1538 -0.6120 -0.3858 -3.6463 -2.5696 -1.6587 -2.5859 -1.6400 -1.8579 -0.8135 -1.5382 -1.2207 -1.3502 -0.5256 -0.7127 -0.9209 -4.0818 -3.1581 -0.1638
S-165 <2en> Ārijas Bertholdes vēstules Baibai Šuvcānei 2014. gadā.
W-165 0.042 seconds
H-165 -2.409241199493408 Is it possible to get rid of it in your life?
D-165 -2.409241199493408 Is it possible to get rid of it in your life?
P-165 -4.2339 -3.4246 -1.9150 -2.1721 -0.4446 -4.6572 -2.8302 -0.1294 -3.5211 -3.0614 -3.1585 -3.1742 -0.8296 -0.1777
S-166 <2en> TREŠDIENU VAKAROS ČATOSIM LĪBISKI
W-166 0.042 seconds
H-166 -1.4778332710266113 THREE VOCARS CATOSIM RIGHTS
D-166 -1.4778332710266113 THREE VOCARS CATOSIM RIGHTS
P-166 -1.1695 -3.4826 -0.0850 -2.3108 -1.8625 -3.3439 -0.6765 -1.1214 -2.8116 -0.2472 -0.0318 -0.0374 -3.0990 -1.9926 -1.4460 -1.1011 -0.3042
S-167 <2en> 5. novembrī notika Līvu fonda un Līvõ kultūr sidām valžu kopēja sēde, kurā apsprieda arī portāla livones.lv iespējas lībiešu valodas popularizēšanā un labākā apgūšanā.
W-167 0.063 seconds
H-167 -2.0637333393096924 It’s also important to note that you have the right to receive information about your personal data.
D-167 -2.0637333393096924 It’s also important to note that you have the right to receive information about your personal data.
P-167 -4.8789 -3.6146 -0.1696 -4.3177 -2.7322 -0.5195 -2.7342 -0.4747 -2.4013 -2.7252 -3.0737 -0.6452 -0.3181 -3.8067 -2.9001 -1.3786 -1.4848 -2.3159 -0.6936 -1.9908 -0.1631
S-168 <2en> Abas organizācijas atzina, ka portāla pārbūve un paplašināšana tagad ļauj lībiešu valodā ne tikai apmainīties ar viedokļiem, uzzināt jaunumus ‘vai ievietot apsveikumus un sludinājumus, bet arī sarunāties tiešsaistē.
W-168 0.063 seconds
H-168 -0.6803568005561829 Both organizations acknowledged that the reconstruction and expansion of the portal now allows not only to exchange views in the Liv language, to learn about the news ‘or to post congratulations and ads, but also to talk online.
D-168 -0.6803568005561829 Both organizations acknowledged that the reconstruction and expansion of the portal now allows not only to exchange views in the Liv language, to learn about the news ‘or to post congratulations and ads, but also to talk online.
P-168 -3.8363 -1.1380 -1.8396 -0.1444 -0.1466 -0.7874 -1.0752 -0.5838 -0.2239 -0.1481 -0.3168 -0.1332 -0.2008 -0.3423 -1.2133 -0.8457 -0.7302 -0.1160 -0.9842 -0.0966 -0.3490 -0.8742 -1.9842 -0.5605 -0.0690 -0.0721 -0.2059 -1.5043 -0.3814 -1.2024 -1.0623 -0.0547 -0.9960 -0.1575 -0.5722 -1.6607 -1.1168 -0.1696 -0.0162 -0.0277 -0.1560 -1.5003 -1.0215 -0.1543 -0.4154 -0.3655 -1.9952 -0.0862 -0.2184 -0.1660
S-169 <2en> Tāpēc pēc LKS ierosinājuma tika nolemts, ka turpmāk (no 25. novembra) katru trešdienas vakaru no 20.30 veselu stundu varēs čatot lībiski.
W-169 0.052 seconds
H-169 -1.1805108785629272 It is also 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 the right to receive the right to receive the right to receive it.
D-169 -1.1805108785629272 It is also 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 the right to receive the right to receive the right to receive it.
P-169 -4.8426 -1.6174 -3.6527 -3.2753 -0.5966 -2.9197 -0.4221 -3.0236 -2.4640 -2.7152 -0.4768 -0.1997 -3.4698 -2.6369 -2.0544 -1.4240 -1.7405 -1.9331 -1.2616 -0.9189 -1.4083 -1.3603 -0.8359 -0.5401 -1.1052 -1.1450 -0.7169 -0.4434 -0.9990 -1.0335 -0.6705 -0.3779 -0.8604 -0.9519 -0.6366 -0.3698 -0.8260 -0.9092 -0.6367 -0.3576 -0.7882 -0.8587 -0.6250 -0.3611 -0.6772 -0.8377 -0.6144 -0.3521 -0.6664 -0.8128 -0.6055 -0.3738 -0.5516 -0.7760 -0.6014 -0.3818 -0.5845 -0.7538 -0.6014 -0.4157 -0.5439 -0.7328 -0.6178 -0.4626 -0.5299 -5.8082 -1.3464 -0.1656
S-170 <2en> Moderatora lomu uzņēmās Valts Ernštreits.
W-170 0.042 seconds
H-170 -1.2872282266616821 It is 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-170 -1.2872282266616821 It is 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-170 -4.7864 -1.8021 -3.9552 -0.6349 -3.2641 -0.4694 -2.7045 -2.5175 -2.9017 -0.4814 -0.2661 -3.2701 -2.5140 -2.0407 -1.9301 -1.7317 -1.8231 -1.1644 -1.1588 -1.3446 -1.3337 -0.7812 -0.6419 -1.0417 -1.1352 -0.6575 -0.5344 -0.9921 -1.0356 -0.6117 -0.4457 -0.8753 -0.9667 -0.5743 -0.4065 -0.8103 -0.9342 -0.5715 -0.3964 -0.8246 -0.8921 -0.5171 -0.3701 -0.7678 -0.8589 -0.5000 -0.3456 -0.7362 -0.8348 -0.5162 -0.3806 -0.5711 -5.6363 -1.3637 -0.1756
S-171 <2en> Portāla Livones.lv kopienas sadaļa.
W-171 0.014 seconds
H-171 -2.428948163986206 Is it possible to get rid of it in your life?
D-171 -2.428948163986206 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> Čats atrodams portāla Kopienas sadaļā šeit. Kopienas sadaļas izveidi atbalstījusi Nordplus programma.
W-172 0.044 seconds
H-172 -0.5553600192070007 The chat can be found in the Community section of the portal here. The Nordplus Programme supported the creation of the Community section.
D-172 -0.5553600192070007 The chat can be found in the Community section of the portal here. The Nordplus Programme supported the creation of the Community section.
P-172 -1.2182 -1.2163 -0.7256 -0.1703 -0.1344 -0.5655 -0.1710 -0.0665 -0.0426 -0.3022 -0.1752 -1.3118 -1.1459 -1.7116 -0.7484 -0.2309 -0.0882 -0.0104 -1.3316 -1.5738 -0.2107 -1.1804 -0.1146 -0.5776 -0.0268 -0.1323 -0.1956 -0.1716
S-173 <2en> 2011. - LĪBIEŠU VALODAS UN KULTŪRAS GADS
W-173 0.042 seconds
H-173 -0.8588584661483765 2011 - YEAR OF THE COUNCIL AND CULTURE
D-173 -0.8588584661483765 2011 - YEAR OF THE COUNCIL AND CULTURE
P-173 -0.2496 -0.3488 -2.8566 -0.0260 -0.4043 -1.5682 -3.7408 -0.1642 -0.5475 -0.0342 -0.3842 -0.7163 -0.8968 -0.1245 -0.9727 -0.7068
S-174 <2en> Starptautiskā lībiešu draugu biedrība un biedrība Līvõ Kultūr sidām (Lībiešu kultūras centrs) ir pieņēmuši lēmumu izsludināt 2011. gadu par starptautisko lībiešu valodas un kultūras gadu.
W-174 0.052 seconds
H-174 -0.5203933715820312 The International Livonian Friends Society and Society Līvõ Kultūr sidām (Livonian Culture Centre) has decided to declare 2011 as the International Year of Livonian Language and Culture.
D-174 -0.5203933715820312 The International Livonian Friends Society and Society Līvõ Kultūr sidām (Livonian Culture Centre) has decided to declare 2011 as the International Year of Livonian Language and Culture.
P-174 -2.0457 -0.9459 -1.2308 -0.0686 -1.9549 -0.0301 -0.6094 -0.0135 -0.3546 -0.4918 -0.2564 -0.4516 -0.8170 -0.2822 -0.1566 -0.3175 -0.7811 -0.0552 -0.0086 -0.0643 -0.5386 -0.2295 -0.1524 -1.0098 -1.1368 -0.1454 -1.5646 -0.1886 -1.7554 -1.8332 -0.2034 -0.7552 -0.2947 -0.2808 -0.0435 -0.0251 -0.0422 -0.0805 -0.1904 -0.0400 -0.2399 -0.1708
S-175 <2en> Tam ir vairāki priekšnoteikumi – gan kultūrvēsturiski saistībā ar nozīmīgām gadskārtām, gan aktuāli, jo 2011. gads iezīmējas ar vairākiem unikāliem notikumiem.
W-175 0.052 seconds
H-175 -0.9441385865211487 This has a number of prerequisites – both cultural history related to important anniversary and topical, since 2011 is marked by a number of unique events.
D-175 -0.9441385865211487 This has a number of prerequisites – both cultural history related to important anniversary and topical, since 2011 is marked by a number of unique events.
P-175 -3.3041 -0.8463 -2.1757 -0.1767 -0.1306 -0.8958 -1.0212 -0.1299 -1.6116 -0.4424 -0.8511 -2.3388 -1.5497 -0.1598 -1.2068 -2.2645 -0.9575 -0.5282 -0.4251 -2.5902 -1.2861 -0.0511 -1.2614 -1.2902 -0.5572 -1.2500 -0.2914 -0.1420 -0.0191 -0.0958 -0.1968 -0.1656
S-176 <2en> 2011. gadā aprit 150 gadu, kopš Pēterburgā Krievijas Zinātņu akadēmijas izdevumā iznāca A. J. Šēgrēna un F. J. Vīdemaņa kopdarbs vācu valodā – pirmā lībiešu valodas gramatika un vārdnīca, kas ietvēra arī pirmos lībiešu folkloras, dzejas un reliģisko tekstu paraugus.
W-176 0.163 seconds
H-176 -0.5161383152008057 In 2011, 150 years have passed since A. J. Šēgrēna and F. J. Vīdemaņ came out in Peterburg in German, the first Liv language grammar and dictionary that also included the first samples of Liv folklore, poetry and religious texts.
D-176 -0.5161383152008057 In 2011, 150 years have passed since A. J. Šēgrēna and F. J. Vīdemaņ came out in Peterburg in German, the first Liv language grammar and dictionary that also included the first samples of Liv folklore, poetry and religious texts.
P-176 -4.4091 -0.2417 -1.2152 -0.1952 -0.2479 -2.9115 -0.4408 -0.0241 -1.5676 -0.1237 -0.5309 -0.1300 -0.4810 -0.3167 -1.2784 -0.7218 -0.2388 -0.0626 -0.1109 -0.1050 -0.1337 -0.2368 -0.1289 -0.9830 -2.4729 -0.5806 -0.2814 -0.9995 -0.5259 -1.4045 -0.2760 -1.8908 -0.2692 -0.0733 -0.8367 -0.0473 -0.1328 -0.0138 -0.1744 -0.1757 -0.1449 -0.0190 -0.0498 -1.5977 -1.0302 -0.0901 -0.5008 -0.0723 -0.0479 -0.1989 -0.1543 -0.3454 -0.0453 -0.6564 -0.2326 -0.1656 -0.1179 -0.1079 -0.0163 -0.2900 -0.0184 -0.0496 -0.2488 -0.1938 -0.1648
S-177 <2en> Nākamgad aprit 90 gadu, kopš izdota pirmā laicīga satura grāmata lībiešu valodā – Līvõd ežmi lugdõbrōntõz (Lībiešu pirmā lasāmgrāmata), ar ko Igaunijas Akadēmiskā Dzimtās valodas biedrība (Akadeemiline Emakeele Selts) aizsāka savu rakstu izdevumu sēriju.
W-177 0.163 seconds
H-177 -0.6479611992835999 The following year is 90 years since the first time book of content in the Liv language was published – Livonian first reading book (Livonian first reading book), with which the Estonian Academic Born Language Society (Akadeemiline Emakeele Selts) launched a series of publications.
D-177 -0.6479611992835999 The following year is 90 years since the first time book of content in the Liv language was published – Livonian first reading book (Livonian first reading book), with which the Estonian Academic Born Language Society (Akadeemiline Emakeele Selts) launched a series of publications.
P-177 -2.3233 -1.5870 -0.4703 -1.4073 -0.2366 -0.1941 -0.4035 -0.1947 -0.2312 -1.2282 -2.3181 -1.0375 -0.2317 -0.3859 -1.7440 -0.4160 -0.0942 -0.0908 -1.5217 -0.8300 -0.8770 -1.9519 -0.0606 -1.1386 -0.3091 -0.5002 -0.1688 -0.3342 -0.4015 -0.6333 -0.0504 -0.0534 -0.0621 -0.3465 -0.1262 -0.2615 -0.6932 -1.7343 -0.3179 -0.6335 -0.0432 -0.1268 -0.0700 -0.2033 -1.8499 -0.1535 -0.0282 -0.0195 -0.1402 -0.2773 -1.1789 -0.3980 -1.7819 -0.0342 -0.0703 -0.2099 -0.1287 -1.0539 -0.1641 -2.5473 -0.9767 -0.0946 -0.1345 -2.1735 -0.1771 -1.6096 -0.1678
S-178 <2en> Pirms 80 gadiem ar Somijas Akadēmiskā raudu tautu kluba (Akateeminen Heimoklubi) atbalstu sāka iznākt pirmais lībiešu periodiskais izdevums – laikraksts Līvli (Lībietis).
W-178 0.063 seconds
H-178 -0.6493064165115356 The first periodic publication of Livonian newspaper Līvli (Livonian) began 80 years ago with the support of the Finnish Academic Nurse National Club (Akateeminen Heimoklubi).
D-178 -0.6493064165115356 The first periodic publication of Livonian newspaper Līvli (Livonian) began 80 years ago with the support of the Finnish Academic Nurse National Club (Akateeminen Heimoklubi).
P-178 -3.7204 -4.0921 -1.5108 -1.2346 -1.8124 -0.6554 -1.5152 -0.0581 -1.5808 -0.1489 -0.2206 -0.5319 -0.1017 -0.8165 -0.2770 -0.0687 -0.0457 -0.6462 -0.4529 -1.3513 -0.0948 -0.1194 -0.1172 -0.6295 -0.9611 -0.0472 -0.1470 -1.0573 -0.0763 -0.1983 -0.0390 -0.1138 -1.1723 -0.9257 -1.1221 -2.0050 -0.3304 -0.8168 -0.0666 -0.0598 -0.1340 -0.0223 -0.0977 -0.0693 -0.1598 -0.0559 -0.0332 -0.1367 -0.1662
S-179 <2en> Pirms 75 gadiem lībietis Kārlis Stalte pēc Igaunijas Akadēmiskās dzimtās valodas biedrības pasūtījuma uzrakstīja pirmo lībiešu ābeci, kuras manuskripts pirms pieciem gadiem atrasts Igaunijas Valsts arhīvā.
W-179 0.063 seconds
H-179 -0.8694409728050232 The first Livonian apple was written by Kārlis Stalte, 75 years ago, according to the order of the Estonian Academic Home Language Society, which was found five years ago in the Estonian National Archives.
D-179 -0.8694409728050232 The first Livonian apple was written by Kārlis Stalte, 75 years ago, according to the order of the Estonian Academic Home Language Society, which was found five years ago in the Estonian National Archives.
P-179 -3.9067 -4.4754 -1.0351 -0.0610 -1.9435 -0.0632 -0.5370 -0.4139 -1.3934 -1.6198 -1.2712 -0.0361 -0.0248 -1.7693 -0.2125 -0.1205 -0.1685 -1.3427 -2.1242 -0.1485 -0.8789 -0.3940 -0.2731 -0.4946 -0.0300 -0.1510 -0.0420 -0.1574 -3.1113 -0.3104 -0.0535 -0.8103 -0.7263 -1.3829 -3.0795 -0.9112 -0.1137 -0.1209 -0.4754 -0.3163 -0.2477 -1.7182 -0.2781 -0.2121 -0.1689
S-180 <2en> Pirms 20 gadiem dibināta valsts īpaši aizsargājamā kultūrvēsturiskā teritorija Līvõd rānda (Lībiešu krasts), bet Latvijas Republikas likumā „Par Latvijas nacionālo un etnisko grupu brīvu attīstību un tiesībām uz kultūras autonomiju” lībieši atzīti par Latvijas pamattautību.
W-180 0.063 seconds
H-180 -0.6670873165130615 The Livonian Coast (Livonian Coast) was founded 20 years ago and Livonians have been recognized as the foundation of Latvia in the Law “On the free development of national and ethnic groups and the right to cultural autonomy of Latvia”.
D-180 -0.6670873165130615 The Livonian Coast (Livonian Coast) was founded 20 years ago and Livonians have been recognized as the foundation of Latvia in the Law “On the free development of national and ethnic groups and the right to cultural autonomy of Latvia”.
P-180 -3.4496 -3.7093 -0.2205 -0.9999 -0.0542 -2.0172 -0.4620 -0.7741 -0.0747 -0.0439 -0.0218 -0.8725 -0.3928 -1.2056 -0.6440 -0.1175 -0.0877 -0.0830 -0.9110 -1.2503 -0.0560 -0.0904 -0.9414 -2.0469 -0.4524 -0.6708 -0.5625 -0.9484 -2.3781 -0.6275 -0.0358 -0.8652 -0.9478 -0.5040 -0.8753 -0.5615 -1.5450 -0.8296 -0.0670 -0.6679 -0.4246 -0.1495 -0.0367 -0.2507 -0.9244 -0.3678 -0.1156 -0.1434 -0.0926 -0.1158 -0.0515 -0.0411 -0.6944 -0.0231 -0.6936 -0.1670
S-181 <2en> Tāpat nākamgad aprit pieci gadi, kopš darbojas lībiešu kultūras un valodas portāls livones.lv – vienīgais plašsaziņas līdzeklis, kas sniedz informāciju lībiešu, latviešu, angļu un daļēji arī igauņu un somu valodā.
W-181 0.063 seconds
H-181 -0.6089463829994202 It is also five years since the Livonian Culture and Language portal livones.lv is operating – the only media to provide information in Livonian, Latvian, English and partly in Estonian and Finnish.
D-181 -0.6089463829994202 It is also five years since the Livonian Culture and Language portal livones.lv is operating – the only media to provide information in Livonian, Latvian, English and partly in Estonian and Finnish.
P-181 -3.3873 -1.5717 -0.7397 -1.2144 -0.1177 -1.4925 -1.0828 -0.5822 -0.3428 -0.0853 -0.0478 -1.0498 -0.1851 -0.0466 -0.3048 -0.2567 -0.0328 -0.0435 -0.1398 -0.0700 -1.5952 -1.2988 -1.4976 -0.1142 -0.0988 -0.1672 -1.9909 -0.3627 -0.2903 -0.2124 -1.4113 -0.0540 -0.1284 -0.0637 -0.1565 -0.0288 -0.1751 -0.0519 -0.6821 -2.2073 -0.1628 -1.5595 -0.0573 -0.1601 -0.0842 -1.0462 -0.1698
S-182 <2en> Lībiešu valoda un kultūra nav tikai vēsturiskas vērtības, ko klāj gadu desmitu un simtu putekļi.
W-182 0.044 seconds
H-182 -0.5289938449859619 The Liv language and culture are not just historical values covered by decades and hundreds of dust.
D-182 -0.5289938449859619 The Liv language and culture are not just historical values covered by decades and hundreds of dust.
P-182 -2.9462 -1.3740 -0.2096 -0.0487 -0.1636 -0.0419 -1.1136 -0.2272 -0.9859 -0.3869 -0.3494 -0.5623 -0.1856 -2.0704 -0.2001 -0.3496 -0.3376 -0.1253 -0.0864 -0.0388 -0.0221 -0.1779 -0.1639
S-183 <2en> Tā joprojām ir nozīmīgu pētījumu un atklājumu avots, kas bagātina mūsdienu kultūras dzīvi un sniedz atklājumus, kam ir ne tikai zinātniska, bet arī praktiska nozīme.
W-183 0.052 seconds
H-183 -0.6726670861244202 It remains a source of significant research and discoveries enriching modern cultural life and providing discoveries that have not only scientific, but also practical importance.
D-183 -0.6726670861244202 It remains a source of significant research and discoveries enriching modern cultural life and providing discoveries that have not only scientific, but also practical importance.
P-183 -1.5935 -1.1566 -0.5887 -0.0684 -0.1703 -1.5269 -0.3288 -0.1533 -0.2053 -0.7773 -0.9102 -0.1831 -1.1443 -0.1681 -0.7290 -0.2294 -2.1073 -0.2612 -0.2304 -1.0628 -2.4359 -0.5518 -0.2615 -0.5609 -1.4018 -0.1078 -0.3003 -0.0623 -1.2254 -0.1864 -0.1635
S-184 <2en> 2011. gadā Igaunijā iznāks līdz šim apjomīgākā lībiešu-igauņu-latviešu vārdnīca.
W-184 0.044 seconds
H-184 -0.47287610173225403 In 2011, the largest Livonian-Estonian-Latvian dictionary will be published in Estonia.
D-184 -0.47287610173225403 In 2011, the largest Livonian-Estonian-Latvian dictionary will be published in Estonia.
P-184 -2.8076 -0.0833 -0.9577 -2.0011 -0.7591 -0.1022 -0.0652 -1.5937 -0.0372 -0.3496 -0.3507 -0.0594 -0.2182 -0.1772 -0.1602 -0.0236 -0.1407 -0.0162 -0.0367 -0.4784 -0.8765 -0.2262 -0.2219 -0.0331 -0.3531 -0.1658
S-185 <2en> To veidojis mūsdienu izcilākais lībiešu valodas pētnieks prof. em. Tīts Reins Vītso, izmantojot dažādus lībiešu tekstu krājumus, arī lībieša Pētera Damberga vākumu.
W-185 0.063 seconds
H-185 -0.7352323532104492 It has been formed by prof. em. Tits Reins Vītso, the most outstanding Liv language researcher of modern times, using various Liv text stocks, including the collection of Livonian Pēteris Dambergs.
D-185 -0.7352323532104492 It has been formed by prof. em. Tits Reins Vītso, the most outstanding Liv language researcher of modern times, using various Liv text stocks, including the collection of Livonian Pēteris Dambergs.
P-185 -3.3426 -2.6963 -0.2963 -2.6178 -0.1674 -1.4853 -0.1559 -0.0621 -0.1291 -0.5677 -1.5646 -0.2090 -0.1618 -0.7577 -0.2303 -0.0797 -0.1421 -0.2307 -0.7722 -0.7429 -2.1750 -1.8051 -0.0381 -0.3530 -0.1228 -0.3363 -1.6460 -0.7897 -0.7629 -0.7814 -0.5375 -0.3358 -0.4407 -0.0415 -0.8838 -1.8156 -0.2530 -0.4397 -1.2142 -0.6878 -0.6639 -0.1979 -0.7460 -0.0430 -1.1159 -0.0316 -1.7879 -1.1473 -0.0111 -0.2699 -0.1852 -0.1613
S-186 <2en> Jaunā vārdnīca, kurā iekļauta arī lībiešu valodas gramatika, būs perfekts mācību līdzeklis ar autentiskiem valodas piemēriem.
W-186 0.044 seconds
H-186 -0.4972207546234131 The new dictionary, which includes Liv language grammar, will be the perfect training tool with authentic language examples.
D-186 -0.4972207546234131 The new dictionary, which includes Liv language grammar, will be the perfect training tool with authentic language examples.
P-186 -1.4730 -0.7308 -0.1768 -0.0224 -0.0469 -0.6778 -0.5431 -1.0582 -0.9827 -0.0454 -0.1700 -0.0137 -0.2219 -0.4977 -0.1862 -0.2481 -0.7230 -0.0734 -2.7039 -0.6875 -0.2838 -0.1294 -0.7487 -0.4799 -0.1614 -0.1745 -0.1646
S-187 <2en> Šāgada 10. decembrī Tartu universitātē Valts Ernštreits ar pirmreizēju pētījumu „Lībiešu rakstu valodas izveidošanās” ieguva filoloģijas doktora grādu, un 2011. gadā uz šī darba pamata iznāks grāmata.
W-187 0.063 seconds
H-187 -1.196382999420166 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 the right to receive it.
D-187 -1.196382999420166 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 the right to receive it.
P-187 -4.8399 -3.4793 -0.1731 -4.4130 -0.5937 -3.0058 -0.4961 -2.0873 -2.7981 -3.4093 -0.6344 -0.3849 -3.7306 -2.6358 -1.6122 -2.5098 -1.3520 -1.7802 -0.8298 -1.4699 -1.0280 -1.2513 -0.5245 -0.6667 -0.7364 -1.0291 -0.4757 -0.5122 -0.6964 -0.9204 -0.4756 -0.4255 -0.6061 -0.8604 -0.4670 -0.3944 -0.6013 -0.8310 -0.4724 -0.3590 -0.5846 -0.7885 -0.4611 -0.3493 -0.5276 -0.7734 -0.4522 -0.3366 -0.5076 -0.7545 -0.4688 -0.3632 -0.4305 -0.7201 -0.4790 -0.3590 -0.4652 -5.8648 -1.3496 -0.1791
S-188 <2en> Latvijā un Igaunijā tiks rīkotas starptautiskas zinātniskās konferences, izstādes un citi pasākumi.
W-188 0.042 seconds
H-188 -0.24740023910999298 International scientific conferences, exhibitions and other events will be held in Latvia and Estonia.
D-188 -0.24740023910999298 International scientific conferences, exhibitions and other events will be held in Latvia and Estonia.
P-188 -0.8468 -0.7077 -0.0377 -0.1760 -0.2014 -0.0807 -0.1785 -0.3469 -0.3758 -0.0823 -0.2532 -0.3752 -0.1562 -0.2312 -0.0884 -0.1502 -0.0701 -0.1761 -0.1661
S-189 <2en> Starptautiskajā lībiešu valodas un kultūras gadā Starptautiskās lībiešu draugu biedrības un Līvõ Kultūr sidām galvenie sadarbības partneri Igaunijā ir Tartu universitāte, Igauņu valodas institūts, Dzimtās valodas biedrība, Latvijā – Latvijas Zinātņu akadēmija, Latviešu valodas aģentūra, Latvijas Nacionālais vēstures muzejs u. c.
W-189 0.163 seconds
H-189 -0.4370483160018921 During the International Year of Liv Language and Culture, the main cooperation partners of the International Society of Liv Friends and the Liv Culture Centre in Estonia are the University of Tartu, the Institute of Estonian Language, the Society of Born Language, Latvia – Latvian Academy of Sciences, Latvian Language Agency, Latvian National History Museum, etc.
D-189 -0.4370483160018921 During the International Year of Liv Language and Culture, the main cooperation partners of the International Society of Liv Friends and the Liv Culture Centre in Estonia are the University of Tartu, the Institute of Estonian Language, the Society of Born Language, Latvia – Latvian Academy of Sciences, Latvian Language Agency, Latvian National History Museum, etc.
P-189 -4.8495 -0.1039 -0.3389 -0.3695 -0.2643 -0.1936 -0.6754 -0.0516 -0.2402 -0.2477 -0.0379 -0.5746 -0.5478 -0.9196 -0.3225 -0.1353 -0.2850 -0.2651 -0.0478 -1.7394 -0.3325 -0.1806 -0.0516 -0.7350 -0.0134 -0.1631 -0.2458 -1.5214 -1.5583 -0.0656 -0.1739 -0.4117 -1.1486 -0.0533 -0.2022 -1.1173 -0.0588 -0.1310 -0.0380 -0.1409 -1.4144 -0.6155 -0.2922 -0.1584 -0.0756 -0.1995 -0.2039 -0.0810 -0.1923 -1.3025 -0.1202 -0.0702 -0.2060 -0.6815 -0.4545 -1.0243 -0.0143 -0.1718 -0.0255 -0.2481 -0.1739 -0.3783 -0.2177 -0.0079 -0.1820 -0.8343 -0.1612 -0.6463 -0.0338 -0.5800 -0.1536 -0.1736 -0.2578
S-190 <2en> Pasākumu koordinators Latvijā – Valts Ernštreits, Igaunijā Tūli Tuiska, Somijā – Tapio Mekeleinens.
W-190 0.052 seconds
H-190 -0.3807215094566345 The coordinator of events in Latvia – Valts Ernštreits, Estonia Tūli Tuiska, Finland – Tapio Mekeleinens.
D-190 -0.3807215094566345 The coordinator of events in Latvia – Valts Ernštreits, Estonia Tūli Tuiska, Finland – Tapio Mekeleinens.
P-190 -3.2138 -3.0241 -0.1610 -0.1055 -0.0845 -0.4817 -0.9695 -0.5839 -0.0547 -0.9824 -0.0768 -0.2303 -0.1272 -0.0193 -0.2236 -0.0588 -0.2499 -0.1778 -0.2544 -0.9850 -0.0443 -0.1131 -0.0545 -0.1126 -0.1949 -0.2193 -0.1876 -0.1409 -0.0472 -0.1140 -0.0600 -0.1057 -0.1124 -0.0958 -0.0514 -0.2070 -0.1617
S-191 <2en> Profesora Mati Hinta sveiciens Starptautiskā lībiešu valodas un kultūras gada konferencei 25.11.2011. Tartu.
W-191 0.044 seconds
H-191 -0.5029358863830566 Professor Mati Hinta greeting at the International Conference of the Year of Liv Language and Culture 25.11.2011 in Tartu.
D-191 -0.5029358863830566 Professor Mati Hinta greeting at the International Conference of the Year of Liv Language and Culture 25.11.2011 in Tartu.
P-191 -2.3451 -0.2674 -0.0708 -0.0364 -0.1050 -1.2926 -0.2850 -0.0117 -1.9486 -0.4385 -0.0763 -0.7621 -0.6658 -0.6604 -0.2906 -0.3978 -0.6698 -0.0543 -0.1507 -0.2300 -0.0500 -0.8808 -0.0658 -0.0136 -1.8056 -0.0162 -0.3172 -0.1742
S-192 <2en> Manas domas ir šodien krastā un kopā ar tiem, kuriem lībiešu valoda ir dārga.
W-192 0.042 seconds
H-192 -0.7376333475112915 My thoughts are on the shore today and along with those whose Liv language is expensive.
D-192 -0.7376333475112915 My thoughts are on the shore today and along with those whose Liv language is expensive.
P-192 -4.3629 -0.3252 -0.4433 -0.7026 -0.2379 -1.1992 -0.0062 -0.5042 -0.4155 -1.8906 -0.3225 -0.1330 -1.1356 -1.9309 -0.7757 -0.0489 -0.2135 -0.2433 -0.2677 -0.1705 -0.1612
S-193 <2en> Lai viņiem visa tā dzīve ir laba. Lietas ir sarežģītas.
W-193 0.018 seconds
H-193 -0.48663097620010376 For them, all that life is good. Things are complicated.
D-193 -0.48663097620010376 For them, all that life is good. Things are complicated.
P-193 -2.1595 -0.1748 -1.1922 -0.4896 -0.9835 -0.0972 -0.1629 -0.1716 -0.1512 -0.0286 -0.1905 -0.6822 -0.1663 -0.1626
S-194 <2en> Lai tās tādas ir, bet mēs nevēlamies lībiešu valodu aizmirst.
W-194 0.018 seconds
H-194 -2.285722255706787 If you have a problem, you may not have a problem with it.
D-194 -2.285722255706787 If you have a problem, you may not have a problem with it.
P-194 -4.7617 -1.3802 -3.0632 -2.4404 -3.5819 -1.7202 -1.9049 -3.1366 -2.2877 -2.8939 -2.3518 -1.0772 -1.5832 -3.4761 -0.7400 -0.1725
S-195 <2en> Visu labāko novēl jums visiem – Mati Hints.
W-195 0.018 seconds
H-195 -0.9627822637557983 All the best wishes you all – Hair Hints.
D-195 -0.9627822637557983 All the best wishes you all – Hair Hints.
P-195 -2.8764 -1.1579 -0.0501 -2.9279 -0.9272 -0.3715 -0.3323 -0.9867 -1.5286 -0.0144 -0.2179 -0.1625
S-196 <2en> Publicēts ar Latvijas Republikas Kultūras ministrijas atbalstu.
W-196 0.014 seconds
H-196 -1.0513383150100708 It’s been published in support of the Ministry of Culture of the Republic of Latvia.
D-196 -1.0513383150100708 It’s been published in support of the Ministry of Culture of the Republic of Latvia.
P-196 -4.8499 -3.3498 -0.1691 -3.4908 -3.4437 -1.9538 -0.6100 -0.1575 -0.3494 -0.1485 -0.2059 -0.0277 -0.2242 -0.3859 -0.0283 -0.1425 -0.0979 -0.1790 -0.1616
S-197 <2en> PROFESORA MATI HINTA SVEICIENS
W-197 0.018 seconds
H-197 -1.0256770849227905 PROFESORA MATI HINTA SVEICIE
D-197 -1.0256770849227905 PROFESORA MATI HINTA SVEICIE
P-197 -1.6267 -1.5345 -1.2827 -0.1803 -2.9377 -0.9373 -0.3345 -0.0160 -0.2112 -1.1614 -3.0163 -0.2791 -0.4321 -0.4096
S-198 <2en> Mūsu bērniem vecumdienās jāņem viņi arī savā aprūpē.
W-198 0.018 seconds
H-198 -0.9790029525756836 Our children in their age should also take care of them.
D-198 -0.9790029525756836 Our children in their age should also take care of them.
P-198 -3.1929 -0.2945 -2.2133 -1.3087 -0.4371 -1.1440 -1.0585 -0.8685 -1.0068 -0.2830 -0.5089 -0.2499 -0.1610
S-199 <2en> Viņš ir centies izvairīties no parastas valodas.
W-199 0.014 seconds
H-199 -0.7315032482147217 He has tried to avoid the usual language.
D-199 -0.7315032482147217 He has tried to avoid the usual language.
P-199 -1.2717 -0.9988 -0.7206 -0.1572 -0.1733 -2.3138 -1.2136 -0.1279 -0.1781 -0.1601