-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
28917 lines (17913 loc) · 837 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
commit 7f53edf2f585dd550c0ecaa305dd29e1cd7cd993
Author: Gaël Bonithon <gael@xfce.org>
Date: Thu Feb 9 13:06:27 2023 +0100
Update copyright year
(cherry picked from commit a83ad1c714dfd37b10cf5ae9c7aa734b47e31737)
commit 13dade4d0a9e49551dbcb37bbc92185abb765b32
Author: Gaël Bonithon <gael@xfce.org>
Date: Tue Feb 7 23:39:07 2023 +0100
Use XfceScreensaver from Libxfce4ui
Related: libxfce4ui!89, xfce4-session#149
(cherry picked from commit ec7cc4ac3c9948c8e8c5dd6dc609a8ecc753f229)
commit dd77cc0cbeba0c6f6a1c8ba1d0e07c1ffd9ae648
Author: Marcel Partap <mpartap@gmx.net>
Date: Sat Aug 20 03:30:22 2022 +0200
screensaver: Fall back on lock command if D-Bus call failed
Fixes: #142
MR: !24
(cherry picked from commit 8b2578c0c71f1c6bb88f43fa0caa7a99d9965ae5)
commit 15de607ad9637451b623df073f134538b1561f94
Author: Gaël Bonithon <gael@xfce.org>
Date: Sun Feb 5 12:35:06 2023 +0100
panel-plugin: Properly disconnect signal handler
Fixes criticals when closing/reopening the plugin prefs dialog and
playing with the combo box.
commit 51faec675eb98b6450aca45c1b39ff87e8eb70a0
Author: Gaël Bonithon <gael@xfce.org>
Date: Sat Feb 4 21:40:15 2023 +0100
build: Fix autotools warnings
commit fc10f3ab37affd7fca59613958d311c8e6a471ab
Author: Gaël Bonithon <gael@xfce.org>
Date: Sat Feb 4 21:31:27 2023 +0100
Fix management of source ids
Fixes criticals "Source ID 123 was not found when attempting to remove
it".
commit 62b741b21d704417d0ee1172ccae50237b096869
Author: Gaël Bonithon <gael@xfce.org>
Date: Sat Feb 4 21:23:18 2023 +0100
panel-plugin: Add missing ref on image
Fixes various critical especially when switching from plugged to
battery.
commit 4449cc8a468f737104072b465c21d47b08cbda6d
Author: Anonymous <noreply@xfce.org>
Date: Sat Feb 4 00:46:49 2023 +0100
I18n: Update translation el (99%).
211 translated messages, 1 untranslated message.
Transifex (https://explore.transifex.com/xfce/).
commit c8d747659bdb708177fdd66d39e2510ff4d874cf
Author: Anonymous <noreply@xfce.org>
Date: Thu Feb 2 12:48:57 2023 +0100
I18n: Update translation en_CA (100%).
212 translated messages.
Transifex (https://explore.transifex.com/xfce/).
commit 818cabd5b841e0bcad3be1cfbbfdf6ec0e47bac8
Author: Anonymous <noreply@xfce.org>
Date: Tue Jan 31 09:48:01 2023 +0100
I18n: Update translation tr (100%).
212 translated messages.
Transifex (https://explore.transifex.com/xfce/).
commit 70871a7bda17305af1a88b93fc23f3a65a3ebc26
Author: Anonymous <noreply@xfce.org>
Date: Sat Jan 21 00:48:37 2023 +0100
I18n: Update translation el (99%).
211 translated messages, 1 untranslated message.
Transifex (https://explore.transifex.com/xfce/).
commit 50a7372aca880f477b6cf49de00af7e28665d8a6
Author: Anonymous <noreply@xfce.org>
Date: Sat Jan 7 12:47:46 2023 +0100
I18n: Update translation el (99%).
211 translated messages, 1 untranslated message.
Transifex (https://explore.transifex.com/xfce/).
commit b1e103c8b52cfbca03d330f84a80443cb3a494e3
Author: Anonymous <noreply@xfce.org>
Date: Thu Jan 5 12:48:24 2023 +0100
I18n: Update translation zh_CN (100%).
212 translated messages.
Transifex (https://explore.transifex.com/xfce/).
commit e5e7fb7f322ce6e4b636113c90b7223650e00707
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Fri Dec 30 22:01:21 2022 -0800
Fix blurriness in icons when UI scale factor > 1
commit 79095207d76a247a586aeaf77ceac0508ec5c755
Author: Anonymous <noreply@xfce.org>
Date: Fri Dec 30 12:54:55 2022 +0100
I18n: Update translation ko (100%).
212 translated messages.
Transifex (https://explore.transifex.com/xfce/).
commit 7074f9ee04ebe152af9226dfd10c2fef74cdc939
Author: Anonymous <noreply@xfce.org>
Date: Mon Dec 26 12:49:58 2022 +0100
I18n: Update translation zh_CN (100%).
212 translated messages.
Transifex (https://explore.transifex.com/xfce/).
commit 2eb3b942f137d5a318adc089608425507a776288
Author: Anonymous <noreply@xfce.org>
Date: Mon Dec 19 12:47:19 2022 +0100
I18n: Update translation el (99%).
211 translated messages, 1 untranslated message.
Transifex (https://explore.transifex.com/xfce/).
commit 818f7ed968c65ac724b727bca1429a47d51a4b2e
Author: Alexander Schwinn <alexxcons@xfce.org>
Date: Thu Dec 15 10:35:55 2022 +0100
Back to development
commit a45ac6b441a035030616179ec843f0fa21cd9d0f
Author: Alexander Schwinn <alexxcons@xfce.org>
Date: Thu Dec 15 10:34:34 2022 +0100
Updates for release
commit 4cec7d44c02349b11f62285eba383025a851b858
Author: Anonymous <noreply@xfce.org>
Date: Tue Dec 13 12:47:11 2022 +0100
I18n: Update translation lt (100%).
212 translated messages.
Transifex (https://explore.transifex.com/xfce/).
commit 06809928111e6b81f6fe5847f56e5790f9744f27
Author: Anonymous <noreply@xfce.org>
Date: Tue Dec 13 00:51:40 2022 +0100
I18n: Update translation ru (100%).
212 translated messages.
Transifex (https://explore.transifex.com/xfce/).
commit b4928b4fcd5c9febb11bd43493a2bd923942f814
Author: Anonymous <noreply@xfce.org>
Date: Wed Dec 7 00:46:03 2022 +0100
I18n: Update translation ru (100%).
212 translated messages.
Transifex (https://explore.transifex.com/xfce/).
commit 69103d9f0d006927f6200990f04f34a49f0e804d
Author: Gaël Bonithon <gael@xfce.org>
Date: Mon Dec 5 21:22:52 2022 +0100
build: Bump requirements for Xfce 4.18
commit 8c0a896e499e7e34c88630aa0f7233f073c4ba71
Author: Anonymous <noreply@xfce.org>
Date: Sat Dec 3 12:46:46 2022 +0100
I18n: Update translation el (99%).
211 translated messages, 1 untranslated message.
Transifex (https://explore.transifex.com/xfce/).
commit d5eb69effd088115f9e7dd7c80513b30c1cfadbd
Author: Anonymous <noreply@xfce.org>
Date: Thu Dec 1 12:47:20 2022 +0100
I18n: Update translation tr (100%).
212 translated messages.
Transifex (https://explore.transifex.com/xfce/).
commit f251492112aa923e378e33bcadec74866e2cfaf6
Author: Alexander Schwinn <alexxcons@xfce.org>
Date: Thu Dec 1 09:25:44 2022 +0100
Back to development
commit 5aad07677dac14cd63ee61c8260accd1fed0b0f0
Author: Alexander Schwinn <alexxcons@xfce.org>
Date: Thu Dec 1 09:24:02 2022 +0100
Updates for release
commit cc9c019226cb6fadbe40648f009e6870d8cc4628
Author: Alexander Schwinn <alexxcons@xfce.org>
Date: Sat Nov 12 21:43:39 2022 +0100
bump copyright year to 2022
commit 4e1e9450e03564d5fa38e4efad032b248deb7ef1
Author: Akbarkhon Variskhanov <akbarkhon.variskhanov@gmail.com>
Date: Wed Nov 9 07:55:23 2022 +0000
autoconf: Use AC_CONFIG_MACRO_DIRS
MR !26
commit bc9bb2569ec9fa2fc7d52783cf14170fd5905e2d
Author: Gaël Bonithon <gael@xfce.org>
Date: Wed Nov 9 07:47:55 2022 +0000
Do not include `config.h` in headers
MR !27
commit 27e4b3792e87d3787e0fe8dcf803da43fc88964f
Author: Alexander Schwinn <alexxcons@xfce.org>
Date: Tue Nov 1 10:26:54 2022 +0100
Back to development
commit f132e4894ee68aa67e561b25e131aaa957c23447
Author: Alexander Schwinn <alexxcons@xfce.org>
Date: Tue Nov 1 10:25:23 2022 +0100
Updates for release
commit af9f89c8498c83c7c8ca2efc7ce97014fe782455
Author: Anonymous <noreply@xfce.org>
Date: Wed Oct 19 00:46:10 2022 +0200
I18n: Update translation pt (100%).
212 translated messages.
Transifex (https://explore.transifex.com/xfce/).
commit c30251afbd271dc92f790970dfab685facde18f5
Author: Anonymous <noreply@xfce.org>
Date: Thu Oct 13 00:46:12 2022 +0200
I18n: Update translation pt (100%).
212 translated messages.
Transifex (https://explore.transifex.com/xfce/).
commit 10429599b84ffd642bc804edafb2d6949f7bf20b
Author: Theo Linkspfeifer <lastonestanding@tutanota.com>
Date: Fri Jul 1 19:37:40 2022 +0000
settings: Revert type hint change
See: https://gitlab.xfce.org/xfce/libxfce4ui/-/issues/26#note_15913
commit 199af6b3ee34704a3688e978013dc35ab170bd98
Author: Anonymous <noreply@xfce.org>
Date: Sat Jun 25 12:49:39 2022 +0200
I18n: Update translation el (99%).
211 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit 97674248098b784cf9cd6900d586d6800f076df5
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Sun Jun 5 22:24:12 2022 +0200
Fix intltool lock file bug in make distcheck
For reference see https://code.launchpad.net/~invidian/intltool/fix-dangling-lock-file/+merge/400825
commit ba117a4dda7dedb935041c991bd76826ea569b4e
Author: Στέργιος Γέμελας <sgemelas@protonmail.com>
Date: Sat Jun 4 12:49:07 2022 +0200
I18n: Update translation el (99%).
211 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit 0f522644f6b2338b1c8db5986c8ebb786c27f741
Author: Anonymous <noreply@xfce.org>
Date: Fri Jun 3 12:49:44 2022 +0200
I18n: Update translation el (99%).
211 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit f98f877e44f54e66b2b0e20c47130c88e84c08a2
Author: Anonymous <noreply@xfce.org>
Date: Fri Jun 3 00:48:03 2022 +0200
I18n: Update translation el (99%).
210 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 34ce89ff15a17bb4be8125ffb2ab1c8637e13f4a
Author: Robert Readman <robert_readman@hotmail.com>
Date: Wed May 11 12:50:24 2022 +0200
I18n: Update translation en_GB (57%).
122 translated messages, 90 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 4b72912a625f3db18332f61c1250af8363b0d430
Author: Anonymous <noreply@xfce.org>
Date: Tue Apr 5 00:49:07 2022 +0200
I18n: Update translation hu (98%).
208 translated messages, 4 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 664731268a7f4859e04171bca94ee653cfdc485f
Author: Anonymous <noreply@xfce.org>
Date: Sun Mar 20 00:48:15 2022 +0100
I18n: Update translation da (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 915e641362c18266d5a1ccda6cbfeaf2dfb7e512
Author: Avinash Sonawane <rootkea@gmail.com>
Date: Tue Aug 10 16:14:04 2021 +0530
`-export-dynamic` is a linker flag
commit 1747e438670483b1ef2a3f77978932454ca728be
Author: Avinash Sonawane <rootkea@gmail.com>
Date: Tue Aug 10 11:57:07 2021 +0530
Free `eggalarm` after its last use
Found by: scan-build
commit 986207c41a09c72cbb8059244d71c219ad8f41a1
Author: Avinash Sonawane <rootkea@gmail.com>
Date: Tue Aug 10 01:26:32 2021 +0530
Fix memory leak and make `while` more efficient
MR !20
commit f194c9fd924ec0db617e49521244d0fdbc82f723
Author: Avinash Sonawane <rootkea@gmail.com>
Date: Tue Aug 10 00:35:08 2021 +0530
Allocate dynamic memory to `what` so that it can be `g_free`d later
Found by: scan-build
commit fcc9bbe3d58265360a47348f42703a359839cda7
Author: Paul Ezvan <paul@ezvan.fr>
Date: Sun Dec 19 17:32:19 2021 +0100
Inhibit DPMS when getting power inhibit request.
commit eb82e5a6aa382e2080a343b286bf37d12ca547bf
Author: Anonymous <noreply@xfce.org>
Date: Thu Jan 6 00:49:03 2022 +0100
I18n: Update translation ro (88%).
187 translated messages, 25 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit b45841445ada6328693e65b8350d6a1d894815d1
Author: Omer I.S <omeritzicschwartz@gmail.com>
Date: Sun Jan 2 12:48:51 2022 +0100
I18n: Update translation he (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit e31818a206a036bea685a047782a4850617c6bba
Author: Anders Jonsson <transifex@norsjovallen.se>
Date: Fri Dec 24 12:48:42 2021 +0100
I18n: Update translation sv (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit db7b9c2b6ba34ca8ba5ff2afc1f87cb37d11a48c
Author: Anonymous <noreply@xfce.org>
Date: Fri Nov 12 00:47:41 2021 +0100
I18n: Update translation oc (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit f37f4ef14e1bbb6d80521c5b26713f234d47ab6e
Author: bebabi34 <bebabi34@tiscali.it>
Date: Fri Oct 1 12:48:11 2021 +0200
I18n: Update translation it (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit d80a2c00d81c87077f0357866884a2ee337f46dd
Author: abuyop <abuyop@gmail.com>
Date: Thu Sep 30 00:48:02 2021 +0200
I18n: Update translation ms (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 7c2c5dd40d8adfdb8bb9774dee74399a2139fd86
Author: Taras Panchenko <top39@ukr.net>
Date: Sat Sep 4 00:47:33 2021 +0200
I18n: Update translation uk (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 276305d5cf261787893f16987031dfadc0e1790e
Author: Στέργιος Γέμελας <sgemelas@protonmail.com>
Date: Fri Sep 3 12:49:46 2021 +0200
I18n: Update translation el (99%).
210 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 79e73f5ab940475670ea6572222440160f3d4749
Author: Baurzhan Muftakhidinov <baurthefirst@gmail.com>
Date: Thu Sep 2 00:47:38 2021 +0200
I18n: Update translation kk (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 651ec1eed9beea23b6c51764b2dc940fc93a488e
Author: Στέργιος Γέμελας <sgemelas@protonmail.com>
Date: Tue Aug 31 00:47:23 2021 +0200
I18n: Update translation el (99%).
210 translated messages, 2 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit c6da3713bfae8b76ae81f6f2b1b13db876c54503
Author: Theo Linkspfeifer <lastonestanding@tutanota.com>
Date: Tue May 4 20:30:06 2021 +0000
Fix icon name in autostart launcher
commit 6cd4dc1a4747e8984b405f6d466995b223d55666
Author: Στέργιος Γέμελας <sgemelas@protonmail.com>
Date: Thu Aug 19 00:47:36 2021 +0200
I18n: Update translation el (96%).
204 translated messages, 8 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 2e5c1ebf609c9defd7cde2cd91c9c311ccc46893
Author: Vahe Safaryan <vahe.safaryan@realschool.am>
Date: Wed Aug 18 12:48:33 2021 +0200
I18n: Update translation hy_AM (97%).
206 translated messages, 6 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 11fd3aafec005968d71cbd8a58007308e5cb3bf3
Author: Triyan W. Nugroho <triyan.wn@gmail.com>
Date: Sun Jul 25 00:46:10 2021 +0200
I18n: Update translation id (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 6b7d76f01e587f96f4207693b6cee442512cdeaa
Author: Toni Estévez <toni.estevez@gmail.com>
Date: Fri Jul 23 15:57:28 2021 +0200
I18n: Update translation es (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 100f4351872041f0721f1d879c1db961a0269a5a
Author: Robert Antoni Buj i Gelonch <rbuj@fedoraproject.org>
Date: Fri Jul 23 15:57:26 2021 +0200
I18n: Update translation ca (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 8e913fec2553c45b5a4a9dcd77dcc6cb5c4c39fa
Author: Anonymous <noreply@xfce.org>
Date: Wed Jul 21 12:46:59 2021 +0200
I18n: Update translation fi (98%).
209 translated messages, 3 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 939192387f331a1f2a42e1c7e5ff17cf06a5a446
Author: AlexanderFilev <avfill@outlook.com>
Date: Tue Jul 20 00:46:38 2021 +0200
I18n: Update translation ru (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit c888e338ab05c0b039dba2bd570f318d585f91ae
Author: Źmicier Turok <nashtlumach@gmail.com>
Date: Mon Jun 21 00:45:57 2021 +0200
I18n: Update translation be (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 1ad07158b473a1b2c24eae900f9eb03f7da68b35
Author: Michael Martins <michaelfm21@gmail.com>
Date: Sun Jun 13 12:46:47 2021 +0200
I18n: Update translation pt_BR (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit b3c507868154fff4d4bc428d840a8de10feaab0c
Author: Anonymous <noreply@xfce.org>
Date: Thu Jun 3 00:46:17 2021 +0200
I18n: Update translation pt_BR (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit ed7812fd9a6d6db6e8b06242c38b837271fb7f0f
Author: Elishai Eliyahu <elishai@mailfence.com>
Date: Sat May 29 00:46:19 2021 +0200
I18n: Update translation he (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 968caac2ed77f205cd579961de1d7497bee30fa2
Author: Dušan Kazik <prescott66@gmail.com>
Date: Fri May 28 12:48:46 2021 +0200
I18n: Update translation sk (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit a10e76f35d8407b881a6dc78abe68636f96e82b9
Author: Arnold Marko <arnold.marko@gmail.com>
Date: Wed May 26 12:47:28 2021 +0200
I18n: Update translation sl (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 5d341c2aaca588c32d83eaca8d92ad8f6e5a2ad0
Author: Theppitak Karoonboonyanan <theppitak@gmail.com>
Date: Wed May 26 00:46:02 2021 +0200
I18n: Update translation th (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit cdbc4e8dab218ca1062cef5f55564c51b4b24594
Author: Arnold Marko <arnold.marko@gmail.com>
Date: Tue May 25 00:46:20 2021 +0200
I18n: Update translation sl (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit e760044118a04eb23429dfb0592364b28e5d927c
Author: Toni Estévez <toni.estevez@gmail.com>
Date: Sun May 23 00:46:50 2021 +0200
I18n: Update translation es (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit b780de52bc44521ccebbde7e0a2dd35b4f9a02d4
Author: Toni Estévez <toni.estevez@gmail.com>
Date: Thu May 20 00:46:29 2021 +0200
I18n: Update translation es (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 15d9ab448a558c33c63871f6858b8412ae857fcb
Author: Emin Tufan Çetin <etcetin@gmail.com>
Date: Wed May 19 12:47:10 2021 +0200
I18n: Update translation tr (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit d6e1c3a03549aeccc40199c9f63af9dd301af4d6
Author: Toni Estévez <toni.estevez@gmail.com>
Date: Fri May 14 00:46:57 2021 +0200
I18n: Update translation es (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit da9c85693d74ae4ccb1f9200273611fbed8c304a
Author: Toni Estévez <toni.estevez@gmail.com>
Date: Sun May 9 12:47:12 2021 +0200
I18n: Update translation es (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 349a8a2e8449577a986badedbcd9065ac756467d
Author: Daniel Muñiz Fontoira <dani@damufo.eu>
Date: Sat May 8 12:46:42 2021 +0200
I18n: Update translation gl (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit c6f9ba41eaede06f1772c858833dc738a4245cf8
Author: Toni Estévez <toni.estevez@gmail.com>
Date: Wed May 5 00:46:10 2021 +0200
I18n: Update translation es (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 768c8cdfb73fea6e8aa1af36e49cb5f0906ad6c6
Author: Luna Jernberg <bittin@cafe8bitar.se>
Date: Mon May 3 12:47:35 2021 +0200
I18n: Update translation sv (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 08ace3532ab9c23d48f5b0f99166ea0afc0e4fbb
Author: Toni Estévez <toni.estevez@gmail.com>
Date: Sat May 1 12:46:56 2021 +0200
I18n: Update translation es (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit e71df33674acbf8315d7d1a0f9d72ea0dc14a64a
Author: Anonymous <noreply@xfce.org>
Date: Fri Apr 30 12:47:12 2021 +0200
I18n: Update translation ar (85%).
182 translated messages, 30 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 2dbcf7cc973918d9a722bc0c93f79a12c3f24cf7
Author: Anonymous <noreply@xfce.org>
Date: Thu Apr 29 00:46:20 2021 +0200
I18n: Update translation da (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit dbbe8edf3a016c28899f8bd0149cdbf492e52df6
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Tue Apr 27 11:49:21 2021 +0200
panel-plugin: Switch percentage and time
Make the string more consistent with what we have in the plugin's menu
and what the name of the option suggests (first percentage, then
remaining time).
See also !17 and #128
commit 39e518e6bfd5305434d3205041ddff2060ac067c
Author: heskjestad <cato@heskjestad.xyz>
Date: Fri Apr 23 00:55:47 2021 +0200
I18n: Update translation nb (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 7bcae387067e82244a7ecdab0635d824eb438be2
Author: Toni Estévez <toni.estevez@gmail.com>
Date: Fri Apr 23 00:55:44 2021 +0200
I18n: Update translation es (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit b8e1eea3c1c29b4a2675ac30017d26f6e055ed49
Author: Robert Antoni Buj Gelonch <rbuj@fedoraproject.org>
Date: Fri Apr 23 00:55:44 2021 +0200
I18n: Update translation ca (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 7d17119ecba1412009e97bc2bfe99e16c11b6abe
Author: jc1 <jc1.quebecos@gmail.com>
Date: Thu Apr 22 12:56:57 2021 +0200
I18n: Update translation fr (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit f4f465f46abd757f713c23dc59644d88dcb80fe2
Author: 黃柏諺 <s8321414@gmail.com>
Date: Thu Apr 22 10:15:01 2021 +0200
I18n: Update translation zh_TW (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 355fb4b5ca20b246299a81f61c664c4e8dc42162
Author: Xfce Bot <transifex@xfce.org>
Date: Thu Apr 22 10:15:00 2021 +0200
I18n: Update translation zh_HK (58%).
123 translated messages, 89 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit f91e75af6a5e3efd7d518936db31ce1c3fe0e5e7
Author: 玉堂白鹤 <yjwork@qq.com>
Date: Thu Apr 22 10:15:00 2021 +0200
I18n: Update translation zh_CN (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit a6758d8f0b80f55049e69b979c5406e2a6058ae6
Author: Xfce Bot <transifex@xfce.org>
Date: Thu Apr 22 10:15:00 2021 +0200
I18n: Update translation vi (55%).
117 translated messages, 95 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit c4ecd7d98e08aab99ca3f35160dc110857ad807d
Author: Xfce Bot <transifex@xfce.org>
Date: Thu Apr 22 10:15:00 2021 +0200
I18n: Update translation uk (97%).
207 translated messages, 5 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit e3c230145a3c581dff204c90defc01d6305f7952
Author: Xfce Bot <transifex@xfce.org>
Date: Thu Apr 22 10:15:00 2021 +0200
I18n: Update translation ug (55%).
117 translated messages, 95 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 66109fb43a85da60e5b4464d915753a724e45643
Author: Xfce Bot <transifex@xfce.org>
Date: Thu Apr 22 10:15:00 2021 +0200
I18n: Update translation tr (97%).
207 translated messages, 5 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit f12466c9c1557f43afb88b2c917ede3d91ede861
Author: Xfce Bot <transifex@xfce.org>
Date: Thu Apr 22 10:14:59 2021 +0200
I18n: Update translation th (93%).
199 translated messages, 13 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 2af6dfce9b5388761b39fc670e72b8a163c7c752
Author: Xfce Bot <transifex@xfce.org>
Date: Thu Apr 22 10:14:59 2021 +0200
I18n: Update translation te (56%).
120 translated messages, 92 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit c9bc0204dde4c17630ee5a7c85de5aec7f218ca3
Author: Luna Jernberg <bittin@cafe8bitar.se>
Date: Thu Apr 22 10:14:59 2021 +0200
I18n: Update translation sv (98%).
209 translated messages, 3 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 3a3339b560cf6208d05db8d0077e116c9c09d7dd
Author: Besnik Bleta <besnik@programeshqip.org>
Date: Thu Apr 22 10:14:59 2021 +0200
I18n: Update translation sq (99%).
211 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit 5d5f4dee0425bbb62f3ba7df73d325259cc810b8
Author: Xfce Bot <transifex@xfce.org>
Date: Thu Apr 22 10:14:59 2021 +0200
I18n: Update translation sl (97%).
207 translated messages, 5 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 4124cd8aa2aaa953824655e8f5038130e13ca35e
Author: Xfce Bot <transifex@xfce.org>
Date: Thu Apr 22 10:14:59 2021 +0200
I18n: Update translation sk (97%).
207 translated messages, 5 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit a51245133eaecac31ef738cbf860e3d86fbe3e67
Author: Xfce Bot <transifex@xfce.org>
Date: Thu Apr 22 10:14:59 2021 +0200
I18n: Update translation ru (97%).
207 translated messages, 5 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 578a66bcf4684c05d7d0b4f5ce7a97e1b563bff5
Author: Xfce Bot <transifex@xfce.org>
Date: Thu Apr 22 10:14:59 2021 +0200
I18n: Update translation ro (83%).
177 translated messages, 35 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit c8ef36b1eeb962f38de908f17bbe1d08f787e449
Author: Xfce Bot <transifex@xfce.org>
Date: Thu Apr 22 10:14:58 2021 +0200
I18n: Update translation pt_BR (97%).
207 translated messages, 5 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 7c41f0bfd2b10c0536f5ce391276a4b39cf54d76
Author: Anonymous <noreply@xfce.org>
Date: Thu Apr 22 10:14:58 2021 +0200
I18n: Update translation pl (100%).
212 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 6eb5a861d7912450da92e575e33cbd97626e023e