Commit Graph

248 Commits

Author SHA1 Message Date
Vincent Torri 67ce5235d1 make gettext optional
some problem might arise like undef symbols if
they are not guarded correctly (like in alarm,
see next commit)


SVN revision: 59994
2011-06-06 16:40:14 +00:00
Miculcy Brian 905c1517e3 mail: disable debug messages
SVN revision: 59554
2011-05-20 16:21:07 +00:00
Hannes Janetzek 3254557194 e-modules/mail: always show inboxes in top-level
SVN revision: 58003
2011-03-22 23:21:20 +00:00
Hannes Janetzek 394a0ff350 e-modules: update do e_gadcon_util_cliet_menu_append api changes. allowing to have settings menu in toplevel again
SVN revision: 57828
2011-03-17 17:24:53 +00:00
Massimo Maiurana ebeb447bf4 updating various translations
SVN revision: 57327
2011-02-25 20:26:34 +00:00
Massimo Maiurana 7832aa3cc5 updating slovenian translation
SVN revision: 57281
2011-02-23 20:21:30 +00:00
Massimo Maiurana e62d133364 updating slovenian translation
SVN revision: 57223
2011-02-21 19:10:16 +00:00
Massimo Maiurana eb8b5ff0e7 updating various translations
SVN revision: 57099
2011-02-16 20:39:52 +00:00
Hannes Janetzek b15df6e387 fix: examine imap folders with spaces in label
SVN revision: 56940
2011-02-10 22:50:53 +00:00
Massimo Maiurana 0addfde87d updating ukrainian translations
SVN revision: 56757
2011-02-06 20:06:03 +00:00
Massimo Maiurana 10b6bbd378 updating german translations
SVN revision: 56200
2011-01-16 21:46:50 +00:00
Daniel Kolesa f704018765 More work done on translations to Czech.
SVN revision: 55849
2011-01-04 17:19:35 +00:00
Massimo Maiurana 50842509bd updating portuguese translations
SVN revision: 55292
2010-12-05 21:02:34 +00:00
Miculcy Brian 4e586dbd4b New module category.
SVN revision: 53527
2010-10-17 17:35:39 +00:00
Massimo Maiurana 84cf9f8581 updating portuguese translations
SVN revision: 52901
2010-09-29 17:50:53 +00:00
Mike Blumenkrantz 61f87516e7 try mixed proto
SVN revision: 52631
2010-09-23 09:10:05 +00:00
Mike Blumenkrantz a2293fc949 add debugging info with -DPRINT_LOTS_OF_DEBUG
SVN revision: 52547
2010-09-21 18:41:56 +00:00
Massimo Maiurana bc9de86ed4 updating french and italian translations
SVN revision: 52131
2010-09-10 10:57:18 +00:00
Miculcy Brian 7bf896b370 fix recent menu api break
SVN revision: 52058
2010-09-09 14:49:47 +00:00
Lucas De Marchi 185e731b7b Convert (hopefully) all comparisons to NULL
Apply badzero.cocci, badnull.coci and badnull2.cocci

This should convert all cases where there's a comparison to NULL to simpler
forms. This patch applies the following transformations:

code before patch               ||code after patch
===============================================================

return a == NULL;                 return !a;

return a != NULL;                 return !!a;

func(a == NULL);                  func(!a);

func(a != NULL);                  func(!!a);

b = a == NULL;                    b = !a;

b = a != NULL;                    b = !!a;

b = a == NULL ? c : d;            b = !a ? c : d;

b = a != NULL ? c : d;            b = a ? c : d;


other cases:

a == NULL                         !a
a != NULL                         a




SVN revision: 51487
2010-08-21 13:52:25 +00:00
Massimo Maiurana 82360dca46 updating portuguese translations
SVN revision: 51036
2010-08-12 13:19:47 +00:00
Lucas De Marchi e568bdc82f FORMATTING
* Remove vim modelines:
 find . -name '*.[chx]' -exec sed -i '/\/\*$/ {N;N;/ \* vim:ts/d}' \{\} \;
 find . -name '*.[chx]' -exec sed -i '/\/[\*\/] *vim:/d' \{\} \;

