-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathChangeLog
More file actions
15707 lines (10051 loc) · 575 KB
/
ChangeLog
File metadata and controls
15707 lines (10051 loc) · 575 KB
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 82c5cc88edd58c7a21138f0b1833ceaf7ad40d3a
Author: Demiray Muhterem <mdemiray@msn.com>
Date: Sat Aug 6 12:53:21 2022 +0200
I18n: Update translation tr (100%).
157 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 2988721f8d0ceb9beadb96dd0fec4642e0e6f57f
Author: Luna Jernberg <bittin@cafe8bitar.se>
Date: Wed Aug 3 12:52:48 2022 +0200
I18n: Update translation sv (99%).
156 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit 3b4a9a80eab03251abb898b315ab347fc12db80d
Author: Elishai Eliyahu <elishai@mailfence.com>
Date: Sun Jul 31 00:51:24 2022 +0200
I18n: Update translation he (100%).
157 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit a5700a0566c393b2f820a378d73dbc1053b7999a
Author: 玉堂白鹤 <yjwork@qq.com>
Date: Mon Jul 25 12:52:34 2022 +0200
I18n: Update translation zh_CN (100%).
157 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 802cf628a15bd1518b3131dd20cdca5ae305c4f2
Author: jc1 <jc1.quebecos@gmail.com>
Date: Sat Jul 23 12:52:46 2022 +0200
I18n: Update translation fr (100%).
157 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit dc082438ede2e4afb0989d043de7648ba7ec4bd0
Author: Anonymous <noreply@xfce.org>
Date: Thu Jul 21 12:53:43 2022 +0200
I18n: Update translation ru (100%).
157 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 3c18170c31fb1968f0250d875bbcbd038daddfd8
Author: Саша Петровић <salepetronije@gmail.com>
Date: Tue Jul 19 00:52:09 2022 +0200
I18n: Update translation sr (100%).
157 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 23e01e88c876128dac4390b428a3477e4b4a84d0
Author: Toni Estévez <toni.estevez@gmail.com>
Date: Tue Jul 19 00:52:09 2022 +0200
I18n: Update translation es (100%).
157 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 5431120ccbaf72aed115f68053006f3a9e76cc8c
Author: heskjestad <cato@heskjestad.xyz>
Date: Sun Jul 17 00:51:15 2022 +0200
I18n: Update translation nb (100%).
157 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 8d866f79ec8616bccd6d3b91b94ea2986b459d89
Author: Besnik Bleta <besnik@programeshqip.org>
Date: Sat Jul 16 12:52:39 2022 +0200
I18n: Update translation sq (100%).
157 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 9f0c986d3bb640195db28a3310d98c33810eb7ea
Author: UTUMI Hirosi <utuhiro78@yahoo.co.jp>
Date: Sat Jul 16 12:52:38 2022 +0200
I18n: Update translation ja (100%).
157 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 04be27a7a24f2ec104dbb51d6b815b2e57444d0b
Author: Hugo Carvalho <hugokarvalho@hotmail.com>
Date: Sat Jul 16 00:51:43 2022 +0200
I18n: Update translation pt (100%).
157 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit a17559b329b73a259bece8877d89fbcff5b6696c
Author: Anonymous <noreply@xfce.org>
Date: Sat Jul 16 00:51:43 2022 +0200
I18n: Update translation pl (100%).
157 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit d1e38c48678e3f24dbc92237a2bd7562db0c82eb
Author: Pjotr <pjotrvertaalt@gmail.com>
Date: Sat Jul 16 00:51:43 2022 +0200
I18n: Update translation nl (100%).
157 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit eb87f6948a0083e07ed877cdf1a245c96756665d
Author: Emanuele Petriglia <transifex@emanuelepetriglia.com>
Date: Sat Jul 16 00:51:43 2022 +0200
I18n: Update translation it (100%).
157 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit d498ae675a919726057fd8ddabb085bbbe2f74ad
Author: Anonymous <noreply@xfce.org>
Date: Sat Jul 16 00:51:43 2022 +0200
I18n: Update translation de (100%).
157 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 18c2f1096407a41e3df2572838ad8a503fd38444
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date: Sat Jul 16 00:51:43 2022 +0200
I18n: Update translation bg (100%).
157 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 6de2f7cdf07ddc3cf784a8738a03bee6037a47a6
Author: Stephan Haller <nomad@froevel.de>
Date: Fri Jul 15 10:13:57 2022 +0200
Post-release version bump to 0.9.92
commit f3007900711119a3bf0ac2264bc45617ac23836c
Author: Stephan Haller <nomad@froevel.de>
Date: Fri Jul 15 10:11:19 2022 +0200
Bump version to 0.9.91
commit 121b9b75093ef9e09ba126b4518ffe69f695180a
Author: Stephan Haller <nomad@froevel.de>
Date: Fri Jul 15 10:07:37 2022 +0200
Update AppData
commit 9b06c4469e779b19a48b9dc798727d2f0b05d4b3
Merge: 9147e44 5821a16
Author: Stephan Haller <nomad@froevel.de>
Date: Thu Jul 14 10:20:25 2022 +0200
Merge branch 'master' of ssh://gitlab.xfce.org/apps/xfdashboard
commit 9147e44f4268d37fee423589ae4932e8de16f97f
Author: Stephan Haller <nomad@froevel.de>
Date: Thu Jul 14 10:17:46 2022 +0200
Added new action signals which can be used at key bindings to add and/or remove CSS classes at run-time at stylable actors. Therefore action signals (usuable by key bindings) can now be detailed and need to specified at key bindings in format "action::detail".
Implements request from #16
commit 5821a1652d32281e4357e46a6686301231cd749b
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Tue Jul 12 18:06:32 2022 +0200
Fix previous commit
commit 1a8e73509d3233f3ad2be9a19d7694aef14e6f5e
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Tue Jul 12 14:53:47 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 551a69032d417c8c01977a26fde6c7b158be7bc2
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date: Tue Jul 12 12:53:34 2022 +0200
I18n: Update translation ko (96%).
150 translated messages, 6 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit c79a4cde9eb8d8688bba47a63b7b20738019db7f
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date: Tue Jul 5 00:51:47 2022 +0200
I18n: Update translation ko (95%).
149 translated messages, 7 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 30fe6238d2325143acaa7e230d20726ed3d68dc6
Author: Stephan Haller <nomad@froevel.de>
Date: Fri Jun 17 08:03:44 2022 +0200
Switch to workspace of window when activated via a pop-up menu item
Fixes issue #15
commit b86ed5e4a4ec05e96d2a08bf6653c5b9eb3fbf68
Author: Stephan Haller <nomad@froevel.de>
Date: Fri Jun 17 07:55:05 2022 +0200
Fix allocation for quicklaunch with horizontal orientation. Thanks to michal4132 for the hint where to look at ;)
Fixes issue #2
commit 56433d8cb54a4eabbf3eb1e673414306bc0b5e3d
Merge: 8f7bf4a fd9600d
Author: Stephan Haller <nomad@froevel.de>
Date: Wed May 11 12:28:38 2022 +0200
Merge branch 'master' of ssh://gitlab.xfce.org/apps/xfdashboard
commit 8f7bf4ad10a66fb4bbca1345b88f4351d9258b4f
Author: Stephan Haller <nomad@froevel.de>
Date: Wed May 11 12:24:57 2022 +0200
Fix back button not working in (virtual) sub-menu "all applications" at root menu section.
We have to force the signal emission of "filter-changed" signal at application menu model (XfdashboardApplicationsMenuModel) as the problem is that the "all applications" menu can only be entered from root section and it is a virtual menu where the applications menu model is not involved at all. So setting the section back to root section again by calling the model's filtering function xfdashboard_applications_menu_model_filter_by_section() with NULL parameter will not emit this signal as nothing changes.
This fixes issue #21
commit fd9600d66c703dd7b02c50d920685bc76bc1ea1a
Author: Anonymous <noreply@xfce.org>
Date: Mon May 2 00:51:47 2022 +0200
I18n: Update translation ru (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit c9ca93ce7ebd1a0ead052a87632655d2c6065163
Author: Elishai Eliyahu <elishai@mailfence.com>
Date: Tue Apr 26 00:52:00 2022 +0200
I18n: Update translation he (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 903a21411901deed5a8d450a74f573fbca1a8c35
Author: Anonymous <noreply@xfce.org>
Date: Sun Apr 17 12:54:03 2022 +0200
I18n: Update translation ru (96%).
151 translated messages, 5 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit fd10ac039c8b0581ee98ed9b44a0ccc3fbd02852
Author: Anders Jonsson <transifex@norsjovallen.se>
Date: Sun Apr 17 00:52:11 2022 +0200
I18n: Update translation sv (99%).
155 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit 82131e8e0e7a2afa3679a2bb085cb3b21e92d173
Author: Anonymous <noreply@xfce.org>
Date: Fri Apr 15 12:53:24 2022 +0200
I18n: Update translation it (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 21cc11e9d59982e3426938aa3d682da7bdc21947
Author: Anonymous <noreply@xfce.org>
Date: Mon Apr 11 12:54:52 2022 +0200
I18n: Update translation ru (95%).
149 translated messages, 7 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit af1014fe834996f8980672205f1dde9d91a79e6e
Author: Anonymous <noreply@xfce.org>
Date: Thu Apr 7 00:52:16 2022 +0200
I18n: Update translation ru (92%).
145 translated messages, 11 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 720c85605a92f5a704bdfbfb7b02df245c160d57
Author: Саша Петровић <salepetronije@gmail.com>
Date: Mon Apr 4 00:51:48 2022 +0200
I18n: Update translation sr (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit fd11c88afc2fea05edeba5c1a57ad8b6c423e836
Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Date: Sat Apr 2 12:52:25 2022 +0200
I18n: Update translation ja (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 5705c2ce2e9e1a15409c15ab3bdffaae8de6cca3
Author: 玉堂白鹤 <yjwork@qq.com>
Date: Fri Apr 1 12:53:36 2022 +0200
I18n: Update translation zh_CN (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 2f7ff36bcccf1a229b7089df4544b5356e94c989
Author: Emin Tufan Çetin <etcetin@gmail.com>
Date: Fri Apr 1 00:52:11 2022 +0200
I18n: Update translation tr (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit f8e1082fae8da6c3edee5383abe4a5d0b850470e
Merge: 552e1d5 696864b
Author: Stephan Haller <nomad@froevel.de>
Date: Wed Mar 30 09:34:20 2022 +0200
Merge branch 'master' of ssh://gitlab.xfce.org/apps/xfdashboard
commit 552e1d536e0073718ea9cdee382f8cec3434a916
Author: Stephan Haller <nomad@froevel.de>
Date: Wed Mar 30 09:28:11 2022 +0200
Do not iterate through properties if we got no property at all from xfconf
commit 696864b4c067b708bcf9ccbe2a6c25b5127d0f89
Author: Martin Srebotnjak <miles@filmsi.net>
Date: Sun Mar 27 00:51:30 2022 +0100
I18n: Update translation sl (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit b86e0a10511fb45cb920ee78e685c8b3eef92e78
Author: jc1 <jc1.quebecos@gmail.com>
Date: Sun Mar 20 00:51:58 2022 +0100
I18n: Update translation fr (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 7358fe63fa5a0b3653203881195b8238c8e8c2d1
Author: Toni Estévez <toni.estevez@gmail.com>
Date: Sun Mar 20 00:51:57 2022 +0100
I18n: Update translation es (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 74a57cab12c6562bde0b4dfb8ab74458c2132ad8
Author: Anonymous <noreply@xfce.org>
Date: Sun Mar 20 00:51:57 2022 +0100
I18n: Update translation da (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit ed248697fbab8183bcd7478aef3801c53776a203
Author: Anonymous <noreply@xfce.org>
Date: Sat Mar 19 00:51:07 2022 +0100
I18n: Update translation lt (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 471fbd22db8e4a2c37cb1900c1c4aa444b03e8a9
Author: UTUMI Hirosi <utuhiro78@yahoo.co.jp>
Date: Sat Mar 19 00:51:07 2022 +0100
I18n: Update translation ja (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit e41e082125d1fdace9f749433082a9eadad1b5f3
Author: Andreas Eitel <github-aneitel@online.de>
Date: Sat Mar 19 00:51:06 2022 +0100
I18n: Update translation de (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit c73ed4abc89ce494fc38b4fe7dfa4a89b40e006a
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date: Sat Mar 19 00:51:06 2022 +0100
I18n: Update translation bg (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 950185cf46ee4584b2ee3ffdb1588e9941311586
Author: 玉堂白鹤 <yjwork@qq.com>
Date: Fri Mar 18 00:51:45 2022 +0100
I18n: Update translation zh_CN (99%).
155 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit e50dc621820e69a7ac612a344f4aa7d96932f769
Author: Demiray Muhterem <mdemiray@msn.com>
Date: Fri Mar 18 00:51:45 2022 +0100
I18n: Update translation tr (99%).
155 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit 275745ceb7b5f7b4ccf2e6471c41830ed704f5e9
Author: Саша Петровић <salepetronije@gmail.com>
Date: Fri Mar 18 00:51:45 2022 +0100
I18n: Update translation sr (99%).
155 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit 7c09bcaaf028af05b6d6be5fee60210020bce6d9
Author: Besnik Bleta <besnik@programeshqip.org>
Date: Fri Mar 18 00:51:45 2022 +0100
I18n: Update translation sq (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 06bd07d18809c2f7a469a7d099a3206ea1cd61ac
Author: Hugo Carvalho <hugokarvalho@hotmail.com>
Date: Fri Mar 18 00:51:45 2022 +0100
I18n: Update translation pt (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 14c41e45364616969518392087a289866d3d9257
Author: Anonymous <noreply@xfce.org>
Date: Fri Mar 18 00:51:45 2022 +0100
I18n: Update translation pl (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit fcd01ef6a364655e68f49820338a695e342ac120
Author: Pjotr <pjotrvertaalt@gmail.com>
Date: Fri Mar 18 00:51:44 2022 +0100
I18n: Update translation nl (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 6cd56e8f6508516349f86a3e92281584394912ee
Author: heskjestad <cato@heskjestad.xyz>
Date: Fri Mar 18 00:51:44 2022 +0100
I18n: Update translation nb (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit ca1205ba82ff3ec1655d155cdedf6e20e8be52f9
Author: Anonymous <noreply@xfce.org>
Date: Fri Mar 18 00:51:44 2022 +0100
I18n: Update translation lt (99%).
155 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit 49edbdbde5832489b4da61b1e2cb87f0ff8d18fc
Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Date: Fri Mar 18 00:51:44 2022 +0100
I18n: Update translation ja (99%).
155 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit 74856a5fd7f69006493a27726a079142cfd21d3f
Author: Triyan W. Nugroho <triyan.wn@gmail.com>
Date: Fri Mar 18 00:51:44 2022 +0100
I18n: Update translation id (99%).
155 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit 2487d06e33f1b78078637c0744d1741490a306b3
Author: jc1 <jc1.quebecos@gmail.com>
Date: Fri Mar 18 00:51:44 2022 +0100
I18n: Update translation fr (99%).
155 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit 5c8a921c7875c87d6c30630a5d684f32773f5559
Author: Toni Estévez <toni.estevez@gmail.com>
Date: Fri Mar 18 00:51:43 2022 +0100
I18n: Update translation es (99%).
155 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit 404dc274f3838614ef08c1203a89841c3501c244
Author: Andreas Eitel <github-aneitel@online.de>
Date: Fri Mar 18 00:51:43 2022 +0100
I18n: Update translation de (99%).
155 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit 428df314b119280986e96c451b620b32e4435d1c
Author: Kiril Kirilov <cybercop_montana@abv.bg>
Date: Fri Mar 18 00:51:43 2022 +0100
I18n: Update translation bg (99%).
155 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit 10b78fd46a1566d349adefed1ab39f445dd5e7c6
Author: scootergrisen <scootergrisen@gmail.com>
Date: Wed Mar 16 23:55:29 2022 +0000
Add missing space in "anew"
commit 613aad655d0748ef8538d7e5e7613fb68a7e9654
Author: Faisal Rachmadin <frachmadin@gmail.com>
Date: Thu Mar 17 00:54:22 2022 +0100
I18n: Update translation id (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit f7d00575f5bfca79e447f974388b2281f417f60f
Author: Ápo <apostolos.papadimitriu@gmail.com>
Date: Thu Mar 17 00:54:22 2022 +0100
I18n: Update translation el (68%).
107 translated messages, 49 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 2490ff3e2ad57b945fd16f48cfbcaf9025658c63
Author: Hugo Carvalho <hugokarvalho@hotmail.com>
Date: Wed Mar 16 00:52:47 2022 +0100
I18n: Update translation pt (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 2488a68e4fac000c1a76b6f9717c9eb89274176a
Author: Anonymous <noreply@xfce.org>
Date: Sat Mar 12 12:53:54 2022 +0100
I18n: Update translation ru (91%).
143 translated messages, 13 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 7b3acec791db7f5f234583c054b5b5614479e1ca
Author: 玉堂白鹤 <yjwork@qq.com>
Date: Thu Mar 10 12:52:53 2022 +0100
I18n: Update translation zh_CN (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit b6993e7dab02638adfcad4f96d2fa5b5f3ded1ee
Author: UTUMI Hirosi <utuhiro78@yahoo.co.jp>
Date: Wed Mar 9 00:51:48 2022 +0100
I18n: Update translation ja (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 1dceedc86ccd3b521be03b87cc7c975ac2b5db85
Author: Demiray Muhterem <mdemiray@msn.com>
Date: Mon Mar 7 12:52:49 2022 +0100
I18n: Update translation tr (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 4b34b37848eb2a24b39e0bd3eed887672ef0cc43
Author: Anonymous <noreply@xfce.org>
Date: Mon Mar 7 12:52:49 2022 +0100
I18n: Update translation lt (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit bed5682ae523e404223440ee54d7747fa86da4eb
Author: heskjestad <cato@heskjestad.xyz>
Date: Sun Mar 6 00:51:34 2022 +0100
I18n: Update translation nb (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 1114ee8ec3823376789225d510c6a1c08488479d
Author: jc1 <jc1.quebecos@gmail.com>
Date: Sun Mar 6 00:51:34 2022 +0100
I18n: Update translation fr (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 02c42c2086256a76158c5f9ee9a22c4df0287144
Author: Besnik Bleta <besnik@programeshqip.org>
Date: Sat Mar 5 12:52:15 2022 +0100
I18n: Update translation sq (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit c23b901d2b41eb0be64cd18d6c3e996a2ea2fea3
Author: Toni Estévez <toni.estevez@gmail.com>
Date: Sat Mar 5 12:52:15 2022 +0100
I18n: Update translation es (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 1df72006eeab0a12a009cac47f94704704cffac3
Author: Andreas Eitel <github-aneitel@online.de>
Date: Sat Mar 5 12:52:15 2022 +0100
I18n: Update translation de (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 20973fecc515b7c1f9c1420dbbed5158cbc7c876
Author: 玉堂白鹤 <yjwork@qq.com>
Date: Sat Mar 5 00:51:58 2022 +0100
I18n: Update translation zh_CN (99%).
155 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit 966090cd2e2f5679898f0c2b26c9c2474fcbabcb
Author: Demiray Muhterem <mdemiray@msn.com>
Date: Sat Mar 5 00:51:58 2022 +0100
I18n: Update translation tr (99%).
155 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit 34715df4a3585a80d189eb16f8a29f4abbaa5a72
Author: Luna Jernberg <bittin@cafe8bitar.se>
Date: Sat Mar 5 00:51:58 2022 +0100
I18n: Update translation sv (99%).
155 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit dbb1933e51040306ed0f3929b376386bda292786
Author: Саша Петровић <salepetronije@gmail.com>
Date: Sat Mar 5 00:51:58 2022 +0100
I18n: Update translation sr (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 11d48877162f5510ad9b970b7c2e63776911129b
Author: Besnik Bleta <besnik@programeshqip.org>
Date: Sat Mar 5 00:51:58 2022 +0100
I18n: Update translation sq (99%).
155 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit b84ab8995d786aae54887a59d839b1b7beb55269
Author: Arnold Marko <arnold.marko@gmail.com>
Date: Sat Mar 5 00:51:57 2022 +0100
I18n: Update translation sl (99%).
155 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit 4653fd4da235bb2690f5d39f8063b643bb119034
Author: Anonymous <noreply@xfce.org>
Date: Sat Mar 5 00:51:57 2022 +0100
I18n: Update translation ru (91%).
142 translated messages, 14 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit ba2debb0adba80526d0162f60388af44b24f9055
Author: Hugo Carvalho <hugokarvalho@hotmail.com>
Date: Sat Mar 5 00:51:57 2022 +0100
I18n: Update translation pt (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 5d2efa6645715b3114112abf9b6758d86edc1fb4
Author: Anonymous <noreply@xfce.org>
Date: Sat Mar 5 00:51:57 2022 +0100
I18n: Update translation pt_BR (98%).
153 translated messages, 3 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 291a48f2f9aa522e040e3c83eb3cdc4d5716bd33
Author: Anonymous <noreply@xfce.org>
Date: Sat Mar 5 00:51:57 2022 +0100
I18n: Update translation pl (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 0dab4baf90abfdd2e5c307eceb0a2c2fc8bca884
Author: Pjotr <pjotrvertaalt@gmail.com>
Date: Sat Mar 5 00:51:57 2022 +0100
I18n: Update translation nl (100%).
156 translated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit d184a7ed294983ce9e2bead85af9eb24ee9a8cec
Author: heskjestad <cato@heskjestad.xyz>
Date: Sat Mar 5 00:51:57 2022 +0100
I18n: Update translation nb (99%).
155 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit 87b3094057f57ceae8311fd83adfbe29ad9049bc
Author: Anonymous <noreply@xfce.org>
Date: Sat Mar 5 00:51:56 2022 +0100
I18n: Update translation lt (99%).
155 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit e1ca5cff1f651ddd4d4a0f53e80849d7787f3e93
Author: Seong-ho Cho <darkcircle.0426@gmail.com>
Date: Sat Mar 5 00:51:56 2022 +0100
I18n: Update translation ko (90%).
141 translated messages, 15 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 1af80b910fdb56137b27f89b102142da999244eb
Author: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Date: Sat Mar 5 00:51:56 2022 +0100
I18n: Update translation ja (99%).
155 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit 2bfb61396920393bce237e64f624e5db871e87a2
Author: Anonymous <noreply@xfce.org>
Date: Sat Mar 5 00:51:56 2022 +0100
I18n: Update translation it (99%).
155 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit 9d02e8096194ff59be4e408954f261ab6ca40f2c
Author: Triyan W. Nugroho <triyan.wn@gmail.com>
Date: Sat Mar 5 00:51:56 2022 +0100
I18n: Update translation id (99%).
155 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit 91d0dc7b7700ad9f186e8f3a7d85f899607d61e5
Author: Elishai Eliyahu <elishai@mailfence.com>
Date: Sat Mar 5 00:51:56 2022 +0100
I18n: Update translation he (99%).
155 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit b382f1496d75348dbd63a632dfe43942c955d210
Author: Daniel Muñiz Fontoira <dani@damufo.eu>
Date: Sat Mar 5 00:51:56 2022 +0100
I18n: Update translation gl (98%).
153 translated messages, 3 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit bc99337273e93aa37449b1003afff8f8f004ea0b
Author: jc1 <jc1.quebecos@gmail.com>
Date: Sat Mar 5 00:51:55 2022 +0100
I18n: Update translation fr (99%).
155 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit 600213e1dd176685cfdf07828d64b0ebb68b9ba5
Author: Anonymous <noreply@xfce.org>
Date: Sat Mar 5 00:51:55 2022 +0100
I18n: Update translation eu (99%).
155 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit aca3b61b8e86b4c87a7ab2f90fc5278597201421
Author: Priit Jõerüüt <transifex@joeruut.com>
Date: Sat Mar 5 00:51:55 2022 +0100
I18n: Update translation et (71%).
111 translated messages, 45 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit daf11bf1ce5a0925ee37e12ae10af44f2c30cfaa
Author: Toni Estévez <toni.estevez@gmail.com>
Date: Sat Mar 5 00:51:55 2022 +0100
I18n: Update translation es (99%).
155 translated messages, 1 untranslated message.
Transifex (https://www.transifex.com/xfce/public/).
commit a2e6a1377d2a65d580031ee006a3d6802dcba5a9
Author: Nick Schermer <nick@xfce.org>
Date: Sat Mar 5 00:51:55 2022 +0100
I18n: Update translation el (59%).
93 translated messages, 63 untranslated messages.
Transifex (https://www.transifex.com/xfce/public/).
commit 3a31eeeeb6f0e6b2eae4dcfaf41b9370b767a426