Commit Graph

274 Commits

Author SHA1 Message Date
Cedric BAIL 6735f8f286 autotools: move to AC_CONFIG_HEADERS.
Patch by Doug Newgard <scimmia22@outlook.com>.

SVN revision: 82135
2013-06-17 10:03:56 +01:00
Aron Xu f3925400ad Update Simplified Chinese translation for net
SVN revision: 81605
2013-06-17 10:03:54 +01:00
Massimo Maiurana f241408a94 updating esperanto translations
SVN revision: 80224
2012-12-05 09:46:19 +00:00
Massimo Maiurana bf201e44a0 updating esperanto translations
SVN revision: 79760
2012-11-27 22:20:03 +00:00
Massimo Maiurana 47570e41a2 updating various translations
SVN revision: 79483
2012-11-20 23:30:36 +00:00
Massimo Maiurana 7844bfd084 updating russian and arabic translations
SVN revision: 79353
2012-11-15 21:01:52 +00:00
Massimo Maiurana 2f1ea84dc6 adding gl translations and updating it and pt
SVN revision: 76838
2012-09-18 21:51:43 +00:00
Massimo Maiurana 8c4b4abe6f updating portuguese and italian translations
SVN revision: 75701
2012-08-25 20:03:12 +00:00
Mike Blumenkrantz dbce48fd31 sed -i 's/(E_Gadcon_Client_Class/(const E_Gadcon_Client_Class/g'
SVN revision: 74475
2012-07-27 08:35:53 +00:00
Christopher Michael ba33f26f4c Net: Fix gadcon client aspect for ppurka.
SVN revision: 71784
2012-06-07 09:04:11 +00:00
Massimo Maiurana 14c98254b9 updating arabic translation
SVN revision: 67689
2012-02-02 23:07:50 +00:00
Massimo Maiurana 6894be4828 updating arabic translation
SVN revision: 67503
2012-01-24 18:29:40 +00:00
Boris Faure 3dc75c8e9b E-MODULES-EXTRA: add const to _gc_label() functions
SVN revision: 65208
2011-11-14 22:17:19 +00:00
Daniel Kolesa 778fbf39a9 Updated Czech translations in emodules, thanks belisarivs.
SVN revision: 64316
2011-10-22 23:40:48 +00:00
Michael Jennings 4586c2fa63 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 0006de336f fix possible undef ref when gettext is disabled or not installed
SVN revision: 59997
2011-06-06 17:36:38 +00:00
Vincent Torri 5722c5b4a9 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 b8c7cf601e 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 95a4ff895b updating various translations
SVN revision: 57327
2011-02-25 20:26:34 +00:00
Massimo Maiurana 3dc5360628 updating slovenian translation
SVN revision: 57281
2011-02-23 20:21:30 +00:00
Massimo Maiurana caf455868b updating slovenian translation
SVN revision: 57223
2011-02-21 19:10:16 +00:00
Massimo Maiurana 2d324134b3 updating various translations
SVN revision: 57099
2011-02-16 20:39:52 +00:00
Massimo Maiurana 80259f8b43 updating ukrainian translations
SVN revision: 56757
2011-02-06 20:06:03 +00:00
Massimo Maiurana eae3326448 updating german translations
SVN revision: 56200
2011-01-16 21:46:50 +00:00
Daniel Kolesa c75c46d51c More work done on translations to Czech.
SVN revision: 55849
2011-01-04 17:19:35 +00:00
Massimo Maiurana 259e221719 updating portuguese translations
SVN revision: 55292
2010-12-05 21:02:34 +00:00
Miculcy Brian 034705984d Apply category.
SVN revision: 53639
2010-10-19 19:01:15 +00:00
Massimo Maiurana f5761c0849 updating portuguese translations
SVN revision: 52901
2010-09-29 17:50:53 +00:00
Massimo Maiurana 7fa6e76bc4 updating french and italian translations
SVN revision: 52131
2010-09-10 10:57:18 +00:00
Miculcy Brian 38ff81ae71 fix recent menu api break
SVN revision: 52062
2010-09-09 14:50:07 +00:00
Christopher Michael 76a48ec0de Update email address across the board.
SVN revision: 51890
2010-09-04 18:32:59 +00:00
Lucas De Marchi d98f684bad 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 a0170084d5 adding portuguese translations
SVN revision: 51077
2010-08-13 11:41:21 +00:00
Lucas De Marchi 139250020f 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 812a42eef1 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 bbd0d5a6e3 updating french translation
SVN revision: 50214
2010-07-13 10:41:08 +00:00
Christopher Michael ff61116d06 Fixes for Ecore Api changes.
Add libintl.h



SVN revision: 50074
2010-07-06 17:59:30 +00:00
Miculcy Brian 29f2dd68b7 remove useless title
SVN revision: 47024
2010-03-08 17:09:13 +00:00
Christopher Michael ee3a80e3ac And call correct configure calls.
SVN revision: 46984
2010-03-08 06:46:52 +00:00
Christopher Michael 85d663223c Call proper function for gc register/unregister.
SVN revision: 46983
2010-03-08 06:44:28 +00:00
Christopher Michael 5a95840222 More 'make net module compile' changes.
SVN revision: 46982
2010-03-08 06:36:02 +00:00
Christopher Michael 4a7c33e669 More work on getting net to compile.
SVN revision: 46981
2010-03-08 06:23:08 +00:00
Christopher Michael bd897a0606 Work on getting net module to compile again.
SVN revision: 46980
2010-03-08 06:16:41 +00:00
Aron Xu 63548a3172 Sync translations from Launchpad.
SVN revision: 46205
2010-02-16 09:30:59 +00:00
Sebastian Dransfeld bb71e2bdc7 Make non static functions EINTERN
SVN revision: 45447
2010-01-22 20:01:01 +00:00
Christopher Michael 817925d225 Make net compile again.
SVN revision: 45262
2010-01-17 15:59:00 +00:00
Aron Xu 68179df494 Sync translations from launchpad
SVN revision: 44166
2009-12-03 09:56:45 +00:00
Christopher Michael 7cbc837b4a formatting.
SVN revision: 43930
2009-11-23 17:08:25 +00:00
Christopher Michael 8e12110d2e Enable silent rules if possible.
SVN revision: 42986
2009-10-09 21:15:12 +00:00
Aron Xu 862ee79b1a Sync translations from Launchpad for E-MODULES-EXTRA.
SVN revision: 42065
2009-08-28 08:34:45 +00:00