forked from gramps-project/gramps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
1146 lines (726 loc) · 55.1 KB
/
ChangeLog
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
2023-08-25 Nick Hall <[email protected]>
* po/sk.po: Fix fatal error in Slovak translation
2023-08-25 Michał Stojek <[email protected]>
* po/pl.po: Translated using Weblate (Polish) Currently translated at 99.3% (7054 of 7097 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/pl/
2023-08-25 Matti Niemelä <[email protected]>
* po/fi.po: Translated using Weblate (Finnish) Currently translated at 99.9% (7096 of 7097 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/fi/
2023-08-25 Pedro Albuquerque <[email protected]>
* po/pt_PT.po: Translated using Weblate (Portuguese (Portugal)) Currently translated at 100.0% (7097 of 7097 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/pt_PT/
2023-08-25 Stephan Paternotte <[email protected]>
* po/nl.po: Translated using Weblate (Dutch) Currently translated at 99.9% (7096 of 7097 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/nl/
2023-08-25 Yaron Shahrabani <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7097 of 7097 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-24 Hosted Weblate <[email protected]>
* po/ar.po, po/bg.po, po/br.po, po/ca.po, po/cs.po, po/da.po,
po/de.po, po/de_AT.po, po/el.po, po/en_GB.po, po/eo.po, po/es.po,
po/fa.po, po/fi.po, po/fr.po, po/ga.po, po/gl.po, po/he.po,
po/hr.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po,
po/lt.po, po/mk.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po,
po/pt_BR.po, po/pt_PT.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po,
po/sq.po, po/sr.po, po/sr_Latn.po, po/sv.po, po/ta.po, po/tr.po,
po/uk.po, po/vi.po, po/zh_CN.po, po/zh_HK.po, po/zh_TW.po: Update
translation files Updated by "Update PO files to match POT (msgmerge)" hook in
Weblate. Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/
2023-08-24 Luigi Toscano <[email protected]>
* po/it.po: Translated using Weblate (Italian) Currently translated at 97.8% (6940 of 7095 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/it/
2023-08-24 Avi Markovitz <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7095 of 7095 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-24 Yaron Shahrabani <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7095 of 7095 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-24 Matti Niemelä <[email protected]>
* po/fi.po: Translated using Weblate (Finnish) Currently translated at 99.9% (7094 of 7095 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/fi/
2023-08-24 Nick Hall <[email protected]>
* po/gramps.pot: Update gramps.pot
2023-08-24 Nick Hall <[email protected]>
* gramps/plugins/drawreport/fanchart.py: Add option to exclude chart
title
2023-08-24 Nick Hall <[email protected]>
* gramps/plugins/drawreport/fanchart.py: Prevent fan chart title
being overwritten by the chart Move the title to the top when drawing an overhang chart and reduce
the available height by the title height. Fixes #12926.
2023-08-24 Nick Hall <[email protected]>
* gramps/gui/viewmanager.py: No longer state that Gramps will close
in the backup message An autobackup could be a periodic backup rather than a backup on
exit. Fixes #12984.
2023-08-19 prculley <[email protected]>
* gramps/gen/utils/image.py, gramps/gui/displaystate.py,
gramps/gui/logger/_errorview.py, gramps/gui/managedwindow.py,
gramps/gui/utils.py, gramps/gui/widgets/interactivesearchbox.py,
gramps/gui/widgets/undoableentry.py: Clean up some Gdk Screen
deprecations
2023-08-23 Nick Hall <[email protected]>
* data/tests/imp_PhonFax_dfs.gramps,
data/tests/imp_notetest_dfs.gramps,
gramps/plugins/test/imports_test.py: Fix unit tests
2023-08-23 Nick Hall <[email protected]>
* gramps/plugins/lib/libgedcom.py: Fix Gedcom import tagging a note
with an undefined tag handle The import can create a note from the header record. If this has an
import tag attached, it was being added before the tag was created. Fixes #12985.
2023-08-22 Nick Hall <[email protected]>
* gramps/gen/plug/report/endnotes.py,
gramps/plugins/cite/default.py: Fix crash when printing notes during
endnote creation Fixes #12983.
2023-08-23 Avi Markovitz <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7095 of 7095 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-23 Vlad Arkhipov <[email protected]>
* po/ru.po: Translated using Weblate (Russian) Currently translated at 99.7% (7076 of 7095 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/ru/
2023-08-23 Stephan Paternotte <[email protected]>
* po/nl.po: Translated using Weblate (Dutch) Currently translated at 100.0% (7095 of 7095 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/nl/
2023-08-23 Luigi Toscano <[email protected]>
* po/it.po: Translated using Weblate (Italian) Currently translated at 97.1% (6892 of 7095 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/it/
2023-08-23 Milo Ivir <[email protected]>
* po/hr.po: Translated using Weblate (Croatian) Currently translated at 100.0% (7095 of 7095 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/hr/
2023-08-23 Yaron Shahrabani <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7095 of 7095 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-23 Avi Markovitz <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7095 of 7095 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-23 Matti Niemelä <[email protected]>
* po/fi.po: Translated using Weblate (Finnish) Currently translated at 99.9% (7094 of 7095 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/fi/
2023-08-23 gallegonovato <[email protected]>
* po/es.po: Translated using Weblate (Spanish) Currently translated at 98.4% (6986 of 7095 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/es/
2023-08-23 Milan <[email protected]>
* po/cs.po, po/sk.po: Translated using Weblate (Slovak) Currently translated at 99.8% (7082 of 7095 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/sk/ Translated using Weblate (Czech) Currently translated at 96.3% (6836 of 7095 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/cs/
2023-08-22 Milo Ivir <[email protected]>
* po/hr.po: Translated using Weblate (Croatian) Currently translated at 100.0% (7095 of 7095 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/hr/ Translated using Weblate (Croatian) Currently translated at 99.9% (7094 of 7095 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/hr/
2023-08-22 Mirko Leonhaeuser <[email protected]>
* po/de.po: Translated using Weblate (German) Currently translated at 99.8% (7086 of 7095 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/de/
2023-08-22 Milan <[email protected]>
* po/cs.po, po/sk.po: Translated using Weblate (Slovak) Currently translated at 99.6% (7068 of 7095 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/sk/ Translated using Weblate (Czech) Currently translated at 96.3% (6836 of 7095 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/cs/
2023-08-22 Pär Ekholm <[email protected]>
* po/sv.po: Translated using Weblate (Swedish) Currently translated at 100.0% (7095 of 7095 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/sv/ Translated using Weblate (Swedish) Currently translated at 99.9% (7093 of 7095 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/sv/
2023-08-22 Matti Niemelä <[email protected]>
* po/fi.po: Translated using Weblate (Finnish) Currently translated at 99.9% (7094 of 7095 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/fi/ Translated using Weblate (Finnish) Currently translated at 99.9% (7094 of 7095 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/fi/ Translated using Weblate (Finnish) Currently translated at 99.9% (7094 of 7095 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/fi/ Translated using Weblate (Finnish) Currently translated at 99.9% (7094 of 7095 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/fi/
2023-08-22 Michał Stojek <[email protected]>
* po/pl.po: Translated using Weblate (Polish) Currently translated at 99.4% (7054 of 7095 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/pl/
2023-08-22 Pedro Albuquerque <[email protected]>
* po/pt_PT.po: Translated using Weblate (Portuguese (Portugal)) Currently translated at 100.0% (7095 of 7095 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/pt_PT/
2023-08-22 Hosted Weblate <[email protected]>
* po/ar.po, po/bg.po, po/br.po, po/ca.po, po/cs.po, po/da.po,
po/de.po, po/de_AT.po, po/el.po, po/en_GB.po, po/eo.po, po/es.po,
po/fa.po, po/fi.po, po/fr.po, po/ga.po, po/gl.po, po/he.po,
po/hr.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po,
po/lt.po, po/mk.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po,
po/pt_BR.po, po/pt_PT.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po,
po/sq.po, po/sr.po, po/sr_Latn.po, po/sv.po, po/ta.po, po/tr.po,
po/uk.po, po/vi.po, po/zh_CN.po, po/zh_HK.po, po/zh_TW.po: Update
translation files Updated by "Update PO files to match POT (msgmerge)" hook in
Weblate. Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/
2023-08-22 Milo Ivir <[email protected]>
* po/hr.po: Translated using Weblate (Croatian) Currently translated at 100.0% (7080 of 7080 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/hr/
2023-08-22 Avi Markovitz <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7080 of 7080 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-22 Nick Hall <[email protected]>
* po/gramps.pot, po/update_po.py: Fix trans_text keyword in xgettext Fixes #12982.
2023-08-21 Yaron Shahrabani <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7080 of 7080 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-21 Milo Ivir <[email protected]>
* po/hr.po: Translated using Weblate (Croatian) Currently translated at 100.0% (7080 of 7080 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/hr/
2023-08-21 Yaron Shahrabani <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7080 of 7080 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-21 Avi Markovitz <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7080 of 7080 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-21 Pär Ekholm <[email protected]>
* po/sv.po: Translated using Weblate (Swedish) Currently translated at 100.0% (7080 of 7080 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/sv/
2023-08-21 Павел Жуков <[email protected]>
* po/ru.po: Translated using Weblate (Russian) Currently translated at 99.7% (7064 of 7080 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/ru/
2023-08-21 Michał Stojek <[email protected]>
* po/pl.po: Translated using Weblate (Polish) Currently translated at 99.4% (7039 of 7080 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/pl/
2023-08-21 Stephan Paternotte <[email protected]>
* po/nl.po: Translated using Weblate (Dutch) Currently translated at 100.0% (7080 of 7080 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/nl/
2023-08-21 Milo Ivir <[email protected]>
* po/hr.po: Translated using Weblate (Croatian) Currently translated at 100.0% (7080 of 7080 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/hr/
2023-08-21 Yaron Shahrabani <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 99.9% (7079 of 7080 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-21 Matti Niemelä <[email protected]>
* po/fi.po: Translated using Weblate (Finnish) Currently translated at 99.9% (7079 of 7080 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/fi/
2023-08-19 Nick Hall <[email protected]>
* gramps/gui/dbman.py, gramps/gui/glade/dbman.glade: Fix vertical
expansion of family tree manager list
2023-08-20 SNoiraud <[email protected]>
* gramps/plugins/mapservices/openstreetmap.py: Fix error 404 with
openstreetmap map service
2023-08-19 SNoiraud <[email protected]>
* gramps/plugins/lib/maps/constants.py,
gramps/plugins/lib/maps/geography.py,
gramps/plugins/lib/maps/osmgps.py,
gramps/plugins/webreport/narrativeweb.py: Restrict access to Stamen
maps Update the narrative web to use a key for the stamen maps and remove
stamen map from the geography views. Fixes #12971
2023-08-07 Christopher Horn <[email protected]>
* gramps/gui/editors/displaytabs/addrembedlist.py,
gramps/gui/editors/displaytabs/attrembedlist.py,
gramps/gui/editors/displaytabs/backreflist.py,
gramps/gui/editors/displaytabs/citationbackreflist.py,
gramps/gui/editors/displaytabs/citationembedlist.py,
gramps/gui/editors/displaytabs/embeddedlist.py,
gramps/gui/editors/displaytabs/eventattrembedlist.py,
gramps/gui/editors/displaytabs/eventbackreflist.py,
gramps/gui/editors/displaytabs/eventembedlist.py,
gramps/gui/editors/displaytabs/familyattrembedlist.py,
gramps/gui/editors/displaytabs/familyldsembedlist.py,
gramps/gui/editors/displaytabs/groupembeddedlist.py,
gramps/gui/editors/displaytabs/ldsembedlist.py,
gramps/gui/editors/displaytabs/locationembedlist.py,
gramps/gui/editors/displaytabs/mediaattrembedlist.py,
gramps/gui/editors/displaytabs/mediabackreflist.py,
gramps/gui/editors/displaytabs/nameembedlist.py,
gramps/gui/editors/displaytabs/notebackreflist.py,
gramps/gui/editors/displaytabs/notetab.py,
gramps/gui/editors/displaytabs/personbackreflist.py,
gramps/gui/editors/displaytabs/personeventembedlist.py,
gramps/gui/editors/displaytabs/personrefembedlist.py,
gramps/gui/editors/displaytabs/placebackreflist.py,
gramps/gui/editors/displaytabs/placenameembedlist.py,
gramps/gui/editors/displaytabs/placerefembedlist.py,
gramps/gui/editors/displaytabs/repoembedlist.py,
gramps/gui/editors/displaytabs/sourcebackreflist.py,
gramps/gui/editors/displaytabs/srcattrembedlist.py,
gramps/gui/editors/displaytabs/surnametab.py,
gramps/gui/editors/displaytabs/webembedlist.py,
gramps/gui/editors/editaddress.py,
gramps/gui/editors/editattribute.py,
gramps/gui/editors/editchildref.py,
gramps/gui/editors/editcitation.py,
gramps/gui/editors/editevent.py,
gramps/gui/editors/editeventref.py,
gramps/gui/editors/editfamily.py, gramps/gui/editors/editldsord.py,
gramps/gui/editors/editmedia.py,
gramps/gui/editors/editmediaref.py, gramps/gui/editors/editname.py,
gramps/gui/editors/editnote.py, gramps/gui/editors/editperson.py,
gramps/gui/editors/editpersonref.py,
gramps/gui/editors/editplace.py,
gramps/gui/editors/editplaceref.py,
gramps/gui/editors/editreporef.py,
gramps/gui/editors/editrepository.py,
gramps/gui/editors/editsource.py: Track column width settings for
all editor tabs separately Fixes #12945, #12970
2023-08-06 Nick Hall <[email protected]>
* gramps/plugins/lib/libnarrate.py: Add support for Hebrew prefixes * Double the Vav if not already double * Remove the leading He * Prefix a maqaf for non-Hebrew words and numbers
2023-08-20 Pedro Albuquerque <[email protected]>
* po/pt_PT.po: Translated using Weblate (Portuguese (Portugal)) Currently translated at 100.0% (7080 of 7080 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/pt_PT/
2023-08-20 Milo Ivir <[email protected]>
* po/hr.po: Translated using Weblate (Croatian) Currently translated at 99.7% (7065 of 7080 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/hr/
2023-08-20 Yaron Shahrabani <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 99.9% (7079 of 7080 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-20 Matti Niemelä <[email protected]>
* po/fi.po: Translated using Weblate (Finnish) Currently translated at 99.9% (7079 of 7080 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/fi/
2023-08-20 Mirko Leonhaeuser <[email protected]>
* po/de.po: Translated using Weblate (German) Currently translated at 99.8% (7071 of 7080 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/de/ Translated using Weblate (German) Currently translated at 99.8% (7069 of 7080 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/de/
2023-08-20 Hosted Weblate <[email protected]>
* po/ar.po, po/bg.po, po/br.po, po/ca.po, po/cs.po, po/da.po,
po/de.po, po/de_AT.po, po/el.po, po/en_GB.po, po/eo.po, po/es.po,
po/fa.po, po/fi.po, po/fr.po, po/ga.po, po/gl.po, po/he.po,
po/hr.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po,
po/lt.po, po/mk.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po,
po/pt_BR.po, po/pt_PT.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po,
po/sq.po, po/sr.po, po/sr_Latn.po, po/sv.po, po/ta.po, po/tr.po,
po/uk.po, po/vi.po, po/zh_CN.po, po/zh_HK.po, po/zh_TW.po: Update
translation files Updated by "Update PO files to match POT (msgmerge)" hook in
Weblate. Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/
2023-08-18 John Ralls <[email protected]>
* gramps/gen/utils/win32locale.py: Add Farsi and Galician to
Microsoft Windows Locale list.
2023-08-19 Nick Hall <[email protected]>
* po/gramps.pot: Update gramps.pot
2023-08-19 Milo Ivir <[email protected]>
* po/hr.po: Translated using Weblate (Croatian) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/hr/
2023-08-19 Milo Ivir <[email protected]>
* po/hr.po: Translated using Weblate (Croatian) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/hr/
2023-08-19 Milo Ivir <[email protected]>
* po/hr.po: Translated using Weblate (Croatian) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/hr/
2023-08-19 Milo Ivir <[email protected]>
* po/hr.po: Translated using Weblate (Croatian) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/hr/
2023-08-19 Avi Markovitz <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-19 Matti Niemelä <[email protected]>
* po/fi.po: Translated using Weblate (Finnish) Currently translated at 99.9% (7070 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/fi/
2023-08-19 Yaron Shahrabani <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-19 Avi Markovitz <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-19 Matti Niemelä <[email protected]>
* po/fi.po: Translated using Weblate (Finnish) Currently translated at 99.9% (7070 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/fi/
2023-08-19 Milo Ivir <[email protected]>
* po/hr.po: Translated using Weblate (Croatian) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/hr/
2023-08-19 Yaron Shahrabani <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-19 Avi Markovitz <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-19 Matti Niemelä <[email protected]>
* po/fi.po: Translated using Weblate (Finnish) Currently translated at 99.9% (7070 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/fi/
2023-08-19 Milo Ivir <[email protected]>
* po/hr.po: Translated using Weblate (Croatian) Currently translated at 99.9% (7066 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/hr/
2023-08-19 Yaron Shahrabani <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-19 Avi Markovitz <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-18 Nick Hall <[email protected]>
* gramps/gui/configure.py: Add a scrolled window to the preferences
data tab Fixes #12968.
2023-08-18 Nick Hall <[email protected]>
* gramps/gui/plug/_windows.py: Rename Upgrade to Update
2023-08-18 Nick Hall <[email protected]>
* gramps/gui/plug/_windows.py: Fix addon settings bug
2023-08-18 Nick Hall <[email protected]>
* gramps/gui/plug/_windows.py: Add installation status filter
2023-08-15 Nick Hall <[email protected]>
* gramps/gen/plug/utils.py, gramps/gui/plug/_windows.py: Add project
up, down and restore buttons
2023-08-18 Nick Hall <[email protected]>
* gramps/gui/plug/_windows.py: Add help button to Addon Manager
2023-08-16 prculley <[email protected]>
* gramps/gui/editors/displaytabs/surnametab.py: Fix error when
deleting a surname Fixes #11744, #12626, #12629, #12963
2023-08-15 prculley <[email protected]>
* gramps/gen/utils/grampslocale.py: Fix glocale problems on Windows
2023-08-18 John Ralls <[email protected]>
* gramps/gen/utils/win32locale.py: Fix system locale detection on MS
Windows. Some system locales were not correctly identified on Microsoft
Windows causing Gramps to open in English even though a translation
is available for the locale.
2023-08-18 jmichault <[email protected]>
* .github/workflows/windows-aio.yml: Add Windows AIO workflow
2023-08-18 Nick Hall <[email protected]>
* aio/build.sh, aio/grampsaio64.nsi.template, aio/setup.py: Fixes
for the Windows AIO build * Convert packages from python3 to python. * Replace `share.tgz` with downloaded files. * Add missing dictionaries. * Add missing D-Bus executable. * Use newly available bsddb3 package.
2023-08-17 Milo Ivir <[email protected]>
* po/hr.po: Translated using Weblate (Croatian) Currently translated at 99.6% (7044 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/hr/
2023-08-17 Yaron Shahrabani <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-17 Avi Markovitz <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-17 Milo Ivir <[email protected]>
* po/hr.po: Translated using Weblate (Croatian) Currently translated at 99.3% (7022 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/hr/
2023-08-17 Avi Markovitz <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-15 Milan <[email protected]>
* po/sk.po: Translated using Weblate (Slovak) Currently translated at 99.4% (7033 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/sk/
2023-08-15 Milo Ivir <[email protected]>
* po/hr.po: Translated using Weblate (Croatian) Currently translated at 98.5% (6971 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/hr/
2023-08-15 gallegonovato <[email protected]>
* po/es.po: Translated using Weblate (Spanish) Currently translated at 98.6% (6977 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/es/
2023-08-15 Avi Markovitz <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-15 Yaron Shahrabani <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-15 Yaron Shahrabani <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-15 Avi Markovitz <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-15 Avi Markovitz <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-15 Yaron Shahrabani <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-15 Milo Ivir <[email protected]>
* po/hr.po: Translated using Weblate (Croatian) Currently translated at 98.4% (6959 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/hr/
2023-08-15 Avi Markovitz <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-15 Yaron Shahrabani <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-14 Nick Hall <[email protected]>
* gramps/gen/plug/_pluginreg.py, gramps/gui/plug/_windows.py:
Improved organization of the Addon Manager filter lists * Update the plugin type names and sort them alphabetically. * Swap the order of Expert and Developer in the audience list. * Reverse the order of the status list. Fixes #12958.
2023-08-13 Stanislav <[email protected]>
* po/ru.po: Translated using Weblate (Russian) Currently translated at 99.9% (7070 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/ru/
2023-08-14 Milo Ivir <[email protected]>
* po/hr.po: Translated using Weblate (Croatian) Currently translated at 98.1% (6939 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/hr/
2023-08-14 Matti Niemelä <[email protected]>
* po/fi.po: Translated using Weblate (Finnish) Currently translated at 99.9% (7070 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/fi/
2023-08-14 Arnau Llovet Vidal <[email protected]>
* po/ca.po: Translated using Weblate (Catalan) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/ca/
2023-08-13 Павел Жуков <[email protected]>
* po/ru.po: Translated using Weblate (Russian) Currently translated at 99.9% (7070 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/ru/
2023-08-13 Stanislav <[email protected]>
* po/ru.po: Translated using Weblate (Russian) Currently translated at 99.9% (7070 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/ru/
2023-08-13 Stanislav <[email protected]>
* po/ru.po: Translated using Weblate (Russian) Currently translated at 99.1% (7008 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/ru/
2023-08-13 Павел Жуков <[email protected]>
* po/ru.po: Translated using Weblate (Russian) Currently translated at 99.1% (7008 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/ru/
2023-08-13 Павел Жуков <[email protected]>
* po/ru.po: Translated using Weblate (Russian) Currently translated at 99.0% (7003 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/ru/
2023-08-13 Stanislav <[email protected]>
* po/ru.po: Translated using Weblate (Russian) Currently translated at 99.0% (7003 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/ru/
2023-08-13 Павел Жуков <[email protected]>
* po/ru.po: Translated using Weblate (Russian) Currently translated at 98.4% (6963 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/ru/
2023-08-13 Stanislav <[email protected]>
* po/ru.po: Translated using Weblate (Russian) Currently translated at 98.4% (6963 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/ru/
2023-08-13 Павел Жуков <[email protected]>
* po/ru.po: Translated using Weblate (Russian) Currently translated at 98.4% (6959 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/ru/
2023-08-13 Stanislav <[email protected]>
* po/ru.po: Translated using Weblate (Russian) Currently translated at 98.4% (6959 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/ru/
2023-08-13 Павел Жуков <[email protected]>
* po/ru.po: Translated using Weblate (Russian) Currently translated at 98.3% (6951 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/ru/
2023-08-12 Christopher Horn <[email protected]>
* gramps/plugins/export/exportgedcom.py: Include event ref citations
and notes in Gedcom export
2023-08-11 Nick Hall <[email protected]>
* gramps/gui/widgets/grampletbar.py: Better URLs for gramplet bar
help Fixes #12957.
2023-08-11 Nick Hall <[email protected]>
* gramps/gen/utils/symbols.py: Fix genealogical symbols The first four must correspond to the genders defined in the Person
class (Female, Male, Unknown and Other). The constants must also match their corresponding description and
unicode symbol.
2023-08-13 Nick Hall <[email protected]>
* gramps/gen/datehandler/_date_hr.py: Fix date modifiers for hr
2023-08-13 Bora Atıcı <[email protected]>
* po/tr.po: Translated using Weblate (Turkish) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/tr/
2023-08-13 Yaron Shahrabani <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-13 Matti Niemelä <[email protected]>
* po/fi.po: Translated using Weblate (Finnish) Currently translated at 99.9% (7069 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/fi/
2023-08-13 Pedro Albuquerque <[email protected]>
* po/pt_PT.po: Translated using Weblate (Portuguese (Portugal)) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/pt_PT/
2023-08-13 Milo Ivir <[email protected]>
* po/hr.po: Translated using Weblate (Croatian) Currently translated at 98.0% (6935 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/hr/
2023-08-13 Mirko Leonhaeuser <[email protected]>
* po/de.po: Translated using Weblate (German) Currently translated at 99.8% (7062 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/de/
2023-08-12 Nick Hall <[email protected]>
* gramps/gen/datehandler/_date_da.py: Fix date modifiers for da
2023-08-12 Milo Ivir <[email protected]>
* po/hr.po: Translated using Weblate (Croatian) Currently translated at 97.8% (6921 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/hr/
2023-08-12 Yaron Shahrabani <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 99.9% (7067 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-12 Nick Hall <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 99.9% (7067 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-12 Avi Markovitz <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 99.9% (7067 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-12 Matti Niemelä <[email protected]>
* po/fi.po: Translated using Weblate (Finnish) Currently translated at 99.9% (7070 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/fi/
2023-08-12 Pär Ekholm <[email protected]>
* po/sv.po: Translated using Weblate (Swedish) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/sv/
2023-08-12 Avi Markovitz <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 99.9% (7067 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-12 Yaron Shahrabani <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 99.9% (7067 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-12 Matti Niemelä <[email protected]>
* po/fi.po: Translated using Weblate (Finnish) Currently translated at 99.9% (7070 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/fi/
2023-08-12 Michał Stojek <[email protected]>
* po/pl.po: Translated using Weblate (Polish) Currently translated at 98.2% (6946 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/pl/
2023-08-12 Stephan Paternotte <[email protected]>
* po/nl.po: Translated using Weblate (Dutch) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/nl/
2023-08-12 Avi Markovitz <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 99.9% (7067 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/ Translated using Weblate (Hebrew) Currently translated at 99.9% (7067 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-12 Hosted Weblate <[email protected]>
* po/ar.po, po/bg.po, po/br.po, po/ca.po, po/cs.po, po/da.po,
po/de.po, po/de_AT.po, po/el.po, po/en_GB.po, po/eo.po, po/es.po,
po/fa.po, po/fi.po, po/fr.po, po/ga.po, po/gl.po, po/he.po,
po/hr.po, po/hu.po, po/id.po, po/is.po, po/it.po, po/ja.po,
po/lt.po, po/mk.po, po/nb.po, po/nl.po, po/nn.po, po/pl.po,
po/pt_BR.po, po/pt_PT.po, po/ro.po, po/ru.po, po/sk.po, po/sl.po,
po/sq.po, po/sr.po, po/sr_Latn.po, po/sv.po, po/ta.po, po/tr.po,
po/uk.po, po/vi.po, po/zh_CN.po, po/zh_HK.po, po/zh_TW.po: Update
translation files Updated by "Update PO files to match POT (msgmerge)" hook in
Weblate. Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/
2023-08-12 Avi Markovitz <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-12 Yaron Shahrabani <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-12 gallegonovato <[email protected]>
* po/es.po: Translated using Weblate (Spanish) Currently translated at 98.6% (6976 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/es/
2023-08-12 Kaj Arne Mikkelsen <[email protected]>
* po/da.po: Translated using Weblate (Danish) Currently translated at 94.0% (6649 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/da/
2023-08-11 Nick Hall <[email protected]>
* po/gramps.pot: Update gramps.pot
2023-08-11 Nick Hall <[email protected]>
* gramps/gui/configure.py: Tidy up strings in preferences
2023-08-11 Nick Hall <[email protected]>
* gramps/plugins/importer/importprogen.glade: Fix spelling mistake
in Pro-Gen importer
2023-08-10 Nick Hall <[email protected]>
* gramps/gui/plug/_windows.py: Improve Addon Manager search This is now a case insensitive search of the name, description and
id fields. Fixes #12955.
2023-08-09 Nick Hall <[email protected]>
* gramps/gen/utils/requirements.py: Check for Windows executables in
addon requirements When checking addon requirements we also need to look for Windows
executables with the .exe extension. Fixes #12954.
2023-08-08 David Straub <[email protected]>
* gramps/gen/proxy/private.py: Do not strip checksum of media object
2023-08-08 Nick Hall <[email protected]>
* gramps/gen/datehandler/_datestrings.py: Update po snippet
generation to output msgctxt
2023-08-07 Nick Hall <[email protected]>
* gramps/gui/views/listview.py,
gramps/gui/widgets/persistenttreeview.py: Save column sizes before a
rebuild To prevent overriding the defaults, don't save sizes before the
initial build. Save column sizes as floats rather than integers. This prevents
seeing a slight column resize after a rebuild. Fixes #12943.
2023-08-09 Milan <[email protected]>
* po/sk.po: Translated using Weblate (Slovak) Currently translated at 99.0% (7003 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/sk/
2023-08-10 Павел Жуков <[email protected]>
* po/ru.po: Translated using Weblate (Russian) Currently translated at 98.2% (6947 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/ru/
2023-08-08 Luigi Toscano <[email protected]>
* po/it.po: Translated using Weblate (Italian) Currently translated at 97.4% (6889 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/it/
2023-08-10 Yaron Shahrabani <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-09 Avi Markovitz <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-08 Pedro Albuquerque <[email protected]>
* po/pt_PT.po: Translated using Weblate (Portuguese (Portugal)) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/pt_PT/
2023-08-08 Luigi Toscano <[email protected]>
* po/it.po: Translated using Weblate (Italian) Currently translated at 96.7% (6838 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/it/
2023-08-08 Yaron Shahrabani <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-08 Avi Markovitz <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/ Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-08 Nick Hall <[email protected]>
* gramps/gen/utils/grampslocale.py: Fix typo in commit
354e191ea0b7f8ebc93c5bd5a0618fedf6385186
2023-08-01 Nick Hall <[email protected]>
* gramps/gui/views/listview.py: Set default column size in list
views Set the column size in list views so that the PersistentTreeView has
sensible defaults. Fixes #12944.
2023-08-07 Nick Hall <[email protected]>
* gramps/gen/datehandler/_date_sk.py: Fix date modifiers for sk
2023-08-07 Avi Markovitz <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-07 Milan <[email protected]>
* po/sk.po: Translated using Weblate (Slovak) Currently translated at 98.5% (6967 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/sk/
2023-08-07 Павел Жуков <[email protected]>
* po/ru.po: Translated using Weblate (Russian) Currently translated at 98.3% (6951 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/ru/
2023-08-07 Yaron Shahrabani <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/ Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-07 Avi Markovitz <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/ Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-07 Yaron Shahrabani <[email protected]>
* po/he.po: Translated using Weblate (Hebrew) Currently translated at 100.0% (7071 of 7071 strings) Translation: Gramps/Program Translate-URL:
https://hosted.weblate.org/projects/gramps-project/gramps/he/
2023-08-02 Nick Hall <[email protected]>
* gramps/gen/const.py, gramps/gui/viewmanager.py: String
improvements * Replace outdated backronym with program description * Improve clarity and punctuation of message
2023-08-02 Nick Hall <[email protected]>
* data/authors.xml, gramps/gen/const.py: Update authors file
2023-08-02 Nick Hall <[email protected]>
* gramps/gui/configure.py: Fix changes reverted by mistake Commit 84da4b896b8a9393d82e3684b895d557385cb471 reverted some
changes by mistake. This restores a couple of autobackup intervals and removes bsddb
from the list of backends.