~ubuntu-branches/ubuntu/karmic/gnome-menus/karmic

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
commit 9d8e52a9a3e495f1e8e50a61f89510a03a4d31c9
Author: Vincent Untz <vuntz@gnome.org>
Date:   2009-10-01

    [build] Link the python binding to libpython

    Thanks to Frederic Crozat <fcrozat@mandriva.com> for spotting this.

D	acinclude.m4
A	m4/python.m4
M	python/Makefile.am

commit 117273842932a6fb24143926513474c28e3595b4
Author: Frederic Crozat <fcrozat@mandriva.com>
Date:	2009-09-29

    [libmenu] Make sure to use a value when sorting items during a merge

    The name variable was not assigned any value...

M	libmenu/gmenu-tree.c

commit 5713f8e66b0fe3791a57555ebd12ddb076176cd9
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-09-21

    [release] post-release bump to 2.28.1

M	configure.in

commit ddc11bf8f9d279cc2578c074ccb2c85a837e4ba7
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-09-21

    [release] 2.28.0

M	NEWS
M	README
M	configure.in

commit 87d43c2dd053ae3cb16e53341db2cb60ae348cf9
Author: Amitakhya Phukan <aphukan@fedoraproject.org>
Date:	2009-09-21

    Updating Assamese translations

M	po/as.po

commit a44cc5ae04856e05300dc189cab1a9e0ea0d7697
Author: Amitakhya Phukan <aphukan@fedoraproject.org>
Date:	2009-09-21

    Updating Assamese translations

M	po/as.po

commit e6a5afde9de461ccbc45556ca7720d0b9e1c63a8
Author: Shankar Prasad <svenkate@redhat.com>
Date:	2009-09-21

    Updated Kannada(kn) translation

M	po/kn.po

commit dc324804a5105c78f5fded62232d7f83976dec2d
Author: Petr Kovar <pknbe@volny.cz>
Date:	2009-09-21

    Updated Czech translation

M	po/cs.po

commit c7045e1d8937e7730cde99e87dce31ccb3474d76
Author: Rajesh Ranjan <rranjan@rranjan.csb>
Date:	2009-09-20

    maithili update, translated by Sangeeta Kumari

M	po/mai.po

commit 3e5f8caa3f659f4a3ea7730ea79af98c639379ac
Author: Daniel Nylander <po@danielnylander.se>
Date:	2009-09-19

    Updated Swedish translation

M	po/sv.po

commit 8af7dc29b7ccf039422d70c38f3927d1e493e726
Author: Luca Ferretti <elle.uca@libero.it>
Date:	2009-09-18

    Added Italian translation

M	po/it.po

commit b46ad5eb16a78883c09ebddcf09634368052ac72
Author: krishnababu k <kkrothap@redhat.ocm>
Date:	2009-09-17

    Updated Telugu Translation

M	po/te.po

commit 9f35303a5dbb43c2f024d001de95dd58402e4519
Author: Maxim V. Dziumanenko <dziumanenko@gmail.com>
Date:	2009-09-17

    Added Ukrainian translation

M	po/uk.po

commit 9f656630180c4328bfe95e325c4e2afbf61a22d4
Author: Niels-Christoph Fiedler <linux@medienkompanie.de>
Date:	2009-09-16

    Updated German translation

M	po/nds.po

commit 3989f3da21c0b72c2161c4476620e992ca533a02
Author: Adi Roiban <adi@roiban.ro>
Date:	2009-09-16

    Updated Romanian translation

M	po/ro.po

commit a9f05d49e0e31e5cd7ec6ca6e835b3de438f3033
Author: Rajesh Ranjan <rranjan@rranjan.csb>
Date:	2009-09-16

    hindi update by Rajesh Ranjan

M	po/hi.po

commit 19d5f458acc6001cee1446caa39163f3369af273
Author: Gintautas Miliauskas <gintautas@miliauskas.lt>
Date:	2009-09-15

    Updated Lithuanian translation.

M	po/lt.po

commit 1102f0542b4df782708eb857e638bfd5966aa7dc
Author: Ask H. Larsen <asklarsen@gmail.com>
Date:	2009-09-13

    Updated Danish translation

