aboutsummaryrefslogtreecommitdiffstats
path: root/help/ChangeLog
blob: 223873620f6017d6bf971515a2717f83b76833e0 (plain) (blame)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
2009-01-01  Andre Klapper  <a9016009@gmx.de>

    * de/figures/account_editor_a.png:
    * de/figures/calendar.png:
    * de/figures/categories_a.png:
    * de/figures/collap_head_a.png:
    * de/figures/config-cal.png:
    * de/figures/config-mail.png:
    * de/figures/contact-editor.png:
    * de/figures/contact.png:
    * de/figures/contacts_mainwindow_a.png:
    * de/figures/evo_account_editor_a.png:
    * de/figures/evo_account_info_a.png:
    * de/figures/evo_add_rule_a.png:
    * de/figures/evo_adv_search_a.png:
    * de/figures/evo_allday_a.png:
    * de/figures/evo_cal_ prop_a.png:
    * de/figures/evo_cal_a.png:
    * de/figures/evo_cal_callout_a.png:
    * de/figures/evo_calender_appointmnt.png:
    * de/figures/evo_contacteditor_a.png:
    * de/figures/evo_edit_rule_a.png:
    * de/figures/evo_edit_search.png:
    * de/figures/evo_email_a.png:
    * de/figures/evo_flag_follow_up_a.png:
    * de/figures/evo_gwreceiveedit_a.png:
    * de/figures/evo_gwreceiveoptedit_a.png:
    * de/figures/evo_identityedit_a.png:
    * de/figures/evo_imapheader_a.png:
    * de/figures/evo_import_asst_a.png:
    * de/figures/evo_mail_a.png:
    * de/figures/evo_mail_callout_a.png:
    * de/figures/evo_mereceive_a.png:
    * de/figures/evo_message_filters_a.png:
    * de/figures/evo_newmess_a.png:
    * de/figures/evo_proxyadd_a.png:
    * de/figures/evo_receive_setup2_a.png:
    * de/figures/evo_rmdrnotes_a.png:
    * de/figures/evo_rule_a.png:
    * de/figures/evo_select_add_folder.png:
    * de/figures/evo_select_folder.png:
    * de/figures/evo_shd_memo_a.png:
    * de/figures/exchange-delegation.png:
    * de/figures/exchange-identity.png:
    * de/figures/exchange-receive-options.png:
    * de/figures/exchange-receive.png:
    * de/figures/exchg-identity.png:
    * de/figures/exchng-identity.png:
    * de/figures/exchng-rec-mail.png:
    * de/figures/exchng-rec-mails.png:
    * de/figures/exchng-rec-option.png:
    * de/figures/exchng-rec-options.png:
    * de/figures/filter-new-fig.png:
    * de/figures/free_busy.png:
    * de/figures/full-1.png:
    * de/figures/full-2.png:
    * de/figures/full-3.png:
    * de/figures/full-4.png:
    * de/figures/full-5.png:
    * de/figures/full-6.png:
    * de/figures/full-7.png:
    * de/figures/mail_mainwindow_a.png:
    * de/figures/mail-druid-pic.png:
    * de/figures/mail-inbox.png:
    * de/figures/mail-threaded.png:
    * de/figures/mainwindow-pic.png:
    * de/figures/minus.png:
    * de/figures/newmsg.png:
    * de/figures/plus.png:
    * de/figures/proxy-cal.png:
    * de/figures/proxy-login.png:
    * de/figures/quick_add_a.png:
    * de/figures/replymsg.png:
    * de/figures/schedule.png:
    * de/figures/Screenshot-Evolution-mailer-Preferences.png:
    * de/figures/Screenshot-Free-Busy.png:
    * de/figures/stock_search.png:
    * de/figures/sub-others-folder.png:
    * de/figures/sub-pub-fold.png:
    * de/figures/ver_view_a.png:
    * de/figures/vfolder-createrule-fig.png:
    * es/figures/evo_blink.png:
    * es/figures/evo_dialog-info.png:
    * es/figures/evo_dialog-warning.png:
    * es/figures/full-1.png:
    * es/figures/full-2.png:
    * es/figures/full-3.png:
    * es/figures/full-4.png:
    * es/figures/full-5.png:
    * es/figures/full-6.png:
    * es/figures/full-7.png:
    * es/figures/minus.png:
    * es/figures/plus.png:
    * es/figures/stock_search.png:
    * no/figures/full-1.png:
    * no/figures/full-2.png:
    * no/figures/full-3.png:
    * no/figures/full-4.png:
    * no/figures/full-5.png:
    * no/figures/full-6.png:
    * no/figures/full-7.png:
    Remove unlovalized screenshots from SVN. Fixes bug #566206.

