File: ChangeLog

package info (click to toggle)
gimp 2.2.13-1etch4
  • links: PTS
  • area: main
  • in suites: etch
  • size: 94,832 kB
  • ctags: 47,113
  • sloc: ansic: 524,858; xml: 36,798; lisp: 9,870; sh: 9,409; makefile: 7,923; python: 2,674; perl: 2,589; yacc: 520; lex: 334
file content (960 lines) | stat: -rw-r--r-- 24,650 bytes parent folder | download | duplicates (2)
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
2006-07-27  Jakub Friedl <jfriedl@suse.cz>

	* cs.po: Czech translation fix

2005-10-30  Takeshi AIHANA <aihana@gnome.gr.jp>

	* ja.po: Updated Japanese translation by
		OKANO Takayoshi <kano@na.rim.or.jp>.

2005-09-17  Takeshi AIHANA <aihana@gnome.gr.jp>

	* ja.po: Updated Japanese translation by
		kano@na.rim.or.jp.

2005-09-06  Stanislav Brabec  <sbrabec@suse.cz>

	* cs.po: Typo fix (#314989).

2005-08-02  Takeshi AIHANA <aihana@gnome.gr.jp>

	* ja.po: Fixed wrong translations pointed by
		kano@na.rim.or.jp.

2005-07-07  Abel Cheung  <maddog@linuxhall.org>

	* zh_TW.po: Updated traditional Chinese translation from GNOME HK Team

2005-04-22  Changwoo Ryu  <cwryu@debian.org>

	* Makefile.am (tips_POFILES): Added ko.po.

	* ko.po: Added Korean translation by Dongsu Jang.

2005-03-31  Takeshi AIHANA <aihana@gnome.gr.jp>

	* ja.po: Fixed a typo reported by
		Aaron Madlon-Kay <amake@mac.com>.

2005-03-20  Ole Laursen  <olau@hardworking.dk>

	* da.po: Updated Danish translation.

2005-02-18  Sven Neumann  <sven@gimp.org>

	* Makefile.am (tips_POFILES): added bg.po.

2005-02-18  Alexander Shopov  <ash@contact.bg>

	* bg.po: Added Bulgarian translation by
	Iassen Pramatarov <turin@fsa-bg.org>

2005-02-14  Žygimantas Beručka  <uid0@akl.lt>

	* lt.po: Updated Lithuanian translation.

2005-02-03  Artur Flinta  <aflinta@cvs.gnome.org>

	* pl.po: Updated Polish translation by GNOME PL Team.

2005-01-30  Artur Flinta  <aflinta@cvs.gnome.org>

	* pl.po: Updated Polish translation by GNOME PL Team.

2005-01-29  Artur Flinta  <aflinta@cvs.gnome.org>

	* pl.po: Updated Polish translation by GNOME PL Team.

2005-01-28  Jordi Mallach  <jordi@sindominio.net>

	* ca.po: Updated Catalan translation by
	Xavier Conde Rueda <xaviconde@eresmas.com>.

2005-01-25 Raymond Ostertag <r.ostertag@caramail.com>

	* fr.po: Updated French translation

2004-12-20  Jarkko Ranta  <jjranta@cc.joensuu.fi>

	* fi.po: Updated Finnish translation by Mikko Paananen.

2004-12-02  Laszlo Dvornik  <dvornik@gnome.hu>

	* hu.po: Hungarian translation updated by Arpad Biro.

2004-11-29  Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>

	* sk.po: Fixed Slovak translation.

2004-11-26  Sven Neumann  <sven@gimp.org>

	* sk.po: reverted last commit, it only contained binary gibberish.

2004-11-26  Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>

	* sk.po: Updated Slovak translation by Zdeno Podobny.

2004-11-21  David Lodge <dave@cirt.net>

	* en_GB.po: Updated British translation.
                                                                                
2004-11-21  Vincent van Adrighem  <adrighem@gnome.org>

	* nl.po: Translation updated by Tino Meinen.

2004-11-17  Funda Wang  <fundawang@linux.net.cn>

	* zh_CN.po: Updated Simplified Chinese translation.

2004-11-15  Jan Morén  <jan.moren@lucs.lu.se>
 
	* sv.po: Updated Swedish translation.

2004-11-13  Christophe Merlet  <redfox@redfoxcenter.org>

	* fr.po: Updated French translation from
	Raymond Ostertag <r.ostertag@caramail.com>.

2004-11-07  Sven Neumann  <sven@gimp.org>

	* Makefile.am (tips_POFILES): added nb.po.

	* nb.po
	* no.po: fixed broken entities.

2004-11-07  Sigurd Gartmann  <sigurd-translate@brogar.org>

	* no.po, nb.po: Added norwegian bokmål nb translation, and
	updated the no bokmål translation.

2004-11-07  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>

	* es.po: Updated Spanish translation.

2004-11-05  Marco Ciampa  <ciampix@libero.it>

	* it.po: Updated Italian translation.

2004-11-02  Sven Neumann  <sven@gimp.org>

	* pt.po: fixed a broken entity.

2004-11-01  Miloslav Trmac  <mitr@volny.cz>

	* cs.po: Updated Czech translation.

2004-10-31  Adam Weinberger  <adamw@gnome.org>

	* en_CA.po: Updated Canadian English translation.

2004-10-28  Sven Neumann  <sven@gimp.org>

	* gimp-tips.xml.in: changed a tip which became incorrect with a
	recent change.

	* de.po: updated.

2004-10-26  Sven Neumann  <sven@gimp.org>

	* gimp-tips.xml.in: removed obsolete tip, spotted by Joao S. O. Bueno.

2004-10-23  Hendrik Brandt  <hebra@cvs.gnome.org>

	* de.po: Updated German translation.
                                                                                
2004-10-18  David Lodge <dave@cirt.net>

	* en_GB.po: Updated British English translation.
                                                                                
2004-10-17  Adam Weinberger  <adamw@gnome.org>

	* en_CA.po: Updated Canadian English translation.

2004-10-11  Sven Neumann  <sven@gimp.org>

	* pa.po: fixed a broken entity.

2004-10-02  Adam Weinberger  <adamw@gnome.org>

	* en_CA.po: Updated Canadian English translation.

2004-09-23  Adam Weinberger  <adamw@gnome.org>

	* en_CA.po: Updated Canadian English translation.

2004-09-06  Adam Weinberger  <adamw@gnome.org>

	* en_CA.po: Updated Canadian English translation.

2004-08-26  Sven Neumann  <sven@gimp.org>

	* fortunes.xsl: fixed Wiki syntax in output.

2004-08-26  Sven Neumann  <sven@gimp.org>

	* Makefile.am
	* fortunes.xsl: added simple XSL transformation to generate
	fortunes for wiki.gimp.org from gimp-tips.xml.in.

2004-08-24  Sven Neumann  <sven@gimp.org>

	* Makefile.am (tips_POFILES): added pa.po (Punjabi).

2004-07-15  Dmitry G. Mastrukov  <dmitry@taurussoft.org>

	* ru.po: Updated Russian translation
	from Russian team <gnome-cyr@gnome.org>.

2004-06-08  Sven Neumann  <sven@gimp.org>

	* Makefile.am (tips_POFILES): added ca.po (Catalan).

2004-06-08  Jordi Mallach  <jordi@sindominio.net>

	* ca.po: Added Catalan translation by
	Xavier Beà <xbea@pie.xtec.es>.

2004-05-28  Andras Timar  <timar@gnome.hu>

	* Makefile.am (tips_POFILES): added hu.po (Hungarian).
	* hu.po: Added Hungarian translation

2004-05-25  Sven Neumann  <sven@gimp.org>

	* gimp-tips.xml.in: applied a patch graciously provided by "biroa"
	(bug #143125).

2004-05-23  Sven Neumann  <sven@gimp.org>

	* Makefile.am (tips_POFILES): added lt.po (Lithuanian).

2004-05-23  şygimantas Beručka  <uid0@akl.lt>

	* lt.po: Updated Lithuanian translation.

2004-05-18  Dmitry G. Mastrukov  <dmitry@taurussoft.org>

	* ru.po: Updated Russian translation
	from Russian team <gnome-cyr@gnome.org>.

2004-05-12  Dmitry G. Mastrukov  <dmitry@taurussoft.org>

	* ru.po: Updated Russian translation
	from Russian team <gnome-cyr@gnome.org>.

2004-05-10  Sven Neumann  <sven@gimp.org>

	* gimp-tips.xml.in: the menu's called "Layer", not "Layers" (bug
	#142279, spotted by Branko Collin).

2004-04-20  Takeshi AIHANA <aihana@gnome.gr.jp>

	* ja.po: Updated Japanese translation by
		Ryoichi INAGAKI <inagaki@ryo1.net>

2004-04-16  Maxim Dziumanenko <mvd@mylinux.com.ua>

	* Makefile.am (tips_POFILES): added uk.po (Ukraininan).
	* uk.po: Added Ukrainian translation

2004-04-15  Adam Weinberger  <adamw@gnome.org>

	* en_CA.po: Updated Canadian English translation.

2004-04-13  Dmitry G. Mastrukov  <dmitry@taurussoft.org>

	* ru.po: Updated Russian translation
	from Russian team <gnome-cyr@gnome.org>.

2004-04-12  Marco Ciampa  <ciampix@libero.it>

	* it.po: Updated Italian translation.

2004-04-12  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>

	* es.po: Updated Spanish translation.

2004-04-07  Sven Neumann  <sven@gimp.org>

	* Makefile.am (tips_POFILES): added eu.po (Basque).

2004-04-06  Iñaki Larrañaga  <dooteo@euskalgnu.org>

	* eu.po: Added Basque translation.

2004-03-28  Sven Neumann  <sven@gimp.org>

	* Makefile.am (tips_POFILES): added en_GB.po (British English).

2004-03-25  Gareth Owen  <gowen72@yahoo.com>

	* en_GB.po: Added British English translation

2004-03-25  Dmitry G. Mastrukov  <dmitry@taurussoft.org>

	* ru.po: Updated Russian translation
	from Russian team <gnome-cyr@gnome.org>.

2004-03-25  Tor Lillqvist  <tml@iki.fi>

	* ms.po
	* pl.po: Fix minor syntax errors to silence GIMP.

2004-03-23  Abel Cheung  <maddog@linux.org.hk>

	* zh_TW.po: Updated traditional Chinese translation.

2004-03-23  Artur Flinta  <aflinta@cvs.gnome.org>

	* pl.po: Updated Polish translation.

2004-03-22  Takeshi AIHANA <aihana@gnome.gr.jp>

	* ja.po: Updated Japanese translation by
		  Ryoichi INAGAKI <inagaki@ryo1.net>.

2004-03-22  Sigurd Gartmann  <sigurd-translate@brogar.org>

	* no.po: Updated Norwegian (Bokmål) translation.

2004-03-17  Gustavo Noronha Silva  <kov@debian.org>

	* pt_BR.po: updated translation, by
	  Leandro Pereira <leandro@linuxmag.com.br>

2004-03-15  Sven Neumann  <sven@gimp.org>

	* Makefile.am (tips_POFILES): added nl.po (Dutch).

2004-03-15  Vincent van Adrighem  <adrighem@gnome.org>

	* nl.po: Translation added by Branko Collin.

2004-03-12  Funda Wang  <fundawang@linux.net.cn>

	* zh_CN.po: Updated Simplified Chinese translation.

2004-03-11  Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>

	* sk.po: Updated Slovak translation by Zdenko Podobny.

2004-03-09  Danilo Å egan  <dsegan@gmx.net>

	* sr.po, sr@Latn.po: Updated Serbian translation.

2004-03-09  Jan Morén  <jan.moren@lucs.lu.se>
 
	* sv.po: Updated Swedish translation.

2004-03-08  Duarte Loreto <happyguy_pt@hotmail.com>

	* pt.po: Updated Portuguese translation.

2004-03-08  Ole Laursen  <olau@hardworking.dk>

	* da.po: Updated Danish translation.

2004-03-05  Miloslav Trmac  <mitr@volny.cz>

	* cs.po: "Updated" Czech translation.

2004-03-05  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>

	* es.po: Updated Spanish translation.

2004-03-05  Sven Neumann  <sven@gimp.org>

	* Makefile.am: fixed the newly added dependency.

	* *.po: updated based on an uptodate gimp-tips.xml.in.

2004-03-04  Sven Neumann  <sven@gimp.org>

	* Makefile.am: added a missing dependency that caused the
	gimp20-tips.pot not to be rebuild when gimp-tips.xml.in changes.

	* update.sh: s/gimp14/gimp20/

2004-02-28  Christophe Merlet  <redfox@redfoxcenter.org>

	* fr.po: Updated French translation from
	Raymond Ostertag <r.ostertag@caramail.com>.

2004-02-26  Sven Neumann  <sven@gimp.org>

	* Makefile.am (tips_POFILES): added ru.po (Russian).

2004-02-26  Dmitry G. Mastrukov  <dmitry@taurussoft.org>

	* ru.po: Added Russian translation
	from Russian team <gnome-cyr@gnome.org>.

2004-02-24  Sven Neumann  <sven@gimp.org>

	* Makefile.am (tips_POFILES): added en_CA.po.

2004-02-24  Adam Weinberger  <adamw@FreeBSD.org>

	* en_CA.po: Added Canadian English translation.

2004-02-20  Danilo Å egan  <dsegan@gmx.net>

	* sr.po, sr@Latn.po: Updated Serbian translation.

2004-02-16  Sven Neumann  <sven@gimp.org>

	* Makefile.am (tips_POFILES): added ms.po (Malay).

2004-02-16  Artur Flinta  <aflinta@cvs.gnome.org>

	* pl.po: Updated Polish translation by GNOME PL Team.

2004-02-13  Marco Ciampa  <ciampix@libero.it>

	* it.po: Updated Italian translation.

2004-02-10  Ole Laursen  <olau@hardworking.dk>

	* da.po: Updated Danish translation.

2004-02-10  Jan Morén  <jan.moren@lucs.lu.se>
 
	* sv.po: Updated Swedish translation.

2004-02-09  Sven Neumann  <sven@gimp.org>

	* Makefile.am (tips_POFILES): added hr.po (Croatian).

	* hr.po: removed fuzzy declaration from header.

2004-02-09  Robert Sedak  <robert.sedak@sk.htnet.hr>

	* hr.po: Updated Croatian translation.

2004-02-09  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>

	* es.po: Updated Spanish translation.

2004-02-06  Miloslav Trmac  <mitr@volny.cz>

	* cs.po: Updated Czech translation.

2004-01-27  Pablo G. del Campo  <pablodc@bigfoot.com>

	* es.po: Updated Spanish translation.
	
2004-01-27  Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>

	* sk.po: Updated Slovak translation by Zdenko Podobny.

2004-01-25  Sven Neumann  <sven@gimp.org>

	* gimp-tips.xml.in: applied patch from Shlomi Fish that fixes a
	wrong menu path (bug #132028).

2004-01-23  Danilo Å egan  <dsegan@gmx.net>

	* sr.po, sr@Latn.po: Updated Serbian translation.

2004-01-21  Miloslav Trmac  <mitr@volny.cz>

	* cs.po: Updated Czech translation.

2004-01-20  Christophe Merlet  <redfox@redfoxcenter.org>

	* fr.po: Updated French translation from
	Raymond Ostertag <r.ostertag@caramail.com>.

2004-01-15  Danilo Å egan  <dsegan@gmx.net>

	* sr.po, sr@Latn.po: Updated Serbian translation.

2004-01-12  Artur Flinta  <aflinta@cvs.gnome.org>

	* pl.po: Updated Polish translation by GNOME PL Team.

2004-01-11  Marco Ciampa <ciampix@libero.it>

	* it.po: small fuzzy fix.

2004-01-11  Duarte Loreto <happyguy_pt@hotmail.com>

	* pt.po: Updated Portuguese translation.

2004-01-10  Danilo Å egan  <dsegan@gmx.net>

	* sr.po, sr@Latn.po: Updated Serbian translation.

2004-01-09  Miloslav Trmac  <mitr@volny.cz>

	* cs.po: Updated Czech translation.

2004-01-09  Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>

	* sk.po: Updated Slovak translation by Zdenko Podobny.

2004-01-07  Pablo G. del Campo  <pablodc@bigfoot.com>

	* es.po: Updated Spanish translation.

2003-12-19  Sven Neumann  <sven@gimp.org>

	* gimp_tips.hu.txt
	* gimp_tips.ko.txt
	* gimp_tips.ru.txt
	* gimp_tips.tr.txt
	* gimp_tips.uk.txt: removed outdated tips files in the old format.

	* makefile.mingw: removed outdated mingw makefile.

2003-12-19  Artur Flinta  <aflinta@cvs.gnome.org>

	* pl.po: Updated Polish translation.

2003-12-08  Danilo Å egan  <dsegan@gmx.net>

	* sr.po, sr@Latn.po: Updated Serbian translation.

2003-11-26  Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>

	* sk.po: Updated Slovak translation by Zdenko Podobny.

2003-11-26  Duarte Loreto <happyguy_pt@hotmail.com>

	* pt.po: Updated Portuguese translation.

2003-11-25  Pablo G. del Campo  <pablodc@bigfoot.com>

	* es.po: Updated Spanish translation.

2003-11-25  Miloslav Trmac  <mitr@volny.cz>

	* cs.po: Updated Czech translation.

2003-11-24  Marco Ciampa  <ciampix@libero.it>

	* it.po: added italian translation.
	* Makefile.am: added it.po.
	* gimp_tips.it.txt: removed.

2003-11-21  Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>

	* sk.po: Updated Slovak translation by Zdenko Podobny.

2003-11-21  Duarte Loreto <happyguy_pt@hotmail.com>

	* pt.po: Updated Portuguese translation.

2003-11-10  Sven Neumann  <sven@gimp.org>

	* gimp_tips.fr.txt: removed since there's a french po file now.

2003-11-08  Danilo Å egan  <dsegan@gmx.net>

	* sr.po, sr@Latn.po: Updated Serbian translation.

2003-11-07  Danilo Å egan  <dsegan@gmx.net>

	* sr.po, sr@Latn.po: Updated Serbian translation.

2003-11-06  Christophe Merlet  <redfox@redfoxcenter.org>

	* fr.po: Added French translation from
	Raymond Ostertag <r.ostertag@caramail.com>.
	* Makefile.am: added fr.po.

2003-11-06  Hasbullah Bin Pit <sebol@ikhlas.com>

	* ms.po: Updated Malay Translation 
		by MIMOS Open Source Development Group <ismas@mimos.my>

2003-11-05  Abel Cheung  <maddog@linux.org.hk>

	* zh_TW.po: Updated traditional Chinese translation.

2003-11-03  Miloslav Trmac  <mitr@volny.cz>

	* cs.po: Updated Czech translation.

2003-11-03  Christian Rose  <menthos@menthos.com>

	* sv.po: Updated Swedish translation.

2003-10-31  Hasbullah Bin Pit <sebol@ikhlas.com>

	* ms.po: Updated Malay Translation 
		by MIMOS Open Source Development Group <ismas@mimos.my>

2003-10-21  Miloslav Trmac  <mitr@volny.cz>

	* cs.po: Updated Czech translation.

2003-10-18  Christian Rose  <menthos@menthos.com>

	* sv.po: Updated Swedish translation.

2003-10-18  Danilo Å egan  <dsegan@gmx.net>

	* sr.po, sr@Latn.po: Updated Serbian translation.

2003-10-17  Pablo Gonzalo del Campo  <pablodc@bigfoot.com>

        * es.po: Updated Spanish translation.

2003-10-17  Sven Neumann  <sven@gimp.org>

	* gimp-tips.xml.in: a bunch of updates based on a patch from
	Raymond Ostertag.

2003-09-30  Hasbullah Bin Pit <sebol@ikhlas.com>

	* ms.po: Added Translation by MIMOS Open Source Development Group
	<ismas@mimos.my>

2003-09-17  Wang Jian  <lark@linux.net.cn>

	* zh_CN.po: Updated Simplified Chinese translation by
	Xie Yuheng <elephant@linux.net.cn>.

2003-09-16  Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>

	* sk.po: Updated Slovak translation by Zdenko Podobny
	<zdpo@mailbox.sk>.

2003-09-09  Duarte Loreto <happyguy_pt@hotmail.com>

	* pt.po: Updated Portuguese translation.

2003-09-04  Stanislav Visnovsky <visnovsky@nenya.ms.mff.cuni.cz>

	* sk.po: Updated Slovak translation by Zdenko Podobny
	<zdpo@mailbox.sk>.

2003-09-02  Sven Neumann  <sven@gimp.org>

	* Makefile.am (tips_POFILES): added more missing files.

	* gimp-tips.dtd: use CDATA for language identifiers since sr@Latn
	is not a valid XML name token (NMTOKEN).

2003-09-02  Danilo Å egan  <dsegan@gmx.net>

	* Makefile.am: Added "sr.po" and "sr@Latn.po" to tips_POFILES.

	* sr.po, sr@Latn.po: Updated Serbian translation.

2003-08-31  Danilo Å egan  <dsegan@gmx.net>

	* sr.po, sr@Latn.po: Added Serbian translation by Serbian 
	team (Prevod.org).

2003-08-26  Pablo Gonzalo del Campo  <pablodc@bigfoot.com>

	* es.po: Updated Spanish translation by
                 Francisco Javier F. Serrador <serrador@arrakis.es>.

2003-08-25  Ole Laursen  <olau@hardworking.dk>

	* da.po: Updated Danish translation.

2003-08-25  Kjartan Maraas  <kmaraas@gnome.org>

	* no.po: Update Norwegian translation.

2003-08-20  Christian Rose  <menthos@menthos.com>

	* sv.po: Updated Swedish translation.

2003-08-19  Abel Cheung  <maddog@linux.org.hk>

	* zh_TW.po: Updated traditional Chinese translation.

2003-08-13  Gil "Dolfin" Osher <dolfin@rpg.org.il>

	* he.po: Added Hebrew translation.

2003-08-12  Pablo Gonzalo del Campo  <pablodc@bigfoot.com>

	* es.po: Updated Spanish translation.

2003-08-06  Duarte Loreto <happyguy_pt@hotmail.com>

	* pt.po: Updated Portuguese translation.

2003-08-04  Pablo Gonzalo del Campo  <pablodc@bigfoot.com>

	* es.po: Updated Spanish translation by
                 Francisco Javier F. Serrador <serrador@arrakis.es>.

2003-07-30  Duarte Loreto <happyguy_pt@hotmail.com>

	* pt.po: Updated Portuguese translation.

2003-07-28  Miloslav Trmac  <mitr@volny.cz>

	* cs.po: Updated Czech translation.

2003-07-25  Pablo Gonzalo del Campo  <pablodc@bigfoot.com>

	* es.po: Updated Spanish translation.

2003-07-08  Sven Neumann  <sven@gimp.org>

	* gimp-tips.xml.in: fixed a wrong tip spotted by Raymond Ostertag.

2003-07-05  Sven Neumann  <sven@gimp.org>

	* gimp-tips.xml.in: removed a non-ASCII character. Seems to be
	causing trouble with newer versions of xgettext and probably needs
	a fix in intltool to work.

2003-07-04  Sven Neumann  <sven@gimp.org>

	* gimp-tips.xml.in: fixed a typo (bug #116698).

	* de.po: updated.

2003-07-02  Pablo Gonzalo del Campo  <pablodc@bigfoot.com>

	* es.po: Updated Spanish translation by
                 Francisco Javier F. Serrador <serrador@arrakis.es>.

2003-06-30  Mohammad DAMT  <mdamt@bisnisweb.com>

	* id.po: Added Indonesian translation

2003-06-29  Miloslav Trmac  <mitr@volny.cz>

	* cs.po: Updated Czech translation.

2003-06-25  Sven Neumann  <sven@gimp.org>

	* gimp-tips.xml.in: some minor fixes.

	* de.po: updated German translation.

2003-06-08  Abel Cheung  <maddog@linux.org.hk>

	* uk.po: Removed, it contains only one completely broken string.

2003-05-20  Sven Neumann  <sven@gimp.org>

	* gimp-tips.xml.in: a first attempt at updating the tips.

2003-04-12  Takeshi AIHANA <aihana@gnome.gr.jp>

	* ja.po: Updated Japanese translation by
			KAMAGASAKO Masatoshi <emerald@gnome.gr.jp>.

2003-03-18  Ole Laursen  <olau@hardworking.dk>

	* da.po: Fixed another string in the Danish translation.

2003-03-18  Ole Laursen  <olau@hardworking.dk>

	* da.po: Fixed some badly worded strings in the Danish translation.

2003-03-10  Ole Laursen  <olau@hardworking.dk>

	* da.po: Updated Danish translation.

2003-03-04  Pablo Gonzalo del Campo  <pablodc@bigfoot.com>

	* es.po: Updated Spanish translation by Francisco Vila Doncel
	<fravd@wanadoo.es>

2003-03-02  Evandro Fernandes Giovanini <evandrofg@ig.com.br>

	* pt_BR.po: Updated Brazilian Portuguese translation
	from Alexandre Folle de Menezes <afmenez@terra.com.br>.

2003-03-02  Duarte Loreto <happyguy_pt@hotmail.com>

	* pt.po: Updated Portuguese translation.

2003-02-26  Sven Neumann  <sven@gimp.org>

	* gimp_tips.cs.txt: removed.

2003-02-26  Miloslav Trmac  <mitr@volny.cz>

	* Makefile.am (tips_POFILES): Added cs (Czech)
	* cs.po: Added Czech translation.

2003-02-24  Evandro Fernandes Giovanini <evandrofg@ig.com.br>

	* pt_BR.po: Updated Brazilian Portuguese translation from
	Alexandre Folle de Menezes <afmenez@terra.com.br>.

2003-02-20  Pablo Gonzalo del Campo  <pablodc@bigfoot.com>

	* es.po: Fixed a couple of strings in Spanish translation.

2003-02-11  Pablo Gonzalo del Campo  <pablodc@bigfoot.com>

	* es.po: Fixed a couple of strings in Spanish translation.

2003-02-11  Sven Neumann  <sven@gimp.org>

	* gimp_tips.es.txt: removed.
	
	* es.po: fixed spanish po file (it failed 'msgfmt -c -v es').

2003-02-11  Pablo Gonzalo del Campo  <pablodc@bigfoot.com>

	* added Spanish tips po file.

2003-02-10  Sven Neumann  <sven@gimp.org>

	* gimp_tips.ja.txt: removed.

2003-02-09  Abel Cheung  <maddog@linux.org.hk>

	* Makefile.am
	* zh_TW.po: Convert old traditional Chinese tips file to po file.

	* gimp_tips.zh_TW.txt: Removed.

2003-02-01  Abel Cheung  <maddog@linux.org.hk>

	* sk.po: Fix header.

2002-12-25  Tor Lillqvist  <tml@iki.fi>

	* Makefile.am (EXTRA_DIST): Drop makefile.mingw.

2002-10-30  Wang Jian  <lark@linux.net.cn>

	* zh_CN.po: Updated Simplified Chinese translation by
	Xie Yuheng <phycommusyee@263.net>.

2002-05-26  Zbigniew Chyla  <cyba@gnome.pl>

	* pl.po: Updated Polish translation by
	GNOME PL Team <translators@gnome.pl>.

2002-05-21  Sven Neumann  <sven@gimp.org>

	* Makefile.am (tips_POFILES): added pl.po. Removed gimp_tips.pl.txt.

2002-05-20  Zbigniew Chyla  <cyba@gnome.pl>

	* pl.po: Added Polish translation by
	GNOME PL Team <translators@gnome.pl>.

2002-03-16  Sven Neumann  <sven@gimp.org>

	* Makefile.am: added zh_CN.po (although it should really be called
	zh-CN instead).

2002-03-16  Wang Jian  <lark@linux.net.cn>

	* gimp_tips.zh_CN.txt: Removed.
	* zh_CN.po: Converted from gimp_tips.zh_CN.txt by Wang Jian.

2002-03-13  Sven Neumann  <sven@gimp.org>

	* Makefile.am
	* ja.po: added japanese translation from <iccii@hotmail.com>.

2002-03-13  Stanislav Visnovsky  <visnovsky@nenya.ms.mff.cuni.cz>

	* sk.po: Added Slovak translation by Zdenko Podobny <zdpo@mailbox.sk>.

2002-03-11  Christian Rose  <menthos@menthos.com>

	* sv.po: Updated Swedish translation.

2002-03-11  Sven Neumann  <sven@gimp.org>

	* POTFILES.in: fixed stupid error, need to refer to gimp-tips.xml.in,
	not the generated header.

	* Makefile.am: removed unneeded POTFILES rule.

	* update.sh: removed redundant call to intltool-extract.

	* gimp-tips.dtd: use NMTOKEN for xml:lang attribute values.

2002-03-09  Sven Neumann  <sven@gimp.org>

	* Makefile.am: added update-po rule, improved dist-hook rule.
	Removed the the old gimp_tips.*.txt files from EXTRA_DIST.

	* gimp-tips.dtd: improved.

	* update.sh: validate gimp-tips.xml after regeneration.

2002-03-08  Sven Neumann  <sven@gimp.org>

	* gimp-tips.dtd: new file defining the GIMP tips document type.

	* Makefile.am: added a dist-hook that attempts to validate
	gimp-tips.xml using xmllint.

	* gimp-tips.xml.in: specify the DTD. Removed <i> markup tags I
	accidentally left in there.
	
2002-03-08  Wang Jian  <lark@linux.net.cn>

	* zh_CN.po: Updated Simplified Chinese translation by
	Xie Yuheng <phycommusyee@263.net>.
	
2002-03-08  Sven Neumann  <sven@gimp.org>

	* Makefile.am: fixes for srcdir != builddir.

	* gimp_tips.txt
	* gimp_tips.pt.txt: removed.

	* pt.po: fixed markup.

2002-03-08  Duarte Loreto <happyguy_pt@hotmail.com>

	* pt.po: Added Portuguese translation.

2002-03-07  Ole Laursen  <olau@hardworking.dk>

	* da.po: Updated Danish translation.

2002-03-07  Duarte Loreto <happyguy_pt@hotmail.com>

	* gimp_tips.pt.txt: Added Portuguese translation.

2002-03-05  Christian Rose  <menthos@menthos.com>

	* sv.po: Added Swedish translation.

2002-03-03  Sven Neumann  <sven@gimp.org>

	* update.sh: test for intltool >= 0.17

2002-03-02  Sven Neumann  <sven@gimp.org>

	* Makefile.am: removed gimp_tips.de.txt here too.

	* de.po: updated german translation.

2002-03-02  Ole Laursen  <olau@hardworking.dk>

	* da.po: Added Danish translation from gimp_tips.da.txt from
	gimp-1-2 branch and converted it to UTF-8.

2002-02-27  Sven Neumann  <sven@gimp.org>

	* de.po: merged all existant translations from gimp_tips.de.txt.
	Sorry, you need the very latest intltool from CVS to correctly
	extract and merge messages.

	* gimp_tips.de.txt: removed.

2002-02-26  Sven Neumann  <sven@gimp.org>

	* Makefile.am: fixed dependencies.
	* update.sh: changed to use intltool.

2002-02-25  Sven Neumann  <sven@gimp.org>

	* Added ChangeLog.
	* de.po: updated german tips translation.