M	po/da.po

commit da99034888d5191a27e3029cbad6c73c7e52e10a
Author: Philip Withnall <philip@tecnocode.co.uk>
Date:	2009-09-12

    Updated British English translation

M	po/en_GB.po

commit 67c6af706c287319a7d5c73cf86d5209fd89f44f
Author: Chao-Hsiung Liao <j_h_liau@yahoo.com.tw>
Date:	2009-09-13

    Updated Traditional Chinese translation(Hong Kong and Taiwan)

M	po/zh_HK.po
M	po/zh_TW.po

commit ebd7a9aaa45fb4b43ac7e5b35e45412ddd55dc9d
Author: Ani <peter.ani@gmail.com>
Date:	2009-09-12

    Updaeted Malayalam Translations

M	po/ml.po

commit 37d761d18917ba9167c2be84c8fd5c6948ff3139
Author: Matej Urbančič <mateju@svn.gnome.org>
Date:	2009-09-12

    Updated Slovenian translation

M	po/sl.po

commit 333ce6b4509b8137c085171b730b92f0d2870c7b
Author: Sandeep Shedmake <sshedmak@redhat.com>
Date:	2009-09-11

    Updated Marathi Translations

M	po/mr.po

commit 068006c9639123b7c7fe47855f5e1801c78c7dd0
Author: A S Alam <aalam@users.sf.net>
Date:	2009-09-10

    updating for Punjabi

M	po/pa.po

commit 7411701b1e806aa8f283ea9868d165ab150ac2c7
Author: Baris Cicek <baris@teamforce.name.tr>
Date:	2009-09-10

    Updated Turkish translation.

M	po/tr.po

commit eb43a84b5a1b55f1743e9d0b9aee036a72962b17
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-09-09

    [build] Generate bzip2 tarballs and use foreign automake option

M	configure.in

commit 4d35bde7e67f6b59c108ebc8615a342cb93cbd17
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-09-09

    [release] post-release bump to 2.28.0

M	configure.in

commit 908771796bad88ce49158f951bd7ca40c51b256b
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-09-09

    [release] 2.27.92

M	NEWS
M	README
M	configure.in

commit f1a8145230fc24f47f4818f39839aafe5b911c37
Author: Takayuki KUSANO <AE5T-KSN@asahi-net.or.jp>
Date:	2009-09-08

    Updated Japanese translation

M	po/ja.po

commit 0178e1acc5aeca2e05ddfcf67e8f03e8ee82eff6
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-09-08

    [misc] Bump version to 2.27.92

M	configure.in

commit db81a7f1194e435b538ab6710d752276fb1c7135
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-09-07

    [editor] Use display name instead of name

M	simple-editor/GMenuSimpleEditor/menutreemodel.py

commit d3fdd0ba4133c66e670561bca5b1bf4dd1a8feea
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-09-07

    [libmenu,python] Add
    gmenu_tree_get_sort_key()/gmenu_tree_set_sort_key()

    This is needed for users of gnome-menus that display applications by
    strings obtained via get_display_name(), since the order of entry
    changes if strings are different.

    The default is to keep the sort order by name. At the moment, the only
    other option is to use a sort by display name.

    Bindings for python are added too.

M	libmenu/gmenu-tree.c
M	libmenu/gmenu-tree.h
M	python/gmenu.c

commit 4b007ffddf4cfd58d508a8c24d49ca8724753bb0
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-09-07

    [python] Fix accidental swap between display_name and generic_name

M	python/gmenu.c

commit 22b78e8b3cbc5d68638a1729728b682a4ce1d10b
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-09-07

    [python] Add bindings for get_generic_name() and get_display_name()

M	python/gmenu.c

commit e539c64e99a000b3a89a53bb5a6233a6b16ed96a
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-09-07

    [libmenu] Add gmenu_tree_entry_get_display_name() API

    This API returns the content of the X-GNOME-FullName key if available,
    and fallbacks to Name.

M	libmenu/desktop-entries.c
M	libmenu/desktop-entries.h
M	libmenu/gmenu-tree.c
M	libmenu/gmenu-tree.h