2009-01-01  Andre Klapper  <a9016009@gmx.de>

    * cs/cs.po: Updated Czech translation of manual by Jiri Eischmann.

2008-12-29  Andre Klapper  <a9016009@gmx.de>

    * quickref/Makefile.am: 
    * quickref/cs/Makefile.am:
    * quickref/cs/quickref.tex:
    * quickref/cs/quickref.pdf:
    Added Czech translation of quickref.

2008-11-15  Petr Kovar  <pknbe@volny.cz>

    * cs/cs.po: Updated Czech translation of manual by Jiri Eischmann.

2008-11-09  Petr Kovar  <pknbe@volny.cz>

    * cs/cs.po: Updated Czech translation of manual by Jiri Eischmann.

2008-10-26  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2008-09-29  Petr Kovar  <pknbe@volny.cz>

    * cs.po: Updated Czech translation of manual by Jiri Eischmann.

2008-09-23  Claude Paroz  <claude@2xlibre.net>

    * fr/fr.po: Updated French translation.

2008-09-20  Claude Paroz  <claude@2xlibre.net>

    * fr/figures/*: One new figure added and one obsolete removed.

2008-09-19  Milan Crha  <mcrha@redhat.com>

    ** Fix for bug #552911

    * Makefile.am:
    * C/figures/Screenshot-Evolution -mailer-Preferences.png:
    * de/figures/Screenshot-Evolution -mailer-Preferences.png:
    Do not use spaces in file names.

2008-09-18  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/figures/*.png: Added new screenshots.

2008-09-17  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation
    * es/figures/*.png: Added new screenshots.

2008-09-16  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2008-09-16  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2008-09-16  Bharath Acharya  <abharath@novell.com>

    Patch from PC Radhika <pradhika@novell.com>

    * C/evolution.xml: Updated doc changes for 2.24

2008-08-22  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2008-08-21  Jorge Gonzalez  <jorgegonz@svn.gnome.org>  

    * es/es.po: Updated Spanish translation

2008-08-20  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2008-08-19  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2008-08-18  Matthew Barnes  <mbarnes@redhat.com>

    * C/evolution.xml:
    Remove the bit about crash recovery.

2008-08-14  Jorge Gonzalez  <jorgegonz@svn.gnome.org>                        

    * es/es.po: Updated Spanish translation

2008-08-13  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2008-08-12  Jorge Gonzalez  <jorgegonz@svn.gnome.org>  

    * es/es.po: Updated Spanish translation

2008-08-08  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2008-08-06  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2008-08-05  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2008-08-04  Paul Bolle  <pebolle@tiscali.nl>

    ** Fixes bug #544252

    * quickref/C/quickref.tex: Use names consistent to the GUI for 
    different components. 

2008-08-03  Andre Klapper  <a9016009@gmx.de>

    * C/evolution.xml: Make Claude happy (bug #544886 comment 4).

2008-08-03  Andre Klapper  <a9016009@gmx.de>

    * C/evolution.xml: Typo fixes and fix for bug #544886 on
    behalf of Allan Day.

2008-08-03  Andre Klapper  <a9016009@gmx.de>

    * de/de.po: Update German translation.

2008-07-31  Matthew Barnes  <mbarnes@redhat.com>

    ** Fixes part of bug #545558

    * C/evolution.xml:
    Hula support is disabled by default now, so remove any
    mention of it from the User Guide.

2008-07-30  Matthew Barnes  <mbarnes@redhat.com>

    ** This was preventing dblatex from working correctly.
       I use dblatex to generate a PDF for the website.

    * xx/figures/attach_reminder_a.png:
    Rename attach_reminder_a.png.png to attach_reminder_a.png.

    * Makefile.am:
    * xx/evolution.xml:
    Update accordingly.

2008-07-28  Claude Paroz  <claude@2xlibre.net>

    * fr/fr.po: Updated French translation.

2007-07-27  Matthew Barnes  <mbarnes@redhat.com>

    ** Fixes bug #544958

    * C/evolution.xml:
    Use email, not e-mail (per documentation guidelines).

2008-07-27  Claude Paroz  <claude@2xlibre.net>

    * C/evolution.xml: Typos/Syntax improvements.
    Fixes #544994.

2008-07-27  Claude Paroz  <claude@2xlibre.net>

    * fr/fr.po: Updated French translation.
    * figures/evo_label_a.png: New screenshot.

2008-07-25  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2008-07-24  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2008-07-23  Andre Klapper  <a9016009@gmx.de>

    * de/de.po: Update German translation.

2008-07-23  Andre Klapper  <a9016009@gmx.de>

    * de/de.po: Update German translation.

2008-07-22  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2008-07-21  Andre Klapper  <a9016009@gmx.de>

    * C/evolution.xml: s/a company environment/an organizational environment

2008-07-21  Andre Klapper  <a9016009@gmx.de>

    * C/evolution.xml: Fix most of bug 543883. Patch by Allan Day.

2008-07-21  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2008-07-21  Andre Klapper  <a9016009@gmx.de>

    * C/evolution.xml: Fix build break.

2008-07-20  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2008-07-20  Andre Klapper  <a9016009@gmx.de>

    * C/evolution.xml: Synchronized more strings, changed "mails" to "mail".

2008-07-20  Andre Klapper  <a9016009@gmx.de>

    * C/evolution.xml: Synchronized more strings.

2008-07-20  Andre Klapper  <a9016009@gmx.de>

    * C/evolution.xml: Synchronized more strings.

2008-07-20  Andre Klapper  <a9016009@gmx.de>

    * C/evolution.xml: Synchronized more strings, fixed some typos.

2008-07-20  Andre Klapper  <a9016009@gmx.de>

    * C/evolution.xml: Synchronized more strings.

2008-07-20  Andre Klapper  <a9016009@gmx.de>

    * C/evolution.xml: Synchronized more strings.

2008-07-20  Andre Klapper  <a9016009@gmx.de>

    * C/evolution.xml: Synchronized more strings, fixed a typo.

2008-07-20  Andre Klapper  <a9016009@gmx.de>

    * C/evolution.xml: Synchronized more strings, fixed a typo.

2008-07-20  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2008-07-20  Andre Klapper  <a9016009@gmx.de>

    * C/evolution.xml: Fixed bug #477082.

2008-07-20  Andre Klapper  <a9016009@gmx.de>

    * C/evolution.xml: Fixed comments 201 to 317 of bug #438479.

2008-07-20  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2008-07-20  Andre Klapper  <a9016009@gmx.de>

    * C/evolution.xml: Fixed comments 181 to 200 of bug #438479.

2008-07-20  Andre Klapper  <a9016009@gmx.de>

    * C/evolution.xml: Fixed comments 161 to 180 of bug #438479.

2008-07-20  Andre Klapper  <a9016009@gmx.de>

    * C/evolution.xml: Fixed comments 141 to 160 of bug #438479.

2008-07-20  Andre Klapper  <a9016009@gmx.de>

    * C/evolution.xml: Fixed comments 121 to 140 of bug #438479.
    Use &z-3rdParty; instead of *.

2008-07-20  Andre Klapper  <a9016009@gmx.de>

    * C/evolution.xml: Fixed comments 81 to 120 of bug #438479.
    Synced dialogue vs dialog. Fixed two duplicated IDs.

2008-07-20  Andre Klapper  <a9016009@gmx.de>

    * C/evolution.xml: Fixed comments 61 to 80 of bug #438479.

2008-07-20  Andre Klapper  <a9016009@gmx.de>

    * C/evolution.xml: Fixed comments 41 to 60 of bug #438479.

2008-07-20  Andre Klapper  <a9016009@gmx.de>

    * C/evolution.xml: Fixed comments 21 to 40 of bug #438479.

2008-07-20  Andre Klapper  <a9016009@gmx.de>

    * C/evolution.xml: Replace all "e-mail list" by "message list".
    Fixed comments 1 to 20 of bug #438479.

2008-07-20  Andre Klapper  <a9016009@gmx.de>

    * C/evolution.xml: Remove more wrong whitespaces.

2008-07-20  Andre Klapper  <a9016009@gmx.de>

    * C/evolution.xml: Removed braindead whitespaces, fix duplicated
    whitespaces, fix spellings.

2008-07-05  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation 

2008-06-30  Matthew Barnes  <mbarnes@redhat.com>

    * Makefile.am:
    Run xmllint on C/evolution.xml when building with "make check"
    or "make distcheck".  Should hopefully prevent any more invalid
    DocBook syntax from slipping into releases.

    * C/evolution.xml:
    Fix some issues that xmllint caught.

2008-06-27 Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2008-06-22 Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2008-06-21  Petr Kovar  <pknbe@volny.cz>

    * cs/cs.po: Updated Czech translation by Jiri Eischmann.

2008-06-20 Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2008-06-08  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation.

2008-06-02  Matthew Barnes  <mbarnes@redhat.com>

    ** Re-fixes bug #437579

    * C/evolution.xml: Fix "entity not defined" regressions.

2008-05-23  Jorge Gonzalez  <jorgegonz@svn.gnome.org> 

    * es/es.po: Updated Spansih translation.

2008-05-21  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2008-04-30  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2008-04-19  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2008-04-13   Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2008-04-12  Jorge Gonzalez  <jorgegonz@svn.gnome.org>  

    * es/es.po: Updated Spanish translation 

2008-04-05  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>

    * ru/ru.po: Updated Russian translation by Sergey Mironov <sergo@bk.ru>

2008-04-05  Petr Kovar  <pknbe@volny.cz>

    * cs/cs.po: Updated Czech translation by Jiri Eischmann.

2008-04-02  Tor Lillqvist  <tml@novell.com>

    * Makefile.am (DOC_FIGURES): s/evo_label_a.PNG/evo_label_a.png
    here, too.

2008-04-01  Tor Lillqvist  <tml@novell.com>

    * es/figures/evo_label_a.PNG: Remove this, it's a duplicate of
    es/figures/evo_label_a.png.

2008-03-26  Johnny Jacob  <jjohnny@novell.com>

    ** Fixes Bug #524434. From PC Radhika <pradhika@novell.com>
    
    * C/evolution.xml: Fixed build break.

2008-03-25  Johnny Jacob  <jjohnny@novell.com>

    ** Fix for Bug #507372 from PC Radhika <pradhika@novell.com>
    
    * C/evolution.xml: Done language edits on newly 
    added sections.
    
2008-03-19  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2008-03-14  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation
    * es/figures/*.png: Added screenshots

2008-03-14  Matthew Barnes  <mbarnes@redhat.com>

    ** Fixes bug #476918

    * C/evolution.xml: Fix a minor typo.

2008-03-14  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/figures/*.png: Updated/added screenshots.

2008-03-14  Matthew Barnes  <mbarnes@redhat.com>

    ** Fixes bug #437539

    * C/evolution.xml: Use DocBook tags instead of UTF-8 characters
    for things like copyright and trademark symbols, quotes, etc.

2008-03-10  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/figures/*.png: Updated/added screenshots.

2008-03-10  Petr Kovar  <pknbe@volny.cz>

    * cs/cs.po: Added Czech translation by Jiri Eischmann.
    * cs/figures/evo_maildirreceive_a.png: Added screenshot by Jiri Eischmann.
    * cs/figures/evo_backup_prgsbar.png: Ditto.
    * cs/figures/evo_imapreceive_a.png: Ditto.
    * cs/figures/evo_timezone_a.png: Ditto.
    * cs/figures/evo_newmail.png: Ditto.
    * cs/figures/evo_account_editor_a.png: Ditto.
    * cs/figures/attach_reminder_a.png: Ditto.. png: Ditto.
    * cs/figures/evo_import_asst_a.png: Ditto.
    * cs/figures/evo_mail_callout_a.png: Ditto.
    * cs/figures/evo_backup.png: Ditto.
    * cs/figures/evo_mhreceive_a.png: Ditto.
    * cs/figures/evo_attachreminder_plugin.png: Ditto.
    * cs/figures/ver_view_a.png: Ditto.
    * cs/figures/evo_crash_recovery.png
    * cs/figures/evo_cal_callout_a.png: Ditto.
    * cs/figures/evo_mail_a.png: Ditto.
    * cs/figures/evo_offline.png: Ditto.
    * cs/figures/evo_identity_a.png: Ditto.
    * cs/figures/account_editor_a.png: Ditto.
    * cs/figures/evo_backup_warning.png: Ditto.
    * cs/figures/evo_usereceive_a.png: Ditto.
    * cs/figures/contacts_mainwindow_a.png: Ditto.
    * cs/figures/evo_popreceive_a.png: Ditto.
    * cs/figures/evo_receive_setup_a.png: Ditto.
    * cs/figures/evo_mereceive_a.png: Ditto.
    * cs/figures/evo_mboxreceive_a.png: Ditto.
    * cs/figures/evo_send_setup_a.png: Ditto.
    * cs/figures/evo_gwreceive_a.png: Ditto.
    * cs/figures/evo_newmess_a.png: Ditto.
    * cs/figures/collap_head_a.png: Ditto.
    * Makefile.am: Added cs to DOC_LINGUAS.

2008-03-09  Daniel Nylander <po@danielnylander.se>

    * sv/sv.po: Updated Swedish translation.

2008-03-04  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation
    * es/figures/*.png: Added Spanish screenshots

2008-03-03  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2008-03-03  Andre Klapper  <a9016009@gmx.de>

    * evolution/help/C/figures/evo_label_a.PNG:
    svn move evolution/help/C/figures/evo_label_a.PNG 
    evolution/help/C/figures/evo_label_a.png.

2008-02-29  Claude Paroz  <claude@2xlibre.net>

    * fr/fr.po: Updated French translation.
    * fr/figures/*: Updated and added screenshots.

2008-02-12  Wadim Dziedzic <wadimd@svn.gnome.org>

    * help/quickref/pl/quickref.pdf:
    * help/quickref/pl/quickref.tex:
    * help/quickref/pl/Makefile.am:
    * help/quickref/Makefile.am: Polish translation of quickref added.

2008-02-12  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation.

2008-02-08  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2008-02-08  Johnny Jacob  <jjohnny@novell.com>

    Committed on behalf of PC Radhika <pradhika@novell.com>

    ** Fixes #511600, #511602
    
    * C/figures, Makefile.am : Added new figures.
    
    * C/evolution.xml : New features until Jan 2008 - 
    google calender, crash detection, non intrusive error message, 
    advanced conf option for Junk mails, magic space bar.
    
2008-02-04  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2008-02-04  Wouter Bolsterlee <wbolster@gnome.org>    

    ** Fix for bug #513285

    * C/evolution.xml: Do not use entities.

2008-02-01  Arangenl Angov <arangel@linux.net.mk>

    * mk.po: Added partly translated mk.po.

2008-01-23  Andre Klapper  <a9016009@gmx.de>

    * de/figures/evo_gwreceive_a.png:
    * de/figures/evo_identity_a.png:
    * de/figures/evo_imapreceive_a.png:
    * de/figures/evo_maildirreceive_a.png:
    * de/figures/evo_mboxreceive_a.png:
    * de/figures/evo_mhreceive_a.png:
    * de/figures/evo_popreceive_a.png:
    * de/figures/evo_receive_setup_a.png:
    * de/figures/evo_send_setup_a.png:
    * de/figures/evo_timezone_a.png:
    * de/figures/evo_usereceive_a.png:
    Added localized screenshots.

2008-01-20  Yannig Marchegay <yannig@marchegay.org>

    * oc.po: Updated Occitan translation.

2008-01-06  Andre Klapper  <a9016009@gmx.de>

    * de/de.po: Update German translation.

2008-01-05  Andre Klapper  <a9016009@gmx.de>

    * de/de.po: Update German translation.

2007-12-25  Claude Paroz  <claude@2xlibre.net>

    * fr/figures/*
    * fr/fr.po: Merging modifications from gnome-2-20 branch.

2007-12-16  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

        * es/es.po: Updated Spanish translation

2007-12-15  Matthew Barnes  <mbarnes@redhat.com>

    * C/evolution.xml:
    Fix capitalization of "Switcher Appearance" menu (HIG 8.3.2).

2007-12-14  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

        * es/es.po: Updated Spanish translation   

2007-12-13  Matthew Barnes  <mbarnes@redhat.com>

    * help/C/evolution.xml:
    Fix all "entity not defined" warnings (#437579).

2007-11-21  Yannig Marchegay <yannig@marchegay.org> 

    * oc.po: Updated Occitan translation

2007-10-28  Daniel Nylander <po@danielnylander.se>

    * sv/sv.po: Updated Swedish translation.

2007-09-16  Yannig Marchegay <yannig@marchegay.org>

        * oc/oc.po: Updated Occitan translation

2007-09-16  Daniel Nylander <po@danielnylander.se>

    * sv/sv.po: Updated Swedish translation.

2007-09-15  Gabor Kelemen  <kelemeng@gnome.hu>

    * help/quickref/hu/quickref.pdf:
    * help/quickref/hu/quickref.tex:
    * help/quickref/hu/Makefile.am:
    * help/quickref/Makefile.am: Hungarian translation of quickref added.

2007-09-14  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2007-09-13  Johnny Jacob  <jjohnny@novell.com>

    Committed on behalf of PC Radhika <pradhika@novell.com>

    ** Fixes #354699 #475198 #467364 #468309 #337616
    
    * C/evolution.xml : Updating docs.
    
2007-09-09  Luca Ferretti  <elle.uca@libero.it>

    * quickref/Makefile.am: Added it to SUBDIRS.
    * quickref/it/*: Added Italian translation

2007-09-08  Claude Paroz  <claude@2xlibre.net>

    * quickref/Makefile.am: Added fr to SUBDIRS.
    * quickref/fr/*: Added French translation.

2007-08-30  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2007-08-29  Claude Paroz  <claude@2xlibre.net>

    * fr/fr.po: Updated French translation.

2007-08-28  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2007-08-27  Johnny Jacob  <jjohnny@novell.com>

    Committed on behalf of PC Radhika <pradhika@novell.com>

    ** Fixes #337616, #352346, #467364, #468309.
    
    * C/evolution.xml : 
    
2007-08-25  Jorge Gonzalez  <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2007-08-18  Jorge Gonzalez <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2007-08-17  Claude Paroz  <claude@2xlibre.net>

    * Makefile.am: Added fr to DOC_LINGUAS.
    * fr/fr.po: Added French translation.
    * fr/figures/*.png: Added French screenshots.

2007-08-16  Johnny Jacob  <jjohnny@novell.com>

    Committed on behalf of PC Radhika <pradhika@novell.com>

    * C/evolution.xml : Fixed comments (typos) from bug #435942.
    
2007-08-13  Jorge Gonzalez <jorgegonz@svn.gnome.org> 

    * es/es.po: Updated Spanish translation

2007-08-11  Jorge Gonzalez <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation  

2007-08-10  Johnny Jacob  <jjohnny@novell.com>

    Committed on behalf of PC Radhika <pradhika@novell.com>

    * C/evolution.xml : Updated docs for 2.12
    * C/figures/evo_cal_ prop_a.png : Removed.

2007-08-09  Nikos Charonitakis <nikosx@gmail.com>

    * el/el.po: Added Greek translation
        * Makefile.am: Added Greek translation

2007-08-05  Jorge Gonzalez <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2007-08-03  Frederic Peters  <fpeters@0d.be>

    reviewed by: Srinivasa Ragavan

    * C/evolution.xml: add id attribute to top <book> element

2007-08-02  Jorge Gonzalez <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2007-07-31  Jorge Gonzalez <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2007-07-30  Jorge Gonzalez <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2007-07-30  Johnny Jacob  <jjohnny@novell.com>

    Committed on behalf of PC Radhika <pradhika@novell.com>

    * C/figures/* : Added new screenshots.
    * C/evolution.xml : Updated docs for 2.11.6

2007-07-23  Daniel Nylander <po@danielnylander.se>

    * sv/figures/*: Added some screenshots.

2007-07-21  Daniel Nylander <po@danielnylander.se>

    * sv/figures/*: Added some screenshots.
    * sv/sv.po: Updated Swedish translation.

2007-07-05  Jorge Gonzalez <jorgegonz@svn.gnome.org>

        * es/es.po: Updated Spanish translation

2007-07-03  Jorge Gonzalez <jorgegonz@svn.gnome.org>

        * es/es.po: Updated Spanish translation

2007-06-30  Jorge Gonzalez <jorgegonz@svn.gnome.org>

        * es/es.po: Updated Spanish translation

2007-06-27  Jorge Gonzalez <jorgegonz@svn.gnome.org>

        * es/es.po: Updated Spanish translation

2007-06-24  Jorge Gonzalez <jorgegonz@svn.gnome.org>

        * es/es.po: Updated Spanish translation

2007-06-21  Daniel Nylander <po@danielnylander.se>

    * sv/figures/*: Updated screenshots.
    * sv/sv.po: Updated Swedish translation.

2007-06-20  Daniel Nylander <po@danielnylander.se>

    * sv/figures/*: Added and updated a lot of screenshots.

2007-06-15  Jorge Gonzalez <jorgegonz@svn.gnome.org>

        * es/es.po: Updated Spanish translation

2007-06-07  Duarte Loreto <happyguy_pt@hotmail.com>

    * quickref/pt/Makefile.am: Added for Portuguese
    * quickref/pt/quickref.tex: Added Portuguese translation.
    * quickref/pt/quickref.pdf: Added PDF conversion of trans.
    * quickref/Makefile.am: Added Portuguese (pt) to subdirs.

2007-06-03  Jorge Gonzalez <jorgegonz@svn.gnome.org>

        * es/es.po: Updated Spanish translation

2007-05-29  Hendrik Richter  <hendrikr@gnome.org>

    * de/*: Added German translation by
                  Andre Klapper <ak-47@gmx.net>
    * Makefile.a: Added de

2007-05-10  Jorge Gonzalez <jorgegonz@svn.gnome.org>

        * es/es.po: Updated Spanish translation

2007-05-06  Jorge Gonzalez <jorgegonz@svn.gnome.org>

    * es/es.po: Updated Spanish translation

2007-05-02  Nickolay V. Shmyrev  <nshmyrev@yandex.ru>

    * Makefile.am:
    * ru/ru.po: Added Russian translation by
    Sergey Mironov <sergo@bk.ru>

2007-04-25  Matthew Barnes  <mbarnes@redhat.com>

    * C/evolution.xml: Fix a typo (<br />).

2007-03-11  Daniel Nylander <po@danielnylander.se>

    * sv/sv.po: Updated Swedish translation.

2007-03-07  Srinivasa Ragavan  <sragavan@novell.com>

    * Makefile.am: Added new doc images to Makefile.am.

2007-03-02  David Lodge <dave@cirt.net>

    * en_GB/en_GB.po: Added English (British) translation
    * Makefile.am: Added en_GB to DOC_LINGUAS

2007-02-23  PC Radhika <pradhika@novell.com>

    * C/evolution.xml: Updated documentation for Evolution 2.10.
      Added new images and updated few images.

2007-01-20  Daniel Nylander <po@danielnylander.se>

    * quickref/sv/quickref.pdf: Updated Swedish translation.
    * quickref/sv/quickref.tex: Updated Swedish translation.

2006-12-22  Daniel Nylander <po@danielnylander.se>

    * sv/sv.po: Updated Swedish translation.
    * sv/figures/*png: Added screenshots.
    * Makefile.am: Added sv to DOC_LINGUAS

2006-12-14  Francisco Javier F. Serrador  <serrador@openshine.com>

    * es/es.po: Translation updated 

2006-12-09  Francisco Javier F. Serrador  <serrador@openshine.com>

    * es/es.po: Translation updated

2006-12-07  Francisco Javier F. Serrador  <serrador@openshine.com>

    * es/*.xml: removed old xml files
    * es/.cvsignore: Added .cvsignore file
    
2006-12-07  Francisco Javier F. Serrador  <serrador@openshine.com>

    * es/*.xml: Removed old XML files.
    * es/es.po: Updated Spanish translation.

2006-11-22  Francisco Javier F. Serrador  <serrador@openshine.com>

    * C/Makefile.am, C/evolution-C.omf: Removed left over files.
    
2006-11-22  Francisco Javier F. Serrador  <serrador@openshine.com>

    * evolution.omf.in: Added omf for Evolution.
    
2006-11-22  Francisco Javier F. Serrador  <serrador@openshine.com> 

    * es/es.po: Updated Spanish translation.

2006-11-22  Francisco Javier F. Serrador  <serrador@openshine.com>

    * es/es.po: Added Spanish doc translation.

2006-11-14  Francisco Javier F. Serrador  <serrador@openshine.com>

    * C/figures/evo_cal_callout_a.gif: Deleted 
    * C/figures/evo_cal_callout_a.png: Added (as indicated in evolution.xml)

2006-11-10  Francisco Javier F. Serrador  <serrador@openshine.com>

    * quickref/es/Makefile.am:
    * quickref/es/quickref.tex:
    * quickref/es/quickref.pdf:
    * quickref/Makefile.am:

    Added localized (spanish) quick reference card. 
    
2006-11-10  Francisco Javier F. Serrador  <serrador@openshine.com>

    * es/es.po: Added initial revision for gnome-doc-tools.

2006-10-14  Harish Krishnaswamy  <kharish@novell.com>

    * C/evolution.xml: Documentation updates.
    Committing on behalf of Radhika Nair <pradhika@novell.com>

2006-09-04  Harish Krishnaswamy  <kharish@novell.com>

    * C/evolution.xml: Documentation updates.
    Committing on behalf of Radhika Nair <pradhika@novell.com>

2006-09-04  Harish Krishnaswamy  <kharish@novell.com>

    * C/evolution.xml: Update the doc for Evolution 2.8.
    Committing on behalf of Radhika Nair <pradhika@novell.com>

2006-07-13  Andre Klapper  <a9016009@gmx.de>

    * quickref/Makefile.am:
    * quickref/de/Makefile.am:
    * quickref/de/quickref.pdf:
    * quickref/de/quickref.tex:
    
    adding localized (german) quick reference card. see bug #307856.

2006-04-25  Andre Klapper  <a9016009@gmx.de>

    * C/evolution.xml: fixing 3 bugs. Fixes bug 339094.

2006-03-23  Andre Klapper  <a9016009@gmx.de>

    * C/evolution.xml: Updating the doc for 2.6 and fixing bugs which went
    in by updating the doc for 2.6.

2006-03-06  Srinivasa Ragavan <sragavan@novell.com>

    * C/figures/Screenshot-Evolution -mailer-Preferences.png:
    * C/figures/Screenshot-Free-Busy.png: Added two new images for the 2.6
    documentation.

2006-03-06  Srinivasa Ragavan <sragavan@novell.com>

    * C/evolution.xml: Updating the doc for 2.6.

2006-02-27  Andre Klapper  <a9016009@gmx.de>
    * quickref/C/quickref.tex: Fixing a typo and pdf.

2006-02-27  Andre Klapper  <a9016009@gmx.de>
    * quickref/C/quickref.tex: Updating quickref and pdf.
    Fixes bug 316797.

2006-01-19  Andre Klapper <a9016009@gmx.de>

    * C/evolution-C.omf: changing start menu category and description.
    Fixes bug 325763.

2005-10-05  Harish Krishnaswamy  <kharish@novell.com>

    * C/evolution.xml: Set id to index. Fixes #316297.

2005-06-15  Andre Klapper  <a9016009@gmx.de>
    * quickref/C/quickref.tex: Updating and fixing several
    typos, wrong keyboard shortcuts and inconsistencies
    (fixes bug #268024)

    committed on behalf of Andre since he does not have 
    commit rights -partha
 
2005-08-29  Sankar P  <psankar@novell.com>

    * C/evolution.xml: Committed on behalf of Jessica.  
    Changes are made to the Proxy documentation.
    
2006-08-26  Harish Krishnaswamy <kharish@novell.com>

    * C/evolution.xml: Update references to bugzilla
    and related hyperlinks.
    
2006-08-26  Harish Krishnaswamy <kharish@novell.com>

    * C/evolution.xml: Update documentation

2005-03-06  JP Rosevear  <jpr@novell.com>

    * C/evolution.xml: Update documentation

2005-02-19  JP Rosevear  <jpr@novell.com>

    Fixes #71554
    
    * C/evolution-2.2.xml: add id="index"

2004-10-11  Rodney Dawes  <dobey@novell.com>

    * C/Makefile.am: Add new images to figures
    * C/figures/*.(png|eps): Update and add new images

    * C/evolution.xml: Update to lastest version of docs

2004-10-04  Rodney Dawes  <dobey@novell.com>

    * C/Makefile.am: Add unversioned xml/omf to EXTRA_DIST

2004-09-13  Rodney Dawes  <dobey@novell.com>

    * xmldocs.make: Don't requires entities here

    * C/Makefile.am: Add new figures to the list of images
    Generate versioned xml/omf files based on $(BASE_VERSION)
    Fix up CLEANFILES to include the stuff we generate

    * C/POTFILES.in:
    * C/apx-*.xml:
    * C/config-*.xml:
    * C/evolution-1.5-C.omf:
    * C/evolution-1.5.xml:
    * C/legal.xml:
    * C/menuref.xml:
    * C/preface.xml:
    * C/topic.dat:
    * C/usage-*.xml:
    Remove all of these files from CVS

    * C/evolution-C.omf:
    * C/evolution.xml:
    Add these files to replace the removed files above

    * C/figure/*_a.(png|gif): Add new screenshots
    
2004-01-27  Aaron Weber <aaron@ximian.com>
    * C/usage-mail-org.xml: spamfiltering
    * C/usage-mail.xml: charsets and input methods.
    * C/evolution-1.5.xml: assign copyright to Novell, add 2004.
    * C/legal.xml: Novell/XImian switcheroo

    
2004-01-26  David Trowbridge <trowbrds@cs.colorado.edu>
 
    * quick ref docs

2004-01-09  Rodney Dawes  <dobey@ximian.com>

    * C/Makefile.am (entities): Remove usage-exec-summary.xml

2004-01-07 Aaron Weber <aaron@ximian.com>
    *  help/C/Makefile.am: remove old graphic files
    * help/C/evolution-1.5.xml  updated style notes, date, version
    * help/C/apx-authors.xml: fix <application> usage
    * help/C/apx-gloss.xml: fix <application> and <guibutton> usage
    * help/C/config-prefs.xml:  same
    * help/C/config-sync.xml:  same
    * help/C/menuref.xml:  same
    * help/C/usage-calendar.xml:  same
    * help/C/usage-contact.xml:  same
    * help/C/usage-exchange.xml:  same
    * help/C/usage-mail-org.xml:  same
    * help/C/usage-mail.xml:  same
    * help/C/usage-print.xml:  same
    * help/C/usage-sync.xml :  same
    * help/C/usage-mainwindow.xml same, plus
    * help/C/preface.xml same, plus removed Summary
    * help/C/topic.dat Remove Summary
    * help/C/usage-exec-summary.xml:  Remove summary
    * help/C/figures/folder-bar.png: delete
    * help/C/figures/summary.png: delete

    
2003-11-17  JP Rosevear <jpr@ximian.com>

    * C/Makefile.am: Switch version to 1.5