Commit Graph

233 Commits

Author SHA1 Message Date
Massimo Maiurana 2a16ac91da updating portuguese and italian translations
SVN revision: 75701
2012-08-25 20:03:12 +00:00
Mike Blumenkrantz 95d945442b sed -i 's/(E_Gadcon_Client_Class/(const E_Gadcon_Client_Class/g'
SVN revision: 74475
2012-07-27 08:35:53 +00:00
Mike Blumenkrantz 4e3ca11a75 formatting
SVN revision: 74211
2012-07-20 07:33:31 +00:00
Mike Blumenkrantz 22392f1b60 formatting
SVN revision: 73260
2012-07-04 08:42:29 +00:00
Mike Blumenkrantz 1869a1bc64 printf -> fprintf
SVN revision: 68858
2012-03-06 23:52:09 +00:00
Massimo Maiurana f793b1ff52 updating arabic translation
SVN revision: 67689
2012-02-02 23:07:50 +00:00
Massimo Maiurana 5b7907ce83 updating arabic translation
SVN revision: 67503
2012-01-24 18:29:40 +00:00
Mike Blumenkrantz e6f2ef32dc NODELAY for forecasts too
SVN revision: 66073
2011-12-10 07:04:31 +00:00
Boris Faure 771aa60494 E-MODULES-EXTRA: add const to _gc_label() functions
SVN revision: 65208
2011-11-14 22:17:19 +00:00
Daniel Kolesa ae040032a5 Updated Czech translations in emodules, thanks belisarivs.
SVN revision: 64316
2011-10-22 23:40:48 +00:00
Massimo Maiurana e0187cda6c updating dutch and french translations
SVN revision: 63207
2011-09-05 16:13:30 +00:00
Michael Jennings bda633e30e Update specs from central template to:
- Remove dependency on esmart
 - Add support for standard release tag macro.



SVN revision: 62148
2011-08-05 19:28:03 +00:00
Vincent Torri cf0dc6c3ad fix possible undef ref when gettext is disabled or not installed
SVN revision: 59997
2011-06-06 17:36:38 +00:00
Vincent Torri d540fa97ab 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
Hannes Janetzek 154450fe7a 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 9e434493e3 updating various translations
SVN revision: 57327
2011-02-25 20:26:34 +00:00
Massimo Maiurana e820fefebc updating slovenian translation
SVN revision: 57281
2011-02-23 20:21:30 +00:00
Massimo Maiurana a069bedd81 updating slovenian translation
SVN revision: 57223
2011-02-21 19:10:16 +00:00
Massimo Maiurana 7b4dcac77d updating various translations
SVN revision: 57099
2011-02-16 20:39:52 +00:00
Massimo Maiurana 9df51bf71b updating ukrainian translations
SVN revision: 56757
2011-02-06 20:06:03 +00:00
Massimo Maiurana 634a9b1447 updating german translations
SVN revision: 56200
2011-01-16 21:46:50 +00:00
Mike Blumenkrantz 5088ae9ffb use correct strbuf append function
SVN revision: 55876
2011-01-05 09:30:22 +00:00
Daniel Kolesa ad9c9757a3 More work done on translations to Czech.
SVN revision: 55849
2011-01-04 17:19:35 +00:00
Massimo Maiurana 380433347a updating portuguese translations
SVN revision: 55674
2010-12-20 17:58:48 +00:00
Massimo Maiurana 051027488d updating portuguese translations
SVN revision: 55292
2010-12-05 21:02:34 +00:00
Miculcy Brian 3256af23b3 fix proxy parsing
SVN revision: 54363
2010-11-09 11:27:48 +00:00
Miculcy Brian 00454c7a46 New module category.
SVN revision: 53524
2010-10-17 17:35:25 +00:00
Miculcy Brian 35719ed4c3 Fix hiding description when disabled.
SVN revision: 53350
2010-10-13 12:19:55 +00:00
Christopher Michael b19e2ed4b3 Fix forecasts not showing/hiding the description (for Brian) :)
SVN revision: 53106
2010-10-06 18:03:30 +00:00
Miculcy Brian 2fb191662f Theme fix for the weather description, by massimo.
SVN revision: 53103
2010-10-06 16:24:32 +00:00
Miculcy Brian b8820fb235 Remove useless menu separator.
SVN revision: 53102
2010-10-06 15:51:59 +00:00
Massimo Maiurana 7d4ce1920c updating portuguese translations
SVN revision: 52900
2010-09-29 17:45:28 +00:00
Massimo Maiurana 539a4f08f5 updating french translation
SVN revision: 52595
2010-09-22 16:07:43 +00:00
Massimo Maiurana cb62be9582 adding strings to translate and updating italian translation
SVN revision: 52546
2010-09-21 17:04:00 +00:00
Massimo Maiurana b2100b139f updating french and italian translations
SVN revision: 52131
2010-09-10 10:57:18 +00:00
Miculcy Brian 6ba6922f59 fix recent menu api break
SVN revision: 52054
2010-09-09 14:49:27 +00:00
Miculcy Brian 2887f01913 Make the sections more clearer.
SVN revision: 51990
2010-09-08 13:35:18 +00:00
Lucas De Marchi 9f87eef80c 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
Lucas De Marchi 8b86c04ede 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 2cb092f302 fix leak and use better memory management
SVN revision: 50467
2010-07-24 00:41:50 +00:00
Mike Blumenkrantz 73d0202740 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 79cd03729c updating french and german translations
SVN revision: 50278
2010-07-16 11:05:33 +00:00
Lucas De Marchi 2bb1b4d565 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
Miculcy Brian 53ac99287e remove useless title
SVN revision: 47017
2010-03-08 17:08:39 +00:00
Aron Xu c84d449eb0 Sync translations from Launchpad.
SVN revision: 46205
2010-02-16 09:30:59 +00:00
Massimo Maiurana 54a4074919 updating french and italian translations
SVN revision: 46007
2010-02-09 12:00:54 +00:00
Miculcy Brian e67a881e92 yahoo has changed the url style, but you can get the correct id from weather.com
SVN revision: 44918
2010-01-06 12:53:30 +00:00
Aron Xu fbff9deeb6 Sync translations from launchpad
SVN revision: 44166
2009-12-03 09:56:45 +00:00
Christopher Michael 67d1677c82 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 b9ee3a2072 Sync translations from Launchpad for E-MODULES-EXTRA.
SVN revision: 42065
2009-08-28 08:34:45 +00:00