commit 9767b9094ef22034be948f289473726e922e1d28
Author: Gabor Kelemen <kelemeng@gnome.hu>
Date:	2009-09-07

    Hungarian translation updated

M	po/hu.po

commit c2e0a3cedf6ceded675e6d6b8368d98dc8e64716
Author: Rodrigo L. M. Flores <rlmflores@src.gnome.org>
Date:	2009-08-30

    Updated Brazilian Portuguese mailing list address.

M	po/pt_BR.po

commit e5c016f25d380332029e4b4d78ebc795fcc06e27
Author: Mario Blättermann <mariobl@gnome.org>
Date:	2009-08-30

    Updated German translation

M	po/de.po

commit aadd320b39ccd5a713b2fc9f5fb85d894141c61f
Author: Miloš Popović <mpopovic@src.gnome.org>
Date:	2009-08-29

    Updated Serbian translation

M	po/sr.po
M	po/sr@latin.po

commit 900767c9056455409c0ad674d17959b50b1a0f49
Author: Runa Bhattacharjee <runab@redhat.com>
Date:	2009-08-28

    Updated Bengali India Translations

M	po/bn_IN.po

commit 66913548e742cc1a8c138fccce9302b88fe5eae9
Author: Duarte Loreto <happyguy_pt@hotmail.com>
Date:	2009-08-27

    Updated Portuguese translation

M	po/pt.po

commit 4dbf30628a5f29f8eb0b85c65ffd5b9b0caa5177
Author: Claude Paroz <claude@2xlibre.net>
Date:	2009-08-26

    Updated French translation

M	po/fr.po

commit bcf479be8e2b92c26becafe004a0f1b1c62af679
Author: Inaki Larranaga Murgoitio <dooteo@zundan.com>
Date:	2009-08-26

    Updated Basque language

M	po/eu.po

commit 5ee416dd4c7b0ddb11c7c38581bf293b3b9352dd
Author: Luca Ferretti <elle.uca@libero.it>
Date:	2009-08-26

    Updated Italian translation

M	po/it.po

commit a02a132ed3b18f156bf2c7e965c3075685f72759
Author: Tomasz Dominikowski <dominikowski@gmail.com>
Date:	2009-08-25

    Updated Polish translation

M	po/pl.po

commit 6f55d2289a2a30d03db2bf40c31f79474ff952c0
Author: Frédéric Péters <fpeters@0d.be>
Date:	2009-08-22

    Remove deprecated Encoding key from desktop file

M	simple-editor/gmenu-simple-editor.desktop.in

commit 4771bdb6af1b29f10ba39706cb2b63433d1f0480
Author: Andre Klapper <a9016009@gmx.de>
Date:	2009-08-24

    Change nds_NFE to nds as discussed on irc

M	po/LINGUAS
R100	po/nds_NFE.po	po/nds.po

commit 539360b4cfa0c26b884c9811acd15d943a7574a0
Author: Sweta Kothari <swkothar@redhat.com>
Date:	2009-08-24

    Updated Gujarati Translations

M	po/gu.po

commit 28501f2afe901298d74760362f47bb7f67107699
Author: Changwoo Ryu <cwryu@debian.org>
Date:	2009-08-23

    Update Korean translation

M	po/ko.po

commit b2b842dbd5fd8687562d0961ad62391d5f72004f
Author: Mario Blättermann <mariobl@gnome.org>
Date:	2009-08-22

    Added Low German to LINGUAS

M	po/LINGUAS

commit 4694660b8ebac75d9c72ef1de5654bd031a9062e
Author: Mario Blättermann <mariobl@gnome.org>
Date:	2009-08-22

    Added Low German translation

A	po/nds_NFE.po

commit 9dc36cf2b049dbca649c92911f29644b073f031b
Author: Khaled Hosny <khaledhosny@eglug.org>
Date:	2009-08-20

    Updated Arabic translation

M	po/ar.po

commit 895ba3af6f107e61cc6a4414746d94ba3df38a8f
Author: Alexander Shopov <ash@contact.bg>
Date:	2009-08-14

    Updated Bulgarian translation

M	po/bg.po

commit 761e44b26fd2315f8823d3b5f2347346f1ef9eb0
Author: Manoj Kumar Giri <mgiri@mgiri.csb>
Date:	2009-08-13

    Updated Oriya Translation

