Newer
Older
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 35f51c507c3ffc0bdf59b85da28dd7cba512f0bf
Author: Pjotr Anon <pliniusminor@gmail.com>
Date: Thu Jul 21 16:56:28 2011 +0200
l10n: Updated Dutch (Flemish) (nl) translation to 100%
New status: 73 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 56dcd1e724ed35e9936ec57b0017a1b1b70c3c83
Author: محمد الحرقان <malham1@gmail.com>
Date: Sat Jul 2 08:26:44 2011 +0200
l10n: Updated Arabic (ar) translation to 100%
New status: 80 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit b894e73dcc55d893750ad5811467d2ed3aad5391
Author: محمد الحرقان <malham1@gmail.com>
Date: Sat Jul 2 08:23:46 2011 +0200
l10n: Updated Arabic (ar) translation to 93%
New status: 75 messages complete with 5 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 1e2609d4af2643051ed6b2507c6b75c06de4f133
Author: محمد الحرقان <malham1@gmail.com>
Date: Sat Jul 2 08:17:11 2011 +0200
l10n: Updated Arabic (ar) translation to 65%
New status: 52 messages complete with 28 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit c35eab2ece78a6844194bb0c80547b5093f2a720
Author: محمد الحرقان <malham1@gmail.com>
Date: Fri Jul 1 23:37:23 2011 +0200
l10n: Updated Arabic (ar) translation to 65%
New status: 52 messages complete with 0 fuzzies and 28 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit cfa7ed48e57b82409e449a668cd7b575909de96e
Author: محمد الحرقان <malham1@gmail.com>
Date: Fri Jul 1 20:46:13 2011 +0200
l10n: Updated Arabic (ar) translation to 41%
New status: 33 messages complete with 19 fuzzies and 28 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 28c080b15f4ddfe5938daa56b76fe5b35025a378
Author: محمد الحرقان <malham1@gmail.com>
Date: Fri Jul 1 17:47:21 2011 +0200
l10n: Updated Arabic (ar) translation to 40%
New status: 32 messages complete with 20 fuzzies and 28 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit a89dad0d96057c95e4198f5f8b07eaabfe3b8680
Author: محمد الحرقان <malham1@gmail.com>
Date: Thu Jun 30 14:19:33 2011 +0200
l10n: Updated Arabic (ar) translation to 38%
New status: 31 messages complete with 0 fuzzies and 49 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 544d0e9d7adb77834b7952f31088ec7ebf7c1350
Author: محمد الحرقان <malham1@gmail.com>
Date: Thu Jun 30 14:18:50 2011 +0200
l10n: Updated Arabic (ar) translation to 35%
New status: 28 messages complete with 3 fuzzies and 49 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit e405b4589370195682b85ae3aa7ba96af3db17ed
Author: Jérôme Guelfucci <jeromeg@xfce.org>
Date: Wed Jun 29 22:16:12 2011 +0200
Update NEWS file.
commit f87a088396aac5d4ccac3a16ec1549472f4030df
Author: Jérôme Guelfucci <jeromeg@xfce.org>
Date: Wed Jun 29 22:14:07 2011 +0200
Fix BBCode, it cannot contain new lines and spaces.
Reported by Andrey.
commit 241b1b36ed7e13296237202e85f1b718aca10d6b
Author: كريم أولاد الشلحة <herr.linux88@gmail.com>
Date: Wed Jun 29 00:01:46 2011 +0200
l10n: Arabic Docs Translation
New status: 14 messages complete with 0 fuzzies and 66 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 51da83d19c8d7986d7a3643f5d5070c4b3917726
Author: محمد الحرقان <malham1@gmail.com>
Date: Mon Jun 27 22:48:35 2011 +0200
l10n: Updated Arabic (ar) translation to 100%
New status: 73 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 57c886b433109239855070bcdd9274d1adcedee6
Author: محمد الحرقان <malham1@gmail.com>
Date: Mon Jun 27 22:47:28 2011 +0200
l10n: Updated Arabic (ar) translation to 76%
New status: 56 messages complete with 17 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 11d0029e75f70a35bb307dcf9c4b22be9791adbc
Author: محمد الحرقان <malham1@gmail.com>
Date: Mon Jun 27 22:46:33 2011 +0200
l10n: Updated Arabic (ar) translation to 42%
New status: 31 messages complete with 42 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 3ff01366111b5028bb6ca23ad77aafa85a3bf60d
Author: محمد الحرقان <malham1@gmail.com>
Date: Mon Jun 27 22:45:28 2011 +0200
l10n: Updated Arabic (ar) translation to 12%
New status: 9 messages complete with 64 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit deffb470f37d544a52598391a2db998eaa1f1312
Author: محمد الحرقان <malham1@gmail.com>
Date: Sat Jun 25 20:28:31 2011 +0200
l10n: Updated Arabic (ar) translation to 12%
New status: 9 messages complete with 0 fuzzies and 64 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 59e8f9e2fc4901b2d96b5553cdf33866c7643500
Author: Pjotr Anon <pliniusminor@gmail.com>
Date: Thu Jun 16 17:39:08 2011 +0200
l10n: Updated Dutch (Flemish) (nl) translation to 100%
New status: 73 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit d3a3be45463de00059a8194756b507a44afbf77b
Author: Pjotr Anon <pliniusminor@gmail.com>
Date: Thu Jun 16 13:23:30 2011 +0200
l10n: Updated Dutch (Flemish) (nl) translation to 100%
New status: 73 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 3fb7f78d2313dd6abc91f46b38dc06fc3237c847
Author: Ivica Kolić <ikoli@yahoo.com>
Date: Wed Jun 15 00:22:44 2011 +0200
l10n: Updated Croatian (hr) translation to 67%
New status: 49 messages complete with 0 fuzzies and 24 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 8c46cd4647c0c890a04769d536aa654dc0c05223
Author: Pjotr Anon <pliniusminor@gmail.com>
Date: Fri May 27 16:19:55 2011 +0200
l10n: Updated Dutch (Flemish) (nl) translation to 100%
New status: 73 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit be3923459764d298d18719218794523088767b35
Author: Pjotr Anon <pliniusminor@gmail.com>
Date: Thu May 26 15:29:41 2011 +0200
l10n: Updated Dutch (Flemish) (nl) translation to 100%
New status: 73 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 06d28cdd08283a9f53912a865561d3fe07c80f26
Author: Sérgio Cipolla <secipolla@gmail.com>
Date: Thu May 26 12:28:58 2011 +0200
l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
New status: 73 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 22c70babbbb79db8dca87508f9f406f6cc1cec86
Author: Tomáš Vadina <kyberdev@gmail.com>
Date: Fri May 20 13:01:01 2011 +0200
l10n: Updated Slovak (sk) translation to 100%
New status: 73 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit d90544c4572937fb39676257c97b12f23efe4e08
Author: Jérôme Guelfucci <jeromeg@xfce.org>
Date: Wed May 11 01:19:33 2011 +0200
Updates NEWS file.
commit 9167cc90166f8927302339653603ea4a261aebda
Author: Jérôme Guelfucci <jeromeg@xfce.org>
Date: Wed May 11 01:15:14 2011 +0200
Style cleanup.
commit af0904e147c72fadf8bdea4345a067c6500d91e8
Author: Guido Berhoerster <gber@opensuse.org>
Date: Wed May 11 01:05:34 2011 +0200
Capture the cursor using XFIXES (bug #7567).
commit 21f850342ff6b54919b3cbd60696dfac09112034
Author: Jérôme Guelfucci <jeromeg@xfce.org>
Date: Fri Apr 29 18:18:36 2011 +0200
Plug massive leak when cancelling in actions dialog.
The pixbuf was leaked which had a huge impact on the panel plugin...
commit a2e2bdd92b27ba6b0e8f9296339bd026dd89ddd5
Author: Sérgio Cipolla <secipolla@gmail.com>
Date: Sat Apr 23 00:44:26 2011 +0200
l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
New status: 73 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 1dcdc0a114d8368e8b12f093f254b46593443bb0
Author: Sérgio Cipolla <secipolla@gmail.com>
Date: Sat Apr 23 00:33:47 2011 +0200
l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
New status: 73 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 24e184fb53ed4d4de1f5f654dabce00adbe420ef
Author: Sérgio Cipolla <secipolla@gmail.com>
Date: Sat Apr 23 00:20:50 2011 +0200
l10n: Updated Portuguese (Brazilian) (pt_BR) translation to 100%
New status: 73 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 9d6a9a9823bbcb19544d57a0bf3f5f6908b3c1d3
Author: Piotr Sokół <psokol@jabster.pl>
Date: Thu Mar 24 22:26:13 2011 +0100
l10n: Updated Polish (pl) translation to 100%
New status: 73 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 45a7cec76f473d1755fe1ef31eeb243cfa3316cb
Author: Daniel Nylander <po@danielnylander.se>
Date: Mon Mar 21 10:08:02 2011 +0100
l10n: Updated Swedish (sv) translation to 83%
New status: 61 messages complete with 3 fuzzies and 9 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit eaf296241abf48b80ee5870fad8780b0c7a45406
Author: Lionel Le Folgoc <mrpouit@gmail.com>
Date: Sun Feb 27 17:37:54 2011 +0100
Link to X11 libs.
commit 2d206d47b4470e752b88aa7dca96579dd2403c78
Author: Andhika Padmawan <andhika.padmawan@gmail.com>
Date: Sat Feb 26 12:45:58 2011 +0100
l10n: Updated Indonesian (id) translation to 100%
New status: 80 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit a0667c3a6eb9817dc0b9476d13b68bb51c1961c4
Author: Andhika Padmawan <andhika.padmawan@gmail.com>
Date: Sat Feb 26 12:44:08 2011 +0100
l10n: Updated Indonesian (id) translation to 95%
New status: 76 messages complete with 4 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 4a0c3a25f70eb0af0e4031e6d24f3f5fefb84984
Author: Ireneusz Gierlach <irek.gierlach@gmail.com>
Date: Sun Jan 16 18:29:52 2011 +0100
l10n: Updated Polish (pl) translation to 100%
New status: 73 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit ac1c3d87431f369c20cb31f16a4b78136bd0f67b
Author: Mișu Moldovan <dumol@xfce.org>
Date: Sun Jan 16 17:50:12 2011 +0100
l10n: Updated Romanian (ro) translation to 100%
New status: 73 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 3c3d0413b3da7a79cb4c4038f57e11ba84851fb3
Author: forfolias <forfolias@gmail.com>
Date: Fri Jan 7 17:24:47 2011 +0100
l10n: update greek translation
New status: 80 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit af74a0e9426510706dcda71bb927c95c08813277
Author: forfolias <forfolias@gmail.com>
Date: Thu Jan 6 16:47:38 2011 +0100
l10n: add greek translation
New status: 1 message complete with 0 fuzzies and 79 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 647754cb190308c597b1e8d980d5c88eaba3621d
Author: Ivica Kolić <ikoli@yahoo.com>
Date: Thu Jan 6 09:59:39 2011 +0100
l10n: Updated Croatian (hr) translation to 54%
New status: 40 messages complete with 0 fuzzies and 33 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit ff4a1a334cab981ad1b289c43155aff60d6dc120
Author: Ivica Kolić <ikoli@yahoo.com>
Date: Thu Jan 6 09:53:59 2011 +0100
l10n: Updated Croatian (hr) translation to 41%
New status: 30 messages complete with 0 fuzzies and 43 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit bae6ec6318d3636c9a67bc062b2a320935173b7e
Author: Daniel Nylander <po@danielnylander.se>
Date: Mon Dec 20 00:09:01 2010 +0100
l10n: Added Swedish translation
New status: 17 messages complete with 0 fuzzies and 63 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit c79fec46a96ac291cd95f5086f9bf2f95218b6ee
Author: Daniel Nylander <po@danielnylander.se>
Date: Sat Dec 18 19:09:57 2010 +0100
l10n: Updated Swedish (sv) translation to 73%
New status: 54 messages complete with 3 fuzzies and 16 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 9c77da2103c0272c3e966a874d64c361b25c2404
Merge: d0dbeb2 a078d01
Author: Jérôme Guelfucci <jeromeg@xfce.org>
Date: Fri Dec 17 18:30:51 2010 +0100
Merge branch 'master' of ssh://git.xfce.org/git/apps/xfce4-screenshooter
commit d0dbeb2a8d52f50e52201680c10d367b4a28fe93
Author: Jérôme Guelfucci <jeromeg@xfce.org>
Date: Fri Dec 17 18:30:35 2010 +0100
Plug a bunch of leaks.
commit a078d010989da6d68e263ff25a06f4d26d5ea9dc
Author: Terje Uriansrud <terje@uriansrud.net>
Date: Fri Dec 10 23:53:47 2010 +0100
l10n: Updated Norwegian Bokmal (nb) translation to 100%
New status: 73 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 785a32403d5b653ca914f5ce52e76a9de7e5b915
Author: Jérôme Guelfucci <jeromeg@xfce.org>
Date: Tue Dec 7 14:50:57 2010 +0100
Missing bits...
commit 2c759918e37825a4911d19f6989ac20044678838
Merge: 504a993 c04ee8c
Author: Jérôme Guelfucci <jeromeg@xfce.org>
Date: Tue Dec 7 14:42:52 2010 +0100
Merge branch 'master' of ssh://git.xfce.org/git/apps/xfce4-screenshooter
commit 504a9935f3fa900636ae5f8f40e8182b4fc293ec
Author: Jérôme Guelfucci <jeromeg@xfce.org>
Date: Tue Dec 7 14:41:30 2010 +0100
Replace libxfcegui4 by libxfce4ui (bug #6438).
commit c04ee8c9a3e4beb255784ac077a577b63a82f4c5
Author: Sergio Marques <smarquespt@gmail.com>
Date: Sat Dec 4 14:34:55 2010 +0100
l10n: Updated Portuguese (pt) translation to 100%
New status: 73 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 67995de822ffc2a1d58536e08f8a5f3952d5bdae
Author: Jérôme Guelfucci <jeromeg@xfce.org>
Date: Sun Nov 28 21:33:29 2010 +0100
Add default responses for the dialogs (bug #6880).
commit 0195996f78dad79726e6671ca4fb493a9f99d8b9
Author: Jérôme Guelfucci <jeromeg@xfce.org>
Date: Fri Nov 26 13:29:37 2010 +0100
Update potfiles.
commit 7cc2f832372978890705611e16ba935f6b535d24
Author: Jérôme Guelfucci <jeromeg@xfce.org>
Date: Thu Nov 25 23:16:36 2010 +0100
Depend on exo-1 for the ExoJob stuff.
This allows us to remove our local copy.
commit 1c6cf5f004d683d9623b4fce53f6f25de0970a43
Author: Jérôme Guelfucci <jeromeg@xfce.org>
Date: Thu Nov 25 23:04:45 2010 +0100
Use GtkLabel link instead of SexyUrlLabel local copy.
commit abe936804f5221711e8dcdbaebd675fac538277b
Author: Jérôme Guelfucci <jeromeg@xfce.org>
Date: Thu Nov 25 22:49:47 2010 +0100
Update NEWS.
commit d2cbf124f2188fe8742a3fcecc2acc6486ac9015
Author: Jérôme Guelfucci <jeromeg@xfce.org>
Date: Thu Nov 25 22:48:27 2010 +0100
Remove obsolete CLI option from manpage.
commit e8ab483698caceeae0e436dc7695c068dbfdfa5a
Author: Jérôme Guelfucci <jeromeg@xfce.org>
Date: Thu Nov 25 22:46:39 2010 +0100
Use GtkIconTheme functions instead of xfce_themed_icon.
This fixes the build with Xfce's git master branch and works the same.
commit f3c5bb83a75088939c0c45c94d8660404327f384
Author: Robert Hartl <hartl.robert@gmail.com>
Date: Tue Nov 23 23:23:43 2010 +0100
l10n: Updated Slovak (sk) translation to 90%
New status: 68 messages complete with 7 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit ce52cee6489e756f42ac495130cb346202527690
Author: Michal Löffler <lofflermichalloffler@gmail.com>
Date: Sun Nov 7 19:47:09 2010 +0100
l10n: Updated Slovak (sk) translation to 89%
New status: 67 messages complete with 8 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 68f057b216d5502817f2cfce1813f22b51750548
Author: Leandro Regueiro <leandro.regueiro@gmail.com>
Date: Tue Nov 2 18:23:53 2010 +0100
l10n: Updated Galician (gl) translation to 100%
New status: 75 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 8500da76a83d6422f87a492692efb5c585c8739d
Author: Leandro Regueiro <leandro.regueiro@gmail.com>
Date: Tue Nov 2 18:22:59 2010 +0100
l10n: Updated Galician (gl) translation to 98%
New status: 79 messages complete with 0 fuzzies and 1 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit bd8826b423b54e5f8606591c0297c12d2e35c9d8
Author: Masato Hashimoto <cabezon.hashimoto@gmail.com>
Date: Sat Oct 2 17:12:41 2010 +0200
l10n: Updated Japanese (ja) translation to 100%
New status: 75 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit b4993e25f5ee0e5e3a37870d56858a60ddc5b550
Author: Masato Hashimoto <cabezon.hashimoto@gmail.com>
Date: Sat Oct 2 17:12:08 2010 +0200
l10n: Updated Japanese (ja) translation to 100%
New status: 80 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 7f39486b833d7bc4ea41448ac0b7c4c9d039717e
Author: Masato Hashimoto <cabezon.hashimoto@gmail.com>
Date: Sat Oct 2 16:57:07 2010 +0200
l10n: Updated Japanese (ja) translation to 100%
New status: 75 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 8a53a389768d68c53fe12cafb176e6d695fcf7f8
Author: Michal Löffler <lofflermichalloffler@gmail.com>
Date: Tue Sep 28 00:22:49 2010 +0200
l10n: Slovak translation
New status: 59 messages complete with 16 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 43c222497774cfa3f02f28b7f1e84795b4e7bb9b
Author: Denis Koryavov <dkoryavov@yandex.ru>
Date: Tue Sep 14 11:15:47 2010 +0200
l10n: Updated Russian (ru) translation to 100%
New status: 80 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 560bdcfc4d75bdc019df1dbd43b9773f0d79d688
Author: Denis Koryavov <dkoryavov@yandex.ru>
Date: Tue Sep 14 11:03:11 2010 +0200
l10n: Updated Russian (ru) translation to 100%
New status: 80 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 20617373f7eae74587572fb963b26ce0ed020335
Author: Denis Koryavov <dkoryavov@yandex.ru>
Date: Tue Sep 14 10:56:18 2010 +0200
l10n: Updated Russian (ru) translation to None%
New status: 0 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 6a2fec7a22595be8aba69e7847e3e69348219e16
Author: Xavier Devlamynck <magicrhesus@ouranos.be>
Date: Sat Sep 11 10:31:44 2010 +0200
l10n: Updated French (fr) translation to 100%
New status: 80 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit addda4f6f6e6a5625b118f7fcd145700693da574
Author: Xavier Devlamynck <magicrhesus@ouranos.be>
Date: Sat Sep 11 10:30:17 2010 +0200
l10n: Updated French (fr) translation to 100%
New status: 80 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 3995322323bd78a81b7b350d389cdc4f10ee98ef
Author: Cristian Marchi <cri.penta@gmail.com>
Date: Wed Aug 25 11:42:05 2010 +0200
l10n: Updated Italian (it) translation to 100%
New status: 75 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit cb2fdb67e6c3d2ad3b872a6a5f5baeaab79796ef
Author: Gheyret Kenji <gheyret@yahoo.com>
Date: Sat Jun 5 04:18:20 2010 +0200
l10n: Uyghur translation Updated
New status: 39 messages complete with 0 fuzzies and 41 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 4bfe66f86fe2df32919bd7154666157cbefd7607
Author: Gheyret Kenji <gheyret@yahoo.com>
Date: Sat Jun 5 03:36:09 2010 +0200
l10n: Updated Uyghur (ug) translation to 100%
New status: 75 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit aeccad8c9a31c87cb373758cceeff71827c12861
Author: Bauzhan Muftakhidinov <baurthefirst@gmail.com>
Date: Mon May 24 07:17:38 2010 +0200
l10n: Updated Kazakh (kk) translation to 38%
New status: 29 messages complete with 2 fuzzies and 44 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit d14883e30cb29b5ac2996aada6b96e57dee41fc1
Author: Andres Kovtunos <kovtunos@yandex.ru>
Date: Sat May 22 18:37:33 2010 +0200
l10n: Updated Russian (ru) translation to 62%
New status: 50 messages complete with 0 fuzzies and 30 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit d1aa79754eaf64f9e65438fb36f877cda9d18f5a
Author: Andres Kovtunos <kovtunos@yandex.ru>
Date: Sat May 22 18:22:41 2010 +0200
l10n: Updated Russian (ru) translation to 45%
New status: 36 messages complete with 0 fuzzies and 44 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 02b67d69823250f04eaa9f3e423698461f8f9a43
Author: Andres Kovtunos <kovtunos@yandex.ru>
Date: Sat May 22 18:04:13 2010 +0200
l10n: Updated Russian (ru) translation to 35%
New status: 28 messages complete with 0 fuzzies and 52 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 2b5d5f156062a590a7a0efc2654e9d709d894167
Author: Andres Kovtunos <kovtunos@yandex.ru>
Date: Sat May 22 17:55:24 2010 +0200
l10n: Updated Russian (ru) translation to 30%
New status: 24 messages complete with 0 fuzzies and 56 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 0dee91880c1cdb78a42ec0f4710c7457442ec34b
Author: Jérôme Guelfucci <jeromeg@xfce.org>
Date: Fri May 21 10:14:26 2010 +0200
Fix a crash when the config file does not exist yet (bug #6460).
Calling xfce_rc_close on a NULL rc file is not exactly a good idea.
Patch by Thomas (tg42@gmx.de).
commit b6cff1c598bdf969a99a0d85ddd196230d2573a7
Author: Gheyret Kenji <gheyret@yahoo.com>
Date: Fri May 21 10:05:34 2010 +0200
l10n: Uyghur translation
New status: 6 messages complete with 0 fuzzies and 74 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit ee43831b58704606b340286acc87166b98453dfe
Author: Gheyret Kenji <gheyret@yahoo.com>
Date: Fri May 21 10:04:46 2010 +0200
l10n: Uyghur translation
New status: 5 messages complete with 0 fuzzies and 70 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 530c13da8a251c7724cdc3dcc6a14278878e3141
Author: Jérôme Guelfucci <jeromeg@xfce.org>
Date: Mon May 17 22:23:03 2010 +0200
Clean the build system for the new panel library (Romain Bouvier).
commit 8a8c9d2cdd0611829be695ce779a38f3209c2edc
Author: Gökmen Görgen <gkmngrgn@gmail.com>
Date: Sat May 15 16:22:44 2010 +0200
l10n: Updated Turkish (tr) translation to 97%
New status: 78 messages complete with 0 fuzzies and 2 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit abb9ee42e780c92829046877f4eae0556156b557
Author: Gökmen Görgen <gkmngrgn@gmail.com>
Date: Sat May 15 15:01:59 2010 +0200
l10n: Updated Turkish (tr) translation to 98%
New status: 74 messages complete with 0 fuzzies and 1 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 66bb0f53a9523a5dfd3e1519cfe4c5b75ff8dedb
Author: Gökmen Görgen <gkmngrgn@gmail.com>
Date: Sat May 15 15:00:20 2010 +0200
l10n: Updated Turkish (tr) translation to 98%
New status: 74 messages complete with 0 fuzzies and 1 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit ebbd0c87b76ada960f3b7800bc331b5b46ae3331
Author: Andres Kovtunos <kovtunos@yandex.ru>
Date: Sat May 15 14:44:14 2010 +0200
l10n: Updated Russian (ru) translation to 21%
New status: 17 messages complete with 4 fuzzies and 59 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 83e2ddbc1246c21cbb3e6af3e1636fd221f009e4
Author: Andres Kovtunos <kovtunos@yandex.ru>
Date: Sat May 15 14:37:50 2010 +0200
l10n: Initial Russian
New status: 10 messages complete with 0 fuzzies and 70 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 72e45e55c932dea5e8688984a55e935608976e53
Author: Ivica Kolić <ikoli@yahoo.com>
Date: Wed May 12 00:19:38 2010 +0200
l10n: Updated Croatian (hr) translation to 21%
New status: 16 messages complete with 13 fuzzies and 46 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 976eb4cd8cf9e17bac9cbbbca47f9329f92c89cd
Author: Ivica Kolić <ikoli@yahoo.com>
Date: Tue May 11 02:39:35 2010 +0200
l10n: Updated Croatian (hr) translation to 17%
New status: 13 messages complete with 13 fuzzies and 49 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 014ae75b1e1fa8efa70e78058a47608738683cdb
Author: A S Alam <apreet.alam@gmail.com>
Date: Sun Apr 4 07:07:33 2010 +0200
l10n: Punjabi Translation Added
New status: 40 messages complete with 0 fuzzies and 35 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 26bb3fbb6f87a8cb38152077802a84d646e265f0
Author: Cristian Marchi <cri.penta@gmail.com>
Date: Fri Apr 2 16:23:46 2010 +0200
l10n: Updated Italian (it) translation to 100%
New status: 80 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit f5cfd854fb61ad5165a12c0177e8dba2121a4ca3
Author: Harald Servat <redcrash@gmail.com>
Date: Thu Mar 25 15:26:23 2010 +0100
l10n: Updated Catalan (Valencian) (ca) translation to 100%
New status: 80 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 2e3e52c118a07dffb66147d1c7120cdbdf2fa81c
Author: Harald Servat <redcrash@gmail.com>
Date: Thu Mar 25 15:16:54 2010 +0100
l10n: Updated Catalan (Valencian) (ca) translation to 96%
New status: 77 messages complete with 0 fuzzies and 3 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit a83e39caccd86a3907054a6bb629ffcf9de41b5f
Author: Harald Servat <redcrash@gmail.com>
Date: Wed Mar 24 14:40:48 2010 +0100
l10n: Updated Catalan (Valencian) (ca) translation to 90%
New status: 72 messages complete with 0 fuzzies and 8 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit a26b7db3353539f3863ac1367849175426edcdd6
Author: Dmitry Nikitin <luckas_fb@mail.ru>
Date: Tue Mar 16 10:05:06 2010 +0100
l10n: Updated Ukrainian (uk) translation to 100%
New status: 75 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit ef8220eecafff4b0b2216659097ca107bf236463
Author: Danishka Navin <danishka@gmail.com>
Date: Sun Mar 14 17:00:10 2010 +0100
l10n: Updated Sinhala (si) translation to 54%
New status: 41 messages complete with 0 fuzzies and 34 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit e0582a539b32686d6b3834048ef2ed1e5cc21f19
Author: Danishka Navin <danishka@gmail.com>
Date: Sun Mar 14 16:56:52 2010 +0100
l10n: Updated Sinhala (si) translation to 42%
New status: 32 messages complete with 1 fuzzy and 42 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit b5c3463bf1a53292c30da3f6a4d0cd7017d3f859
Author: Anandawardhana <anandawardhana@gmail.com>
Date: Sun Mar 14 12:20:20 2010 +0100
l10n: Updated Sinhala (si) translation to 34%
New status: 26 messages complete with 0 fuzzies and 49 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit e9a54683d21d66cebabe6daedcf2b99c32fa25f5
Author: Anandawardhana <anandawardhana@gmail.com>
Date: Sat Mar 13 14:36:48 2010 +0100
l10n: Updated Sinhala (si) translation to 28%
New status: 21 messages complete with 0 fuzzies and 54 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 9d378798e9bfb50cbf900635454e8fd8b8dc7a27
Author: Anandawardhana <anandawardhana@gmail.com>
Date: Sat Mar 13 14:25:05 2010 +0100
l10n: Updated Sinhala (si) translation to 25%
New status: 19 messages complete with 0 fuzzies and 56 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit c7d1966c65a1937fae78a84a622a299a429386f5
Author: Anandawardhana <anandawardhana@gmail.com>
Date: Sat Mar 13 14:05:36 2010 +0100
l10n: Updated Sinhala (si) translation to 16%
New status: 12 messages complete with 0 fuzzies and 63 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 117252b64630999b9cfe6d61ad39fac44d8d2a5f
Author: Anandawardhana <anandawardhana@gmail.com>
Date: Sat Mar 13 13:55:22 2010 +0100
l10n: Updated Sinhala (si) translation to 10%
New status: 8 messages complete with 0 fuzzies and 67 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit e160b0d52e93020b482f76fd1c86c5e4658cfc72
Author: Anandawardhana <anandawardhana@gmail.com>
Date: Sat Mar 13 13:52:24 2010 +0100
l10n: Updated Sinhala (si) translation to 8%
New status: 6 messages complete with 0 fuzzies and 69 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 4c9aadd8628e72f91907dcbd74f585b9fce3c49b
Author: Danishka Navin <danishka@gmail.com>
Date: Sat Mar 13 13:33:19 2010 +0100
l10n: Added Sinhala (si) translation
New status: 1 message complete with 0 fuzzies and 74 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit 85324e82838e435d8084e2a92e1f8c5099f4d178
Author: Carles Muñoz Gorriz <carlesmu@internautas.org>
Date: Sat Mar 13 00:42:08 2010 +0100
l10n: Updated Catalan (Valencian) (ca) translation to 76%
New status: 61 messages complete with 0 fuzzies and 19 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit c8065e06b489e14cbbd2a7257c33106a661c5aba
Author: Carles Muñoz Gorriz <carlesmu@internautas.org>
Date: Sun Feb 21 16:37:58 2010 +0100
l10n: Updated Catalan (Valencian) (ca) translation to 100%
New status: 75 messages complete with 0 fuzzies and 0 untranslated.
Transmitted-via: Transifex (translations.xfce.org).
commit b402cf3a5f8dc5ded765a3412e1ebe82ff832a99