* Remove leading blank lines:
 find . -name '*.[cxh]' -exec sed -i '/./,$!d'

If you use vim, use this in your .vimrc:
set ts=8 sw=3 sts=8 expandtab cino=>5n-3f0^-2{2(0W1st0



SVN revision: 50816
2010-08-04 16:57:32 +00:00
Mike Blumenkrantz fee8bf1c1d people really need to stop making batch commits without checking to see if they've broken something.
SVN revision: 50291
2010-07-16 20:57:51 +00:00
Massimo Maiurana bfccd41b0b updating french translation
SVN revision: 50214
2010-07-13 10:41:08 +00:00
Lucas De Marchi 867902dc9e Fixes for Ecore Api changes
Patch automatically by Coccinelle to fix the
callbacks used by the following functions:

 * ecore_event_handler_add()
 * ecore_event_filter_add()
 * ecore_idler_add()
 * ecore_idle_enterer_add()
 * ecore_idle_enterer_before_add()
 * ecore_idle_exiter_add()
 * ecore_main_fd_handler_add()
 * ecore_main_win32_handler_add()
 * ecore_timer_add()
 * ecore_timer_loop_add()
 * ecore_animator_add()
 * ecore_poller_add()


SVN revision: 50108
2010-07-08 00:57:17 +00:00
Christopher Michael b17e200dc9 Fixes for Ecore Api changes.
SVN revision: 50072
2010-07-06 17:52:01 +00:00
xcomputerman 37f32c8d53 Fix broken compile
SVN revision: 47108
2010-03-10 16:51:53 +00:00
Miculcy Brian bd54c97d95 remove useless title
SVN revision: 47020
2010-03-08 17:08:54 +00:00
Aron Xu 17687eb3c9 Sync translations from Launchpad.
SVN revision: 46205
2010-02-16 09:30:59 +00:00
Aron Xu 94b8fb15eb Sync translations from launchpad
SVN revision: 44166
2009-12-03 09:56:45 +00:00
Christopher Michael aaf2733066 Enable silent rules if possible.
SVN revision: 42986
2009-10-09 21:15:12 +00:00
Christopher Michael 4240a449e8 Fix API Inconsistency:
e_ilist_min_size_* to e_ilist_size_min_*



SVN revision: 42163
2009-09-01 16:39:10 +00:00
Christopher Michael 07afe9c0ce Fix API Inconsistency in regards to e_widget_min_size_* . Renamed to
e_widget_size_min_* . This Large commit should fix everything in svn that is
using those functions.



SVN revision: 42152
2009-09-01 13:34:42 +00:00
Aron Xu ab95ace166 Sync translations from Launchpad for E-MODULES-EXTRA.
SVN revision: 42065
2009-08-28 08:34:45 +00:00
Daniel Kolesa cdf5d8c0ad Fixes for emodules.
SVN revision: 41587
2009-08-04 12:19:55 +00:00
Daniel Kolesa 932e679a40 Fix potfiles in emodules.
SVN revision: 41586
2009-08-04 11:37:02 +00:00
Daniel Kolesa e8cbe17df3 EMODULES: Fix & Unify autofoo stuff everywhere, fix dist tarballs support, add ability to create dist tarball of all modules.
SVN revision: 41571
2009-08-03 14:49:56 +00:00
Aron Xu e5f809f591 mass update of translations from launchpad
SVN revision: 41386
2009-07-17 11:29:54 +00:00
semernin 0275f93bad List of changes:
1. Gadcon sities:
      -- 'E_Gadcon_Site' enum to list all available sities,
      -- added 'is_site' callback for distinguish gadcon sities,
      -- 'e_gadcon_site_is_*' helpers written to use in gadget modules,
      -- gadcon config dialogs modified to show only gadgets that appropriate
         to selected gadcon site,
      -- all gadget modules updated for using new callback.
      
      When callback is not provided in module, then gadget can be used in 
      any gadcon site.
      
   2. Filemanager:
      -- added error icon to unexisting path dialog,
      -- added callback 'func.abort' to 'E_Fm2_Op_Registry_Entry' to specify
         abort operation sequence (if not provided, then operation is not
         cancelable),
      -- added parameter to 'e_fm2_op_registry_entry_add' to specify abort
         method on construct 'E_Fm2_Op_Registry_Entry' or make non-cancelable
         operation if this function is not provided,
      -- added 'e_fm2_operation_abort' call to cancel efm2 operation,
      -- added method '_e_fm2_operation_abort_internal' that represent efm2
         default handler of operation cancelling,
      -- 'done' and 'total' fields of 'E_Fm2_Op_Registry_Entry' changed to
         off_t type, also all message handlers modified to work with it
         (to show progress for large files correctly),
      -- improved file operation progress processing,
      -- added cancel button to operation progress gadget in filemanager window,
      -- added delete file glyph to operation progress gadget,
      -- improved status message for efm2 operation progress.

   3. Filemanager slave:
      -- fixed critical bug in message handling via stdin/stdout,
      -- fixed critical bug in removing task from list,
      -- improved 'E_FM_OP_ABORT' handling,
      -- fix rollback counting on moving files.

   4. Fileman_opinfo module:
      -- a new theme writed: status string and gadget for view operation status
         in summary and detail modes,
      -- summary mode: operation glyph, state message, progressbar, abort button,
      -- detail mode: all for summary + from filename, to filename,
      -- summary/detailed button works as trigger,
      -- added source of module theme and used images.
      
   4. Pathbar module:
      -- non-critical fix, just for safety.

   Also patch contains several minor updates to serve main task.


SVN revision: 41224
2009-06-29 14:38:03 +00:00
Aron Xu b4e1421324 Added Ukrainian translations by Daniel Korostil <ted.korostiled@gmail.com>.
SVN revision: 40992
2009-06-10 12:32:28 +00:00
Viktor Kojouharov 30191a0535 remove all traces of the resize callback function. it iss not needed anymore
SVN revision: 40942
2009-06-07 09:00:05 +00:00
Aron Xu 9f75da0408 Added pt to LINGUAS
SVN revision: 40891
2009-06-04 03:32:32 +00:00
Massimo Maiurana ba4777e3dd updating esperanto translation
SVN revision: 40687
2009-05-17 07:47:15 +00:00
Daniel Kolesa b27e875ba1 removed -fd parameters, thx to Lutin.
SVN revision: 40366
2009-04-25 12:20:23 +00:00
Daniel Kolesa fb8421dafa Moved emodules to fontconfig.
SVN revision: 40365
2009-04-25 11:05:00 +00:00
Massimo Maiurana eaf2ebb2a0 updating french translations
SVN revision: 40347
2009-04-24 16:09:36 +00:00
Carsten Haitzler 2999283266 1. embryo shoudl have soname
2. yes local.conf slipped in - ignore
3. added soname version release to module arch dirs
4. adapted extra-modules to use the revision in arch
5. made e17 also have a release rev
6. dummy release stuff in eet - wont use it as its already released.



SVN revision: 40267
2009-04-21 14:17:42 +00:00
Aron Xu d6924fc605 Sync translations with launchpad
SVN revision: 40003
2009-04-12 11:52:10 +00:00
Davide Andreoli c4668499ea Rename all icons in E-MODULE-EXTRA
SVN revision: 39774
2009-03-28 13:30:14 +00:00
Mike Frysinger 0d1d5fadd4 declare ACLOCAL_AMFLAGS to match autogen.sh behavior
SVN revision: 39409
2009-03-07 21:44:16 +00:00