M	po/or.po

commit c49f4bb691fd51039add261b9a19c5b45bbbd0d5
Author: Antón Méixome <meixome@mancoumun.org>
Date:	2009-08-12

    Updated Galician translation

M	po/gl.po

commit 3ed6cedb4154fa399f48b036088fa703291d28d9
Author: Krix Apolinário <krixapolinario@gmail.com>
Date:	2009-08-12

    Updated Brazilian Portuguese translation.

M	po/pt_BR.po

commit 3f85e31f5fbb7e3e77ed8459af8b18f071ed3767
Author: Kjartan Maraas <kmaraas@gnome.org>
Date:	2009-08-04

    Updated Norwegian bokmål translation.

M	po/nb.po

commit ed5f86151fd103c446535bc8d1ed3d80604e2899
Author: Seán de Búrca <leftmostcat@gmail.com>
Date:	2009-07-29

    Updated Irish translation

M	po/ga.po

commit 6b5cd5918a318712237b5fc511fe122a1229a29b
Author: Denis Arnaud <darnaud@src.gnome.org>
Date:	2009-07-29

    Updated breton translation

M	po/br.po

commit c6f657e60f70bb848b70b9462591a38c973b4010
Author: drtvasudevan <agnihot3@gmail.com>
Date:	2009-07-29

    Updated Tamil translation

M	po/ta.po

commit 458924440a7f69c64272ddeb9fbe1999ac70bbcd
Author: drtvasudevan <agnihot3@gmail.com>
Date:	2009-07-29

    Updated Tamil translation

M	po/ta.po

commit 3d9f5ce3d34839e2342692a849838c9e7503c588
Author: Denis Arnaud <darnaud@src.gnome.org>
Date:	2009-07-29

    Updated breton translation

M	po/br.po

commit ea7245e45238b380a8ba11ee8dabc67775e49c6f
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-07-29

    [misc] Update commit guidelines for referencing bugs

M	ChangeLog

commit 374cdd09e33122d6a7f06eec9748130b3c85f9fe
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-07-28

    [release] post-release bump to 2.27.90

M	configure.in

commit e399908c171a0add6ab6febd405b5121b3772fd2
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-07-28

    [release] 2.27.5

M	NEWS
M	README
M	configure.in

commit 2bb16693175f59d28c8a798d50ffb9b462c916f3
Author: Denis Arnaud <darnaud@src.gnome.org>
Date:	2009-07-28

    Updated breton translation

M	po/br.po

commit b9cbf41d7c93ad8f18a5b9162dbd85a9e2774efa
Author: Aron Xu <aronxu@gnome.org>
Date:	2009-07-26

    Updated Simplified Chinese translation.

M	po/zh_CN.po

commit 0aed3c9a813e79ad57ec335e2aa410beb5d23991
Author: Theppitak Karoonboonyanan <thep@linux.thai.net>
Date:	2009-07-23

    Updated Thai translation.

M	po/th.po

commit 83e66d9b0487b0be48ea935801d500e9857a4ae5
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-07-21

    [build] Set m4/ as macro dir

M	Makefile.am
M	configure.in

commit 34c1fcb2306df9ca22634a82e75865eda1031769
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-07-21

    [build] Use silent-rules instead of shave for quiet build

M	configure.in
D	m4/shave.m4
D	shave-libtool.in
D	shave.in
M	simple-editor/GMenuSimpleEditor/Makefile.am
M	simple-editor/Makefile.am

commit 8ca7e0223b9f0e935889c146bfb5378bfeadf0ea
Author: Ilkka Tuohela <hile@iki.fi>
Date:	2009-07-19

    Updated Finnish translation

M	po/fi.po

commit b8fa21a37017f3fe5e333a616434c5b489e7f333
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-07-15

    [release] post-release bump to 2.27.5

M	configure.in

commit c17916822f13accf78dfc4d1f3ef8bc398e398f5
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-07-15

    [release] 2.27.4

M	NEWS
M	README
M	configure.in

commit d49ae45dc30c3fbafded146e5fbccbe23215316b
Author: Daniel Nylander <po@danielnylander.se>
Date:	2009-07-07

    Updated Swedish translation

