aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* ** Fixes bug 343494 Use gtk_button_set_image if GTK+ is 2.6 or higher.Hiroyuki Ikezoe2006-06-022-2/+26
| | | | | | | | | | 2006-06-02 Hiroyuki Ikezoe <poincare@ikezoe.net> ** Fixes bug 343494 * e-search-bar.c: (add_button): Use gtk_button_set_image if GTK+ is 2.6 or higher. svn path=/trunk/; revision=32067
* Set new scroll member to false in static declarations. Fixes build breakerFrederic Peters2006-06-022-4/+9
| | | | | | | | | 2006-06-02 Frederic Peters <fpeters@entrouvert.com> * e-error.c: Set new scroll member to false in static declarations. Fixes build breaker #343446. svn path=/trunk/; revision=32066
* Fix typo that caused experimental plugins to be skipped.Iain Buchanan2006-06-022-1/+6
| | | | | | | | | 2006-06-02 Iain Buchanan <iaindb@netspace.net.au> * configure.in: Fix typo that caused experimental plugins to be skipped. svn path=/trunk/; revision=32065
* Remove redundant files meeting-page.[ch], cal-attachment.glade andHarish Krishnaswamy2006-06-017-1475/+7
| | | | | | | | | | | 2006-06-01 Harish Krishnaswamy <kharish@novell.com> * gui/dialogs/Makefile.am, gui/dialogs/event-editor.c, gui/dialogs/task-editor.c: Remove redundant files meeting-page.[ch], cal-attachment.glade and references in includes. svn path=/trunk/; revision=32063
* Increases the height of the dialog to make it easily usableDavid Richards2006-05-312-0/+6
| | | | | | | | | 2006-05-31 David Richards <drichard@largo.com> * proxy-login-dialog.glade: Increases the height of the dialog to make it easily usable svn path=/trunk/; revision=32060
* Updated Spanish translation.Francisco Javier F. Serrador2006-05-312-2/+6
| | | | | | | | 2006-05-31 Francisco Javier F. Serrador <serrador@openshine.com> * es.po: Updated Spanish translation. svn path=/trunk/; revision=32058
* *** empty log message ***Pema Geyleg2006-05-302-568/+637
| | | | svn path=/trunk/; revision=32056
* Fix for #343280. No need to add label when we useLi Yuan2006-05-302-7/+8
| | | | | | | | | | | 2006-05-30 Li Yuan <li.yuan@sun.com> Fix for #343280. * e-search-bar.c: (add_button): No need to add label when we use gtk_button_new_from_stock to create a button. svn path=/trunk/; revision=32055
* Fix for #341381. We should lock e-tree-memory when we change it.Li Yuan2006-05-302-0/+9
| | | | | | | | | | 2006-05-30 Li Yuan <li.yuan@sun.com> Fix for #341381. * message-list.c: (message_list_set_folder): We should lock e-tree-memory when we change it. svn path=/trunk/; revision=32054
* Fix for bug #332936Srinivasa Ragavan2006-05-304-4/+36
| | | | svn path=/trunk/; revision=32053
* Updated Finnish translationIlkka Tuohela2006-05-302-2/+6
| | | | svn path=/trunk/; revision=32052
* Updated Spanish translation.Francisco Javier F. Serrador2006-05-292-420/+450
| | | | | | | | 2006-05-29 Francisco Javier F. Serrador <serrador@openshine.com> * es.po: Updated Spanish translation. svn path=/trunk/; revision=32049
* Translation updated.Vincent van Adrighem2006-05-292-1852/+2568
| | | | | | | | 2006-05-28 Vincent van Adrighem <adrighem@gnome.org> * nl.po: Translation updated. svn path=/trunk/; revision=32048
* Fix compilation by adding missing (Thomas Vander Stichele2006-05-282-1/+6
| | | | | | | * widgets/misc/e-attachment-bar.c: (update): Fix compilation by adding missing ( svn path=/trunk/; revision=32046
* Updated Norwegian bokmål translation.Kjartan Maraas2006-05-272-531/+594
| | | | | | | | 2006-05-27 Kjartan Maraas <kmaraas@gnome.org> * nb.po: Updated Norwegian bokmål translation. svn path=/trunk/; revision=32044
* *** empty log message ***Pema Geyleg2006-05-272-4580/+5903
| | | | svn path=/trunk/; revision=32043
* Fix for Novell bug #178631Jeffrey Stedfast2006-05-274-478/+451
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 2006-05-26 Jeffrey Stedfast <fejj@novell.com> Fix for Novell bug #178631 * e-attachment-bar.c: Changed the EAttachmentBarPrivate struct, we no longer use a linked list, instead we use a GPtrArray - faster, simpler (plus all the code used indexes anyway, so it was really bizarre). (free_attachment_list): Removed. (attachment_destroy): New GWeakNotify callback for when an EAttachment object gets destroyed. Remove the attachment from the attachments array. (add_common): Updated to add to an array rather than a linked list. Also weak_ref the attachment object. (remove_attachment): Removed. (update): Updated to use the array instead of linked list of attachments. (e_attachment_bar_remove_selected): Same. (e_attachment_bar_set_width): Same. (e_attachment_bar_edit_selected): Same. (e_attachment_bar_get_selected): Same. (e_attachment_bar_get_attachment): Same. (e_attachment_bar_get_all_attachments): Same and also optimised since we can cheat now without having to g_slist_reverse. (e_attachment_bar_get_parts): Same. (destroy): Same. (eab_drag_data_get): Same. (init): Init attachments to a g_ptr_array_new (e_attachment_bar_to_multipart): Updated to use the attachments array. (e_attachment_bar_get_num_attachments): Updated to return the attachments->len. (e_attachment_bar_get_download_count): Updated to use the array. * e-attachment.c (finalise): Close the editor dialog if it is open. (async_progress_update_cb): If the phase is COMPLETE but the file_size is 0, then treat it as an error. In the error case, unref the attachment object (this will magically remove it from the EAttachmentBar). (close_cb): Don't unref the attachment object here anymore. (e_attachment_edit): Don't ref the EAttachment anymore. svn path=/trunk/; revision=32042
* fixed ChangeLogJeffrey Stedfast2006-05-271-160/+179
| | | | svn path=/trunk/; revision=32041
* If 'str' is empty, continue immediately rather than trying to parse it aJeffrey Stedfast2006-05-272-3/+9
| | | | | | | | | 2006-05-26 Jeffrey Stedfast <fejj@novell.com> * e-msg-composer.c (drop_action): If 'str' is empty, continue immediately rather than trying to parse it a URL. svn path=/trunk/; revision=32040
* vi.po: Updated Vietnamese translation.Clytie Siddall2006-05-262-400/+436
| | | | svn path=/trunk/; revision=32037
* Updated TranslationAnkitkumar Rameshchandra Patel2006-05-262-390/+421
| | | | svn path=/trunk/; revision=32036
* Typo fixNguyen Thai Ngoc Duy2006-05-261-1/+1
| | | | svn path=/trunk/; revision=32034
* Instead of g_free()ing 'str' in the if and else blocks, just g_free itJeffrey Stedfast2006-05-262-28/+24
| | | | | | | | | 2006-05-25 Jeffrey Stedfast <fejj@novell.com> * e-msg-composer.c (drop_action): Instead of g_free()ing 'str' in the if and else blocks, just g_free it after the if-else block. svn path=/trunk/; revision=32033
* Replace 'if (!filename)' with 'if (filename)', fixes a bug in Srini'sJeffrey Stedfast2006-05-262-3/+7
| | | | | | | | | | 2006-05-25 Jeffrey Stedfast <fejj@novell.com> * e-msg-composer-select-file.c (select_attach_response): Replace 'if (!filename)' with 'if (filename)', fixes a bug in Srini's patch. svn path=/trunk/; revision=32032
* Set the visible field to FALSE.Jeffrey Stedfast2006-05-263-16/+22
| | | | | | | | | 2006-05-25 Jeffrey Stedfast <fejj@novell.com> * e-msg-composer-hdrs.c (header_new_recipient): Set the visible field to FALSE. svn path=/trunk/; revision=32031
* fixed ChangeLog formattingJeffrey Stedfast2006-05-261-70/+86
| | | | svn path=/trunk/; revision=32030
* gui/contact-editor/e-contact-quick-add.c : Right click add toDevashish Sharma2006-05-252-2/+7
| | | | | | contacts doesnt work on email addresses in received mails. svn path=/trunk/; revision=32029
* gui/widgets/eab-contact-display.c : Name of some fields differDevashish Sharma2006-05-252-3/+9
| | | | | | | when seen in preview pane and contact editor (Video Chat in contact editor and Video Conferencing in preview pane). svn path=/trunk/; revision=32028
* vi.po: Updated Vietnamese translation.Clytie Siddall2006-05-252-5822/+6395
| | | | svn path=/trunk/; revision=32027
* contacts added to a contact-list cant be added again.Devashish Sharma2006-05-252-5/+41
| | | | svn path=/trunk/; revision=32025
* Added support for saving/attaching files/events/mails from/to remote sharesSrinivasa Ragavan2006-05-256-7/+30
| | | | svn path=/trunk/; revision=32024
* Added code to save/attach files/mails/events to/from remote sharesSrinivasa Ragavan2006-05-2519-71/+191
| | | | svn path=/trunk/; revision=32023
* Added new icons to buildSrinivasa Ragavan2006-05-254-1/+11
| | | | svn path=/trunk/; revision=32022
* Committed fix for bug #342092Srinivasa Ragavan2006-05-252-2/+9
| | | | svn path=/trunk/; revision=32021
* Added support for collapsible headers for To/Cc/BccSrinivasa Ragavan2006-05-2511-14/+306
| | | | svn path=/trunk/; revision=32020
* Committed fix for bug #342676.Srinivasa Ragavan2006-05-243-9/+17
| | | | svn path=/trunk/; revision=32017
* Typo fixes.Stanislav Brabec2006-05-232-2/+6
| | | | svn path=/trunk/; revision=32016
* More alarm fixesSrinivasa Ragavan2006-05-233-9/+31
| | | | svn path=/trunk/; revision=32015
* Updated TranslationAnkitkumar Rameshchandra Patel2006-05-232-30/+35
| | | | svn path=/trunk/; revision=32014
* **Fixes bug #331418 Set mnemonics in popup menu.Hiroyuki Ikezoe2006-05-222-4/+9
| | | | | | | | | 2006-05-22 Hiroyuki Ikezoe <poincare@ikezoe.net> **Fixes bug #331418 * gui/memos-component.c: Set mnemonics in popup menu. svn path=/trunk/; revision=32012
* Update intltool requirements.Harish Krishnaswamy2006-05-222-2/+6
| | | | | | | | 2006-05-22 Harish Krishnaswamy <kharish@novell.com> * configure.in: Update intltool requirements. svn path=/trunk/; revision=32011
* *** empty log message ***Ignacio Casal Quinteiro2006-05-222-117/+153
| | | | svn path=/trunk/; revision=32009
* Translation updated.Vincent van Adrighem2006-05-202-6157/+2420
| | | | | | | | 2006-05-20 Vincent van Adrighem <adrighem@gnome.org> * nl.po: Translation updated. svn path=/trunk/; revision=32007
* Updated Spanish translation.Francisco Javier F. Serrador2006-05-202-4/+24
| | | | | | | | 2006-05-19 Francisco Javier F. Serrador <serrador@cvs.gnome.org> * es.po: Updated Spanish translation. svn path=/trunk/; revision=32004
* Translation updated by Ivar Smolin.Priit Laes2006-05-182-1134/+1197
| | | | | | | | 2006-05-18 Priit Laes <amd@store20.com> * et.po: Translation updated by Ivar Smolin. svn path=/trunk/; revision=32000
* Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>Alexander Shopov2006-05-182-4/+17
| | | | | | | | | 2006-05-18 Alexander Shopov <ash@contact.bg> * bg.po: Updated Bulgarian translation by Alexander Shopov <ash@contact.bg> svn path=/trunk/; revision=31999
* Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>Alexander Shopov2006-05-182-25/+47
| | | | | | | | | 2006-05-18 Alexander Shopov <ash@contact.bg> * bg.po: Updated Bulgarian translation by Alexander Shopov <ash@contact.bg> svn path=/trunk/; revision=31998
* Updated TranslationAnkitkumar Rameshchandra Patel2006-05-182-2/+23
| | | | svn path=/trunk/; revision=31996
* Ref the store before removing the store from our hash and cache. ShouldJeffrey Stedfast2006-05-172-2/+8
| | | | | | | | | | 2006-05-04 Jeffrey Stedfast <fejj@novell.com> * mail-component.c (mail_component_remove_store): Ref the store before removing the store from our hash and cache. Should fix Novell bug #166987. svn path=/trunk/; revision=31994
* Fix for gnome bug #341931, farsiweb #562 Mark a few messages forRoozbeh Pournader2006-05-172-4/+10
| | | | | | | | | | 2006-05-17 Roozbeh Pournader <roozbeh@farsiweb.info> Fix for gnome bug #341931, farsiweb #562 * gui/contact-editor/e-contact-editor.c: Mark a few messages for translation. svn path=/trunk/; revision=31993
* Added Spanish doc translation.Francisco Javier F. Serrador2006-05-171-0/+7063
| | | | | | | | 2006-05-17 Francisco Javier F. Serrador <serrador@cvs.gnome.org> * evolution-doc-2.6.po: Added Spanish doc translation. svn path=/trunk/; revision=31992
* Revert the earlier patch. They are needed, after all.Harish Krishnaswamy2006-05-164-0/+34
| | | | | | | | | | 2006-05-16 Harish Krishnaswamy <kharish@novell.com> * Makefile.am, e-table/Makefile.am e-text/Makefile.am: Revert the earlier patch. They are needed, after all. svn path=/trunk/; revision=31990
* Updated Spanish translation.Francisco Javier F. Serrador2006-05-162-257/+255
| | | | | | | | 2006-05-15 Francisco Javier F. Serrador <serrador@cvs.gnome.org> * es.po: Updated Spanish translation. svn path=/trunk/; revision=31989
* Change the variable name from is_actived to is_activeLi Yuan2006-05-151-3/+3
| | | | svn path=/trunk/; revision=31987
* Fixes #341525Li Yuan2006-05-152-9/+21
| | | | | | | | | | | 2006-05-15 Li Yuan <li.yuan@sun.com> Fixes #341525 * e-sidebar.c: (button_toggled_callback): If the button has been selected, it is no need to emit the signal. svn path=/trunk/; revision=31986
* Patch submitted by Li Yuan <li.yuan@sun.com> Do not install header files.Harish Krishnaswamy2006-05-154-28/+6
| | | | | | | | | | 2006-05-15 Harish Krishnaswamy <kharish@novell.com> Patch submitted by Li Yuan <li.yuan@sun.com> * Makefile.am, e-table/Makefile.am, e-text/Makefile.am: Do not install header files. svn path=/trunk/; revision=31985
* Updated TranslationAnkitkumar Rameshchandra Patel2006-05-152-13/+23
| | | | svn path=/trunk/; revision=31984
* Patch suggested by Yu-Hui Liu Check for timezone before passing theHarish Krishnaswamy2006-05-132-6/+12
| | | | | | | | | | 2006-05-13 Harish Krishnaswamy <kharish@novell.com> Patch suggested by Yu-Hui Liu * conduits/todo/todo-conduit.c: (pre_sync): Check for timezone before passing the context. svn path=/trunk/; revision=31981
* patch submitted by: Hiroyuki IkezoeHarish Krishnaswamy2006-05-132-0/+7
| | | | | | | | | | 2006-05-13 Harish Krishnaswamy <kharish@novell.com> patch submitted by: Hiroyuki Ikezoe * ipod.c: Remove compiler warning. Fixes 341606. svn path=/trunk/; revision=31980
* Reviewed and committed by Harish Krishnaswamy <kharish@novell.com>Hiroyuki Ikezoe2006-05-122-2/+6
| | | | | | | | | | | 2006-05-12 Hiroyuki Ikezoe <poincare@ikezoe.net> Reviewed and committed by Harish Krishnaswamy <kharish@novell.com> ** Fixes bug #341530. * e-table.h: Removed duplicate delcaration of e_table_commi_click_to_add. svn path=/trunk/; revision=31979
* Fix for Bug 341521 Change the label name of categories button.simon.zheng2006-05-122-1/+7
| | | | | | | | | | 2006-05-12 simon.zheng <simon.zheng@sun.com> Fix for Bug 341521 * gui/contact-editor/contact-editor.glade: Change the label name of categories button. svn path=/trunk/; revision=31978
* oops, remove some lines that weren't supposed to be thereJeffrey Stedfast2006-05-121-2/+0
| | | | svn path=/trunk/; revision=31976
* Fixes a crashChenthill Palanisamy2006-05-111-1/+1
| | | | svn path=/trunk/; revision=31974
* Do not print the password in the terminal.Sankar P2006-05-112-1/+6
| | | | | | | | | 2006-05-11 Sankar P <psankar@novell.com> * exchange-account-setup.c: (btn_chpass_clicked): Do not print the password in the terminal. svn path=/trunk/; revision=31972
* partially fixes #332911Chenthill Palanisamy2006-05-113-10/+41
| | | | svn path=/trunk/; revision=31971
* Updated TranslationAnkitkumar Rameshchandra Patel2006-05-112-14/+17
| | | | svn path=/trunk/; revision=31970
* Using the HIGified notification message. Fixes #302825.Sushma Rai2006-05-103-3/+12
| | | | svn path=/trunk/; revision=31968
* Not displaying error message on cancel operation. Fixes #332131.Sushma Rai2006-05-102-1/+8
| | | | svn path=/trunk/; revision=31966
* Patch from Brian Pepple to achieve GNOME Goal for po/LINGUAS. Closes bugKjartan Maraas2006-05-093-2/+79
| | | | | | | | | | 2006-05-09 Kjartan Maraas <kmaraas@gnome.org> * configure.in: Patch from Brian Pepple to achieve GNOME Goal for po/LINGUAS. Closes bug #337965. * po/LINGUAS: New file. svn path=/trunk/; revision=31964
* Updated Spanish translation.Francisco Javier F. Serrador2006-05-092-181/+99
| | | | | | | | 2006-05-08 Francisco Javier F. Serrador <serrador@cvs.gnome.org> * es.po: Updated Spanish translation. svn path=/trunk/; revision=31963
* Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>Alexander Shopov2006-05-092-545/+616
| | | | | | | | | 2006-05-08 Alexander Shopov <ash@contact.bg> * bg.po: Updated Bulgarian translation by Alexander Shopov <ash@contact.bg> svn path=/trunk/; revision=31961
* Multiple folder support for iPod.Srinivasa Ragavan2006-05-092-7/+18
| | | | svn path=/trunk/; revision=31960
* Fix for #333279.Li Yuan2006-05-082-0/+10
| | | | | | | | | | | 2006-05-08 Li Yuan <li.yuan@sun.com> Fix for #333279. * e-table/gal-a11y-e-table-item.c: (table_is_row_selected): If row<0, just return FALSE. svn path=/trunk/; revision=31959
* Updated Spanish translation.Francisco Javier F. Serrador2006-05-072-853/+912
| | | | | | | | 2006-05-07 Francisco Javier F. Serrador <serrador@cvs.gnome.org> * es.po: Updated Spanish translation. svn path=/trunk/; revision=31958
* Updated TranslationAnkitkumar Rameshchandra Patel2006-05-052-94/+115
| | | | svn path=/trunk/; revision=31957
* fixed ChangeLogJeffrey Stedfast2006-05-051-39/+41
| | | | svn path=/trunk/; revision=31956
* Committing a patch to build without cairo and fixed a issue where entireSrinivasa Ragavan2006-05-042-18/+665
| | | | | | evolution might showup with bold text. svn path=/trunk/; revision=31955
* Committing updated patch for cairo.Srinivasa Ragavan2006-05-0411-54/+2370
| | | | svn path=/trunk/; revision=31954
* Set mnemonic to L instead of the conflicting 'i'. Fixes #334056.Harish Krishnaswamy2006-05-042-1/+6
| | | | | | | | | 2006-05-04 Harish Krishnaswamy <kharish@novell.com> * gui/dialogs/event-page.glade: Set mnemonic to L instead of the conflicting 'i'. Fixes #334056. svn path=/trunk/; revision=31953
* Upstreaming Chen's patch. Fixes #333689Harish Krishnaswamy2006-05-042-3/+10
| | | | | | | | 2006-05-04 Harish Krishnaswamy <kharish@novell.com> Upstreaming Chen's patch. Fixes #333689 svn path=/trunk/; revision=31952
* configure.in: Fix compilation with modern openldap releases. PartiallyKjartan Maraas2006-05-032-1/+16
| | | | | | | | | 2006-05-02 Kjartan Maraas <kmaraas@gnome.org> configure.in: Fix compilation with modern openldap releases. Partially fixes bug #325957. Patch from Sushuma Rai. svn path=/trunk/; revision=31948
* Fixes deletion of multiple tasks.Chenthill Palanisamy2006-05-022-1/+9
| | | | svn path=/trunk/; revision=31945
* *** empty log message ***Ignacio Casal Quinteiro2006-05-022-474/+524
| | | | svn path=/trunk/; revision=31944
* Updated TranslationAnkitkumar Rameshchandra Patel2006-05-022-475/+527
| | | | svn path=/trunk/; revision=31943
* Updated evolution zh_CN translation.Funda Wang2006-05-012-50/+61
| | | | svn path=/trunk/; revision=31940
* 2006-04-30 Lukas Novotny <lukasnov@cvs.gnome.org> * cs.po: Updated Czech ↵Lukas Novotny2006-04-302-53/+67
| | | | | | translation. svn path=/trunk/; revision=31936
* Updated Norwegian bokmål translationKjartan Maraas2006-04-302-958/+978
| | | | | | | | 2006-04-30 Kjartan Maraas <kmaraas@gnome.org> * nb.po: Updated Norwegian bokmål translation svn path=/trunk/; revision=31934
* ** Fixes bug #323853Shi Pu2006-04-305-80/+49
| | | | | | | | | | | | | | | 2006-04-30 Shi Pu <shi.pu@sun.com> ** Fixes bug #323853 * em-composer-prefs.c: (sig_edit_cb), (sig_add_script_response): * em-mailer-prefs.c: (notify_sound_changed), (em_mailer_prefs_construct): * em-mailer-prefs.h: * mail-config.glade: Replace GnomeFileEntry by GtkFileChooserButton. svn path=/trunk/; revision=31933
* ** Fixes Bug #323853Shi Pu2006-04-302-15/+32
| | | | | | | | | | | 2006-02-24 Shi Pu <shi.pu@sun.com> ** Fixes Bug #323853 * filter-file.c: (filename_changed), (get_widget): Replace GnomeFileEntry by GtkFileChooserButton. svn path=/trunk/; revision=31932
* ** Fixes #323853Shi Pu2006-04-302-6/+13
| | | | | | | | | | | | 2006-02-28 Shi Pu <shi.pu@sun.com> ** Fixes #323853 * save-attachments.c: (save_response), (entry_changed), (save_got_message): replace GnomeFileEntry by GtkFileChooserButton. svn path=/trunk/; revision=31931
* Fixes #323853Nancy Cai2006-04-302-5/+25
| | | | | | | | | | | | | 2006-04-30 Nancy Cai <nancy.cai@sun.com> Fixes #323853 * e-shell-importer.c: (filename_changed), (item_selected), (importer_file_page_new), (prepare_file_page): replacing GnomeFileEntry by GtkFileButton, which can import task files with none UTF-8 filenames. svn path=/trunk/; revision=31930
* reviewed by: Srinivasa RagavanSven Herzberg2006-04-283-6/+107
| | | | | | | | | | | | | 2006-04-28 Sven Herzberg <herzi@gnome-de.org> reviewed by: Srinivasa Ragavan * shell/apps_evolution_shell.schemas.in.in: added boolean key for the maximized state of the window * shell/e-shell-window.c: added window state saving and updated window size saving to work as expected (fixes bug 243962) svn path=/trunk/; revision=31926
* Fix for #339136Boby Wang2006-04-287-11/+71
| | | | | | | | | | | | | | | | | | | | | | | | 2006-04-28 Boby Wang <boby.wang@sun.com> Fix for #339136 * calendar/ea-cal-view-event.c: (ea_cal_view_event_get_type), (ea_cal_view_event_class_init), (ea_cal_view_event_init), (ea_cal_view_event_dispose), (ea_cal_view_event_get_index_in_parent), (ea_cal_view_event_ref_state_set): add necessary AtkStateSet to EaCalViewEvent. * calendar/ea-cal-view-event.h: add necessary AtkStateSet to EaCalViewEvent. * calendar/ea-calendar.c: (e_cal_view_a11y_init): replace e_cal_view_get_type with e_calendar_view_get_type * calendar/ea-day-view.c: (ea_day_view_get_type): replace e_cal_view_get_type with e_calendar_view_get_type * calendar/ea-week-view.c: * calendar/ea-week-view.h: change the base class of EaWeekView from GtkAccessible to EaCalView svn path=/trunk/; revision=31924
* Fix for # 333725Boby Wang2006-04-283-8/+15
| | | | | | | | | | | 2006-04-28 Boby Wang <boby.wang@sun.com> Fix for # 333725 * ea-factory.h: Disable accessible code when accessibility is not enabled * gal-a11y-factory.h: Remove some unused code svn path=/trunk/; revision=31922
* Don't set gtk-delete as the stock icon for Empty TrashRodney Dawes2006-04-283-5/+15
| | | | | | | | | | | | | | | 2006-04-27 Rodney Dawes <dobey@novell.com> * evolution-mail-global.xml: Don't set gtk-delete as the stock icon for Empty Trash * evolution-mail-message.xml: Set the MessageDelete icon as a pixbuf from the code Don't set an icon for MessageUndelete Fixes #339626 svn path=/trunk/; revision=31921
* Use gnome-fs-trash-empty rather than stock_delete for the Trash folderRodney Dawes2006-04-283-4/+14
| | | | | | | | | | | | | | | 2006-04-27 Rodney Dawes <dobey@novell.com> * em-folder-tree.c (render_pixbuf): Use gnome-fs-trash-empty rather than stock_delete for the Trash folder icon * em-folder-view.c (emfv_popup_items[]): Don't set an icon for Undelete (emfv_message_pixmaps[]): Don't set an icon for Undelete and set the icon for deleting a message to gnome-fs-trash-empty, not stock_delete Fixes #339626 svn path=/trunk/; revision=31920
* Fix crash: Should use a GdkColor struct as such here, not a pointer.Tor Lillqvist2006-04-273-8/+32
| | | | | | | | | | | | | | 2006-04-27 Tor Lillqvist <tml@novell.com> * gui/e-day-view-main-item.c (e_day_view_main_item_draw_long_events_in_vbars): Fix crash: Should use a GdkColor struct as such here, not a pointer. * gui/dialogs/event-editor.c (event_editor_init): Construct pathname to query-free-busy.png at run-time. Fixes Win32 build broken by the fix for #321832 below. svn path=/trunk/; revision=31917
* ** Fixes bug #339138Boby Wang2006-04-272-1/+8
| | | | | | | | | | | 2006-04-27 Boby Wang <boby.wang@sun.com> ** Fixes bug #339138 * e-calendar.c: (e_calendar_init): Correct the button's accessible name. svn path=/trunk/; revision=31916
* update last stable version number from 2.4.2.1 to 2.6.1Andre Klapper2006-04-272-1/+5
| | | | | | | 2006-04-27 Andre Klapper <a9016009@gmx.de> * main.c: update last stable version number from 2.4.2.1 to 2.6.1 svn path=/trunk/; revision=31915
* Add e_expander_get_type which now is needed when linkingTor Lillqvist2006-04-272-0/+6
| | | | | | | | | 2006-04-27 Tor Lillqvist <tml@novell.com> * win32/libemiscwidgets.def: Add e_expander_get_type which now is needed when linking libevolution-widgets-a11y. svn path=/trunk/; revision=31913
* ** Fixes bug #332821 Implement the accessibility of EExpander.Boby Wang2006-04-272-0/+9
| | | | | | | | | | 2006-04-27 Boby Wang <boby.wang@sun.com> ** Fixes bug #332821 * e-expander.c: (e_expander_class_init): Implement the accessibility of EExpander. svn path=/trunk/; revision=31912
* Fix for #332821Boby Wang2006-04-276-0/+235
| | | | | | | | | | | | | | 2006-04-27 Boby Wang <boby.wang@sun.com> Fix for #332821 * widgets/Makefile.am: * widgets/ea-expander.[ch]: Add two new files to implement the accessibility of EExpander. * widgets/ea-widgets.[ch]:(e_expander_a11y_init): Implement the accessibility of EExpander. svn path=/trunk/; revision=31911
* ** Fix for bug # 336470Boby Wang2006-04-272-0/+13
| | | | | | | | | | | 2006-04-27 Boby Wang <boby.wang@sun.com> ** Fix for bug # 336470 * gui/contact-editor/fullname.glade: Add labelled-by relationship to gtkcombo. svn path=/trunk/; revision=31910
* Added icons to search menu.Srinivasa Ragavan2006-04-262-3/+11
| | | | svn path=/trunk/; revision=31909
* Committing fix for bug #328194Srinivasa Ragavan2006-04-262-4/+9
| | | | svn path=/trunk/; revision=31908
* Added icons for Find and Clear buttons.Srinivasa Ragavan2006-04-262-4/+14
| | | | svn path=/trunk/; revision=31907
* Committing fix for bug #331510 from VictorSrinivasa Ragavan2006-04-263-1/+9
| | | | svn path=/trunk/; revision=31906
* Committing a patch from Victor for adding a Sender header to message list.Srinivasa Ragavan2006-04-264-3/+34
| | | | svn path=/trunk/; revision=31905
* Comparing the FolderInfo flags right, to make Mailbox to show From header in ↵Srinivasa Ragavan2006-04-262-1/+7
| | | | | | message list for groupwise servers. svn path=/trunk/; revision=31904
* Handle SUN Type 6 keyboard's copy, paste and cut key. Fix #271661.Li Yuan2006-04-262-0/+23
| | | | | | | | | | | 2006-04-26 Li Yuan <li.yuan@sun.com> * e-text-event-processor-emacs-like.c: (e_text_event_processor_emacs_like_event): Handle SUN Type 6 keyboard's copy, paste and cut key. Fix #271661. svn path=/trunk/; revision=31903
* Committing patch from PR Suman to add icons missing in menu items.Srinivasa Ragavan2006-04-263-1/+19
| | | | svn path=/trunk/; revision=31902
* Committing patch from PR Suman to add icons missing in menu items.Srinivasa Ragavan2006-04-262-0/+8
| | | | svn path=/trunk/; revision=31901
* Committing atch from PR Suman to add icons missing in menu items.Srinivasa Ragavan2006-04-262-2/+11
| | | | svn path=/trunk/; revision=31900
* Committing patch from PR Suman for adding icons in menu items.Srinivasa Ragavan2006-04-266-7/+17
| | | | svn path=/trunk/; revision=31899
* Committing fix for bug #335861Srinivasa Ragavan2006-04-262-1/+8
| | | | svn path=/trunk/; revision=31898
* Committing fix for bug #333971Srinivasa Ragavan2006-04-262-1/+9
| | | | svn path=/trunk/; revision=31897
* Committing fix for 323402 from Vincent NoelSrinivasa Ragavan2006-04-264-1/+33
| | | | svn path=/trunk/; revision=31896
* Committing patch for bug #317512.Srinivasa Ragavan2006-04-264-4/+250
| | | | svn path=/trunk/; revision=31895
* Cairo updates to calendarSrinivasa Ragavan2006-04-264-90/+62
| | | | svn path=/trunk/; revision=31894
* Updated evo translation.Funda Wang2006-04-262-389/+322
| | | | svn path=/trunk/; revision=31893
* Figure out auto-magically what the mozilla-nss pkg-config module name is.Jeffrey Stedfast2006-04-262-21/+34
| | | | | | | | | 2006-04-25 Jeffrey Stedfast <fejj@novell.com> * configure.in: Figure out auto-magically what the mozilla-nss pkg-config module name is. svn path=/trunk/; revision=31890
* fixing 3 bugs. Fixes bug 339094.Andre Klapper2006-04-252-3/+7
| | | | | | | | 2006-04-25 Andre Klapper <a9016009@gmx.de> * C/evolution.xml: fixing 3 bugs. Fixes bug 339094. svn path=/trunk/; revision=31889
* Catalan translation updateJordi Mas2006-04-252-6/+10
| | | | svn path=/trunk/; revision=31888
* Updated Welsh translation.Rhys Jones2006-04-252-1000/+1039
| | | | | | | | 2006-04-24 Rhys Jones <rhys@sucs.org> * cy.po: Updated Welsh translation. svn path=/trunk/; revision=31886
* Release updates. Bump version. ***** Release 2.7.1 *****Harish Krishnaswamy2006-04-243-2/+17
| | | | | | | | | 2006-04-24 Harish Krishnaswamy <kharish@novell.com> * NEWS, configure.in: Release updates. Bump version. ***** Release 2.7.1 ***** svn path=/trunk/; revision=31884
* add eds-1.4 and eds-1.6 to the list of old instances.Harish Krishnaswamy2006-04-242-0/+7
| | | | | | | | | 2006-04-24 Harish Krishnaswamy <kharish@novell.com> * main.c: (kill_dataserver): add eds-1.4 and eds-1.6 to the list of old instances. svn path=/trunk/; revision=31883
* Update credits for the previous development series.Harish Krishnaswamy2006-04-242-0/+36
| | | | | | | | | 2006-04-24 Harish Krishnaswamy <kharish@novell.com> * e-shell-window-commands.c: Update credits for the previous development series. svn path=/trunk/; revision=31882
* Added Cairo Support to Evolution Calendar.Srinivasa Ragavan2006-04-242-53/+83
| | | | svn path=/trunk/; revision=31881
* Added Cairo support for Evolution.Srinivasa Ragavan2006-04-2410-408/+967
| | | | svn path=/trunk/; revision=31880
* Fixes #332409 Reset the ecal to NULL. If the default client does not existChenthill Palanisamy2006-04-243-2/+13
| | | | | | | | | | | | 2006-04-24 Chenthill Palanisamy <pchenthill@novell.com> Fixes #332409 * gui/calendar-component.c: (setup_create_ecal): Reset the ecal to NULL. * gui/e-calendar-view.c: (e_calendar_view_new_appointment_for): If the default client does not exist do not open the dialog. svn path=/trunk/; revision=31879
* Added support for asking passphrase.Srinivasa Ragavan2006-04-242-5/+19
| | | | svn path=/trunk/; revision=31876
* Added ENameSelectorList support.Srinivasa Ragavan2006-04-242-6/+26
| | | | svn path=/trunk/; revision=31875
* Updated TranslationAnkitkumar Rameshchandra Patel2006-04-242-238/+240
| | | | svn path=/trunk/; revision=31874
* Commiting patch for bug #337258.Srinivasa Ragavan2006-04-243-2/+9
| | | | svn path=/trunk/; revision=31873
* Changed the ; in the end to a . in an error messageSankar P2006-04-242-1/+6
| | | | | | | | | 2006-04-24 Sankar P <psankar@novell.com> * org-gnome-proxy-login-errors.xml: Changed the ; in the end to a . in an error message svn path=/trunk/; revision=31872
* reviewed by: Harish Krishnaswamy <kharish@novell.com>Rajeev ramanathan2006-04-242-1/+9
| | | | | | | | | | | | 2006-04-24 Rajeev ramanathan <rajeevramanathan_2004@yahoo.co.in> reviewed by: Harish Krishnaswamy <kharish@novell.com> * e-table/gal-a11y-e-cell-text.c: (ect_check) Fixes the corrupted reference to cell_view->ecell Fix for #330728, #332727. svn path=/trunk/; revision=31871
* 2006-04-23 Lukas Novotny <lukasnov@cvs.gnome.org> * cs.po: Updated Czech ↵Lukas Novotny2006-04-242-202/+206
| | | | | | translation. svn path=/trunk/; revision=31869
* *** empty log message ***Ignacio Casal Quinteiro2006-04-232-82/+93
| | | | svn path=/trunk/; revision=31868
* Changed the function signature. Fixes #329371.Sushma Rai2006-04-221-1/+1
| | | | | | | * exchange-account-setup.c (owa_authenticate_user): Changed the function signature. Fixes #329371. svn path=/trunk/; revision=31864
* Added the delfrom property to the delegatee. Fixes #165714Harish Krishnaswamy2006-04-222-3/+9
| | | | | | | | | | 2006-04-22 Harish Krishnaswamy <kharish@novell.com> * gui/dialogs/event-page.c (attendee_added_cb): Added the delfrom property to the delegatee. Fixes #165714 (bugzilla.novell.com) svn path=/trunk/; revision=31863
* Translation updated by David Lodge.David Lodge2006-04-222-2381/+1838
| | | | | | | | 2006-04-21 David Lodge <dave@cirt.net> * en_GB.po: Translation updated by David Lodge. svn path=/trunk/; revision=31861
* Move the tooltip if it could hide in the corner.Srinivasa Ragavan2006-04-224-5/+57
| | | | svn path=/trunk/; revision=31860
* Added code to create image attachment's icon in non-gui thread.Srinivasa Ragavan2006-04-224-1/+78
| | | | svn path=/trunk/; revision=31859
* Rewrite Alarm Notify with EThreadSrinivasa Ragavan2006-04-225-130/+709
| | | | svn path=/trunk/; revision=31858
* Commiting Johnny's patch for adding ' Click to add' feature in Memo.Srinivasa Ragavan2006-04-224-6/+21
| | | | svn path=/trunk/; revision=31857
* Added code to see if the file already exist.Srinivasa Ragavan2006-04-222-19/+38
| | | | svn path=/trunk/; revision=31856
* Adding schema for statusbar_visible to enable status bar by defaultSrinivasa Ragavan2006-04-222-1/+20
| | | | svn path=/trunk/; revision=31855
* Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>Alexander Shopov2006-04-212-1/+6
| | | | | | | | | 2006-04-21 Alexander Shopov <ash@contact.bg> * bg.po: Updated Bulgarian translation by Alexander Shopov <ash@contact.bg> svn path=/trunk/; revision=31854
* Updated Bulgarian translation by Alexander Shopov <ash@contact.bg>Alexander Shopov2006-04-212-434/+428
| | | | | | | | | 2006-04-21 Alexander Shopov <ash@contact.bg> * bg.po: Updated Bulgarian translation by Alexander Shopov <ash@contact.bg> svn path=/trunk/; revision=31853
* Fix for bug #337604 Should destory the print dialog window after clickingSimon Zheng2006-04-212-0/+8
| | | | | | | | | | | 2006-04-21 Simon Zheng <simon.zheng@sun.com> Fix for bug #337604 * printing/e-contact-print.c: (e_contact_print_response): Should destory the print dialog window after clicking Print Preview button. svn path=/trunk/; revision=31852
* Fix for Bug 333869.Devashish Sharma2006-04-213-80/+16
| | | | svn path=/trunk/; revision=31850
* Fix the cryptic hexa-status-bar-message. The problem still lies somewhere.Sankar P2006-04-212-2/+9
| | | | | | | | | | | 2006-04-21 Sankar P <psankar@novell.com> * mail-mt.c: (do_op_status): Fix the cryptic hexa-status-bar-message. The problem still lies somewhere. But dont show something weird to the user. svn path=/trunk/; revision=31849
* Fix for Bug 336713Devashish Sharma2006-04-212-4/+10
| | | | svn path=/trunk/; revision=31847
* *** empty log message ***Ignacio Casal Quinteiro2006-04-212-161/+155
| | | | svn path=/trunk/; revision=31843
* Fix for bug #339052Jeffrey Stedfast2006-04-213-37/+80
| | | | | | | | | | | | | | | 2006-04-20 Jeffrey Stedfast <fejj@novell.com> Fix for bug #339052 * em-inline-filter.c (emif_add_part): Preserve all Content-Type params so that they may be restored later. * em-format.c (emf_inlinepgp_signed): Restore the original part's Content-Type params otherwise we lose valuable information such as charset or format=flowed or various other things. svn path=/trunk/; revision=31842
* Updated Catalan translation.Josep Puigdemont i Casamajó2006-04-202-385/+403
| | | | svn path=/trunk/; revision=31838
* #include <string.h>Jeffrey Stedfast2006-04-201-0/+1
| | | | svn path=/trunk/; revision=31837
* Replaced popt with GOption APIPhilip Van Hoof2006-04-192-34/+40
| | | | | | | | 2006-04-19 Philip Van Hoof <pvanhoof@gnome.org> * shell/main.c: Replaced popt with GOption API svn path=/trunk/; revision=31833
* Setting the e-source properties after both folder rename and new folderSushma Rai2006-04-193-23/+46
| | | | | | creation. Fixes #328578 and #338876. svn path=/trunk/; revision=31831
* Add default color to the GW source created. Fixes #167102Harish Krishnaswamy2006-04-192-0/+9
| | | | | | | | | | 2006-04-19 Harish Krishnaswamy <kharish@novell.com> * camel-gw-listener.c: (add_esource): Add default color to the GW source created. Fixes #167102 (bugzilla.novell.com). svn path=/trunk/; revision=31830
* Removed error id "camel-exception" as it was a bogus error.Jeffrey Stedfast2006-04-193-335/+338
| | | | | | | | | | | | | | | 2006-04-18 Jeffrey Stedfast <fejj@novell.com> * mail.error.xml: Removed error id "camel-exception" as it was a bogus error. 2006-04-14 Jeffrey Stedfast <fejj@novell.com> * em-composer-utils.c (em_utils_handle_receipt): Fixed up the if conditional so that 'account' wasn't ever dereferenced when NULL. Fixes bug #324327. svn path=/trunk/; revision=31829
* Intercept the Disconnected signal and setup a timeout to try and reconnectJeffrey Stedfast2006-04-182-78/+121
| | | | | | | | | | 2006-04-18 Jeffrey Stedfast <fejj@novell.com> * e-shell-nm.c (e_shell_network_monitor): Intercept the Disconnected signal and setup a timeout to try and reconnect when the dbus daemon comes back up. svn path=/trunk/; revision=31828
* Don't try and send a dbus message if the bus is down.Jeffrey Stedfast2006-04-182-37/+91
| | | | | | | | | | | | | | 2006-04-18 Jeffrey Stedfast <fejj@novell.com> * new-mail-notify.c (org_gnome_message_reading_notify): Don't try and send a dbus message if the bus is down. (org_gnome_new_mail_notify): Same. (init_dbus): New function to init the dbus connection and setup handlers for when the bus gets unexpectedly disconnected. (e_plugin_lib_enable): When the plugin gets disabled, unref the dbus connection and reset it back to NULL. svn path=/trunk/; revision=31827
* removed the Mail SYstem Directory printoutJeffrey Stedfast2006-04-181-1/+0
| | | | svn path=/trunk/; revision=31826
* Updated Norwegian Nynorsk translation.Åsmund Skjæveland2006-04-182-1/+5
| | | | | | | | 2006-04-18 Åsmund Skjæveland <aasmunds@fys.uio.no> * nn.po: Updated Norwegian Nynorsk translation. svn path=/trunk/; revision=31824
* Fixety fixKjartan Maraas2006-04-181-4/+2
| | | | svn path=/trunk/; revision=31823
* Updated TranslationAnkitkumar Rameshchandra Patel2006-04-182-447/+399
| | | | svn path=/trunk/; revision=31822
* Remove obsolete entry for no_NO.Kjartan Maraas2006-04-172-2/+6
| | | | | | | | 2006-04-17 Kjartan Maraas <kmaraas@gnome.org> * configure.in: Remove obsolete entry for no_NO. svn path=/trunk/; revision=31821
* Update this. Remove this.Kjartan Maraas2006-04-173-21395/+185
| | | | | | | | | 2006-04-17 Kjartan Maraas <kmaraas@gnome.org> * nb.po: Update this. * no.po: Remove this. svn path=/trunk/; revision=31820
* Return TRUE in case of non-exchange accounts. Fixes #338198.Sushma Rai2006-04-173-11/+17
| | | | svn path=/trunk/; revision=31819
* *** empty log message ***Ignacio Casal Quinteiro2006-04-172-438/+389
| | | | svn path=/trunk/; revision=31817
* vi.po: Updated Vietnamese translation.Clytie Siddall2006-04-172-437/+390
| | | | svn path=/trunk/; revision=31816
* fixed ChangeLog formattingJeffrey Stedfast2006-04-151-277/+307
| | | | svn path=/trunk/; revision=31814
* Updated Norwegian Nynorsk translation.Åsmund Skjæveland2006-04-141-3/+3
| | | | | | | | 2006-04-14 Åsmund Skjæveland <aasmunds@fys.uio.no> * nn.po: Updated Norwegian Nynorsk translation. svn path=/trunk/; revision=31812
* Updated Norwegian Nynorsk translation.Åsmund Skjæveland2006-04-142-2945/+3174
| | | | | | | | 2006-04-14 Åsmund Skjæveland <aasmunds@fys.uio.no> * nn.po: Updated Norwegian Nynorsk translation. svn path=/trunk/; revision=31811
* [Win32] Instead of %l (which is a GNU extension not implemented in theTor Lillqvist2006-04-112-0/+37
| | | | | | | | | | | 2006-03-27 Tor Lillqvist <tml@novell.com> * e-util.c (fix_percent_l): [Win32] Instead of %l (which is a GNU extension not implemented in the Microsoft C library) use %I. Fixes #336055. (e_strftime_fix_am_pm): Call fix_percent_l() when necessary. svn path=/trunk/; revision=31807
* Updated Finnish translationIlkka Tuohela2006-04-112-486/+474
| | | | svn path=/trunk/; revision=31806
* Remove "%OC" from translations, as it only works with Sharif Linux'sRoozbeh Pournader2006-04-102-27/+32
| | | | | | | | | 2006-04-10 Roozbeh Pournader <roozbeh@farsiweb.info> * fa.po: Remove "%OC" from translations, as it only works with Sharif Linux's modified glibc (patch by Elnaz Sarbar). svn path=/trunk/; revision=31801
* Corrected the date.Chenthill Palanisamy2006-04-101-1/+1
| | | | svn path=/trunk/; revision=31799
* Fixes #163039Chenthill Palanisamy2006-04-104-54/+24
| | | | svn path=/trunk/; revision=31798
* **Fixes bug #335618 If the row being deleted is the last one, we shouldLi Yuan2006-04-102-0/+8
| | | | | | | | | | | 2006-03-28 Li Yuan <li.yuan@sun.com> **Fixes bug #335618 * e-selection-model-array.c: (e_selection_model_array_delete_rows): If the row being deleted is the last one, we should change the selection_start_row. svn path=/trunk/; revision=31797
* ** Fixes bug #327035 Grab focus only from widgets which can have focus on.Jeff Cai2006-04-102-1/+8
| | | | | | | | | | 2006-04-10 Jeff Cai <jeff.cai@sun.com> ** Fixes bug #327035 * e-table-header-item.c: (ethi_event): Grab focus only from widgets which can have focus on. svn path=/trunk/; revision=31796
* ** Fixes 333243 For null uri, don't need remove it.Jeff Cai2006-04-102-1/+8
| | | | | | | | | | 2006-04-10 Jeff Cai <jeff.cai@sun.com> ** Fixes 333243 * em-folder-tree-model.c: (em_folder_tree_model_remove_folders): For null uri, don't need remove it. svn path=/trunk/; revision=31795
* Handling rename opearion for public and subscribed folders.Sushma Rai2006-04-105-18/+81
| | | | | | Fixes #328813 and #315522. svn path=/trunk/; revision=31792
* Updated Czech translation.Lukas Novotny2006-04-092-537/+386
| | | | | | | | 2006-04-09 Lukas Novotny <lukasnov@cvs.gnome.org> * cs.po: Updated Czech translation. svn path=/trunk/; revision=31789
* Updated Thai translation (merged from gnome-2-14 branch).Theppitak Karoonboonyanan2006-04-082-368/+380
| | | | | | | | 2006-04-08 Theppitak Karoonboonyanan <thep@linux.thai.net> * th.po: Updated Thai translation (merged from gnome-2-14 branch). svn path=/trunk/; revision=31785
* Fix for bug #336454 we should return false if it is not a del event toLi Yuan2006-04-072-3/+12
| | | | | | | | | | | | 2006-03-29 Li Yuan <li.yuan@sun.com> Fix for bug #336454 * gui/component/addressbook-view.c: (source_selector_key_press_event_callback): we should return false if it is not a del event to make gtktreeview deal the rest of keys. svn path=/trunk/; revision=31781
* Corrected the rename folder operation and also not allowing the renameSushma Rai2006-04-075-49/+190
| | | | | | of standard folders. Fixes #310433. svn path=/trunk/; revision=31780
* Fixes #328808Chenthill Palanisamy2006-04-068-5/+91
| | | | svn path=/trunk/; revision=31779
* Fixes drag and drop of recurring appointmentsChenthill Palanisamy2006-04-061-4/+2
| | | | svn path=/trunk/; revision=31778
* Fixes the drag and drop of appointmentsChenthill Palanisamy2006-04-061-0/+5
| | | | svn path=/trunk/; revision=31777
* Fixes #162005Chenthill Palanisamy2006-04-062-2/+10
| | | | svn path=/trunk/; revision=31776
* Translation updated by Ivar Smolin.Priit Laes2006-04-052-2/+6
| | | | | | | | 2006-04-05 Priit Laes <amd@store20.com> * et.po: Translation updated by Ivar Smolin. svn path=/trunk/; revision=31771
* Fixed some typos.Inaki Larranaga2006-04-052-1/+5
| | | | | | | | 2006-04-05 Inaki Larranaga <dooteo@euskalgnu.org> * eu.po: Fixed some typos. svn path=/trunk/; revision=31770
* Fixes bug #333987 If CamelMessageInfo is null, don't free it.Jeff Cai2006-04-052-1/+8
| | | | | | | | | | 2006-04-05 Jeff Cai <jeff.cai@sun.com> Fixes bug #333987 * message-list.c: (mail_folder_hide_by_flag): If CamelMessageInfo is null, don't free it. svn path=/trunk/; revision=31768
* Fixes bug #333704 Because the passing text is in UTF-8 encoding, it shouldSimon Zheng2006-04-052-5/+12
| | | | | | | | | | | 2006-04-05 Simon Zheng <simon.zheng@sun.com> Fixes bug #333704 * gui/dialogs/comp-editor-util.c: (comp_editor_strip_categories): Because the passing text is in UTF-8 encoding, it should be traversed by utf-8 char order rather than one by one byte. svn path=/trunk/; revision=31767
* ** Fixes bug #333213 According to POSIX.1 specfication, if iconv()Simon Zheng2006-04-052-1/+9
| | | | | | | | | | | | 2006-04-05 Simon Zheng <simon.zheng@sun.com> ** Fixes bug #333213 * e-msg-composer.c: (best_encoding): According to POSIX.1 specfication, if iconv() encounts non-identical characters, it'll return the number of non-identical conversation performed. i.e. returning positive value means exception as well as -1. svn path=/trunk/; revision=31766
* Updated Persian translation by Elnaz Sarbar and Meelad Zakaria.Roozbeh Pournader2006-04-052-4777/+6704
| | | | | | | | | 2006-04-04 Roozbeh Pournader <roozbeh@farsiweb.info> * fa.po: Updated Persian translation by Elnaz Sarbar and Meelad Zakaria. svn path=/trunk/; revision=31763
* Fixes bug 335214Irene Huang2006-04-042-0/+9
| | | | | | | | | | | | 2006-04-04 Irene Huang <Irene.Huang@sun.com> Fixes bug 335214 * gui/e-cal-model.c: (e_cal_view_objects_added_cb): Call e_table_model_pre_change (E_TABLE_MODEL (model)); before deleting row. svn path=/trunk/; revision=31760
* Added retract support.Chenthill Palanisamy2006-04-035-10/+299
| | | | svn path=/trunk/; revision=31759
* Updated Spanish translation.Francisco Javier F. Serrador2006-03-302-450/+563
| | | | | | | | 2006-03-30 Francisco Javier F. Serrador <serrador@cvs.gnome.org> * es.po: Updated Spanish translation. svn path=/trunk/; revision=31758
* Translation updated by Ivar Smolin.Priit Laes2006-03-302-4/+8
| | | | | | | | 2006-03-29 Priit Laes <amd@store20.com> * et.po: Translation updated by Ivar Smolin. svn path=/trunk/; revision=31757
* Fixes #160357Chenthill Palanisamy2006-03-292-5/+23
| | | | svn path=/trunk/; revision=31756
* Fixes #160357Chenthill Palanisamy2006-03-295-2/+60
| | | | svn path=/trunk/; revision=31755
* use the flags CAMEL_STORE_FOLDER_INFO_SUBSCRIBED instead ofParthasarathi Susarla2006-03-292-1/+7
| | | | | | | | | | 2006-03-29 Parthasarathi Susarla <sparthasarathi@novell.com> * em-folder-view.c:(smfv_setup_view_instance): use the flags CAMEL_STORE_FOLDER_INFO_SUBSCRIBED instead of CAMEL_STORE_FOLDER_INFO_FAST when getting folder info svn path=/trunk/; revision=31754
* Translation updated by Ivar Smolin.Priit Laes2006-03-282-3/+8
| | | | | | | | 2006-03-28 Priit Laes <amd@store20.com> * et.po: Translation updated by Ivar Smolin. svn path=/trunk/; revision=31753
* Fixes #333877 Use gtk_tree_selection_get_selected_rows instead ofJeff Cai2006-03-282-4/+14
| | | | | | | | | | | | 2006-03-28 Jeff Cai <jeff.cai@sun.com> Fixes #333877 * gui/e-meeting-list-view.c: (row_activated_cb): Use gtk_tree_selection_get_selected_rows instead of gtk_tree_selection_get_selected to get selected rows from a multi-row selection. svn path=/trunk/; revision=31751
* ** Fixes #333881 Set an empty string instead of null for a TEXT entry.Jeff Cai2006-03-282-1/+7
| | | | | | | | | | 2006-03-28 Jeff Cai <jeff.cai@sun.com> ** Fixes #333881 * caldav-source.c: (oge_caldav): Set an empty string instead of null for a TEXT entry. svn path=/trunk/; revision=31749
* Fix for 333693. need to see if source is NULL to avoid a CRITICAL warning.Harry Lu2006-03-282-1/+7
| | | | | | | | | | 2006-03-28 Harry Lu <harry.lu@sun.com> Fix for 333693. * gui/calendar-component.c: (update_task_selection): need to see if source is NULL to avoid a CRITICAL warning. svn path=/trunk/; revision=31748
* Changing the maintainers file to reflect the current mail maintainers.Parthasarathi Susarla2006-03-272-2/+7
| | | | | | | | | 2006-03-27 Parthasarathi Susarla <sparthasarathi@novell.com> * MAINTAINERS: Changing the maintainers file to reflect the current mail maintainers. svn path=/trunk/; revision=31747
* Translation updated by Ivar Smolin.Priit Laes2006-03-262-5/+25
| | | | | | | | 2006-03-25 Priit Laes <amd@store20.com> * et.po: Translation updated by Ivar Smolin. svn path=/trunk/; revision=31745
* **Fixes #329585 *mail-config.glade: Changed Remove button to Delete buttonRajeev ramanathan2006-03-263-2/+9
| | | | | | | | | | | 2006-03-25 Rajeev ramanathan <rajeevramanathan_2004@yahoo.co.in> **Fixes #329585 *mail-config.glade: Changed Remove button to Delete button *mail.error.xml: Changed current Layout DELETE [Do not delete] to [Do not delete] DELETE svn path=/trunk/; revision=31744
* Translation updated by Ivar Smolin.Priit Laes2006-03-232-82/+84
| | | | | | | | 2006-03-23 Priit Laes <amd@store20.com> * et.po: Translation updated by Ivar Smolin. svn path=/trunk/; revision=31743
* Fixes #329502Chenthill Palanisamy2006-03-233-2/+12
| | | | svn path=/trunk/; revision=31742
* Updating the doc for 2.6 and fixing bugs which went in by updating the docAndre Klapper2006-03-232-29/+34
| | | | | | | | | 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. svn path=/trunk/; revision=31741
* Fixed premature memory free. Fixes bug #335203.Patrick Ohly2006-03-222-1/+7
| | | | | | | | | 2006-03-22 Patrick Ohly <patrick.ohly@intel.com> * em-utils.c (em_utils_selection_set_urilist): Fixed premature memory free. Fixes bug #335203. svn path=/trunk/; revision=31740
* Fixes #330842Chenthill Palanisamy2006-03-222-1/+13
| | | | svn path=/trunk/; revision=31739
* Added Dzongkha (dz). 2006-03-22 Tommi Vainikainen <thv@iki.fi> AddedTommi Vainikainen2006-03-224-1/+20140
| | | | | | | | | 2006-03-22 Tommi Vainikainen <thv@iki.fi> * configure.in (ALL_LINGUAS): Added Dzongkha (dz). 2006-03-22 Tommi Vainikainen <thv@iki.fi> * dz.po: Added Dzongkha translation from Pema Geyleg. svn path=/trunk/; revision=31736
* Fix for 333697 remove two useless widgets: sendoptions_frame andHarry Lu2006-03-222-6/+7
| | | | | | | | | | 2006-03-22 Harry Lu <harry.lu@sun.com> Fix for 333697 * gui/dialogs/task-page.c: (task_page_init), (sensitize_widgets): remove two useless widgets: sendoptions_frame and sendoptions_button. svn path=/trunk/; revision=31735
* Fix for 333706Harry Lu2006-03-222-1/+8
| | | | | | | | | | | 2006-03-07 Harry Lu <harry.lu@sun.com> Fix for 333706 * gui/dialogs/alarm-dialog.c: (alarm_to_dalarm_widgets): call set_text only when description.value is not NULL. svn path=/trunk/; revision=31733
* Insert menu changed its mnemonic. Fixes bug #331975. (Committed by AndreRakesh k.g2006-03-222-1/+6
| | | | | | | | 2006-02-26 Rakesh k.g <rakeysh_kg@yahoo.com> * evolution-editor.xml: Insert menu changed its mnemonic. Fixes bug #331975. (Committed by Andre Klapper) svn path=/trunk/; revision=31730
* Translation updated by Ivar Smolin.Priit Laes2006-03-212-33/+38
| | | | | | | | 2006-03-21 Priit Laes <amd@store20.com> * et.po: Translation updated by Ivar Smolin. svn path=/trunk/; revision=31728
* Fixed bug #326571 Add em_filename_make_safe(), and use it to allowSimon Zheng2006-03-212-2/+44
| | | | | | | | | | | | 2006-03-21 Simon Zheng <simon.zheng@sun.com> Fixed bug #326571 * em-utils.c (em_filename_make_safe), (emu_get_save_filesel), (emu_save_parts_response): Add em_filename_make_safe(), and use it to allow filenames contain more valid characters when saving attachments. svn path=/trunk/; revision=31726
* Hungarian translation updated.Gabor Kelemen2006-03-212-4621/+5527
| | | | | | | | 2006-03-21 Gabor Kelemen <kelemeng@gnome.hu> * hu.po: Hungarian translation updated. svn path=/trunk/; revision=31725
* Added code to set the mail view column for sent folder.Srinivasa Ragavan2006-03-202-2/+12
| | | | svn path=/trunk/; revision=31724
* Fix for #319308Boby Wang2006-03-202-5/+22
| | | | | | | | | | 2006-03-20 Boby Wang <boby.wang@sun.com> Fix for #319308 * addressbook/ea-minicard-view.c: (ea_minicard_view_get_name): add the folder name to the name of current minicard view svn path=/trunk/; revision=31723
* ** Fix for bug #268584Boby Wang2006-03-203-3/+12
| | | | | | | | | | | | | 2006-03-20 Boby Wang <boby.wang@sun.com> ** Fix for bug #268584 * gui/dialogs/cal-attachment-select-file.c: (run_selector): * gui/dialogs/cal-attachment.glade: set the accelerate key for "Suggest Suggest automatic display of attachment" svn path=/trunk/; revision=31722
* ** Fix for bug #268584Boby Wang2006-03-203-6/+36
| | | | | | | | | | | | | 2006-03-20 Boby Wang <boby.wang@sun.com> ** Fix for bug #268584 * e-msg-composer-attachment.glade: * e-msg-composer-select-file.c: (get_selector): set the accelerate key for "Suggest Suggest automatic display of attachment" svn path=/trunk/; revision=31721
* Translation updated by Ivar Smolin.Priit Laes2006-03-192-7/+14
| | | | | | | | 2006-03-18 Priit Laes <amd@store20.com> * et.po: Translation updated by Ivar Smolin. svn path=/trunk/; revision=31719
* Updated Spanish translation.Francisco Javier F. Serrador2006-03-182-29/+31
| | | | | | | | 2006-03-18 Francisco Javier F. Serrador <serrador@cvs.gnome.org> * es.po: Updated Spanish translation. svn path=/trunk/; revision=31718
* Translation updated by Ivar Smolin.Priit Laes2006-03-172-14/+18
| | | | | | | | 2006-03-17 Priit Laes <amd@store20.com> * et.po: Translation updated by Ivar Smolin. svn path=/trunk/; revision=31716
* Updated Georgian LanguageVladimer Sichinava2006-03-144-2/+9
| | | | svn path=/trunk/; revision=31712
* Updated Catalan translation.Jordi Mallach2006-03-142-295/+264
| | | | svn path=/trunk/; revision=31711
* Fixes #334003Chenthill Palanisamy2006-03-132-2/+11
| | | | svn path=/trunk/; revision=31704
* Added French welcome message.Benoît Dejean2006-03-135-1/+381
| | | | | | | | | * configure.in: * mail/default/Makefile.am: * mail/default/fr/Inbox: * mail/default/fr/Makefile.am: Added French welcome message. svn path=/trunk/; revision=31703
* Updated German translation of default inbox.Frank Arnold2006-03-122-49/+92
| | | | | | | | 2006-03-12 Frank Arnold <farnold@cvs.gnome.org> * default/de/Inbox: Updated German translation of default inbox. svn path=/trunk/; revision=31698
* Translation updated by Ivar Smolin.Priit Laes2006-03-122-18/+29
| | | | | | | | 2006-03-11 Priit Laes <amd@store20.com> * et.po: Translation updated by Ivar Smolin. svn path=/trunk/; revision=31697
* Updated Finnish translationIlkka Tuohela2006-03-122-2/+6
| | | | svn path=/trunk/; revision=31695
* Updated Catalan translation by Gil Forcada.Jordi Mallach2006-03-112-514/+443
| | | | svn path=/trunk/; revision=31693
* Fixes the first time account setup issue.Sushma Rai2006-03-112-15/+23
| | | | svn path=/trunk/; revision=31691
* Updated Portuguese translation.Duarte Loreto2006-03-112-4022/+5526
| | | | | | | | 2006-03-10 Duarte Loreto <happyguy_pt@hotmail.com> * pt.po: Updated Portuguese translation. svn path=/trunk/; revision=31688
* Updated Bulgarian translation by Rostislav Raykov <zbrox@i-space.org>Alexander Shopov2006-03-102-1197/+1236
| | | | | | | | | 2006-03-10 Alexander Shopov <ash@contact.bg> * bg.po: Updated Bulgarian translation by Rostislav Raykov <zbrox@i-space.org> svn path=/trunk/; revision=31687
* Replaced wrong spaces caused by copy/paste inside gtranslator.Frank Arnold2006-03-102-164/+142
| | | | | | | | 2006-03-10 Frank Arnold <farnold@cvs.gnome.org> * de.po: Replaced wrong spaces caused by copy/paste inside gtranslator. svn path=/trunk/; revision=31684
* Fix for Bug 331020.Devashish Sharma2006-03-102-3/+8
| | | | svn path=/trunk/; revision=31681
* Fix for Bug 331023Devashish Sharma2006-03-102-3/+3
| | | | svn path=/trunk/; revision=31680
* added a bug id which was fixed with the previous patch.Chenthill Palanisamy2006-03-101-1/+1
| | | | svn path=/trunk/; revision=31679
* Fix for Bug #333855Devashish Sharma2006-03-102-47/+59
| | | | svn path=/trunk/; revision=31678
* Corrected headers spaceVladimer Sichinava2006-03-101-0/+1
| | | | svn path=/trunk/; revision=31677
* Updated Georgian TranslationVladimer Sichinava2006-03-102-1551/+1404
| | | | svn path=/trunk/; revision=31676
* Updated Romanian translationMugurel Tudor2006-03-102-4128/+5189
| | | | | | | | 2006-03-10 Mugurel Tudor <mugurelu@gnome.ro> * ro.po: Updated Romanian translation svn path=/trunk/; revision=31675