M	po/sv.po

commit 0b7478a5de36192e3bc31576c7e8114a3a6dbed3
Author: Yaron Shahrabani <sh.yaron@gmail.com>
Date:	2009-07-04

    Updated Hebrew translation

M	po/he.po

commit 8bddaf2076e094043189a20c36bf66b8c3813921
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-06-27

    [libmenu] Sort inlined items unless inline_header is used

    We also strip duplicate entries in a menu when we do such a sort.

    This is actually not a trivial task since it means we have to
    correctly
    preprocess all inline data before using the layout -- else, we'd
    try to
    sort items while a layout has been used, which is too late (since you
    can specify that you want mixed entries and directories, eg; or even
    entries or directories in a specified order).

    We make sure to evaluate the inline data at the deepest first,
    so we can
    correctly propagate as much inline items as possible to the top.

    http://bugzilla.gnome.org/show_bug.cgi?id=490483

M	libmenu/gmenu-tree.c

commit 0b1f053e07d1d4c081a58303cfe7ed6b583ed966
Author: Jorge Gonzalez <jorgegonz@svn.gnome.org>
Date:	2009-06-27

    Updated Spanish translation

M	po/es.po

commit 7a6b5b5a292357357f4458820b6e8f851472c592
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-06-26

    [libmenu] Do not always inherit parent DefaultLayout attributes

    We should not use the parent DefaultLayout attributes when there no
    DefaultLayout children for the child but there are DefaultLayout
    attributes for the child.

    Ie, if the child has <DefaultLayout inline="true"/>, then it used to
    keep inheriting the parent DefaultLayout attributes, and then possibly
    lose the inline="true".

M	libmenu/gmenu-tree.c

commit 89ab14f5fd34d18ef1591baf1000f5197344cd92
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-06-26

    [libmenu] Fix DefaultLayout attributes not being inherited

    The submenus were not inheriting the DefaultLayout attributes (eg,
    all the inline parameters) of their parent when there was no child to
    the DefaultLayout of their parent.

    Concretely, this was ignored for submenus:
      <DefaultLayout inline="true"/>
    while this should have behaved like:
      <DefaultLayout inline="true"><Merge type="all"/></DefaultLayout>

M	libmenu/gmenu-tree.c

commit 6f948049c368cad02b713332430b98c5daa11b5e
Author: Mattias Põldaru <mahfiaz gmail com>
Date:	2009-06-25

    Updating Estonian translation

M	po/et.po

commit 80f5477a91e11630403d60b701658c7ae242c7d7
Author: Claude Paroz <claude@2xlibre.net>
Date:	2009-06-21

    Add translator comment

M	simple-editor/GMenuSimpleEditor/main.py

commit fc7e3ebf3266a47de4dc96a2fc938e01848eb53d
Author: Claude Paroz <claude@2xlibre.net>
Date:	2009-06-21

    Fix POTFILES.in

M	po/POTFILES.in

commit dca731f53b3686436cc94cf2704035419c03b7e8
Author: Robert Staudinger <robsta@gnome.org>
Date:	2009-05-07

    [libmenu] Add API to access GenericName

    http://bugzilla.gnome.org/show_bug.cgi?id=581887

M	libmenu/desktop-entries.c
M	libmenu/desktop-entries.h
M	libmenu/gmenu-tree.c
M	libmenu/gmenu-tree.h

commit d504fabf22e5303abd631e5a868fb5f45f4c7b05
Author: Pedro Fragoso <ember@ubuntu.com>
Date:	2009-06-21

    [editor] Port to GtkBuilder

    (with a few tweaks by me to make it work)

    http://bugzilla.gnome.org/show_bug.cgi?id=580158

M	po/POTFILES.in
M	simple-editor/GMenuSimpleEditor/config.py.in
M	simple-editor/GMenuSimpleEditor/main.py
M	simple-editor/GMenuSimpleEditor/maindialog.py
M	simple-editor/Makefile.am
D	simple-editor/gmenu-simple-editor.glade
A	simple-editor/gmenu-simple-editor.ui

commit fecc2847cf75048a6fe41c7423ac1e705a32b12b
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-06-21

    [editor] Add --help and --version arguments

    http://bugzilla.gnome.org/show_bug.cgi?id=552989

M	simple-editor/GMenuSimpleEditor/main.py

commit db6d999b0ada473a3124a14dd83ed7ccb2375474
Author: Seán de Búrca <leftmostcat@gmail.com>
Date:	2009-05-24

    Updated Irish translation

M	po/ga.po

commit 0aa50a649aa76ea95f2cda225a87448e8a16b69c
Author: Inash Zubair <inash@leptone.com>
Date:	2009-05-23

    Added Divehi translation

M	po/LINGUAS
A	po/dv.po

commit 569e4835258906ca51b6b32e062cb3f860e5aeac
Author: Michael Meeks <michael.meeks@novell.com>
Date:	2009-05-21

    [libmenu] Add a cache for listing the desktop files

    When processing a layout, we get the list of desktop files from a
    set of
    directories. It turns out that we nearly always use the same set of
    directories, so adding a one-entry cache makes it possible to avoid
    computing things again and again.

    I changed Michael's patch a bit, mainly to empty the cache when
    the last
    GMenuTree is unref'ed.

    Closes: bgo#498749

M	libmenu/entry-directories.c
M	libmenu/entry-directories.h
M	libmenu/gmenu-tree.c

commit 020085ed0a4086509ede57eb4fb480bbdbb5c79a
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-05-02

    Update commit messages guidelines

M	ChangeLog

commit 4900c5713c5caf69d4d476023fb5638fb9d60a17
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-04-27

    Use git.mk from pango to autogenerate .gitignore files

M	Makefile.am
M	desktop-directories/Makefile.am
A	git.mk
M	layout/Makefile.am
M	libmenu/Makefile.am
M	python/Makefile.am
M	simple-editor/GMenuSimpleEditor/Makefile.am
M	simple-editor/Makefile.am
M	util/Makefile.am

commit c11452a831ab1ecf15ccb516492740980bda7c18
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-04-27

    Remove .cvsignore files

D	.cvsignore
D	desktop-directories/.cvsignore
D	layout/.cvsignore
D	libmenu/.cvsignore
D	po/.cvsignore
D	python/.cvsignore
D	simple-editor/.cvsignore
D	simple-editor/GMenuSimpleEditor/.cvsignore
D	util/.cvsignore

commit 5fa8af519c166de0a0abd4d9cf0e396540270b4f
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-04-27

    Use shave to improve build log readability

    See http://git.lespiau.name/cgit/shave/tree/README for more details.

M	configure.in
A	m4/shave.m4
A	shave-libtool.in
A	shave.in
M	simple-editor/GMenuSimpleEditor/Makefile.am
M	simple-editor/Makefile.am

commit 22e86da4dfd79d8f2084bce3537607fa2b9bd40e
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-04-26

    Fix doap file to have mail address as URL (mailto:)

M	gnome-menus.doap

commit 1e3078b3ef1f58c7f6e8878ff0836d312c3e57dc
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-04-24

    Make autogen.sh more modern.

M	autogen.sh

commit 2f4ef97ac8153a1460b2a1404c4f622712b3db81
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-04-22

    Add doap file

A	gnome-menus.doap

commit e5c0da200efb4a82d8478d45c62959b848085d77
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-04-22

    ename ChangeLog files to ChangeLog.pre-git

M	ChangeLog
C100	ChangeLog	ChangeLog.pre-git
R100	po/ChangeLog	po/ChangeLog.pre-git

commit 71593a96a06add451182f6b2bf848daaae3d37a0
Author: Miquel Esplà <miquelespla@gmail.com>
Date:	2009-04-21

    Added Valencian-Catalan translation

M	po/LINGUAS
A	po/ca@valencia.po

commit 44190fe0edccfe82eeed523af572bcda3cb55dab
Author: Vincent Untz <vuntz@gnome.org>
Date:	2009-04-13

    post-release bump to 2.26.2

    2009-04-14	Vincent Untz  <vuntz@gnome.org>

	* configure.in: post-release bump to 2.26.2

    svn path=/trunk/; revision=1017

M	ChangeLog
M	configure.in
M	po/ChangeLog