[EGIT] [core/enlightenment] master 01/01: fix infinite property change loop
raster pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=2e72c9fc93dd00225ec01d79d9b97fa04efedf94 commit 2e72c9fc93dd00225ec01d79d9b97fa04efedf94 Author: Carsten Haitzler (Rasterman) Date: Mon May 19 17:11:02 2014 +0900 fix infinite property change loop this fixes T1259 --- src/bin/e_comp_x.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bin/e_comp_x.c b/src/bin/e_comp_x.c index 77a6479..4899e6b 100644 --- a/src/bin/e_comp_x.c +++ b/src/bin/e_comp_x.c @@ -2648,6 +2648,7 @@ _e_comp_x_hook_client_post_new_client(void *d EINA_UNUSED, E_Client *ec) ecore_x_window_prop_card32_set(win->evas_win, E_ATOM_WINDOW_STATE, state, num); else ecore_x_window_prop_property_del(win->evas_win, E_ATOM_WINDOW_STATE); +ec->changes.internal_state = 0; } if (ec->changes.internal_props) --
[EGIT] [core/enlightenment] master 01/01: tiling: removed unnecessary resizing of window.
tasn pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=8f0272eb40853e810e8d6ae1b6f0295ecfa1ae90 commit 8f0272eb40853e810e8d6ae1b6f0295ecfa1ae90 Author: Seunghun Lee Date: Mon May 19 09:46:05 2014 +0100 tiling: removed unnecessary resizing of window. Summary: change the time to call _add_hook to eval_fetch in tiling. finally, tiling resize window after setting desk of client. Reviewers: tasn CC: cedric Differential Revision: https://phab.enlightenment.org/D869 --- src/modules/tiling/e_mod_tiling.c | 25 +++-- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/src/modules/tiling/e_mod_tiling.c b/src/modules/tiling/e_mod_tiling.c index 5387c0a..bfae523 100644 --- a/src/modules/tiling/e_mod_tiling.c +++ b/src/modules/tiling/e_mod_tiling.c @@ -75,10 +75,9 @@ static struct tiling_mod_main_g char edj_path[PATH_MAX]; E_Config_DD *config_edd, *vdesk_edd; Ecore_Event_Handler *handler_client_resize, *handler_client_move, - *handler_client_add, *handler_client_iconify, - *handler_client_uniconify, + *handler_client_iconify, *handler_client_uniconify, *handler_desk_set, *handler_compositor_resize; - E_Client_Hook *handler_client_resize_begin; + E_Client_Hook *handler_client_resize_begin, *handler_client_eval_fetch; E_Client_Menu_Hook *client_menu_hook; Tiling_Info *tinfo; @@ -1166,14 +1165,19 @@ _client_track(E_Client *ec) _e_client_check_based_on_state_cb, ec); } -static Eina_Bool -_add_hook(void *data EINA_UNUSED, int type EINA_UNUSED, E_Event_Client *event) +static void +_add_hook(void *data EINA_UNUSED, E_Client *ec) { - E_Client *ec = event->ec; + if (!ec) + return; - _add_client(ec); + if (!ec->new_client) + return; - return true; + if (e_object_is_del(E_OBJECT(ec))) + return; + + _add_client(ec); } static Eina_Bool @@ -1358,9 +1362,10 @@ e_modapi_init(E_Module *m) _G.handler_client_resize_begin = e_client_hook_add(E_CLIENT_HOOK_RESIZE_BEGIN, _resize_begin_hook, NULL); + _G.handler_client_eval_fetch = + e_client_hook_add(E_CLIENT_HOOK_EVAL_FETCH, _add_hook, NULL); HANDLER(_G.handler_client_resize, CLIENT_RESIZE, _resize_hook); HANDLER(_G.handler_client_move, CLIENT_MOVE, _move_hook); - HANDLER(_G.handler_client_add, CLIENT_ADD, _add_hook); HANDLER(_G.handler_client_iconify, CLIENT_ICONIFY, _iconify_hook); HANDLER(_G.handler_client_uniconify, CLIENT_UNICONIFY, _iconify_hook); @@ -1550,7 +1555,6 @@ e_modapi_shutdown(E_Module *m EINA_UNUSED) FREE_HANDLER(_G.handler_client_resize); FREE_HANDLER(_G.handler_client_move); - FREE_HANDLER(_G.handler_client_add); FREE_HANDLER(_G.handler_client_iconify); FREE_HANDLER(_G.handler_client_uniconify); @@ -1558,6 +1562,7 @@ e_modapi_shutdown(E_Module *m EINA_UNUSED) FREE_HANDLER(_G.handler_desk_set); SAFE_FREE(_G.handler_client_resize_begin, e_client_hook_del); + SAFE_FREE(_G.handler_client_eval_fetch, e_client_hook_del); #undef FREE_HANDLER #undef SAFE_FREE --
[EGIT] [core/evas_generic_loaders] master 01/01: release: v1.10.0 beta3
stefan pushed a commit to branch master. http://git.enlightenment.org/core/evas_generic_loaders.git/commit/?id=51557c81491c467ce6fe50e3fe48d2e945a838c5 commit 51557c81491c467ce6fe50e3fe48d2e945a838c5 Author: Stefan Schmidt Date: Mon May 19 11:10:14 2014 +0200 release: v1.10.0 beta3 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index fd72a15..4fda83d 100644 --- a/configure.ac +++ b/configure.ac @@ -17,7 +17,7 @@ m4_define([lt_age], v_min) ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--## ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--## -AC_INIT([evas_generic_loaders], [v_ver-beta2], [enlightenment-devel@lists.sourceforge.net]) +AC_INIT([evas_generic_loaders], [v_ver-beta3], [enlightenment-devel@lists.sourceforge.net]) AC_PREREQ([2.52]) AC_CONFIG_SRCDIR([configure.ac]) AC_CONFIG_MACRO_DIR([m4]) --
[EGIT] [core/emotion_generic_players] master 01/01: release: v1.10.0 beta3
stefan pushed a commit to branch master. http://git.enlightenment.org/core/emotion_generic_players.git/commit/?id=3018fd0aac5a03d9039649613f35b8f2955cef4e commit 3018fd0aac5a03d9039649613f35b8f2955cef4e Author: Stefan Schmidt Date: Mon May 19 11:11:26 2014 +0200 release: v1.10.0 beta3 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index e12577e..63079da 100644 --- a/configure.ac +++ b/configure.ac @@ -18,7 +18,7 @@ m4_define([lt_age], v_min) ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--## ##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--##--## -AC_INIT([emotion_generic_players], [v_ver-beta2], [enlightenment-devel@lists.sourceforge.net]) +AC_INIT([emotion_generic_players], [v_ver-beta3], [enlightenment-devel@lists.sourceforge.net]) AC_PREREQ([2.59]) AC_CONFIG_SRCDIR([configure.ac]) AC_CONFIG_MACRO_DIR([m4]) --
[EGIT] [core/evas_generic_loaders] annotated tag v1.10.0-beta3 created
stefan pushed a change to annotated tag v1.10.0-beta3 in repository core/evas_generic_loaders. at 96c0c90ad1 (tag) tagging 51557c81491c467ce6fe50e3fe48d2e945a838c5 (commit) replaces v1.10.0-beta2 tagged by Stefan Schmidt on Mon May 19 11:23:01 2014 +0200 - Log - v1.10.0-beta3 ChunEon Park (1): README - fixed typo Stefan Schmidt (1): release: v1.10.0 beta3 --- No new revisions were added by this update. --
[EGIT] [core/emotion_generic_players] annotated tag v1.10.0-beta3 created
stefan pushed a change to annotated tag v1.10.0-beta3 in repository core/emotion_generic_players. at 12836a7557 (tag) tagging 3018fd0aac5a03d9039649613f35b8f2955cef4e (commit) replaces v1.10.0-beta2 tagged by Stefan Schmidt on Mon May 19 11:23:31 2014 +0200 - Log - v1.10.0-beta3 Stefan Schmidt (1): release: v1.10.0 beta3 --- No new revisions were added by this update. --
[EGIT] [core/elementary] annotated tag v1.10.0-beta3 created
stefan pushed a change to annotated tag v1.10.0-beta3 in repository core/elementary. at f29257db5b (tag) tagging 40dc188f2695db7d3e02b8d75a2576c683738f79 (commit) replaces v1.10.0-beta2 tagged by Stefan Schmidt on Mon May 19 11:39:12 2014 +0200 - Log - v1.10.0-beta3 Amitesh Singh (2): hoversel: item-loop should happen on UP/DOWN Key in case of vertical hoversel and on LEFT/RIGHT Key in case of horizontal hoversel. hoversel: Icon parent set to button. Anand (1): focus: Fixed the animation issue related to bring_in. Carsten Haitzler (4): Revert "focus: Fixed the animation issue related to bring_in." update po files fix visiblity of entry cursor when selections exist cursor test - make button expand to test window edges with cursor Daniel Juyung Seo (3): Revert "Revert "focus: Fixed the animation issue related to bring_in."" focus: apply the focus API change during the development phase. example: added ellipsis: -1 to text parts which have min 1. Jaehyun Cho (2): elm_map: Fix to show and bring in a correct region after zooming elm_map: Fix to calculate map size not to be smaller than viewport size Jean-Philippe Andre (3): edc: Fix E titlebars after text padding changes edc: Also fix frame and button offsets edc: Fix multibuttonentry alignments Lukasz Stanislawski (1): layout: remove sizing_eval call when layout is already destructed. @fix Mike Blumenkrantz (4): add ellipsis to elm theme where necessary more ellipsis fixes fix horizontal theme text sizing after @jpeg vertical fixes fix mouse events on elm frame parts SangHyeon Lee (1): [Gengrid] Fix gengrid item position update bug, when item is reordered or deleted. Stefan Schmidt (1): release: v1.10.0 beta3 Vorobiov Vitalii (1): [Fileselector] Fix double-call of callback function on clicking "Enter" key. Youngbok Shin (2): entry: Fix a test case for editable, non-editable entry. entry: Enable context menu with mosue down even if the entry is not editable in some case. nirajkr (1): gengrid : Fix the issue to skip disable item in item select --- This annotated tag includes the following new commits: new 40dc188f26 release: v1.10.0 beta3 The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. --
[EGIT] [core/elementary] v1.10.0-beta3 01/01: release: v1.10.0 beta3
stefan pushed a commit to annotated tag v1.10.0-beta3. http://git.enlightenment.org/core/elementary.git/commit/?id=40dc188f2695db7d3e02b8d75a2576c683738f79 commit 40dc188f2695db7d3e02b8d75a2576c683738f79 Author: Stefan Schmidt Date: Mon May 19 11:03:17 2014 +0200 release: v1.10.0 beta3 --- NEWS | 9 + configure.ac | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 931a2c6..967de91 100644 --- a/NEWS +++ b/NEWS @@ -106,6 +106,15 @@ Fixes: * gengrid: frame variable should be used for position changes. * widgets - propagate current parent orientation to sub object. * elm_map: Fix to support customized style for elm_map + * entry: Fix a test case for editable, non-editable entry. + * layout: remove sizing_eval call when layout is already destructed. @fix + * elm_map: Fix to show and bring in a correct region after zooming + * gengrid : Fix the issue to skip disable item in item select + * entry: Enable context menu with mosue down even if the entry is not editable in some case. + * hoversel: item-loop should happen on UP/DOWN Key in case of vertical hoversel and on LEFT/RIGHT Key in case of horizontal hoversel. + * fix visiblity of entry cursor when selections exist (T1229) + * elm_map: Fix to calculate map size not to be smaller than viewport size + * [Fileselector] Fix double-call of callback function on clicking "Enter" key. Changes since Elementary 1.8.0: diff --git a/configure.ac b/configure.ac index 69cb6fb..3286bbf 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ EFL_VERSION([1], [10], [0], [release]) -AC_INIT([elementary], [efl_version-beta2], [enlightenment-devel@lists.sourceforge.net]) +AC_INIT([elementary], [efl_version-beta3], [enlightenment-devel@lists.sourceforge.net]) AC_PREREQ(2.60) AC_CONFIG_SRCDIR([configure.ac]) --
[EGIT] [core/efl] master 01/01: evas/gl_x11 - replace inlist counting to one api call.
hermet pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=53e11f3b0579e402a08076aa60027897ef41cd96 commit 53e11f3b0579e402a08076aa60027897ef41cd96 Author: ChunEon Park Date: Mon May 19 18:47:20 2014 +0900 evas/gl_x11 - replace inlist counting to one api call. --- src/modules/evas/engines/gl_x11/evas_engine.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/evas/engines/gl_x11/evas_engine.c b/src/modules/evas/engines/gl_x11/evas_engine.c index 0dcbe07..37faaa5 100644 --- a/src/modules/evas/engines/gl_x11/evas_engine.c +++ b/src/modules/evas/engines/gl_x11/evas_engine.c @@ -1612,7 +1612,7 @@ eng_output_flush(void *data, Evas_Render_Mode render_mode) Tilebuf_Rect *r; // if partial swaps can be done use re->rects -EINA_INLIST_FOREACH(EINA_INLIST_GET(re->rects), r) num++; +num = eina_inlist_count(EINA_INLIST_GET(re->rects)); if (num > 0) { rects = alloca(sizeof(EGLint) * 4 * num); --
[EGIT] [apps/terminology] master 01/01: Themes: Add smyck theme.
tasn pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=6f2aa6d7648b7dd2bf7b965d93a9600f9ceca526 commit 6f2aa6d7648b7dd2bf7b965d93a9600f9ceca526 Author: Tom Hacohen Date: Mon May 19 11:49:57 2014 +0100 Themes: Add smyck theme. http://color.smyck.org/. --- data/themes/Makefile.am | 7 +++ data/themes/smyck.edc | 43 +++ 2 files changed, 50 insertions(+) diff --git a/data/themes/Makefile.am b/data/themes/Makefile.am index 7c88b44..0d5ff1b 100644 --- a/data/themes/Makefile.am +++ b/data/themes/Makefile.am @@ -15,6 +15,7 @@ mild.edj \ black.edj \ solarized.edj \ solarized_light.edj \ +smyck.edj \ mustang.edj \ base16_ocean_dark.edj @@ -30,6 +31,7 @@ mustang.edc \ base16_ocean_dark.edc \ solarized.edc \ solarized_light.edc \ +smyck.edc \ default_colors.in.edc default.edj: Makefile default.edc default_colors.in.edc @@ -67,5 +69,10 @@ base16_ocean_dark.edj: Makefile base16_ocean_dark.edc mild.edc default_colors.in $(top_srcdir)/data/themes/base16_ocean_dark.edc \ $(top_builddir)/data/themes/base16_ocean_dark.edj +smyck.edj: Makefile smyck.edc default_colors.in.edc + $(AM_V_EDJ)$(EDJE_CC) $(EDJE_FLAGS) \ + $(top_srcdir)/data/themes/smyck.edc \ + $(top_builddir)/data/themes/smyck.edj + clean-local: rm -f *.edj diff --git a/data/themes/smyck.edc b/data/themes/smyck.edc new file mode 100644 index 000..d7b976d --- /dev/null +++ b/data/themes/smyck.edc @@ -0,0 +1,43 @@ +/* Smyck theme: http://color.smyck.org/ */ + +#define ANSI0 0 0 0 255 +#define ANSI1 183 65 49 255 +#define ANSI2 125 169 0 255 +#define ANSI3 196 164 0 255 +#define ANSI4 98 163 196 255 +#define ANSI5 185 138 204 255 +#define ANSI6 32 115 131 255 +#define ANSI7 160 160 160 255 + +#define ANSI8 122 122 122 255 +#define ANSI9 214 131 123 255 +#define ANSI10 196 240 54 255 +#define ANSI11 254 225 77 255 +#define ANSI12 141 207 240 255 +#define ANSI13 247 153 255 255 +#define ANSI14 105 217 207 255 +#define ANSI15 247 247 247 255 + +#define BG_COLANSI0 +#define NO_COLORS 1 + +color_classes { + color_class { name: "C0"; color: ANSI0; } // COL_BLACK + color_class { name: "C1"; color: ANSI1; } // COL_RED + color_class { name: "C2"; color: ANSI2; } // COL_GREEN + color_class { name: "C3"; color: ANSI3; } // COL_YELLOW + color_class { name: "C4"; color: ANSI4; } // COL_BLUE + color_class { name: "C5"; color: ANSI5; } // COL_MAGENTA + color_class { name: "C6"; color: ANSI6; } // COL_CYAN + color_class { name: "C7"; color: ANSI7; } // COL_WHITE + + color_class { name: "C8"; color: ANSI8; } // COL_BLACK + color_class { name: "C9"; color: ANSI9; } // COL_RED + color_class { name: "C10"; color: ANSI10; } // COL_GREEN + color_class { name: "C11"; color: ANSI11; } // COL_YELLOW + color_class { name: "C12"; color: ANSI12; } // COL_BLUE + color_class { name: "C13"; color: ANSI13; } // COL_MAGENTA + color_class { name: "C14"; color: ANSI14; } // COL_CYAN + color_class { name: "C15"; color: ANSI15; } // COL_WHITE +} +#include "default.edc" --
[EGIT] [core/efl] master 01/01: efreet: Fix mistakenly inverted behavior in URI handling
kuuko pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=64f35d46159ffae5279db500a8d7fd72c06e2279 commit 64f35d46159ffae5279db500a8d7fd72c06e2279 Author: Kai Huuhko Date: Mon May 19 14:15:51 2014 +0300 efreet: Fix mistakenly inverted behavior in URI handling Fixes a mistake in commit 78c9a82a142f619ccd0957957351fe0e573de76c The authority part would get placed in the struct member "path", and vice versa. Lesson learned: Don't rewrite your patch late at night after arc has messed it up. --- src/lib/efreet/efreet_uri.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/lib/efreet/efreet_uri.c b/src/lib/efreet/efreet_uri.c index 54e1d6f..de224a6 100644 --- a/src/lib/efreet/efreet_uri.c +++ b/src/lib/efreet/efreet_uri.c @@ -47,11 +47,12 @@ efreet_uri_decode(const char *full_uri) /* parse authority */ p++; -if (*p != '/') +if (*p == '/') { p++; -if (*p != '/') +if (*p == '/') { +p++; for (i = 0; *p != '/' && *p != '?' && *p != '#' && *p != '\0' && i < (_POSIX_HOST_NAME_MAX - 1); p++, i++) authority[i] = *p; authority[i] = '\0'; --
[EGIT] [apps/terminology] master 01/01: Themes smyck: Update to 256 colours.
tasn pushed a commit to branch master. http://git.enlightenment.org/apps/terminology.git/commit/?id=edfb3d6958b6fc0d7d05c19ca62e296216c55027 commit edfb3d6958b6fc0d7d05c19ca62e296216c55027 Author: Tom Hacohen Date: Mon May 19 13:01:30 2014 +0100 Themes smyck: Update to 256 colours. --- data/themes/smyck.edc | 60 --- 1 file changed, 57 insertions(+), 3 deletions(-) diff --git a/data/themes/smyck.edc b/data/themes/smyck.edc index d7b976d..96d0555 100644 --- a/data/themes/smyck.edc +++ b/data/themes/smyck.edc @@ -18,8 +18,7 @@ #define ANSI14 105 217 207 255 #define ANSI15 247 247 247 255 -#define BG_COLANSI0 -#define NO_COLORS 1 +#define BG_COLOR ANSI0 color_classes { color_class { name: "C0"; color: ANSI0; } // COL_BLACK @@ -39,5 +38,60 @@ color_classes { color_class { name: "C13"; color: ANSI13; } // COL_MAGENTA color_class { name: "C14"; color: ANSI14; } // COL_CYAN color_class { name: "C15"; color: ANSI15; } // COL_WHITE + + color_class { name: "c0"; color: 170 170 170 255; } // COL_DEF + color_class { name: "c1"; color: ANSI0; } // COL_BLACK + color_class { name: "c2"; color: ANSI1; } // COL_RED + color_class { name: "c3"; color: ANSI2; } // COL_GREEN + color_class { name: "c4"; color: ANSI3; } // COL_YELLOW + color_class { name: "c5"; color: ANSI4; } // COL_BLUE + color_class { name: "c6"; color: ANSI5; } // COL_MAGENTA + color_class { name: "c7"; color: ANSI6; } // COL_CYAN + color_class { name: "c8"; color: ANSI7; } // COL_WHITE + color_class { name: "c9"; color: 0 0 0 0; } // COL_INVIS + color_class { name: "c10"; color: 34 34 34 255; } // COL_INVERSE + color_class { name: "c11"; color: 170 170 170 255; } // COL_INVERSEBG + + color_class { name: "c12"; color: 238 238 238 255; } // COL_DEF + color_class { name: "c13"; color: ANSI8; } // COL_BLACK + color_class { name: "c14"; color: ANSI9; } // COL_RED + color_class { name: "c15"; color: ANSI10; } // COL_GREEN + color_class { name: "c16"; color: ANSI11; } // COL_YELLOW + color_class { name: "c17"; color: ANSI12; } // COL_BLUE + color_class { name: "c18"; color: ANSI13; } // COL_MAGENTA + color_class { name: "c19"; color: ANSI14; } // COL_CYAN + color_class { name: "c20"; color: ANSI15; } // COL_WHITE + color_class { name: "c21"; color: 0 0 0 0; } // COL_INVIS + color_class { name: "c22"; color: 17 17 17 255; } // COL_INVERSE + color_class { name: "c23"; color: 238 238 238 255; } // COL_INVERSEBG + + color_class { name: "c24"; color: 221 221 221 255; } // COL_DEF + color_class { name: "c25"; color: 0 0 0 255; } // COL_BLACK + color_class { name: "c26"; color: 204 136 136 255; } // COL_RED + color_class { name: "c27"; color: 136 204 136 255; } // COL_GREEN + color_class { name: "c28"; color: 204 170 136 255; } // COL_YELLOW + color_class { name: "c29"; color: 136 136 204 255; } // COL_BLUE + color_class { name: "c30"; color: 204 136 204 255; } // COL_MAGENTA + color_class { name: "c31"; color: 136 204 204 255; } // COL_CYAN + color_class { name: "c32"; color: 204 204 204 255; } // COL_WHITE + color_class { name: "c33"; color: 0 0 0 0; } // COL_INVIS + color_class { name: "c34"; color: 17 17 17 255; } // COL_INVERSE + color_class { name: "c35"; color: 204 204 204 255; } // COL_INVERSEBG + + color_class { name: "c36"; color: 255 255 255 255; } // COL_DEF + color_class { name: "c37"; color: 204 204 204 255; } // COL_BLACK + color_class { name: "c38"; color: 255 204 204 255; } // COL_RED + color_class { name: "c39"; color: 204 255 204 255; } // COL_GREEN + color_class { name: "c40"; color: 255 255 204 255; } // COL_YELLOW + color_class { name: "c41"; color: 204 204 255 255; } // COL_BLUE + color_class { name: "c42"; color: 255 204 255 255; } // COL_MAGENTA + color_class { name: "c43"; color: 204 255 255 255; } // COL_CYAN + color_class { name: "c44"; color: 255 255 255 255; } // COL_WHITE + color_class { name: "c45"; color: 0 0 0 0; } // COL_INVIS + color_class { name: "c46"; color: 0 0 0 255; } // COL_INVERSE + color_class { name: "c47"; color: 255 255 255 255; } // COL_INVERSEBG } -#include "default.edc" + +#define INHERIT_PROVIDE_OWN_COLORS + +#include "mild.edc" --
[EGIT] [core/efl] master 01/01: evas/render - fix segfault because of null cow access.
hermet pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=c3cd680fad41610c9725c720e8865ef6dad54cfe commit c3cd680fad41610c9725c720e8865ef6dad54cfe Author: ChunEon Park Date: Mon May 19 22:42:36 2014 +0900 evas/render - fix segfault because of null cow access. issue ticket: T1252 @fixed --- src/lib/evas/canvas/evas_render.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/lib/evas/canvas/evas_render.c b/src/lib/evas/canvas/evas_render.c index 1594f3c..a06f852 100644 --- a/src/lib/evas/canvas/evas_render.c +++ b/src/lib/evas/canvas/evas_render.c @@ -2465,8 +2465,7 @@ _evas_render_dump(Eo *eo_e EINA_UNUSED, Evas_Public_Data *e) e->engine.func->output_dump(e->engine.data.output); #define GC_ALL(Cow) \ - while (eina_cow_gc(Cow)) - + if (Cow) while (eina_cow_gc(Cow)) GC_ALL(evas_object_proxy_cow); GC_ALL(evas_object_map_cow); GC_ALL(evas_object_image_pixels_cow); --
[EGIT] [tools/enventor] master 01/01: color - updated
hermet pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=26003915df38ac09c470d157abc98be6f307de72 commit 26003915df38ac09c470d157abc98be6f307de72 Author: ChunEon Park Date: Mon May 19 23:15:17 2014 +0900 color - updated --- data/color/color.src | 18 +++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/data/color/color.src b/data/color/color.src index 30f3c20..13588dc 100644 --- a/data/color/color.src +++ b/data/color/color.src @@ -1,10 +1,10 @@ group "syntax_color_group" struct { - value "comment" string: "00B000"; - value "define" string: "D42A2A"; + value "comment" string: "00B000"; + value "define" string: "D42A2A"; group "colors" array { count 6; group "color" struct { - value "val" string: "656565"; + value "val" string: "77"; group "keys" list { value "key" string: "{"; value "key" string: "}"; @@ -12,6 +12,10 @@ group "syntax_color_group" struct { value "key" string: "]"; value "key" string: ";"; value "key" string: ":"; +value "key" string: "."; +value "key" string: "("; +value "key" string: ")"; +value "key" string: "!"; } } group "color" struct { @@ -98,6 +102,7 @@ group "syntax_color_group" struct { value "key" string: "transition"; value "key" string: "type"; value "key" string: "tween"; +value "key" string: "visible"; value "key" string: "z:"; value "key" string: "zplane"; } @@ -133,6 +138,7 @@ group "syntax_color_group" struct { value "key" string: "OUTLINE_SOFT_SHADOW"; value "key" string: "OUTLINE_SHADOW"; value "key" string: "OUTLINE"; +value "key" string: "PART"; value "key" string: "PLAIN"; value "key" string: "PROGRAM"; value "key" string: "PROXY"; @@ -162,12 +168,17 @@ group "syntax_color_group" struct { value "key" string: "cancel_anim"; value "key" string: "cancel_timer"; value "key" string: "get_float"; +value "key" string: "get_geometry"; value "key" string: "get_int"; +value "key" string: "get_state"; +value "key" string: "get_text"; value "key" string: "run_program"; value "key" string: "set_float"; value "key" string: "set_int"; value "key" string: "set_state"; +value "key" string: "set_text"; value "key" string: "set_tween_state"; +value "key" string: "strcmp"; value "key" string: "timer"; } } @@ -178,6 +189,7 @@ group "syntax_color_group" struct { value "key" string: "if"; value "key" string: "new"; value "key" string: "public"; +value "key" string: "return"; } } } --
[EGIT] [tools/enventor] master 01/01: color - one more keyword.
hermet pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=6f2352e44e8d33c77ba99c6dda60d60f48bf5ad7 commit 6f2352e44e8d33c77ba99c6dda60d60f48bf5ad7 Author: ChunEon Park Date: Tue May 20 00:21:49 2014 +0900 color - one more keyword. --- data/color/color.src | 1 + 1 file changed, 1 insertion(+) diff --git a/data/color/color.src b/data/color/color.src index 13588dc..c0df40c 100644 --- a/data/color/color.src +++ b/data/color/color.src @@ -167,6 +167,7 @@ group "syntax_color_group" struct { value "key" string: "anim"; value "key" string: "cancel_anim"; value "key" string: "cancel_timer"; +value "key" string: "emit"; value "key" string: "get_float"; value "key" string: "get_geometry"; value "key" string: "get_int"; --
[EGIT] [core/elementary] master 01/01: widget: updated internal documentation for elm_widget_item_del.
seoz pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=9bce86a2c6b8d96495cef9824b55d0df1752ee16 commit 9bce86a2c6b8d96495cef9824b55d0df1752ee16 Author: Daniel Juyung Seo Date: Tue May 20 00:54:50 2014 +0900 widget: updated internal documentation for elm_widget_item_del. --- src/lib/elm_widget.c | 11 --- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/src/lib/elm_widget.c b/src/lib/elm_widget.c index 4c079e0..f4225a0 100644 --- a/src/lib/elm_widget.c +++ b/src/lib/elm_widget.c @@ -4098,9 +4098,12 @@ _elm_widget_item_free(Elm_Widget_Item *item) /** * @internal * - * Releases widget item memory, calling back del_cb() if it exists. + * Releases widget item memory, calling back item_del_pre_hook() and + * item_del_cb() if they exist. * - * If there is a Elm_Widget_Item::del_cb, then it will be called prior + * @param item a valid #Elm_Widget_Item to be deleted. + * + * If there is an Elm_Widget_Item::del_cb, then it will be called prior * to memory release. Note that elm_widget_item_pre_notify_del() calls * this function and then unset it, thus being useful for 2 step * cleanup whenever the del_cb may use any of the data that must be @@ -4109,7 +4112,9 @@ _elm_widget_item_free(Elm_Widget_Item *item) * The Elm_Widget_Item::view will be deleted (evas_object_del()) if it * is presented! * - * @param item a valid #Elm_Widget_Item to be deleted. + * Note that if item_del_pre_hook() returns @c EINA_TRUE, item free will be + * deferred, or item will be freed here if it returns @c EINA_FALSE. + * * @see elm_widget_item_del() convenience macro. * @ingroup Widget */ --
[E-devel] Weekly news from the automated build and QA front
Hello. Summary: This should give everyone an overview over what has happened in the last week on the QA front. The numbers in parentheses reflect the values from last week to give you a trend. CI: o Overall build statistic: 4.59% (5.10%) failed. https://build.enlightenment.org/ clang scan-build: o EFL scan-build reports 456 (462) issues. https://build.enlightenment.org/job/nightly_efl_clang_x86_64/lastSuccessfu lBuild/artifact/scan-build/build/ o Elementary scan-build reports 73 (73) https://build.enlightenment.org/job/nightly_elm_clang_x86_64/lastSuccessfulBuild/artifact/scan-build/build Unit tests: o 361 (358) unit tests for efl and none failing Coverage: o EFL total coverage is at 28.9% (25.4%) lines and 32.0% (29.1%) functions https://build.enlightenment.org/view/Test%20Coverage/ Coverity: o EFL: Outstanding defects 326 (337) with a density of 0.51 (0.52) o Elm: Outstanding defects 6 (6) with a density of 0.03 (0.03) o E: Outstanding defects 65 (65) with a density of 0.24 (0.24) o Terminology: Outstanding defects 1 (1) with a density of 0.01 (0.01) Phab: o Total bug count: 301 (291) o Pending patch reviews: 25 (24) regards Stefan Schmidt -- "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE Instantly run your Selenium tests across 300+ browser/OS combos. Get unparalleled scalability from the best Selenium testing platform available Simple to use. Nothing to install. Get started now for free." http://p.sf.net/sfu/SauceLabs ___ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
[EGIT] [core/efl] master 01/01: release: v1.10.0 beta3
stefan pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=d804844dabd270a1ddb5ef17155129f2c41902b6 commit d804844dabd270a1ddb5ef17155129f2c41902b6 Author: Stefan Schmidt Date: Mon May 19 18:24:17 2014 +0200 release: v1.10.0 beta3 --- NEWS | 6 ++ configure.ac | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 37a94cf..5f65a89 100644 --- a/NEWS +++ b/NEWS @@ -203,6 +203,12 @@ Fixes: * evas-wayland-shm: Use XDG_RUNTIME_DIR if available for creating mmap'd buffer file. * evas-wayland-shm: Fix 'oopsie/typo' in temporary file name template * ecore-x - fix setting protocol atoms for icccm for 64bit + * edje/Edje_Edit: _edje_edit_real_part_add init field of Edje_Real_part + * fix ecore_con_url using 100% cpu and just let fd handler do work (T1251) + * fix behavior of edje entry to match other toolkit entires (T1229) + * fix ecore_thread_global_data_wait to work when no data exists yet + * Eo: Fix deref after free. (CID1039898) + * evas/render - fix segfault because of null cow access. (T1252) Changes since 1.8.0: diff --git a/configure.ac b/configure.ac index 18bcf1e..bea0922 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ EFL_VERSION([1], [10], [0], [release]) -AC_INIT([efl], [efl_version-beta2], [enlightenment-devel@lists.sourceforge.net]) +AC_INIT([efl], [efl_version-beta3], [enlightenment-devel@lists.sourceforge.net]) AC_PREREQ([2.60]) AC_CONFIG_SRCDIR([configure.ac]) --
[EGIT] [core/efl] annotated tag v1.10.0-beta3 created
stefan pushed a change to annotated tag v1.10.0-beta3 in repository core/efl. at 04b4ca7b79 (tag) tagging d804844dabd270a1ddb5ef17155129f2c41902b6 (commit) replaces v1.10.0-beta2 tagged by Stefan Schmidt on Mon May 19 18:37:47 2014 +0200 - Log - v1.10.0-beta3 Carsten Haitzler (5): add soem class description to eo timers to test if it gets generated fix ecore_con_url using 100% cpu and just let fd handler do work fix behavior of edje entry to match other toolkit entires fix ecore_thread_global_data_wait to work when no data exists yet update po's ChunEon Park (2): evas/gl_x11 - replace inlist counting to one api call. evas/render - fix segfault because of null cow access. Daniel Zaoui (2): Eolian/Generator: fix the class description generation. Eolian/Lexer: fix support of const parameters. Jean-Philippe ANDRÉ (7): edje_calc: Update some disabled code so it can compile edje_text: Remove no-op pad_get edje_calc: Don't add padding twice to text objects Evas filters: Remove logically dead code Evas filters: Fix NULL dereferences Evas filters: Fix NULL dereference (legacy_strdup) edje_calc: Fix invalid parameters during first calc Kai Huuhko (2): efreet: Handle URIs in a more generic way efreet: Fix mistakenly inverted behavior in URI handling Mike Blumenkrantz (3): edje_cc should throw errors when inheriting a part from the same part edje_cc now prints helpful warning messages when it compiles broken text parts de-elipsis edje Stefan Schmidt (5): ecore_imf: Avoid potential buffer overrun ecore_imf: Account for terminating null byte on copy ethumb: Memset whole contex in md5 implementation edje_calc: Document some intended fall through cases in switch-case release: v1.10.0 beta3 Tom Hacohen (5): Eo: Fix deref after free. Revert "Eo: Fix deref after free." Eo: Don't write to pointer after free. Eo callbacks: Fix a possible issue of corrupted callback list. Eo: Make it clearer that a NULL deref can't happen. U. Artie Eoff (1): evas/wayland_shm: unlink the REAL temporary file Vyacheslav Reutskiy (1): edje/Edje_Edit: _edje_edit_real_part_add init field of Edje_Real_part --- No new revisions were added by this update. --
[E-devel] EFL, Elementary and friends 1.10 beta3
= EFL, Elementary and friends 1.10 beta3 = A week has passed since we did the beta2 tarballs and we are releasing a third beta today. Its an additional beta as we feel we needed a bit more time on this release. Please help us testing them and close or update old bug reports based on this or fill out new ones. The 1.10 release schedule was also extended by one week which means next Monday we will hopefully see the final 1.10 release. == Download == Its getting a long post so the most important stuff upfront. Downloads. :-) http://download.enlightenment.org/rel/libs/efl/efl-1.10.0-beta3.tar.gz d3c5736af4270cde67c455e0f17330c8b7c720499f4f2c45a18fedf7ca51da05 http://download.enlightenment.org/rel/libs/elementary/elementary-1.10.0-beta3.tar.gz 4e517209556216e99c0652aedaf99874855ccafc61ed8369e4a178794475d54f http://download.enlightenment.org/rel/libs/emotion_generic_players/emotion_generic_players-1.10.0-beta3.tar.gz a677f28e766068155480979de56e3616cd1e3743b497370f7d29650e0447521a http://download.enlightenment.org/rel/libs/evas_generic_loaders/evas_generic_loaders-1.10.0-beta3.tar.gz 6601fe69f1e52d9811c040d0924f2cf96624629be2de2718d77bd31fdb1f7fbe = What's New = Changes here are since the beta2 tarballs. == EFL == Fixes: * edje/Edje_Edit: _edje_edit_real_part_add init field of Edje_Real_part * fix ecore_con_url using 100% cpu and just let fd handler do work (T1251) * fix behavior of edje entry to match other toolkit entires (T1229) * fix ecore_thread_global_data_wait to work when no data exists yet * Eo: Fix deref after free. (CID1039898) * evas/render - fix segfault because of null cow access. (T1252) == Elementary == Fixes: * entry: Fix a test case for editable, non-editable entry. * layout: remove sizing_eval call when layout is already destructed. @fix * elm_map: Fix to show and bring in a correct region after zooming * gengrid : Fix the issue to skip disable item in item select * entry: Enable context menu with mosue down even if the entry is not editable in some case. * hoversel: item-loop should happen on UP/DOWN Key in case of vertical hoversel and on LEFT/RIGHT Key in case of horizontal hoversel. * fix visiblity of entry cursor when selections exist (T1229) * elm_map: Fix to calculate map size not to be smaller than viewport size * [Fileselector] Fix double-call of callback function on clicking "Enter" key. -- "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE Instantly run your Selenium tests across 300+ browser/OS combos. Get unparalleled scalability from the best Selenium testing platform available Simple to use. Nothing to install. Get started now for free." http://p.sf.net/sfu/SauceLabs ___ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
[EGIT] [bindings/python/python-efl] master 01/01: Add new Object.scroll_item_loop_enabled property
davemds pushed a commit to branch master. http://git.enlightenment.org/bindings/python/python-efl.git/commit/?id=ecd70f7d81a940e3504c1024de799c80ffaa7cdb commit ecd70f7d81a940e3504c1024de799c80ffaa7cdb Author: davemds Date: Mon May 19 19:57:29 2014 +0200 Add new Object.scroll_item_loop_enabled property --- efl/elementary/object.pxd | 2 ++ efl/elementary/object.pyx | 24 2 files changed, 26 insertions(+) diff --git a/efl/elementary/object.pxd b/efl/elementary/object.pxd index b54e7dd..4c68e2d 100644 --- a/efl/elementary/object.pxd +++ b/efl/elementary/object.pxd @@ -128,6 +128,8 @@ cdef extern from "Elementary.h": voidelm_object_scroll_lock_y_set(Evas_Object *obj, Eina_Bool lock) Eina_Bool elm_object_scroll_lock_x_get(const Evas_Object *obj) Eina_Bool elm_object_scroll_lock_y_get(const Evas_Object *obj) +void elm_object_scroll_item_loop_enabled_set(Evas_Object *obj, Eina_Bool enable) +Eina_Bool elm_object_scroll_item_loop_enabled_get(const Evas_Object *obj) # Object - Theme (elm_theme.h) voidelm_object_theme_set(Evas_Object *obj, Elm_Theme *th) diff --git a/efl/elementary/object.pyx b/efl/elementary/object.pyx index 6604b09..922c30d 100644 --- a/efl/elementary/object.pyx +++ b/efl/elementary/object.pyx @@ -1360,6 +1360,30 @@ cdef class Object(evasObject): def scroll_lock_y_get(self): return bool(elm_object_scroll_lock_y_get(self.obj)) +property scroll_item_loop_enabled: +"""Enable item loop feature of the given widget + +If this is True, item selection/focus will loop internally. +This means if arrow keys are pressed at end of scroller's item, +screen is moved to opposite side. + +:type: bool + +.. versionadded:: 1.10 + +""" +def __get__(self): +return bool(elm_object_scroll_item_loop_enabled_get(self.obj)) + +def __set__(self, enable): +elm_object_scroll_item_loop_enabled_set(self.obj, enable) + +def scroll_item_loop_enabled_set(self, enable): +elm_object_scroll_item_loop_enabled_set(self.obj, enable) +def scroll_item_loop_enabled_get(self): +return bool(elm_object_scroll_item_loop_enabled_get(self.obj)) + + # # Theme # = --
[EGIT] [bindings/python/python-efl] master 01/01: Fix param declaration for edje_edit offset functions (float->int)
davemds pushed a commit to branch master. http://git.enlightenment.org/bindings/python/python-efl.git/commit/?id=2967438dca16d2fd6d5648dd944a16f27a0c251b commit 2967438dca16d2fd6d5648dd944a16f27a0c251b Author: davemds Date: Mon May 19 20:04:22 2014 +0200 Fix param declaration for edje_edit offset functions (float->int) --- include/efl.edje_edit.pxd | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/efl.edje_edit.pxd b/include/efl.edje_edit.pxd index aedde03..e64356a 100644 --- a/include/efl.edje_edit.pxd +++ b/include/efl.edje_edit.pxd @@ -199,10 +199,10 @@ cdef extern from "Edje_Edit.h": int edje_edit_state_rel1_offset_y_get(Evas_Object *obj, char *part, char *state, double value) int edje_edit_state_rel2_offset_x_get(Evas_Object *obj, char *part, char *state, double value) int edje_edit_state_rel2_offset_y_get(Evas_Object *obj, char *part, char *state, double value) -Eina_Bool edje_edit_state_rel1_offset_x_set(Evas_Object *obj, char *part, char *state, double value, double x) -Eina_Bool edje_edit_state_rel1_offset_y_set(Evas_Object *obj, char *part, char *state, double value, double y) -Eina_Bool edje_edit_state_rel2_offset_x_set(Evas_Object *obj, char *part, char *state, double value, double x) -Eina_Bool edje_edit_state_rel2_offset_y_set(Evas_Object *obj, char *part, char *state, double value, double y) +Eina_Bool edje_edit_state_rel1_offset_x_set(Evas_Object *obj, char *part, char *state, double value, int x) +Eina_Bool edje_edit_state_rel1_offset_y_set(Evas_Object *obj, char *part, char *state, double value, int y) +Eina_Bool edje_edit_state_rel2_offset_x_set(Evas_Object *obj, char *part, char *state, double value, int x) +Eina_Bool edje_edit_state_rel2_offset_y_set(Evas_Object *obj, char *part, char *state, double value, int y) char *edje_edit_state_rel1_to_x_get(Evas_Object *obj, char *part, char *state, double value) char *edje_edit_state_rel1_to_y_get(Evas_Object *obj, char *part, char *state, double value) char *edje_edit_state_rel2_to_x_get(Evas_Object *obj, char *part, char *state, double value) --
[EGIT] [bindings/python/python-efl] master 01/01: New Config.focus_autoscroll_mode property
davemds pushed a commit to branch master. http://git.enlightenment.org/bindings/python/python-efl.git/commit/?id=cfc20537e920b91e6211a44bc101a90f513d5a3d commit cfc20537e920b91e6211a44bc101a90f513d5a3d Author: davemds Date: Mon May 19 20:55:53 2014 +0200 New Config.focus_autoscroll_mode property --- efl/elementary/configuration.pxd | 6 -- efl/elementary/configuration.pyx | 20 efl/elementary/enums.pxd | 5 + efl/elementary/object.pyx| 28 4 files changed, 57 insertions(+), 2 deletions(-) diff --git a/efl/elementary/configuration.pxd b/efl/elementary/configuration.pxd index 8e18558..01143b2 100644 --- a/efl/elementary/configuration.pxd +++ b/efl/elementary/configuration.pxd @@ -1,5 +1,6 @@ from efl.evas cimport Eina_Bool, Eina_List, Evas_Coord, Evas_Font_Size -from enums cimport Elm_Softcursor_Mode, Elm_Focus_Move_Policy +from enums cimport Elm_Softcursor_Mode, Elm_Focus_Move_Policy, \ +Elm_Focus_Autoscroll_Mode cdef extern from "Elementary.h": ctypedef struct Elm_Font_Overlay: @@ -119,7 +120,8 @@ cdef extern from "Elementary.h": void elm_config_focus_move_policy_set(Elm_Focus_Move_Policy policy) Eina_Bool elm_config_item_select_on_focus_disabled_get() void elm_config_item_select_on_focus_disabled_set(Eina_Bool disabled) - +Elm_Focus_Autoscroll_Mode elm_config_focus_autoscroll_mode_get() +void elm_config_focus_autoscroll_mode_set(Elm_Focus_Autoscroll_Mode mode) Eina_Bool elm_config_mirrored_get() voidelm_config_mirrored_set(Eina_Bool mirrored) diff --git a/efl/elementary/configuration.pyx b/efl/elementary/configuration.pyx index 91c1407..55e05ad 100644 --- a/efl/elementary/configuration.pyx +++ b/efl/elementary/configuration.pyx @@ -919,6 +919,26 @@ cdef class Configuration(object): def __set__(self, bint disabled): elm_config_item_select_on_focus_disabled_set(disabled) + +property focus_autoscroll_mode: +"""Focus Autoscroll Mode + +When a region or an item is focused and it resides inside any scroller, +elementary will automatically scroll the focused area to the visible +viewport. + +:type: Elm_Focus_Autoscroll_Mode + +.. versionadded:: 1.10 + +""" +def __get__(self): +return elm_config_focus_autoscroll_mode_get() +def __set__(self, Elm_Focus_Autoscroll_Mode mode): +elm_config_focus_autoscroll_mode_set(mode) + + + property mirrored: """Get the system mirrored mode. This determines the default mirrored mode of widgets. diff --git a/efl/elementary/enums.pxd b/efl/elementary/enums.pxd index 247236d..5d04f1f 100644 --- a/efl/elementary/enums.pxd +++ b/efl/elementary/enums.pxd @@ -165,6 +165,11 @@ cdef extern from "Elementary.h": ELM_FOCUS_MOVE_POLICY_CLICK ELM_FOCUS_MOVE_POLICY_IN +ctypedef enum Elm_Focus_Autoscroll_Mode: +ELM_FOCUS_AUTOSCROLL_MODE_SHOW +ELM_FOCUS_AUTOSCROLL_MODE_NONE +ELM_FOCUS_AUTOSCROLL_MODE_BRING_IN + ctypedef enum Elm_Genlist_Item_Type: ELM_GENLIST_ITEM_NONE ELM_GENLIST_ITEM_TREE diff --git a/efl/elementary/object.pyx b/efl/elementary/object.pyx index 922c30d..360e2a1 100644 --- a/efl/elementary/object.pyx +++ b/efl/elementary/object.pyx @@ -119,6 +119,30 @@ Focus move policy .. versionadded:: 1.10 +.. _Elm_Focus_Autoscroll_Mode + +Focus autoscroll mode += + +.. data:: ELM_FOCUS_AUTOSCROLL_MODE_SHOW + +Directly show the focused region or item automatically. + +.. versionadded:: 1.10 + +.. data:: ELM_FOCUS_AUTOSCROLL_MODE_NONE + +Do not show the focused region or item automatically. + +.. versionadded:: 1.10 + +.. data:: ELM_FOCUS_AUTOSCROLL_MODE_BRING_IN + +Bring_in the focused region or item automatically which might +invole the scrolling + +.. versionadded:: 1.10 + .. _Elm_Input_Event_Type: Input event types @@ -269,6 +293,10 @@ ELM_FOCUS_LEFT = enums.ELM_FOCUS_LEFT ELM_FOCUS_MOVE_POLICY_CLICK = enums.ELM_FOCUS_MOVE_POLICY_CLICK ELM_FOCUS_MOVE_POLICY_IN = enums.ELM_FOCUS_MOVE_POLICY_IN +ELM_FOCUS_AUTOSCROLL_MODE_SHOW = enums.ELM_FOCUS_AUTOSCROLL_MODE_SHOW +ELM_FOCUS_AUTOSCROLL_MODE_NONE = enums.ELM_FOCUS_AUTOSCROLL_MODE_NONE +ELM_FOCUS_AUTOSCROLL_MODE_BRING_IN = enums.ELM_FOCUS_AUTOSCROLL_MODE_BRING_IN + EVAS_CALLBACK_KEY_DOWN = evasenums.EVAS_CALLBACK_KEY_DOWN EVAS_CALLBACK_KEY_UP = evasenums.EVAS_CALLBACK_KEY_UP EVAS_CALLBACK_MOUSE_WHEEL = evasenums.EVAS_CALLBACK_MOUSE_WHEEL --
[EGIT] [admin/devs] master 01/01: Adding a key for my ultrabook
ajwillia-ms pushed a commit to branch master. http://git.enlightenment.org/admin/devs.git/commit/?id=4e0830e31bfff06242e621f5a96c50b2850cb2cb commit 4e0830e31bfff06242e621f5a96c50b2850cb2cb Author: Andrew Williams Date: Mon May 19 20:33:48 2014 +0100 Adding a key for my ultrabook --- developers/ajwillia-ms/id_rsa_tactus.pub | 1 + 1 file changed, 1 insertion(+) diff --git a/developers/ajwillia-ms/id_rsa_tactus.pub b/developers/ajwillia-ms/id_rsa_tactus.pub new file mode 100644 index 000..556f221 --- /dev/null +++ b/developers/ajwillia-ms/id_rsa_tactus.pub @@ -0,0 +1 @@ +ssh-rsa B3NzaC1yc2EDAQABAAABAQCueTuAll1G0t85GdaFHLuRroJwV97NIKTywWkAAFrZdvHbmRjZb2vdiAWeIYxU40fOkG6jHQAh4umGz6NyhcrK5xkgNOtalJXc7pBKOWEoHp++wIIrux0zaZuyePr5vW3ESuEr/rhAaduCrV3AEAq6VpCJ0OQ+xxgH8f9n8wCI9k52fgWWPwvKkz9LoPv27zOmetVPPg9uWYuJj8WWm02jXPKx4KazSRbY2z8WhqyNBtRbLXZM/D2K7UD0aDKmDarA0KiDcs0m2ffcpDWZKl8JgxV6rp0M8cTUmdyMaf7u6e216A7nMEW1sz8nEWRtxZG1AjpNXdhK36Wk+JBs6TRz andy@tactus --
[EGIT] [apps/ecrire] master 01/01: Updating translations
maxerba pushed a commit to branch master. http://git.enlightenment.org/apps/ecrire.git/commit/?id=855abbef24d3edda35597c5203efc06549118ab3 commit 855abbef24d3edda35597c5203efc06549118ab3 Author: maxerba Date: Mon May 19 21:49:25 2014 +0200 Updating translations --- data/ecrire.desktop | 9 po/eo.po| 142 po/fr.po| 142 3 files changed, 163 insertions(+), 130 deletions(-) diff --git a/data/ecrire.desktop b/data/ecrire.desktop index 1e0786b..16353aa 100644 --- a/data/ecrire.desktop +++ b/data/ecrire.desktop @@ -3,13 +3,22 @@ Encoding=UTF-8 Type=Application Name=Ecrire Name[fr]=Écrire +Name[gl]=Ecrire +Name[ms]=Ecrire +Name[sr]=Писати +Name[tr]=Ecrire Comment=Simple text editor +Comment[de]=Einfacher Textbearbeiter Comment[eo]=Simpla tekst-redaktilo Comment[es]=Un simple editor de texto +Comment[fr]=Un simple éditeur de texte Comment[gl]=Un simple editor de texto Comment[it]=Semplice editor di testo +Comment[ms]=Penyunting teks yang ringkas Comment[pt]=Editor de texto Comment[ru]=Простой текстовый редактор +Comment[sr]=Једноставан уређивач текста +Comment[tr]=Basit metin düzenleyici Icon=ecrire Exec=ecrire %f Terminal=false diff --git a/po/eo.po b/po/eo.po index e73a8c0..b74e489 100644 --- a/po/eo.po +++ b/po/eo.po @@ -7,78 +7,17 @@ msgid "" msgstr "" "Project-Id-Version: enlightenment\n" "Report-Msgid-Bugs-To: $MSGID_BUGS_ADDRESS\n" -"POT-Creation-Date: 2013-04-07 20:53+0200\n" -"PO-Revision-Date: 2013-04-08 10:00+\n" +"POT-Creation-Date: 2013-12-30 11:50+0100\n" +"PO-Revision-Date: 2014-01-02 15:10+\n" "Last-Translator: Eliovir \n" "Language-Team: Esperanto \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-09 05:26+\n" -"X-Generator: Launchpad (build 16550)\n" +"X-Launchpad-Export-Date: 2014-01-03 05:48+\n" +"X-Generator: Launchpad (build 16877)\n" "Language: eo\n" -#: src/bin/ui/alerts.c:56 -msgid "" -"Would you like to save changes to document?Any unsaved " -"changes will be lost." -msgstr "" -"Ĉu vi volas konservi la ŝanĝojn al la dokumento?Ĉiuj " -"nekonservataj ŝanĝoj perdiĝos." - -#: src/bin/ui/alerts.c:71 src/bin/main.c:694 -msgid "Save" -msgstr "Konservi" - -#: src/bin/ui/alerts.c:82 -msgid "Discard" -msgstr "Nekonservi" - -#: src/bin/ui/alerts.c:88 -msgid "Cancel" -msgstr "Nuligi" - -#: src/bin/ui/search_dialog.c:148 src/bin/main.c:712 -msgid "Find & Replace" -msgstr "Trovi kaj anstataŭigi" - -#: src/bin/ui/search_dialog.c:170 -msgid "Search for:" -msgstr "Serĉi:" - -#: src/bin/ui/search_dialog.c:194 -msgid "Replace with:" -msgstr "Anstataŭigi per:" - -#: src/bin/ui/search_dialog.c:218 -msgid "Find" -msgstr "Trovi" - -#: src/bin/ui/search_dialog.c:226 -msgid "Replace" -msgstr "Anstataŭigi" - -#: src/bin/ui/font_dialog.c:89 -msgid "Select Font" -msgstr "Elektu tiparon" - -#: src/bin/ui/font_dialog.c:114 -msgid "Font size:" -msgstr "Grando de tiparo:" - -#: src/bin/ui/font_dialog.c:119 -#, c-format -msgid "%.0f pts" -msgstr "%.0f erojn" - -#: src/bin/ui/font_dialog.c:157 -msgid "Use Default Font:" -msgstr "Uzi aprioran tiparon:" - -#: src/bin/ui/font_dialog.c:168 -msgid "Set" -msgstr "Agordi" - #: src/bin/main.c:96 #, c-format msgid "%s%s - %s" @@ -102,6 +41,10 @@ msgstr "Nova" msgid "Open" msgstr "Malfermi" +#: src/bin/main.c:694 src/bin/ui/alerts.c:71 +msgid "Save" +msgstr "Konservi" + #: src/bin/main.c:695 msgid "Save As" msgstr "Konservi kiel" @@ -126,6 +69,10 @@ msgstr "Kopii" msgid "Paste" msgstr "Alglui" +#: src/bin/main.c:712 src/bin/ui/search_dialog.c:148 +msgid "Find & Replace" +msgstr "Trovi kaj anstataŭigi" + #: src/bin/main.c:714 msgid "Goto Line" msgstr "Iru al linio" @@ -133,3 +80,68 @@ msgstr "Iru al linio" #: src/bin/main.c:717 msgid "Settings" msgstr "Agordoj" + +#: src/bin/ui/alerts.c:56 +msgid "" +"Would you like to save changes to document?Any unsaved " +"changes will be lost." +msgstr "" +"Ĉu vi volas konservi la ŝanĝojn al la dokumento?Ĉiuj " +"nekonservataj ŝanĝoj perdiĝos." + +#: src/bin/ui/alerts.c:82 +msgid "Discard" +msgstr "Nekonservi" + +#: src/bin/ui/alerts.c:88 +msgid "Cancel" +msgstr "Nuligi" + +#: src/bin/ui/font_dialog.c:89 +msgid "Select Font" +msgstr "Elektu tiparon" + +#: src/bin/ui/font_dialog.c:114 +msgid "Font size:" +msgstr "Grando de tiparo:" + +#: src/bin/ui/font_dialog.c:119 +#, c-format +msgid "%.0f pts" +msgstr "%.0f erojn" + +#: src/bin/ui/font_dialog.c:157 +msgid "Use Default Font:" +msgstr "Uzi aprioran tiparon:" + +#: src/bin/ui/font_dialog.c:168 +msgid "Set" +msgstr "Agordi" + +#: src/bin/ui/goto_dialog.c:60 +msgid "Go to" +msgstr "Iri al" + +#: src/bin/ui/goto_dialog.c:82 +msgid "Go to line:" +msgstr "Iru al linio:" + +#: src/bin/ui/goto_dialog.c:106 +msgid "Go" +msgstr "Iri" + +#: src/bin/ui/search_dialog.c:170 +msgid "Search for:" +msgstr "Serĉi:" + +#
[EGIT] [core/efl] master 01/01: Updating translations
maxerba pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=4112c72ae40d1de3abc5987241bf01bd566e63b2 commit 4112c72ae40d1de3abc5987241bf01bd566e63b2 Author: maxerba Date: Mon May 19 21:52:22 2014 +0200 Updating translations --- po/eo.po| 112 po/fr.po| 110 +++ src/tests/efreet/data/sub/test.desktop | 4 ++ src/tests/efreet/data/test.desktop | 6 ++ src/tests/efreet/data/test_type.desktop | 6 ++ 5 files changed, 125 insertions(+), 113 deletions(-) diff --git a/po/eo.po b/po/eo.po index fa6779e..22f80a7 100644 --- a/po/eo.po +++ b/po/eo.po @@ -6,17 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: enlightenment\n" -"Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2014-05-14 14:29+0900\n" -"PO-Revision-Date: 2013-02-21 15:24+\n" -"Last-Translator: Michael Moroni \n" +"Report-Msgid-Bugs-To: $MSGID_BUGS_ADDRESS\n" +"POT-Creation-Date: 2014-01-21 11:50+0100\n" +"PO-Revision-Date: 2014-02-13 06:52+\n" +"Last-Translator: Eliovir \n" "Language-Team: Esperanto \n" -"Language: eo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-22 05:19+\n" -"X-Generator: Launchpad (build 16506)\n" +"X-Launchpad-Export-Date: 2014-02-14 06:59+\n" +"X-Generator: Launchpad (build 16916)\n" +"Language: eo\n" #: src/lib/ecore/ecore_getopt.c:93 msgid "Version:" @@ -27,9 +27,9 @@ msgid "Usage:" msgstr "Uzado:" #: src/lib/ecore/ecore_getopt.c:109 -#, fuzzy, c-format +#, c-format msgid "%s [options]" -msgstr "%s [opcioj]\n" +msgstr "%s [opcioj]" #: src/lib/ecore/ecore_getopt.c:309 msgid "Copyright:" @@ -51,159 +51,157 @@ msgstr "Apriore: " msgid "Choices: " msgstr "Elektoj: " -#: src/lib/ecore/ecore_getopt.c:648 src/lib/ecore/ecore_getopt.c:649 +#: src/lib/ecore/ecore_getopt.c:647 src/lib/ecore/ecore_getopt.c:648 msgid "No categories available." -msgstr "" +msgstr "Neniu kategorio disponebla" -#: src/lib/ecore/ecore_getopt.c:653 -#, fuzzy +#: src/lib/ecore/ecore_getopt.c:652 msgid "Categories: " -msgstr "Elektoj: " +msgstr "Kategorioj: " -#: src/lib/ecore/ecore_getopt.c:775 +#: src/lib/ecore/ecore_getopt.c:774 msgid "Options:\n" msgstr "Opcioj:\n" -#: src/lib/ecore/ecore_getopt.c:784 +#: src/lib/ecore/ecore_getopt.c:783 msgid "Positional arguments:\n" -msgstr "" +msgstr "Poziciaj argumentoj:\n" -#: src/lib/ecore/ecore_getopt.c:870 -#, fuzzy, c-format +#: src/lib/ecore/ecore_getopt.c:869 +#, c-format msgid "ERROR: unknown category '%s'.\n" -msgstr "ERARO: nekonata opcio --%s.\n" +msgstr "ERARO: nekonata kategorio \"%s\".\n" -#: src/lib/ecore/ecore_getopt.c:974 +#: src/lib/ecore/ecore_getopt.c:973 #, c-format msgid "ERROR: unknown option --%s.\n" msgstr "ERARO: nekonata opcio --%s.\n" -#: src/lib/ecore/ecore_getopt.c:976 +#: src/lib/ecore/ecore_getopt.c:975 #, c-format msgid "ERROR: unknown option -%c.\n" msgstr "ERARO: nekonata opcio -%c.\n" -#: src/lib/ecore/ecore_getopt.c:1039 +#: src/lib/ecore/ecore_getopt.c:1038 msgid "ERROR: " msgstr "ERARO: " -#: src/lib/ecore/ecore_getopt.c:1132 src/lib/ecore/ecore_getopt.c:1269 -#: src/lib/ecore/ecore_getopt.c:1285 src/lib/ecore/ecore_getopt.c:1300 -#: src/lib/ecore/ecore_getopt.c:1317 src/lib/ecore/ecore_getopt.c:1364 -#: src/lib/ecore/ecore_getopt.c:1484 src/lib/ecore/ecore_getopt.c:1525 +#: src/lib/ecore/ecore_getopt.c:1131 src/lib/ecore/ecore_getopt.c:1268 +#: src/lib/ecore/ecore_getopt.c:1284 src/lib/ecore/ecore_getopt.c:1299 +#: src/lib/ecore/ecore_getopt.c:1316 src/lib/ecore/ecore_getopt.c:1363 +#: src/lib/ecore/ecore_getopt.c:1483 src/lib/ecore/ecore_getopt.c:1524 msgid "value has no pointer set.\n" msgstr "valoro ne havas agorditan referencon.\n" -#: src/lib/ecore/ecore_getopt.c:1164 src/lib/ecore/ecore_getopt.c:1384 +#: src/lib/ecore/ecore_getopt.c:1163 src/lib/ecore/ecore_getopt.c:1383 #, c-format msgid "unknown boolean value %s.\n" msgstr "nekonata bulea valoro %s.\n" -#: src/lib/ecore/ecore_getopt.c:1215 src/lib/ecore/ecore_getopt.c:1472 +#: src/lib/ecore/ecore_getopt.c:1214 src/lib/ecore/ecore_getopt.c:1471 #, c-format msgid "invalid number format %s\n" msgstr "nevalida numeraranĝo %s\n" -#: src/lib/ecore/ecore_getopt.c:1330 +#: src/lib/ecore/ecore_getopt.c:1329 #, c-format msgid "invalid choice \"%s\". Valid values are: " msgstr "nevalida elekto \"%s\". Validaj valoroj estas: " -#: src/lib/ecore/ecore_getopt.c:1358 +#: src/lib/ecore/ecore_getopt.c:1357 msgid "missing parameter to append.\n" msgstr "postaldonenda parametro mankas.\n" -#: src/lib/ecore/ecore_getopt.c:1462 +#: src/lib/ecore/ecore_getopt.c:1461 msgid "could not parse value.\n" msgstr "valoro ne sintakse analizeblas.\n" -#: src/lib/ecore/ecore_getopt.c:1519 +#: src/lib/ecore/ecore_getopt.c:1518 msgid "missing parameter.
[EGIT] [core/elementary] master 01/01: Updating translations
maxerba pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=765072abd3635cb68365a1cdd8a5351513d78e0f commit 765072abd3635cb68365a1cdd8a5351513d78e0f Author: maxerba Date: Mon May 19 21:54:30 2014 +0200 Updating translations --- config/mobile/profile.desktop | 4 + config/standard/profile.desktop| 5 + data/desktop/elementary_config.desktop | 6 ++ po/eo.po | 160 ++--- po/fr.po | 182 - 5 files changed, 184 insertions(+), 173 deletions(-) diff --git a/config/mobile/profile.desktop b/config/mobile/profile.desktop index 96574a6..bdecd30 100644 --- a/config/mobile/profile.desktop +++ b/config/mobile/profile.desktop @@ -7,9 +7,11 @@ Name[es]=Móvil Name[fr]=Écran tactile Name[gl]=Móbil Name[ko]=터치스크린 +Name[ms]=Bimbit Name[pt]=Ecrã tátil Name[ru]=Мобильные устройства Name[sr]=Покретни +Name[tr]=Mobil Comment=Configuration set up to work best with touchscreen phones, tablets and similar devices. Comment[eo]=Agordoj kongruas plej kun tuŝekranaj telefonoj, tabulkomputiloj aŭ similaj aparatoj. Comment[es]=Configuración adaptada para el uso de pantallas táctiles como la de los móviles, tablets y dispositivos similares. @@ -17,5 +19,7 @@ Comment[fr]=Configuration adaptée aux écrans tactiles des téléphones, tablet Comment[gl]=Configuración adaptada para o uso de pantallas táctiles como a dos móbiles, tablets e dispositivos similares. Comment[it]=Configurazione adatta per l'uso in smartphone con interfaccia tattile, tablets e similari. Comment[ko]=터치스크린 기반의 휴대폰, 태블릿 등과 같은 장치에 맞는 설정. +Comment[ms]=Persediaan konfigurasi untuk berfungsi baik dengan telefon skrin sentuh, tablet dan lain-lain peranti yang serupa. Comment[pt]=Configuração de ecrãs táteis como os dos telefones, tablets e similares. +Comment[tr]=Yapılandırma dokunmatik ekranlı telefon ve tablet benzeri cihazlarda en iyi çalışacak şekilde ayarlanır. Icon=icon.png diff --git a/config/standard/profile.desktop b/config/standard/profile.desktop index b2f7c14..c4d5822 100644 --- a/config/standard/profile.desktop +++ b/config/standard/profile.desktop @@ -10,8 +10,11 @@ Name[fr]=Standard Name[gl]=Estándar Name[hu]=Általános Name[ko]=표준 +Name[ms]=Piawai Name[pt]=Padrão Name[ru]=Стандартный +Name[sr]=Уобичајено +Name[tr]=Standart Name[zh_CN]=标准 Comment=This is the standard profile that is universal for most desktop and laptop systems. Choose this if you are not sure what to choose. Comment[cs]=Toto je standartní univerzální profil pro většinu stolních a přenosných počítačů. Vyberte pokud si nejste jisti co vybrat. @@ -23,7 +26,9 @@ Comment[gl]=Este é o perfil estándar e universal para a maioría de ordenadore Comment[hu]=Ez az általános, alap beállítás, amely megfelelő a legtöbb laptop és asztali gép számára. Comment[it]=Questo è il profilo standard, universale per la maggior parte dei sistemi desktop e portatili. Scegliete questo se non siete sicuri di cosa scegliere. Comment[ko]=이 표준 프로파일은 대부분의 데스크톱과 랩톱 컴퓨터 시스템을 위한 보편적인 프로파일입니다. 무엇을 선택할지 확실하지 않다면 이것을 선택하세요. +Comment[ms]=Ini adalah profil piawai yang universal untuk kebanyakan sistem komputer desktop dan riba. Pilih ini jika anda tidak pasti apa yang hendak dipilih. Comment[pt]=O perfil de configuração padrão utilizado para a maioria dos computadores e portáteis. Escolha-o se não souber o que escolher. Comment[ru]=Этот стандартный профиль универсален для большинства стационарных и переносных систем. Выберите его если вы не знаете что надо выбрать. +Comment[tr]=Bu pek çok masaüstü ve dizüstü sistem için genelde uygun standart bir profildir. Hangisini seçeceğinizden emin değilseniz bunu seçin. Comment[zh_CN]=适用于大多数台式机和笔记本的设置主题,如果您不清楚如何选择则请使用这个。 Icon=icon.png diff --git a/data/desktop/elementary_config.desktop b/data/desktop/elementary_config.desktop index da2ceb6..89e9c0d 100644 --- a/data/desktop/elementary_config.desktop +++ b/data/desktop/elementary_config.desktop @@ -8,8 +8,11 @@ Name[es]=Configure Elementary Name[fr]=Configuration pour Elementary Name[gl]=Configure Elementary Name[it]=Configurazione di Elementary +Name[ms]=Konfigurasi Elementary Name[pt]=Configure o Elementary Name[ru]=Конфигурация для Elementary (Элементарий) +Name[sr]=Поставке Еламентарија +Name[tr]=Elementary Yapılandırması Comment=Elementary Configuration Comment[cs]=Konfigurace Elementary Comment[eo]=Agordi Elementary @@ -17,8 +20,11 @@ Comment[es]=Configure Elementary Comment[fr]=Configuration pour Elementary Comment[gl]=Configure Elementary Comment[it]=Configurazione di Elementary +Comment[ms]=Konfigurasi Elementary Comment[pt]=Configure o Elementary Comment[ru]=Конфигурация для Elementary (Элементарий) +Comment[sr]=Поставке Еламентарија +Comment[tr]=Elementary Yapılandırması Icon=elementary Exec=elementary_config Terminal=false diff --git a/po/eo.po b/po/eo.po index a5bbd4a..737b2de 1006
[EGIT] [e16/e16] master 01/01: Updating translations
maxerba pushed a commit to branch master. http://git.enlightenment.org/e16/e16.git/commit/?id=f78f5adee0aea4673ba519a9db393e1e57d7eb1d commit f78f5adee0aea4673ba519a9db393e1e57d7eb1d Author: maxerba Date: Mon May 19 22:06:55 2014 +0200 Updating translations --- misc/e16-gnome3-session.desktop | 6 + misc/e16-kde-session.desktop.in | 9 + misc/e16-session.desktop.in | 9 + misc/e16.desktop.in | 9 + po/eo.po| 679 5 files changed, 374 insertions(+), 338 deletions(-) diff --git a/misc/e16-gnome3-session.desktop b/misc/e16-gnome3-session.desktop index 20832f8..83636d5 100644 --- a/misc/e16-gnome3-session.desktop +++ b/misc/e16-gnome3-session.desktop @@ -2,5 +2,11 @@ Encoding=UTF-8 Type=XSession Name=E16 GNOME3 +Name[eo]=E16 GNOME3 +Name[fr]=E16 GNOME3 +Name[gl]=E16 GNOME3 +Name[ms]=E16 GNOME3 +Name[sr]=Е16 Гном3 +Name[tr]=E16 GNOME3 TryExec=/usr/bin/gnome-session Exec=gnome-session --session=e16-gnome diff --git a/misc/e16-kde-session.desktop.in b/misc/e16-kde-session.desktop.in index f4330b7..4557aff 100644 --- a/misc/e16-kde-session.desktop.in +++ b/misc/e16-kde-session.desktop.in @@ -2,10 +2,19 @@ Encoding=UTF-8 Type=XSession Name=E16-KDE +Name[eo]=E16-KDE +Name[fr]=E16-KDE +Name[gl]=E16-KDE +Name[ms]=E16-KDE +Name[sr]=Е16-КДЕ +Name[tr]=E16-KDE Comment=This session starts KDE using enlightenment (e16) as window manager Comment[eo]=Tiu sesio lanĉas KDE uzante Enlightenment (e16) kiel fenestro-administrilo. Comment[fr]=Démarre une session KDE en utilisant enlightenment (e16) comme gestionnaire de fenêtres Comment[it]=Questo avvia KDE usando Enlightenment (e16) come window manager +Comment[ms]=Sesi ini mulkan KDE menggunakan enlightenment (e16) sebagai pengurus tetingkap Comment[pt]=Esta sessão inicia o KDE utilizando o Enlightenment (e16) como gestor de janelas +Comment[sr]=Ова сесија покреће КДЕ са управником прозора просвећења (е16) +Comment[tr]=Bu oturum Enlightenment (e16) pencere yöneticisi kullanarak KDE'yi başlatır. Icon=@pkgdatadir@/icons/e16.png Exec=@pkgdatadir@/misc/starte16-kde diff --git a/misc/e16-session.desktop.in b/misc/e16-session.desktop.in index 1feecfc..9fd0b20 100644 --- a/misc/e16-session.desktop.in +++ b/misc/e16-session.desktop.in @@ -2,10 +2,19 @@ Encoding=UTF-8 Type=XSession Name=E16 +Name[eo]=E16 +Name[fr]=E16 +Name[gl]=E16 +Name[ms]=E16 +Name[sr]=Е16 +Name[tr]=E16 Comment=This session starts the Enlightenment (e16) window manager Comment[eo]=Tiu sesio lanĉas la fenestro-administrilon Enlightenment (e16) Comment[fr]=Démarre une session avec enlightenment (e16) Comment[it]=Questo avvia il window manager Enlightenment (e16) +Comment[ms]=Sesi ini memulakan pengurus tetingkap Enlightenment (e16) Comment[pt]=Esta sessão inicia o gestor de janelas Enlightenment (e16) +Comment[sr]=Ова сесија покреће управника прозора Просвећења (е16) +Comment[tr]=Bu süreç Enlightenment (e16) pencere yöneticisini başlatır Icon=@pkgdatadir@/icons/e16.png Exec=@pkgdatadir@/misc/starte16 diff --git a/misc/e16.desktop.in b/misc/e16.desktop.in index 3583954..a7c629c 100644 --- a/misc/e16.desktop.in +++ b/misc/e16.desktop.in @@ -2,10 +2,19 @@ Encoding=UTF-8 Type=Application Name=E16 +Name[eo]=E16 +Name[fr]=E16 +Name[gl]=E16 +Name[ms]=E16 +Name[sr]=Е16 +Name[tr]=E16 Comment=The Enlightenment (e16) window manager Comment[eo]=Enlightenment (e16) la fenestra agordilo Comment[fr]=Gestionnaire de fenêtres Enlightenment (e16) Comment[it]=Il window manager Enlightenment (e16) +Comment[ms]=Pengurus tetingkp Enligtenment (e16) Comment[pt]=O gestor de janelas Enlightenment (e16) +Comment[sr]=Управник прозора Просвећењe (e16) +Comment[tr]=Enlightenment (e16) pencere yöneticisi Icon=@pkgdatadir@/icons/e16.png Exec=e16 diff --git a/po/eo.po b/po/eo.po index 3fa34f2..77b2b12 100644 --- a/po/eo.po +++ b/po/eo.po @@ -7,17 +7,17 @@ msgid "" msgstr "" "Project-Id-Version: e16 0.99.99.003\n" -"Report-Msgid-Bugs-To: enlightenment-i...@lists.sourceforge.net\n" -"POT-Creation-Date: 2014-04-27 20:54+0200\n" -"PO-Revision-Date: 2013-11-05 19:00+\n" -"Last-Translator: Olivier \n" +"Report-Msgid-Bugs-To: $MSGID_BUGS_ADDRESS\n" +"POT-Creation-Date: 2013-12-30 11:50+0100\n" +"PO-Revision-Date: 2014-01-03 14:12+\n" +"Last-Translator: Eliovir \n" "Language-Team: Esperanto \n" -"Language: eo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-06 05:27+\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2014-01-04 05:43+\n" +"X-Generator: Launchpad (build 16877)\n" +"Language: eo\n" #: src/about.c:35 #, c-format @@ -48,7 +48,7 @@ msgstr "" "Kim WOELDERS - k...@woelders.dk\n" #: src/aclass.c:218 src/backgrounds.c:256 src/borders.c:695 src/buttons.c:186 -#: src/cursors.c:141 src/iclass.c:356 src/tclass.c:119 src/tooltips.c:132 +#: src/cursors.c:138 src/iclass.c:356 src/
[EGIT] [games/elemines] master 01/01: Updating translations
maxerba pushed a commit to branch master. http://git.enlightenment.org/games/elemines.git/commit/?id=63d665513811f8d6d792433210ab5bd3c595e493 commit 63d665513811f8d6d792433210ab5bd3c595e493 Author: maxerba Date: Mon May 19 22:10:31 2014 +0200 Updating translations --- data/desktop/elemines.desktop | 11 po/eo.po | 60 --- po/fr.po | 46 ++--- 3 files changed, 70 insertions(+), 47 deletions(-) diff --git a/data/desktop/elemines.desktop b/data/desktop/elemines.desktop index 4fb043a..80f906b 100644 --- a/data/desktop/elemines.desktop +++ b/data/desktop/elemines.desktop @@ -4,18 +4,29 @@ Type=Application Version=1.0 Name=elemines Name[fr]=Elemines +Name[ms]=elemines +Name[sr]=Е-мине +Name[tr]=elemines GenericName=mine sweeper +GenericName[eo]=minbalaŝipo GenericName[es]=Buscaminas GenericName[fr]=démineur GenericName[gl]=Buscaminas GenericName[it]=Campo minato +GenericName[ms]=pemusnah periuk api GenericName[ru]=Сапёр +GenericName[sr]=чистач мина +GenericName[tr]=mayın temizleyici Comment=EFL mine sweeper +Comment[eo]=EFL-minbalaŝipo Comment[es]=Buscaminas basado en las EFL Comment[fr]=démineur basé sur les EFL Comment[gl]=Buscaminas basado nas EFL Comment[it]=Campo minato basato sulle EFL +Comment[ms]=Pemusnah periuk api EFL Comment[ru]=Сапёр +Comment[sr]=ЕФЛ чистач мина +Comment[tr]=EFL Mayın temizleyici Icon=elemines Exec=elemines Categories=Application;Game;BoardGame; diff --git a/po/eo.po b/po/eo.po index 2773139..2d92838 100644 --- a/po/eo.po +++ b/po/eo.po @@ -1,35 +1,37 @@ # Esperanto translation for Elemines. -# Copyright (C) 2013-2014 Jérôme Pinot +# Copyright (C) 2013 Jérôme Pinot # This file is distributed under the same license as the Elemines package. # Eliovir , 2013. # msgid "" msgstr "" -"Project-Id-Version: elemines 0.3\n" -"Report-Msgid-Bugs-To: ngc...@gmail.com\n" -"POT-Creation-Date: 2014-01-12 12:29+0900\n" -"PO-Revision-Date: 2013-01-20 13:52+\n" -"Last-Translator: Eliovir \n" +"Project-Id-Version: elemines 0.2.3\n" +"Report-Msgid-Bugs-To: $MSGID_BUGS_ADDRESS\n" +"POT-Creation-Date: 2014-01-28 11:51+0100\n" +"PO-Revision-Date: 2014-02-13 06:51+\n" +"Last-Translator: Eliovir \n" "Language-Team: Esperanto \n" -"Language: eo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2014-02-14 06:59+\n" +"X-Generator: Launchpad (build 16916)\n" +"Language: eo\n" -#: src/gui.c:57 +#: src/gui.c:59 msgid "High Scores" msgstr "Grandaj poentaroj" -#: src/gui.c:96 src/gui.c:383 +#: src/gui.c:103 src/gui.c:404 msgid "Configuration" msgstr "Agordoj" -#: src/gui.c:106 +#: src/gui.c:116 #, c-format msgid "%.0f mines" msgstr "%.0f minoj" -#: src/gui.c:117 +#: src/gui.c:127 #, c-format msgid "" "Note: default mine number is %d with scoring in %s " @@ -40,56 +42,60 @@ msgstr "" "%s kategorio. Se vi ŝanĝas la nombron da minoj, via poentaro estos " "skribata en la %s kategorion." -#: src/gui.c:131 src/gui.c:161 +#: src/gui.c:141 src/gui.c:182 msgid "OK" msgstr "Bone" -#: src/gui.c:146 src/gui.c:386 +#: src/gui.c:147 +msgid "Cancel" +msgstr "Rezigni" + +#: src/gui.c:164 src/gui.c:407 msgid "About" msgstr "Pri" -#: src/gui.c:150 +#: src/gui.c:171 #, c-format msgid "" -"%s %s%sPictures derived from Battle For Wesnoth:" -"http://www.wesnoth.org/" +"%s %s%sPictures derived from Battle For " +"Wesnoth:http://www.wesnoth.org/" msgstr "" -"%s %s%sBildoj modifitaj el Battle For Wesnoth:" -"http://www.wesnoth.org/" +"%s %s%sBildoj modifitaj el Battle For " +"Wesnoth:http://www.wesnoth.org/" -#: src/gui.c:381 +#: src/gui.c:402 msgid "Refresh" msgstr "Aktualigi" -#: src/gui.c:382 +#: src/gui.c:403 msgid "Pause" msgstr "Paŭzigi" -#: src/gui.c:385 +#: src/gui.c:406 msgid "Scores" msgstr "Poentaroj" -#: src/gui.c:387 +#: src/gui.c:408 msgid "Quit" msgstr "Eliri" #: src/game.c:144 #, c-format msgid "Score: %d" -msgstr "Poentaroj: %d" +msgstr "Poentaro: %d" #: src/game.c:151 msgid "High Score!!" -msgstr "Grandaj poentaroj!!" +msgstr "Plej alta poentaro!!" #: src/game.c:159 msgid "You win!" -msgstr "Vi gajnos!" +msgstr "Vi gajnis!" #: src/elemines.h:56 msgid "Standard" -msgstr "" +msgstr "Kutima" #: src/elemines.h:57 msgid "Custom" -msgstr "" +msgstr "Propra" diff --git a/po/fr.po b/po/fr.po index 7b8ae0f..ce05bcc 100644 --- a/po/fr.po +++ b/po/fr.po @@ -1,35 +1,37 @@ # French translation for Elemines. -# Copyright (C) 2013-2014 Jérôme Pinot +# Copyright (C) 2013 Jérôme Pinot # This file is distributed under the same license as the Elemines package. # Jérôme Pinot , 2013. # msgid "" msgstr "" -"Project-Id-Version: elemines 0.3\n" -"Report-Msgid-Bugs-To: ngc...@gmail.com\n" -"POT-Creation-Date: 2014-01-12 12:29+0900\n" -"PO-Revision-Date: 2013-04-07 20:31+\n" -"Last-Translator: Jerome Pinot \n" +"Project-I
[EGIT] [enlightenment/modules/engage] master 01/01: Updating translations
maxerba pushed a commit to branch master. http://git.enlightenment.org/enlightenment/modules/engage.git/commit/?id=b4d8589912449ab98492aea0679bf460e7ceb476 commit b4d8589912449ab98492aea0679bf460e7ceb476 Author: maxerba Date: Mon May 19 22:12:04 2014 +0200 Updating translations --- module.desktop.in | 8 +++ po/eo.po | 14 +++--- po/fr.po | 144 +++--- 3 files changed, 88 insertions(+), 78 deletions(-) diff --git a/module.desktop.in b/module.desktop.in index 086ed5c..11b6960 100644 --- a/module.desktop.in +++ b/module.desktop.in @@ -4,6 +4,11 @@ Type=Link Name=Engage Name[de]=Engage Name[eo]=Engage +Name[fr]=Engage +Name[gl]=Engage +Name[ms]=Engage +Name[sr]=Енгеџа +Name[tr]=Engage Comment=A dock that holds a taskbar and application launcherAdd instances with: Config Panel > Extensions > Engage Comment[de]=Ein Dock mit einer Taskbar und AnwendungsstarternInstanzen können hinzugefügt werden über: Enlightenment-Einstellungen → Erweiterungen → Itask-NG Comment[eo]=Doko kiu entenas taskopleton kaj lanĉilon de aplikaĵoj.Aldonu instancojn per: Panelo de agordoj > Etendaĵoj > Engage @@ -11,7 +16,10 @@ Comment[es]=Un dock que contine una barra de tareas y un lanzador de aplicacione Comment[fr]=Un dock contenant une barre des tâches et un lanceur.Pour ajouter des instances : Panneau de contrôle → Extensions → Engage Comment[gl]=Unha doca que contén unha barra de tarefas e un iniciador de aplicativosEngadir barras con: Panel de configuración > Extensións > Engage Comment[it]=Contiene una taskbar ed un lanciatore di applicazioniPer aggiungerne istanze: Pannello di configurazione → Estensioni → Engage +Comment[ms]=Satu labuh yang memegang palang tugas dan pelancar aplikasiTambah kejadian dengan: Panel Konfig > Sambungan > Buat Comment[pt]=Uma barra de tarefas e lançador de aplicaçõesPode adicionar as barras em: Painel de configuração > Extensões > Engage Comment[ru]=Док, содержащий панель задач и запускатель приложений +Comment[sr]=Док који носи траку задатака и покретач програмаДодати нови примерак: Плоча поставки > Проширења > Енгеџа +Comment[tr]=Bir Görev çubuğu ve uygulama başlatıcı barındıran bir araç.Eleman eklemek için: Yapılandırma paneli > Eklentiler > Engage Icon=e-module-ng X-Enlightenment-ModuleType=utils diff --git a/po/eo.po b/po/eo.po index 66b98c9..aeb2342 100644 --- a/po/eo.po +++ b/po/eo.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: enlightenment\n" "Report-Msgid-Bugs-To: $MSGID_BUGS_ADDRESS\n" -"POT-Creation-Date: 2013-06-21 01:05+0200\n" -"PO-Revision-Date: 2013-06-30 21:07+\n" +"POT-Creation-Date: 2013-08-23 11:50+0200\n" +"PO-Revision-Date: 2014-01-02 15:08+\n" "Last-Translator: Eliovir \n" "Language-Team: Esperanto \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-07-01 05:14+\n" -"X-Generator: Launchpad (build 16692)\n" +"X-Launchpad-Export-Date: 2014-01-03 05:49+\n" +"X-Generator: Launchpad (build 16877)\n" "Language: eo\n" #: src/e_mod_main.c:1705 src/e_mod_main.c:1863 src/e_mod_main.c:1890 @@ -68,7 +68,7 @@ msgstr "Piktogramigi" #: src/ng_gadcon.c:260 msgid "Gadcon Config" -msgstr "" +msgstr "Agordoj de kontrolilo de akcecoraĵoj" #: src/ng_gadcon.c:299 msgid "Available Gadgets" @@ -193,7 +193,7 @@ msgstr "Lanĉilo" #: src/ng_config.c:278 msgid "Gadcon" -msgstr "" +msgstr "Kontrolilo de akcesoraĵoj" #: src/ng_config.c:284 src/ng_config.c:303 msgid "Auto Hide" @@ -237,7 +237,7 @@ msgstr "Alia" #: src/ng_config.c:318 msgid "Ecomorph Features" -msgstr "" +msgstr "Eblecoj de Ecomorph" #: src/ng_config.c:320 msgid "Show Icon Label" diff --git a/po/fr.po b/po/fr.po index b5ae644..aeed893 100644 --- a/po/fr.po +++ b/po/fr.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: Engage\n" "Report-Msgid-Bugs-To: $MSGID_BUGS_ADDRESS\n" -"POT-Creation-Date: 2013-06-21 01:05+0200\n" -"PO-Revision-Date: 2013-06-20 06:48+\n" +"POT-Creation-Date: 2013-08-23 11:50+0200\n" +"PO-Revision-Date: 2014-01-02 15:53+\n" "Last-Translator: Eliovir \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-06-22 05:38+\n" -"X-Generator: Launchpad (build 16677)\n" +"X-Launchpad-Export-Date: 2014-01-03 05:49+\n" +"X-Generator: Launchpad (build 16877)\n" "X-Poedit-Country: FRANCE\n" "Language: fr\n" "X-Poedit-Language: French\n" @@ -23,43 +23,43 @@ msgstr "" #: src/e_mod_main.c:1705 src/e_mod_main.c:1863 src/e_mod_main.c:1890 msgid "Engage" -msgstr "" +msgstr "Engage" #: src/ng_taskbar.c:641 msgid "No name!" -msgstr "" +msgstr "Aucun nom !" #: src/ng_launcher.c:275 msgid "Open Directory" -msgstr "" +msgstr "Ouvrir un dossier" #: src/ng_launcher.c:561 msgid "Configure Bar" -msgstr "" +msgstr "Configurer la barre" #
[EGIT] [enlightenment/modules/eweather] master 01/01: Updating translations
maxerba pushed a commit to branch master. http://git.enlightenment.org/enlightenment/modules/eweather.git/commit/?id=fd7f9c06bedd45d1037dc9e3d8fb055098922be2 commit fd7f9c06bedd45d1037dc9e3d8fb055098922be2 Author: maxerba Date: Mon May 19 22:13:42 2014 +0200 Updating translations --- module.desktop.in | 7 +++ po/fr.po | 44 +++- 2 files changed, 30 insertions(+), 21 deletions(-) diff --git a/module.desktop.in b/module.desktop.in index 780c8e3..c6993f2 100644 --- a/module.desktop.in +++ b/module.desktop.in @@ -6,9 +6,13 @@ Name[cs]=Počasí Name[el]=Καιρός Name[eo]=EVetero Name[fr]=E-météo +Name[gl]=EWeather Name[hu]=Időjárás +Name[ms]=EWeather Name[pt]=E-Meteorologia Name[ru]=Е-Погода +Name[sr]=Е-прогноза +Name[tr]=Hava Durumu Comment=A weather gadget. Comment[cs]=Zobrazí aktuální počasí. Comment[de]=Aktuelles Wetter betrachten @@ -19,7 +23,10 @@ Comment[fr]=Affiche la météo actuelle. Comment[gl]=Módulo para as condicións metereolóxicas. Comment[hu]=Az aktuális, helyi időjárást megjelenítő modul. Comment[it]=Un modulo per le condizioni meteo. +Comment[ms]=Gadjet cuaca. Comment[pt]=Módulo meteorológico Comment[ru]=Гаджет показа погоды. +Comment[sr]=Справица за прогнозу. +Comment[tr]=Havadurumu aracı Icon=eweather X-Enlightenment-ModuleType=utils diff --git a/po/fr.po b/po/fr.po index 643f6e0..8b03031 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,83 +6,85 @@ msgid "" msgstr "" "Project-Id-Version: enlightenment\n" -"Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2013-06-21 01:05+0200\n" -"PO-Revision-Date: 2013-06-20 06:54+\n" +"Report-Msgid-Bugs-To: $MSGID_BUGS_ADDRESS\n" +"POT-Creation-Date: 2013-08-24 11:50+0200\n" +"PO-Revision-Date: 2014-01-19 19:37+\n" "Last-Translator: Eliovir \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-06-22 05:38+\n" -"X-Generator: Launchpad (build 16677)\n" +"X-Launchpad-Export-Date: 2014-01-20 05:30+\n" +"X-Generator: Launchpad (build 16901)\n" +"Language: fr\n" #: src/module/e_mod_config.c:122 msgid "EWeather Configuration" -msgstr "" +msgstr "Configuration de E-météo" #: src/module/e_mod_config.c:181 msgid "Poll Time" -msgstr "" +msgstr "Intervalle d'interrogation" #: src/module/e_mod_config.c:184 #, c-format msgid "%2.0f minutes" -msgstr "" +msgstr "%2.0f minutes" #: src/module/e_mod_config.c:192 msgid "Select a data source" -msgstr "" +msgstr "Choisir une source de données" #: src/module/e_mod_config.c:207 msgid "Units Settings" -msgstr "" +msgstr "Paramètres des unités" #: src/module/e_mod_config.c:211 msgid "(°F) Fahrenheit" -msgstr "" +msgstr "(°F) Fahrenheit" #: src/module/e_mod_config.c:213 msgid "(°C) Celsius" -msgstr "" +msgstr "(°C) Celsius" #: src/module/e_mod_config.c:222 msgid "Yahoo Forecasts Code" -msgstr "" +msgstr "Code Yahoo des prévisions" #: src/module/e_mod_config.c:227 msgid "Yahoo Forecasts Code/US Zip Code" -msgstr "" +msgstr "Code Yahoo des prévisions/Code postal étatsunien" #: src/module/e_mod_config.c:232 msgid "To find the code for your area, go to:" -msgstr "" +msgstr "Pour trouver le code de votre lieu, allez à :" #: src/module/e_mod_config.c:234 #, c-format msgid "%s, find your area, and look at the URL" -msgstr "" +msgstr "%s, trouver votre lieu et regarder à l'adresse" #: src/module/e_mod_config.c:243 msgid "Google Forecasts Code" -msgstr "" +msgstr "Code Google des prévisions" #: src/module/e_mod_config.c:248 msgid "Google Forecasts City Code" -msgstr "" +msgstr "Code Google des prévisions par ville" #: src/module/e_mod_config.c:253 msgid "Specify the name of your city" -msgstr "" +msgstr "Saisissez le nom de votre ville" #: src/module/e_mod_config.c:255 msgid " with extra information like the state or the country" msgstr "" +" avec les informations supplémentaires telles que la région ou le pays" #: src/module/e_mod_gadcon.c:105 src/module/e_mod_main.c:42 msgid "EWeather" -msgstr "" +msgstr "E-météo" #: src/module/e_mod_gadcon.c:149 msgid "Settings" -msgstr "" +msgstr "Paramètres" --
[EGIT] [enlightenment/modules/forecasts] master 01/01: Updating translations
maxerba pushed a commit to branch master. http://git.enlightenment.org/enlightenment/modules/forecasts.git/commit/?id=c2d30a8a63a0f83d3fe17448ba31c23fb818925b commit c2d30a8a63a0f83d3fe17448ba31c23fb818925b Author: maxerba Date: Mon May 19 22:14:48 2014 +0200 Updating translations --- module.desktop.in | 7 +++ po/fr.po | 40 2 files changed, 27 insertions(+), 20 deletions(-) diff --git a/module.desktop.in b/module.desktop.in index 5438f81..02a27b0 100644 --- a/module.desktop.in +++ b/module.desktop.in @@ -9,8 +9,12 @@ Name[es]=Predicciones metereológicas Name[fr]=Prévisions Name[gl]=Predicións metereolóxicas Name[hu]=Elõrejelzés +Name[lt]=Orų prognozės +Name[ms]=Ramalan Name[pt]=Previsões meteorológicas Name[ru]=Прогноз погоды +Name[sr]=Прогнозе +Name[tr]=Hava Tahminleri Comment=The forecasts gadget will display the current weather conditions plus a few days forecast. Comment[cs]=Zobrazuje aktuální počasí plus předpověď na několik dní. Comment[el]=Το συστατικό προβλέψεων θα εμφανίσει τις τρέχουσες καιρικές συνθήκες και των επόμενων ημερών. @@ -20,7 +24,10 @@ Comment[fr]=Affiche les conditions météo actuelles et les prévisions sur quel Comment[gl]=Este módulo mostrará o tempo actual máis as predicións metereolóxicas para uns poucos días. Comment[hu]=Az elõrejelzõ modul megmutatja az aktuális idõjárást, és elõre jelzi a következõ két nap idõjárását. Comment[it]=Il modulo forecasts mostrerà le attuali condizioni del tempo e le previsioni per qualche giorno. +Comment[ms]=Gadjet ramalan yang akan paparkan keadaan cuaca semasa disamping ramalan beberapa hari. Comment[pt]=Um módulo que exibe as condições atmosféricas para um conjunto de dias Comment[ru]=Гаджет показывает текущую погоду и прогноз на несколько дней. +Comment[sr]=Справица прогнозе приказује тренутне временске прилике и неколико дана прогнозе. +Comment[tr]=Anlık ve birkaç günlük hava tahminleri görüntüleyen araç Icon=e-module-forecasts X-Enlightenment-ModuleType=utils diff --git a/po/fr.po b/po/fr.po index 754c5eb..03de412 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: Forecasts module\n" "Report-Msgid-Bugs-To: $MSGID_BUGS_ADDRESS\n" -"POT-Creation-Date: 2013-06-21 01:05+0200\n" -"PO-Revision-Date: 2013-06-20 07:25+\n" +"POT-Creation-Date: 2013-08-24 11:50+0200\n" +"PO-Revision-Date: 2014-01-19 19:42+\n" "Last-Translator: Eliovir \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-06-22 05:37+\n" -"X-Generator: Launchpad (build 16677)\n" +"X-Launchpad-Export-Date: 2014-01-20 05:30+\n" +"X-Generator: Launchpad (build 16901)\n" "X-Poedit-Country: FRANCE\n" "Language: \n" "X-Poedit-Language: French\n" @@ -22,24 +22,24 @@ msgstr "" #: src/e_mod_config.c:42 msgid "Forecasts Settings" -msgstr "" +msgstr "Paramètres des prévisions" #: src/e_mod_config.c:90 msgid "Display Settings" -msgstr "" +msgstr "Paramètres d'affichage" #: src/e_mod_config.c:91 msgid "Poll Time" -msgstr "" +msgstr "Intervalle d'interrogation" #: src/e_mod_config.c:94 #, c-format msgid "%2.0f minutes" -msgstr "" +msgstr "%2.0f minutes" #: src/e_mod_config.c:97 msgid "Show Description" -msgstr "" +msgstr "Affiche la description" #: src/e_mod_config.c:99 msgid "Popup on mouse over" @@ -47,19 +47,19 @@ msgstr "" #: src/e_mod_config.c:103 msgid "Unit Settings" -msgstr "" +msgstr "Réglages d’unités" #: src/e_mod_config.c:105 msgid "Celsius" -msgstr "" +msgstr "Celsius" #: src/e_mod_config.c:107 msgid "Fahrenheit" -msgstr "" +msgstr "Fahrenheit" #: src/e_mod_config.c:111 msgid "Weather.com Forecasts Code" -msgstr "" +msgstr "Code Weather.com des prévisions" #: src/e_mod_config.c:112 msgid "Forecasts Code/US Zip Code" @@ -67,20 +67,20 @@ msgstr "" #: src/e_mod_config.c:117 msgid "To find the code for your area, go to:" -msgstr "" +msgstr "Pour trouver le code de votre lieu, allez à :" #: src/e_mod_config.c:119 #, c-format msgid "%s, find your area, and look at the URL" -msgstr "" +msgstr "%s, trouver votre lieu et regarder à l'adresse" #: src/e_mod_main.c:257 msgid "Forecasts" -msgstr "" +msgstr "Prévisions" #: src/e_mod_main.c:299 msgid "Settings" -msgstr "" +msgstr "Paramètres" #: src/e_mod_main.c:998 #, c-format @@ -93,15 +93,15 @@ msgstr "" #: src/e_mod_main.c:1020 msgid "Wind Speed" -msgstr "" +msgstr "Vitesse du vent" #: src/e_mod_main.c:1026 msgid "Humidity" -msgstr "" +msgstr "Humidité" #: src/e_mod_main.c:1032 msgid "Visibility" -msgstr "" +msgstr "Visibilité" #: src/e_mod_main.c:1038 msgid "Pressure" --
[EGIT] [enlightenment/modules/mail] master 01/01: Updating translations
maxerba pushed a commit to branch master. http://git.enlightenment.org/enlightenment/modules/mail.git/commit/?id=89ff4e3bd01b5942821055ca249ec4e2b14a4927 commit 89ff4e3bd01b5942821055ca249ec4e2b14a4927 Author: maxerba Date: Mon May 19 22:16:06 2014 +0200 Updating translations --- module.desktop.in | 6 ++ po/fr.po | 16 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/module.desktop.in b/module.desktop.in index 6f5cdbc..fecfd68 100644 --- a/module.desktop.in +++ b/module.desktop.in @@ -8,8 +8,11 @@ Name[es]=Correo electrónico Name[fr]=Courriel Name[gl]=Correo electrónico Name[hu]=E-mail modul +Name[ms]=Mel Name[pt]=Correio eletrónico Name[ru]=Почта +Name[sr]=Пошта +Name[tr]=E-Posta Comment=Mail notification gadget. Checks POP3, IMAP, maildir, and mbox mailboxes. Comment[cs]=Gadget pro upozornění na e-mail. Kontroluje POP3, IMAP, maildir, a mbox schránky. Comment[el]=Συστατικό ειδοποίησης μηνυμάτων. Ελέγχει γραμματοκιβώτια τύπου POP3, IMAP, maildir, και mbox. @@ -19,7 +22,10 @@ Comment[fr]=Notifie la réception du courriel. Support pour POP3, IMAP, maildir Comment[gl]=Módulo para a notificación do correo. Comproba POP3, IMAP, maildir e mbox. Comment[hu]=E-mail értesítő modul. Kezeli a POP3, IMAP, maildir, és a mbox postafiókokat. Comment[it]=Modulo per notificare l'arrivo di posta. Controlla caselle POP3, IMAP, maildir e mbox. +Comment[ms]=Gadjet pemberitahuan mel. Periksa POP3, IMAP, maildir, dan kotak mel mbox. Comment[pt]=Módulo para notificar a existência de novas mensagens eletrónicas. Funciona com caixas de correio POP3, IMAP, maildir e mbox Comment[ru]=Гаджет для уведомления о получении почты. Проверяет почтовые ящики POP3, IMAP, Maildir и Mbox. +Comment[sr]=Справица за приказ поште. Проверава ПОП3, ИМАП, маилдир, мбокс и маилбокс. +Comment[tr]=E-posta uyarı aracı. POP3, IMAP, maildir ve mbox kutularını tarar. Icon=e-module-mail X-Enlightenment-ModuleType=utils diff --git a/po/fr.po b/po/fr.po index 9ce3e25..91b619b 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: Mail module\n" "Report-Msgid-Bugs-To: $MSGID_BUGS_ADDRESS\n" -"POT-Creation-Date: 2013-06-21 01:05+0200\n" -"PO-Revision-Date: 2013-06-20 07:16+\n" +"POT-Creation-Date: 2013-08-24 11:51+0200\n" +"PO-Revision-Date: 2014-01-19 19:43+\n" "Last-Translator: Eliovir \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-06-22 05:38+\n" -"X-Generator: Launchpad (build 16677)\n" +"X-Launchpad-Export-Date: 2014-01-20 05:30+\n" +"X-Generator: Launchpad (build 16901)\n" "X-Poedit-Country: FRANCE\n" "Language: \n" "X-Poedit-Language: French\n" @@ -34,7 +34,7 @@ msgstr "" #: src/e_mod_config_box.c:167 msgid "Program:" -msgstr "" +msgstr "Programme :" #: src/e_mod_config_box.c:179 msgid "Mailbox Type" @@ -42,11 +42,11 @@ msgstr "" #: src/e_mod_config_box.c:181 msgid "Pop3" -msgstr "" +msgstr "Pop3" #: src/e_mod_config_box.c:184 msgid "Imap" -msgstr "" +msgstr "Imap" #: src/e_mod_config_box.c:187 msgid "Maildir" @@ -62,7 +62,7 @@ msgstr "" #: src/e_mod_config_box.c:210 msgid "Port Settings" -msgstr "" +msgstr "Configuration du port" #: src/e_mod_config_box.c:212 msgid "Use SSL:" --
[EGIT] [enlightenment/modules/news] master 01/01: Updating translations
maxerba pushed a commit to branch master. http://git.enlightenment.org/enlightenment/modules/news.git/commit/?id=b442b30adedbcb15d2b2390a0f15250258a8b16b commit b442b30adedbcb15d2b2390a0f15250258a8b16b Author: maxerba Date: Mon May 19 22:17:21 2014 +0200 Updating translations --- module.desktop.in | 7 +++ po/fr.po | 42 +- 2 files changed, 28 insertions(+), 21 deletions(-) diff --git a/module.desktop.in b/module.desktop.in index 72d3479..2f16b6a 100644 --- a/module.desktop.in +++ b/module.desktop.in @@ -9,8 +9,12 @@ Name[es]=Noticias Name[fr]=Actualités Name[gl]=Novas Name[hu]=Hírek +Name[lt]=Naujienos +Name[ms]=Berita Name[pt]=Notícias Name[ru]=Новости +Name[sr]=Вести +Name[tr]=Haberler Comment=Gadget to monitor RSS feeds. Comment[cs]=Gadget k monitorování RSS. Comment[el]=Συστατικό για την παρακολούθηση Ροών RSS. @@ -20,7 +24,10 @@ Comment[fr]=Module pour suivre les flux RSS. Comment[gl]=Módulo para xestionar as fontes RSS. Comment[hu]=RSS hírforrásokat olvashatunk. Comment[it]=Modulo per il monitoraggio dei feed RSS. +Comment[ms]=Gadjet untuk pantau suapan RSS. Comment[pt]=Módulo para monitorizar as fontes RSS Comment[ru]=Гаджет для отображения RSS-лент. +Comment[sr]=Справица која надгледа РСС доводе. +Comment[tr]=RSS Beslemelerini gösteren araç. Icon=e-module-news X-Enlightenment-ModuleType=utils diff --git a/po/fr.po b/po/fr.po index b41457e..a98ee6a 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,15 +6,15 @@ msgid "" msgstr "" "Project-Id-Version: News module\n" "Report-Msgid-Bugs-To: $MSGID_BUGS_ADDRESS\n" -"POT-Creation-Date: 2013-06-21 01:05+0200\n" -"PO-Revision-Date: 2013-06-20 07:00+\n" +"POT-Creation-Date: 2013-08-23 11:50+0200\n" +"PO-Revision-Date: 2014-01-19 19:39+\n" "Last-Translator: Eliovir \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-06-22 05:37+\n" -"X-Generator: Launchpad (build 16677)\n" +"X-Launchpad-Export-Date: 2014-01-20 05:30+\n" +"X-Generator: Launchpad (build 16901)\n" "X-Poedit-Country: FRANCE\n" "Language: fr\n" "X-Poedit-Language: French\n" @@ -22,27 +22,27 @@ msgstr "" #: src/e_mod_main.c:52 msgid "Config init failed" -msgstr "" +msgstr "L'initialisation de la configuration a échoué" #: src/e_mod_main.c:53 msgid "Parser init failed" -msgstr "" +msgstr "L'initialisation du parseur a échoué" #: src/e_mod_main.c:54 msgid "Feeds init failed" -msgstr "" +msgstr "L'initialisation des flux a échoué" #: src/e_mod_main.c:55 msgid "Viewer init failed" -msgstr "" +msgstr "L'initialisation du visualiseur a échoué" #: src/e_mod_main.c:56 msgid "Popup subsystem init failed" -msgstr "" +msgstr "L'initialisation du système de popup a échoué" #: src/e_mod_main.c:219 msgid "News" -msgstr "" +msgstr "Actualités" #: src/news_config.c:100 #, c-format @@ -67,7 +67,7 @@ msgstr "" #: src/news_config_dialog.c:192 src/news_config_dialog.c:230 #: src/news_config_dialog_feeds.c:358 src/news_menu.c:153 msgid "Feeds" -msgstr "" +msgstr "Flux" #: src/news_config_dialog.c:194 src/news_config_dialog.c:238 msgid "Sort lists by name (disable Move action)" @@ -76,34 +76,34 @@ msgstr "" #: src/news_config_dialog.c:199 src/news_config_dialog.c:307 #: src/news_viewer.c:307 msgid "News Viewer" -msgstr "" +msgstr "Visualiseur d'actualités" #: src/news_config_dialog.c:201 msgid "Font size" -msgstr "" +msgstr "Taille de police" #: src/news_config_dialog.c:204 src/news_config_dialog.c:318 #, c-format msgid "%1.0f" -msgstr "" +msgstr "%1.0f" #: src/news_config_dialog.c:207 msgid "Font color" -msgstr "" +msgstr "Couleur de la police" #: src/news_config_dialog.c:232 src/news_config_dialog.c:272 #: src/news_config_dialog.c:292 msgid "Timer" -msgstr "" +msgstr "Minuteur" #: src/news_config_dialog.c:234 #, c-format msgid "%1.0f min" -msgstr "" +msgstr "%1.0f min" #: src/news_config_dialog.c:243 msgid "Browser" -msgstr "" +msgstr "Navigateur" #: src/news_config_dialog.c:245 msgid "Uses xdg-open script, from freedesktop.org" @@ -115,7 +115,7 @@ msgstr "" #: src/news_config_dialog.c:253 msgid "Never" -msgstr "" +msgstr "Jamais" #: src/news_config_dialog.c:259 msgid "Only on urgent feeds" @@ -128,7 +128,7 @@ msgstr "" #: src/news_config_dialog.c:274 src/news_config_dialog.c:294 #, c-format msgid "%1.0f s" -msgstr "" +msgstr "%1.0f s" #: src/news_config_dialog.c:282 msgid "Popup On Warning / Error" @@ -152,7 +152,7 @@ msgstr "" #: src/news_config_dialog.c:316 msgid "Font" -msgstr "" +msgstr "Police de caractères" #: src/news_config_dialog.c:326 msgid "Font Shadow" --
[EGIT] [enlightenment/modules/cpu] master 01/01: Updating desktop file
maxerba pushed a commit to branch master. http://git.enlightenment.org/enlightenment/modules/cpu.git/commit/?id=860b2142ca3c518d713d03d9aac7ffc524a1f9f6 commit 860b2142ca3c518d713d03d9aac7ffc524a1f9f6 Author: maxerba Date: Mon May 19 22:18:14 2014 +0200 Updating desktop file --- module.desktop.in | 7 +++ 1 file changed, 7 insertions(+) diff --git a/module.desktop.in b/module.desktop.in index 84115e6..64e9b92 100644 --- a/module.desktop.in +++ b/module.desktop.in @@ -7,9 +7,13 @@ Name[de]=Prozessor Name[el]=Επεξεργαστής Name[eo]=Ĉefprocesoro Name[fr]=Cpu +Name[gl]=CPU Name[hu]=Processzor +Name[ms]=Cpu Name[pt]=Processador Name[ru]=Процессор +Name[sr]=Процесор +Name[tr]=İşlemci Name[zh_CN]=CPU 工具 Comment=Used to monitor CPU utilization. Comment[cs]=Použitý k měření vytížení CPU. @@ -21,8 +25,11 @@ Comment[fr]=Affiche l'utilisation du CPU. Comment[gl]=Empregado para monitorizar o uso da CPU. Comment[hu]=A processzor monitorozására (felügyeletére) használható modul. Comment[it]=Usato per monitorare l'utilizzo della CPU. +Comment[ms]=Digunakan untuk pantau penggunaan CPU Comment[pt]=Módulo para monitorizar o processador Comment[ru]=Показывает текущую нагрузку на ЦПУ. +Comment[sr]=Користи се за надзор употребе процесора. +Comment[tr]=İşlemci kullanımını gösterir. Comment[zh_CN]=用以监视 CPU 使用情况。 Icon=e-module-cpu X-Enlightenment-ModuleType=system --
[EGIT] [enlightenment/modules/moon] master 01/01: Updating desktop file
maxerba pushed a commit to branch master. http://git.enlightenment.org/enlightenment/modules/moon.git/commit/?id=4b37b4fd34b9385af4ee83324b9864ec8a399871 commit 4b37b4fd34b9385af4ee83324b9864ec8a399871 Author: maxerba Date: Mon May 19 22:19:13 2014 +0200 Updating desktop file --- module.desktop.in | 12 1 file changed, 12 insertions(+) diff --git a/module.desktop.in b/module.desktop.in index fb1d0cf..0910a02 100644 --- a/module.desktop.in +++ b/module.desktop.in @@ -9,10 +9,19 @@ Name[es]=Luna Name[fr]=Lune Name[gl]=Lúa Name[hu]=Hold +Name[ms]=Bulan +Name[nl]=Maan Name[pt]=Lua Name[ru]=Луна +Name[sr]=Месец +Name[tr]=Ay GenericName=gadget GenericName[eo]=akcesoraĵo +GenericName[fr]=Gadget +GenericName[gl]=trebello +GenericName[ms]=gadjet +GenericName[sr]=справица +GenericName[tr]=araç Comment=Gadget for e17 which displays the current phase of the moon. Comment[cs]=Gadget pro Enlightenment zobrazující aktuální fázi měsíce. Comment[el]=Συστατικό για το Ε17 που εμφανίζει την τρέχουσα φάση της σελήνης. @@ -22,7 +31,10 @@ Comment[fr]=Ce gadget pour e17 affiche la phase lunaire actuelle. Comment[gl]=Módulo para e17 que mostra a fase luar actual. Comment[hu]=Egy E17 modul, amellyel a Hold aktuális fázisait követhetjük nyomon. Comment[it]=Modulo per e17 che mostra l'attuale fase lunare. +Comment[ms]=Gadjet untuk e17 yang papar fasa semasa bulan. Comment[pt]=Módulo que exibe a fase lunar Comment[ru]=Гаджет для Е17, которыей показывает текущую фазу луны. +Comment[sr]=Справица за е17 која приказује месечеве мене +Comment[tr]=Ayın geçerli evresini görüntüleyen e17 aracı Icon=e-module-moon X-Enlightenment-ModuleType=utils --
[EGIT] [enlightenment/modules/mpdule] master 01/01: Updating desktop file
maxerba pushed a commit to branch master. http://git.enlightenment.org/enlightenment/modules/mpdule.git/commit/?id=ce9ff404551782cfa0fe44d6e4e508c324db91d0 commit ce9ff404551782cfa0fe44d6e4e508c324db91d0 Author: maxerba Date: Mon May 19 22:19:59 2014 +0200 Updating desktop file --- module.desktop.in | 7 +++ 1 file changed, 7 insertions(+) diff --git a/module.desktop.in b/module.desktop.in index 1a57798..804240f 100644 --- a/module.desktop.in +++ b/module.desktop.in @@ -4,6 +4,10 @@ Type=Link Name=MPDule Name[eo]=MPDule Name[fr]=MPDule +Name[gl]=MPDule +Name[ms]=MPDule +Name[sr]=МПДуле +Name[tr]=MPDule Comment=View what's playing in MPD. Comment[cs]=Zobrazí, co hraje v MPD. Comment[el]=Εμφάνιση του τι παίζει στο MPD. @@ -13,7 +17,10 @@ Comment[fr]=Une interface pour le démon MPD. Comment[gl]=Vexa o que se reproduce no MPD. Comment[hu]=Láthatod, mit játszik épp az MPD. Comment[it]=Un'interfaccia per il demone MPD. +Comment[ms]=Lihat apakah yang dimainkan dalam MPD. Comment[pt]=Uma interface para o MPD Comment[ru]=Показывает что играет в MPD. +Comment[sr]=Приказује шта изводи МПД +Comment[tr]=MPD'de ne çaldığını göster. Icon=e-module-mpdule X-Enlightenment-ModuleType=utils --
[EGIT] [enlightenment/modules/penguins] master 01/01: Updating desktop file
maxerba pushed a commit to branch master. http://git.enlightenment.org/enlightenment/modules/penguins.git/commit/?id=2fbfbbe37dc7f669afa9e5d5ede3452c27ddde39 commit 2fbfbbe37dc7f669afa9e5d5ede3452c27ddde39 Author: maxerba Date: Mon May 19 22:20:45 2014 +0200 Updating desktop file --- module.desktop.in | 6 ++ 1 file changed, 6 insertions(+) diff --git a/module.desktop.in b/module.desktop.in index e09a325..79e121c 100644 --- a/module.desktop.in +++ b/module.desktop.in @@ -10,8 +10,11 @@ Name[es]=Pingüinos Name[fr]=Pingouins Name[gl]=Pingüíns Name[hu]=Pingvinek +Name[ms]=Penguin Name[pt]=Pinguins Name[ru]=Пингвины +Name[sr]=Пингвини +Name[tr]=Penguenler Comment=Module to display fancy penguins walking around your desktop. Comment[cs]=Zobrazí tučňáky chodící pod desktopu(jako xpenguins). Comment[de]=Lustige Pinguine laufen auf Ihrem Desktop umher. @@ -22,7 +25,10 @@ Comment[fr]=Affiche des pingouins sympas qui se baladent sur votre bureau. Comment[gl]=Módulo para mostrar elegantes pingüíns paseando ó redor do seu escritorio. Comment[hu]=Ezzel a modullal az asztalunkra varázsolhatjuk a Pingvineket, vagy épp a Lemingeket :). Comment[it]=Modulo per visualizzare simpatici pinguini che passeggiano attorno al vostro desktop. +Comment[ms]=Modul untuk papar penguin gedik yang berkeliaran disekitar desktop anda. Comment[pt]=Módulo que mostra pinguins a passear na área de trabalho Comment[ru]=Модуль показывает прикольных пингвинов на рабочем столе. +Comment[sr]=Јединица која приказује гиздаве Пингвине како шетају радном површи. +Comment[tr]=Masaüstünde gezinen eğlenceli penguenler gösteren modül. Icon=e-module-penguins X-Enlightenment-ModuleType=look --
[EGIT] [enlightenment/modules/photo] master 01/01: Updating desktip file
maxerba pushed a commit to branch master. http://git.enlightenment.org/enlightenment/modules/photo.git/commit/?id=c3249b82ac9a15ff27d90ad9da66c9ab6ff52299 commit c3249b82ac9a15ff27d90ad9da66c9ab6ff52299 Author: maxerba Date: Mon May 19 22:21:32 2014 +0200 Updating desktip file --- module.desktop.in | 6 ++ 1 file changed, 6 insertions(+) diff --git a/module.desktop.in b/module.desktop.in index c0a575a..e863429 100644 --- a/module.desktop.in +++ b/module.desktop.in @@ -9,8 +9,11 @@ Name[es]=Foto Name[fr]=Photo Name[gl]=Foto Name[hu]=Fénykép +Name[ms]=Foto Name[pt]=Foto Name[ru]=Фото +Name[sr]=Слика +Name[tr]=Fotoğraf Comment=View photos or a mini slideshow within this gadget. Comment[cs]=Zobrazí fotky nebo malou slideshow uvnitř gadgetu. Comment[de]=Fotos oder eine kleine Diaschau innerhalb eines Helfers betrachten. @@ -21,8 +24,11 @@ Comment[fr]=Permet d'afficher des photos ou un mini diaporama à l'intérieur m Comment[gl]=Módulo para visualizar as súas fotos ou unha presentación. Comment[hu]=Fényképeket nézhetünk a munkaasztalunkon egy mini diavetítés formájában. Comment[it]=Guarda le tue foto o un mini slideshow con questo modulo. +Comment[ms]=Lihat foto atau paparan slaid mini di dalam gadjet ini. Comment[pt]=Módulo que exibe as suas fotografias Comment[ru]=Показывает мини слайд-шоу из фото внутри этого гаджета. +Comment[sr]=Ова справица служи за покретни приказ слика. +Comment[tr]=Fotoğrafları ve küçük bir gösteriyi bu araçla görüntüleyin Icon=e-module-photo Exec=enlightenment StartupNotify=false --
[EGIT] [enlightenment/modules/places] master 01/01: Updating desktop file
maxerba pushed a commit to branch master. http://git.enlightenment.org/enlightenment/modules/places.git/commit/?id=f8c7b34ab2db121fdd320db9bd2e8d3b0200563a commit f8c7b34ab2db121fdd320db9bd2e8d3b0200563a Author: maxerba Date: Mon May 19 22:22:37 2014 +0200 Updating desktop file --- module.desktop.in | 5 + 1 file changed, 5 insertions(+) diff --git a/module.desktop.in b/module.desktop.in index a27da80..4d670db 100644 --- a/module.desktop.in +++ b/module.desktop.in @@ -10,8 +10,11 @@ Name[es]=Sitios Name[fr]=Raccourcis Name[gl]=Lugares Name[hu]=Helyek +Name[ms]=Tempat Name[pt]=Locais Name[ru]=Места +Name[sr]=Места +Name[tr]=Yerler Comment=This module manage the volumes device attached to the system. Comment[cs]=Tento modul spravuje disky/USB/CD/DVD připojené k systému. Comment[de]=Verwalten der am System angeschlossenen Datenträger. @@ -22,7 +25,9 @@ Comment[fr]=Ce module gère les volumes rattachés au système. Comment[gl]=Este módulo xestiona os dispositivos conectados ó sistema. Comment[hu]=Kezeld a különböző médiákat (merevlemez, pendrive, CD). Comment[it]=Questo modulo gestisce le unità connesse al sistema. +Comment[ms]=Modul ini mengurus peranti volum yang dilampir ke dalam sistem. Comment[pt]=Módulo que faz a gestão dos discos e dispositivos ligados ao sistema Comment[ru]=Этот модуль позволяет управлять подключенными к системе устройствами. +Comment[tr]=Bu modül sisteme eklenen depolama aygıtlarını yönetir. Icon=e-module-places X-Enlightenment-ModuleType=files --
[EGIT] [games/e_cho] master 01/01: Updating desktop file
maxerba pushed a commit to branch master. http://git.enlightenment.org/games/e_cho.git/commit/?id=039ed87d785315af8cf491d2f6951c030dbb9af0 commit 039ed87d785315af8cf491d2f6951c030dbb9af0 Author: maxerba Date: Mon May 19 22:24:05 2014 +0200 Updating desktop file --- data/desktop/e_cho.desktop | 8 1 file changed, 8 insertions(+) diff --git a/data/desktop/e_cho.desktop b/data/desktop/e_cho.desktop index 12d6a0f..594cc87 100644 --- a/data/desktop/e_cho.desktop +++ b/data/desktop/e_cho.desktop @@ -4,12 +4,20 @@ Type=Application Name=Echo Name[eo]=Eĥo Name[fr]=Écho +Name[gl]=Echo +Name[ms]=Gema +Name[sr]=Одјек +Name[tr]=Echo Comment=Game Comment[eo]=Ludo Comment[es]=Juego +Comment[fr]=Jeu Comment[gl]=Xogo Comment[it]=Gioco +Comment[ms]=Permainan Comment[pt]=Jogo +Comment[sr]=Игра +Comment[tr]=Oyun Icon=e_cho Exec=e_cho Terminal=false --
[EGIT] [apps/econnman] master 01/01: Updating desktop file
maxerba pushed a commit to branch master. http://git.enlightenment.org/apps/econnman.git/commit/?id=7b94c310b809d8d4c69778c8c2f691af61548cca commit 7b94c310b809d8d4c69778c8c2f691af61548cca Author: maxerba Date: Mon May 19 22:25:28 2014 +0200 Updating desktop file --- data/desktop/econnman-agent.desktop | 45 - data/desktop/econnman.desktop | 35 ++--- 2 files changed, 67 insertions(+), 13 deletions(-) diff --git a/data/desktop/econnman-agent.desktop b/data/desktop/econnman-agent.desktop index a693d59..3b7e743 100644 --- a/data/desktop/econnman-agent.desktop +++ b/data/desktop/econnman-agent.desktop @@ -1,26 +1,51 @@ [Desktop Entry] +Encoding=UTF-8 Type=Application -Icon=econnman -Name=EConnMan with Agent -Name[eo]=EConnMak kun agento -Name[es]=EConnMan con agente -Name[gl]=EConnMan con axente -Name[it]=EconnMan con agente -Name[pl]=EconnMan z Agentem -Name[pt]=EconnMan com agente +Name=Connection Manager +Name[ca]=Gestor de connexions +Name[cs]=Správce připojení +Name[de]=Verbindungsmanager +Name[eo]=Administrilo de konektadoj +Name[es]=Administrador de conexiones +Name[fr]=Gestionnaire de connexion +Name[gl]=Xestor de conexións +Name[hu]=Hálózati kapcsolatok +Name[it]=Gestore connessioni +Name[ms]=Pengurus Sambungan +Name[nl]=EConnMan met Agent +Name[pl]=Menadżer Połączeń +Name[pt]=Gestor de ligações +Name[ru]=Менеджер подключений +Name[sr]=Управник мреже +Name[tr]=Bağlantı Yöneticisi GenericName=Connection Manager +GenericName[ca]=Gestor de connexions +GenericName[cs]=Správce připojení +GenericName[de]=Verbindungsmanager +GenericName[eo]=Administrilo de konektadoj GenericName[es]=Administrador de conexiones +GenericName[fr]=Gestionnaire de connexion GenericName[gl]=Xestor de conexións +GenericName[hu]=Hálózati kapcsolatok +GenericName[it]=Gestore connessioni +GenericName[ms]=Pengurus Sambungan GenericName[pl]=Menadżer Połączeń GenericName[pt]=Gestor de ligações +GenericName[ru]=Менеджер подключений +GenericName[sr]=Управник мреже +GenericName[tr]=Bağlantı Yöneticisi Comment=Manage your internet connections using ConnMan and EFL. Version with agent to get passwords and other input. Comment[eo]=Administri viajn interretajn konektadojn pere de ConnMan kaj EFL. Versio kun agento por akiri pasvortojn aŭ aliajn enigojn. Comment[es]=Administre sus conexiones a internet usando ConnMan y EFL. Versión con agente para obtener contraseñas y otras entradas. +Comment[fr]=Gérez vos connexions Internet avec ConnMan et EFL. Version avec agent pour obtenir les mots de passe et autres entrées. Comment[gl]=Xestione as súas conexións a internet empregando ConnMan e EFL. Versión con axente para obter contrasinais e outras entradas. Comment[it]=Gestisce le connessioni internet usando ConnMan e le EFL. Versione con agente per password e altri input. +Comment[ms]=Urus sambungan internet anda menggunakan ConnMan dan EFL. Versi dengan ejen untuk dapatkan kata laluan dan lain-lain input. Comment[pl]=Zarządzaj połączeniami z Internetem z użyciem ConnMan i EFL. Wersja z agentem umożliwia używanie haseł i innych parametrów. Comment[pt]=Gestão das ligações internet com o ConnMan e o EFL. Versão com agente para obter senhas e outros dados -Categories=Network;Settings;Enlightenment; +Comment[tr]=İnternet bağlantınızı Bağlantı Yöneticisi ve EFL kullanarak yönetin. +Icon=econnman Exec=econnman-bin --agent -StartupNotify=true Terminal=false +Categories=Network;Settings;Enlightenment; +StartupNotify=true diff --git a/data/desktop/econnman.desktop b/data/desktop/econnman.desktop index 012183e..e21ab0c 100644 --- a/data/desktop/econnman.desktop +++ b/data/desktop/econnman.desktop @@ -1,21 +1,50 @@ [Desktop Entry] +Encoding=UTF-8 Type=Application -Icon=econnman Name=EConnMan +Name[ca]=Gestor de connexions +Name[cs]=Správce připojení +Name[de]=Verbindungsmanager +Name[eo]=Enlightenment Konektado-administrilo +Name[es]=Administrador de conexiones +Name[fr]=Gestionnaire de connexion +Name[gl]=Xestor de conexións +Name[hu]=Hálózati kapcsolatok +Name[it]=Gestore connessioni +Name[ms]=EConnMan +Name[pl]=Menadżer Połączeń +Name[pt]=Gestor de ligações +Name[ru]=Менеджер подключений +Name[sr]=Управник мреже +Name[tr]=Bağlantı Yöneticisi GenericName=Connection Manager +GenericName[ca]=Gestor de connexions +GenericName[cs]=Správce připojení +GenericName[de]=Verbindungsmanager GenericName[eo]=Administrilo de konektadoj GenericName[es]=Administrador de conexiones +GenericName[fr]=Gestionnaire de connexion GenericName[gl]=Xestor de conexións +GenericName[hu]=Hálózati kapcsolatok +GenericName[it]=Gestore connessioni +GenericName[ms]=Pengurus Sambungan GenericName[pl]=Menadżer Połączeń GenericName[pt]=Gestor de ligações +GenericName[ru]=Менеджер подключений +GenericName[sr]=Управник мреже +GenericName[tr]=Bağlantı Yöneticisi Comment=Manage your internet connections using ConnMan and EFL Comment[eo]=Administri viajn interretajn konektadoj pere de
[EGIT] [apps/enjoy] master 01/01: Updating desktop file
maxerba pushed a commit to branch master. http://git.enlightenment.org/apps/enjoy.git/commit/?id=e2f6335d3185b9753e618dae2392861e8fad7258 commit e2f6335d3185b9753e618dae2392861e8fad7258 Author: maxerba Date: Mon May 19 22:26:24 2014 +0200 Updating desktop file --- data/desktop/enjoy.desktop | 7 +++ 1 file changed, 7 insertions(+) diff --git a/data/desktop/enjoy.desktop b/data/desktop/enjoy.desktop index 9c0d667..db1665b 100644 --- a/data/desktop/enjoy.desktop +++ b/data/desktop/enjoy.desktop @@ -4,13 +4,20 @@ Type=Application Name=Enjoy Name[eo]=Ĝuu Name[fr]=Enjoy +Name[gl]=Enjoy +Name[ms]=Enjoy +Name[sr]=Eнџој +Name[tr]=Enjoy Comment=Music Player Comment[eo]=Muzikludilo Comment[es]=Reproductor de música Comment[fr]=Lecteur de musique Comment[gl]=Reprodutor de música Comment[it]=Riproduttore musicale +Comment[ms]=Pemain Muzik Comment[pt]=Reprodutor de músicas +Comment[sr]=Извођач музике +Comment[tr]=Müzik Çalar Icon=enjoy Exec=enjoy Terminal=false --
[EGIT] [apps/ephoto] master 01/01: Updating desktop file
maxerba pushed a commit to branch master. http://git.enlightenment.org/apps/ephoto.git/commit/?id=2688fcedfaf925dfc6d8301b60061152a62053d4 commit 2688fcedfaf925dfc6d8301b60061152a62053d4 Author: maxerba Date: Mon May 19 22:27:16 2014 +0200 Updating desktop file --- data/desktop/ephoto.desktop | 6 ++ 1 file changed, 6 insertions(+) diff --git a/data/desktop/ephoto.desktop b/data/desktop/ephoto.desktop index 76c55dc..ea98622 100644 --- a/data/desktop/ephoto.desktop +++ b/data/desktop/ephoto.desktop @@ -4,14 +4,20 @@ Type=Application Name=Ephoto Name[eo]=EFoto Name[fr]=EPhoto +Name[gl]=Ephoto +Name[ms]=Efoto +Name[tr]=Fotoğraf Comment=Enlightened Photo Viewer Comment[eo]=Foto-vidigilo de Enlightenment Comment[es]=Visualizador de fotos de Enlightenment Comment[fr]=Visionneuse photo pour Enlightenment Comment[gl]=Visualizador de fotos de Enlightenment Comment[it]=Visualizzatore di foto per Enlightenment +Comment[ms]=Pelihat Foto Enlightenment Comment[pt]=Visualizador de fotos do Enlightenment Comment[ru]=Просмотр фото +Comment[sr]=Просвећени прегледник слика +Comment[tr]=Fotoğraf görüntüleyici Icon=ephoto Exec=ephoto Terminal=false --
[EGIT] [apps/epour] master 01/01: Updating desktop file
maxerba pushed a commit to branch master. http://git.enlightenment.org/apps/epour.git/commit/?id=4ffbcad8cae751f332b671152ba85075c66ec998 commit 4ffbcad8cae751f332b671152ba85075c66ec998 Author: maxerba Date: Mon May 19 22:28:13 2014 +0200 Updating desktop file --- data/epour.desktop.in | 17 ++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/data/epour.desktop.in b/data/epour.desktop.in index de973b7..c16dbb4 100644 --- a/data/epour.desktop.in +++ b/data/epour.desktop.in @@ -1,21 +1,32 @@ [Desktop Entry] +Encoding=UTF-8 +Type=Application Version=1.0 Name=Epour +Name[ms]=Epour +Name[tr]=Epour GenericName=BitTorrent Client +GenericName[eo]=BitTorrent-Kliento GenericName[es]=Cliente BitTorrent +GenericName[fr]=Client BitTorrent GenericName[gl]=Cliente BitTorrent GenericName[it]=Client BitTorrent +GenericName[ms]=Klien BitTorrent GenericName[pt]=Cliente Bittorrent +GenericName[tr]=BitTorrent İstemcisi Comment=Download and share files over BitTorrent +Comment[eo]=Elŝuti kaj kunhavigi dosierojn per BitTorrent Comment[es]=Descarga y comparte archivos por BitTorrent +Comment[fr]=Télécharge et partage des fichiers via BitTorrent Comment[gl]=Descarga e comparte ficheiros por BitTorrent Comment[it]=Scarica e condivide file su BitTorrent +Comment[ms]=Muat turun dan kongsi fail melalui BitTorrent Comment[pt]=Transferir e partilhar ficheiros por bittorrent +Comment[tr]=BitTorrent üzerinden dosya indirin ve paylaşın +Icon=epour TryExec=epour Exec=epour %U -Icon=epour -Type=Application Terminal=false +MimeType=application/x-bittorrent;x-scheme-handler/magnet; Categories=Network;FileTransfer;P2P; StartupNotify=true -MimeType=application/x-bittorrent;x-scheme-handler/magnet; --
[EGIT] [core/efl] efl-1.8 01/01: Updating translations
maxerba pushed a commit to branch efl-1.8. http://git.enlightenment.org/core/efl.git/commit/?id=a651288f2889ff533dcd5f23851c4f594b2bdc6c commit a651288f2889ff533dcd5f23851c4f594b2bdc6c Author: maxerba Date: Mon May 19 22:36:56 2014 +0200 Updating translations --- po/eo.po | 12 ++-- po/fr.po | 39 --- 2 files changed, 30 insertions(+), 21 deletions(-) diff --git a/po/eo.po b/po/eo.po index 2b03ad0..8093af1 100644 --- a/po/eo.po +++ b/po/eo.po @@ -6,17 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: enlightenment\n" -"Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-12-02 12:42+0900\n" -"PO-Revision-Date: 2013-02-21 15:24+\n" +"Report-Msgid-Bugs-To: $MSGID_BUGS_ADDRESS\n" +"POT-Creation-Date: 2013-12-30 11:41+0100\n" +"PO-Revision-Date: 2013-12-30 11:46+\n" "Last-Translator: Michael Moroni \n" "Language-Team: Esperanto \n" -"Language: eo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-22 05:19+\n" -"X-Generator: Launchpad (build 16506)\n" +"X-Launchpad-Export-Date: 2013-12-31 05:52+\n" +"X-Generator: Launchpad (build 16877)\n" +"Language: eo\n" #: src/lib/ecore/ecore_getopt.c:87 msgid "Version:" diff --git a/po/fr.po b/po/fr.po index a43bb18..7b057a8 100644 --- a/po/fr.po +++ b/po/fr.po @@ -1,25 +1,34 @@ -# French translation for Efl. -# Copyright (C) 2012, 2013 Enlightenment development team +# French translation for Enlightenment DR17. # This file is put in the public domain. -# batden , 2009. -# Jerome Pinot , 2012. -# Chidambar Zinnoury , 2013. # +# Vincent 'Caro' Torri , 2005. +# Sébastien HOUZE , 2005. +# Maxime BRUNEL , 2005, 2006. +# Chidambar Zinnoury , 2006, 2007, 2012. +# Antoine Giniès , 2007, 2008. +# Jérôme Pinot , 2008. +# batden , 2008, 2009, 2010, 2011. +# dazibao , 2011, 2012. +# rustyBSD , 2012. +# Raoul Hecky , 2012. +# Eliovir , 2013. msgid "" msgstr "" -"Project-Id-Version: Efl\n" -"Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-12-02 12:42+0900\n" -"PO-Revision-Date: 2013-02-05 22:51+\n" -"Last-Translator: ilLogict \n" -"Language-Team: Enlightenment French Team \n" -"Language: fr\n" +"Project-Id-Version: Enlightenment DR17\n" +"Report-Msgid-Bugs-To: $MSGID_BUGS_ADDRESS\n" +"POT-Creation-Date: 2013-12-30 11:41+0100\n" +"PO-Revision-Date: 2013-12-30 11:46+\n" +"Last-Translator: Eliovir \n" +"Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-02-06 05:17+\n" -"X-Generator: Launchpad (build 16468)\n" +"X-Launchpad-Export-Date: 2013-12-31 05:52+\n" +"X-Generator: Launchpad (build 16877)\n" +"X-Poedit-Country: FRANCE\n" +"Language: fr\n" +"X-Poedit-Language: French\n" +"X-Poedit-SourceCharset: utf-8\n" #: src/lib/ecore/ecore_getopt.c:87 msgid "Version:" --
[EGIT] [core/elementary] elementary-1.8 01/01: Updating translations
maxerba pushed a commit to branch elementary-1.8. http://git.enlightenment.org/core/elementary.git/commit/?id=7087cc1c8292703df9540251a5b94c4eff6154ba commit 7087cc1c8292703df9540251a5b94c4eff6154ba Author: maxerba Date: Mon May 19 22:39:08 2014 +0200 Updating translations --- po/eo.po | 85 - po/fr.po | 109 +++ 2 files changed, 94 insertions(+), 100 deletions(-) diff --git a/po/eo.po b/po/eo.po index fd88991..c02d33c 100644 --- a/po/eo.po +++ b/po/eo.po @@ -3,70 +3,69 @@ # This file is distributed under the same license as the enlightenment package. # FIRST AUTHOR , 2012. # -#: src/lib/elm_config.c:2415 msgid "" msgstr "" "Project-Id-Version: enlightenment\n" -"Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-12-01 18:58+0900\n" -"PO-Revision-Date: 2013-01-23 05:24+\n" +"Report-Msgid-Bugs-To: $MSGID_BUGS_ADDRESS\n" +"POT-Creation-Date: 2013-12-30 11:41+0100\n" +"PO-Revision-Date: 2014-02-02 22:00+\n" "Last-Translator: Eliovir \n" "Language-Team: Esperanto \n" -"Language: eo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-24 05:46+\n" -"X-Generator: Launchpad (build 16640)\n" +"X-Launchpad-Export-Date: 2014-02-03 06:00+\n" +"X-Generator: Launchpad (build 16916)\n" +"Language: eo\n" -#: src/lib/elc_fileselector.c:1203 +#: src/lib/elc_fileselector.c:1341 msgid "Up" msgstr "Supren" -#: src/lib/elc_fileselector.c:1218 +#: src/lib/elc_fileselector.c:1356 msgid "Home" msgstr "Hejmo" -#: src/lib/elc_fileselector.c:1431 src/lib/elm_entry.c:1340 -#: src/lib/elm_entry.c:1365 +#: src/lib/elc_fileselector.c:1583 src/lib/elm_entry.c:1346 +#: src/lib/elm_entry.c:1371 msgid "Cancel" msgstr "Nuligi" -#: src/lib/elc_fileselector.c:1440 +#: src/lib/elc_fileselector.c:1592 msgid "OK" msgstr "Bone" -#: src/lib/elc_multibuttonentry.c:575 +#: src/lib/elc_multibuttonentry.c:614 msgid "multi button entry label" msgstr "" -#: src/lib/elc_multibuttonentry.c:597 +#: src/lib/elc_multibuttonentry.c:635 msgid "multi button entry item" msgstr "" -#: src/lib/elc_multibuttonentry.c:1471 +#: src/lib/elc_multibuttonentry.c:1512 msgid "multi button entry" msgstr "" #: src/lib/elc_naviframe.c:377 msgid "Title" -msgstr "" +msgstr "Titolo" #: src/lib/elc_naviframe.c:906 src/lib/elc_naviframe.c:1130 msgid "Back" -msgstr "" +msgstr "Reen" #: src/lib/elc_naviframe.c:1209 msgid "Next" -msgstr "" +msgstr "Antaŭen" #: src/lib/elc_popup.c:282 src/lib/elc_popup.c:908 msgid "Popup Title" -msgstr "" +msgstr "Titolo de spruĉfenestro" #: src/lib/elc_popup.c:292 src/lib/elc_popup.c:976 msgid "Popup Body Text" -msgstr "" +msgstr "Enhava teksto de spruĉfenestro" #: src/lib/elm_bubble.c:217 msgid "Bubble" @@ -76,10 +75,10 @@ msgstr "Veziko" msgid "Clicked" msgstr "Alklakita" -#: src/lib/elm_button.c:279 src/lib/elm_check.c:222 src/lib/elm_gengrid.c:681 +#: src/lib/elm_button.c:279 src/lib/elm_check.c:222 src/lib/elm_gengrid.c:705 #: src/lib/elm_genlist.c:1464 src/lib/elm_list.c:1547 src/lib/elm_radio.c:265 -#: src/lib/elm_segment_control.c:537 src/lib/elm_spinner.c:556 -#: src/lib/elm_toolbar.c:1980 +#: src/lib/elm_segment_control.c:537 src/lib/elm_spinner.c:561 +#: src/lib/elm_toolbar.c:1979 msgid "State: Disabled" msgstr "Stato: malŝaltita" @@ -160,18 +159,17 @@ msgstr "Stato: redaktebla" msgid "Clock" msgstr "Horloĝo" -#: src/lib/elm_colorselector.c:1349 +#: src/lib/elm_colorselector.c:1370 msgid "color selector palette item" msgstr "ero de elektilo de kolorpaletro" -#: src/lib/elm_config.c:2431 +#: src/lib/elm_config.c:2441 msgid "default:LTR" msgstr "default:LTR" #: src/lib/elm_dayselector.c:422 -#, fuzzy msgid "day selector item" -msgstr "ero de diskelektilo" +msgstr "" #: src/lib/elm_diskselector.c:681 msgid "diskselector item" @@ -181,23 +179,23 @@ msgstr "ero de diskelektilo" msgid "Copy" msgstr "Kopii" -#: src/lib/elm_entry.c:1337 +#: src/lib/elm_entry.c:1338 msgid "Cut" msgstr "Eltondi" -#: src/lib/elm_entry.c:1352 +#: src/lib/elm_entry.c:1358 msgid "Select" msgstr "Elekti" -#: src/lib/elm_entry.c:1359 +#: src/lib/elm_entry.c:1342 src/lib/elm_entry.c:1365 msgid "Paste" msgstr "Alglui" -#: src/lib/elm_entry.c:3301 +#: src/lib/elm_entry.c:3306 msgid "Entry" msgstr "Ero" -#: src/lib/elm_gengrid.c:711 +#: src/lib/elm_gengrid.c:735 msgid "Gengrid Item" msgstr "Ero de komuna krado" @@ -233,51 +231,50 @@ msgstr "progresbreto" msgid "Radio" msgstr "Radiobutono" -#: src/lib/elm_segment_control.c:540 src/lib/elm_toolbar.c:1982 +#: src/lib/elm_segment_control.c:540 src/lib/elm_toolbar.c:1981 msgid "State: Selected" msgstr "Stato: elektita" #: src/lib/elm_segment_control.c:542 -#, fuzzy msgid "State: Unselected" -msgstr "Stato: elektita" +msgstr "Stato: ne elektita" #
[EGIT] [core/elementary] elementary-1.7 01/01: Updating translations
maxerba pushed a commit to branch elementary-1.7. http://git.enlightenment.org/core/elementary.git/commit/?id=5b330602c0a6e7276bb7ff84de3c5b8f2bd2aa0b commit 5b330602c0a6e7276bb7ff84de3c5b8f2bd2aa0b Author: maxerba Date: Mon May 19 22:40:41 2014 +0200 Updating translations --- po/fr.po | 109 ++- 1 file changed, 52 insertions(+), 57 deletions(-) diff --git a/po/fr.po b/po/fr.po index 37367b7..bb3fbe7 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,109 +3,110 @@ # batden , 2011. # dazibao , 2011. # -#: src/lib/elm_config.c:2084 msgid "" msgstr "" "Project-Id-Version: Elementary\n" -"Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2012-10-20 13:35+0200\n" -"PO-Revision-Date: 2011-11-08 07:57+0100\n" -"Last-Translator: dazibao \n" +"Report-Msgid-Bugs-To: $MSGID_BUGS_ADDRESS\n" +"POT-Creation-Date: 2013-04-07 18:45+0200\n" +"PO-Revision-Date: 2013-04-07 20:29+\n" +"Last-Translator: batden \n" "Language-Team: French \n" -"Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n>1;\n" -"X-Poedit-Language: French\n" +"X-Launchpad-Export-Date: 2014-01-11 06:27+\n" +"X-Generator: Launchpad (build 16890)\n" "X-Poedit-Country: FRANCE\n" +"Language: \n" +"X-Poedit-Language: French\n" "X-Poedit-SourceCharset: utf-8\n" -#: src/lib/elc_fileselector.c:749 +#: src/lib/elc_fileselector.c:1341 msgid "Up" msgstr "Monter" -#: src/lib/elc_fileselector.c:764 +#: src/lib/elc_fileselector.c:1356 msgid "Home" msgstr "Home" -#: src/lib/elc_fileselector.c:992 src/lib/elm_entry.c:1402 +#: src/lib/elc_fileselector.c:1583 src/lib/elm_entry.c:1346 +#: src/lib/elm_entry.c:1371 msgid "Cancel" msgstr "Annuler" -#: src/lib/elc_fileselector.c:1001 +#: src/lib/elc_fileselector.c:1592 msgid "OK" msgstr "OK" -#: src/lib/elm_button.c:55 +#: src/lib/elm_button.c:58 msgid "Clicked" msgstr "Cliqué" -#: src/lib/elm_button.c:255 src/lib/elm_check.c:200 src/lib/elm_gengrid.c:618 -#: src/lib/elm_genlist.c:1287 src/lib/elm_list.c:1353 src/lib/elm_radio.c:241 -#: src/lib/elm_spinner.c:503 src/lib/elm_toolbar.c:1253 +#: src/lib/elm_button.c:279 src/lib/elm_check.c:222 src/lib/elm_gengrid.c:705 +#: src/lib/elm_genlist.c:1464 src/lib/elm_list.c:1547 src/lib/elm_radio.c:265 +#: src/lib/elm_segment_control.c:537 src/lib/elm_spinner.c:561 +#: src/lib/elm_toolbar.c:1979 msgid "State: Disabled" msgstr "État : désactivé" -#: src/lib/elm_button.c:279 +#: src/lib/elm_button.c:304 msgid "Button" msgstr "Bouton" -#: src/lib/elm_calendar.c:132 +#: src/lib/elm_calendar.c:142 msgid "%B %Y" msgstr "%B %Y" -#: src/lib/elm_check.c:47 src/lib/elm_check.c:50 src/lib/elm_check.c:213 -#: src/lib/elm_radio.c:83 src/lib/elm_radio.c:242 +#: src/lib/elm_check.c:52 src/lib/elm_check.c:235 src/lib/elm_radio.c:92 +#: src/lib/elm_radio.c:266 msgid "State: On" msgstr "État : activé" -#: src/lib/elm_check.c:60 src/lib/elm_check.c:63 src/lib/elm_check.c:225 -#: src/lib/elm_radio.c:244 +#: src/lib/elm_check.c:58 src/lib/elm_check.c:247 src/lib/elm_radio.c:268 msgid "State: Off" msgstr "État : désactivé" -#: src/lib/elm_check.c:209 src/lib/elm_check.c:222 +#: src/lib/elm_check.c:231 src/lib/elm_check.c:244 msgid "State" msgstr "État" -#: src/lib/elm_check.c:289 +#: src/lib/elm_check.c:312 msgid "Check" msgstr "À cocher" -#: src/lib/elm_colorselector.c:895 +#: src/lib/elm_colorselector.c:1370 msgid "color selector palette item" -msgstr "" +msgstr "élément de palette de choix de couleur" -#: src/lib/elm_config.c:2100 +#: src/lib/elm_config.c:2441 msgid "default:LTR" msgstr "LTR par défaut" -#: src/lib/elm_diskselector.c:622 +#: src/lib/elm_diskselector.c:681 msgid "diskselector item" -msgstr "" +msgstr "élément de choix de disque" -#: src/lib/elm_entry.c:1396 +#: src/lib/elm_entry.c:1333 msgid "Copy" msgstr "Copier" -#: src/lib/elm_entry.c:1399 +#: src/lib/elm_entry.c:1338 msgid "Cut" msgstr "Couper" -#: src/lib/elm_entry.c:1413 +#: src/lib/elm_entry.c:1358 msgid "Select" msgstr "Sélectionner" -#: src/lib/elm_entry.c:1419 +#: src/lib/elm_entry.c:1342 src/lib/elm_entry.c:1365 msgid "Paste" msgstr "Coller" -#: src/lib/elm_entry.c:2650 +#: src/lib/elm_entry.c:3306 msgid "Entry" -msgstr "" +msgstr "Entrée" -#: src/lib/elm_gengrid.c:650 +#: src/lib/elm_gengrid.c:735 msgid "Gengrid Item" msgstr "" @@ -113,60 +114,54 @@ msgstr "" msgid "Genlist Item" msgstr "" -#: src/lib/elm_label.c:348 +#: src/lib/elm_label.c:408 msgid "Label" -msgstr "" +msgstr "Étiquette" -#: src/lib/elm_list.c:1393 +#: src/lib/elm_list.c:1400 msgid "List Item" msgstr "" -#: src/lib/elm_progressbar.c:260 +#: src/lib/elm_progressbar.c:296 msgid "progressbar" -msgstr "" +msgstr "barre de progression" -#: src/lib/elm_radio.c:271 +#: src/lib/elm_radio.c:296 msgid "Radio" msgstr "Radio" -#: src/lib/elm_slider.c:778
[EGIT] [enlightenment/modules/news] enlightenment-0.17 01/01: Updating translations
maxerba pushed a commit to branch enlightenment-0.17. http://git.enlightenment.org/enlightenment/modules/news.git/commit/?id=a694c51aeafc87c047d620fce2bca7f0e167056e commit a694c51aeafc87c047d620fce2bca7f0e167056e Author: maxerba Date: Mon May 19 22:45:39 2014 +0200 Updating translations --- po/eo.po | 242 +++ po/fr.po | 276 +-- 2 files changed, 250 insertions(+), 268 deletions(-) diff --git a/po/eo.po b/po/eo.po index 7abac9e..d5e5b24 100644 --- a/po/eo.po +++ b/po/eo.po @@ -1,46 +1,45 @@ -# Esperanto tranlation of news. -# Copyright (C) 2008 Enlightenment development team -# This file is distributed under the same license as the news package. -# Olivier M. , 2008. +# Esperanto translation for enlightenment +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the enlightenment package. +# FIRST AUTHOR , 2013. # msgid "" msgstr "" -"Project-Id-Version: eo\n" -"Report-Msgid-Bugs-To: $MSGID_BUGS_ADDRESS\n" -"POT-Creation-Date: 2012-12-04 13:32+0100\n" -"PO-Revision-Date: 2012-12-10 10:22+\n" -"Last-Translator: Michael Moroni \n" -"Language-Team: Esperanto \n" +"Project-Id-Version: enlightenment\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-12-30 12:11+0100\n" +"PO-Revision-Date: 2013-12-30 11:20+\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Esperanto \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-11 04:49+\n" -"X-Generator: Launchpad (build 16356)\n" -"Language: eo\n" +"X-Launchpad-Export-Date: 2014-01-11 06:34+\n" +"X-Generator: Launchpad (build 16890)\n" #: src/e_mod_main.c:52 msgid "Config init failed" -msgstr "Pravalorizado de agordoj fiaskis" +msgstr "Pravalorigo de agordoj malsukcesis" #: src/e_mod_main.c:53 msgid "Parser init failed" -msgstr "Pravalorizado de sintaksa analizilo fiaskis" +msgstr "Pravalorigo de legilo malsukcesis" #: src/e_mod_main.c:54 msgid "Feeds init failed" -msgstr "Pravalorizado de abonfluoj fiaskis" +msgstr "Pravalorigo de abonfluoj malsukcesis" #: src/e_mod_main.c:55 msgid "Viewer init failed" -msgstr "Pravalorizado de legilo fiaskis" +msgstr "Pravalorigo de vidigilo malsukcesis" #: src/e_mod_main.c:56 msgid "Popup subsystem init failed" -msgstr "Pravalorizado de subsistemo de ŝprucfenestro fiaskis" +msgstr "Pravalorigo de ŝprucfenestra sub-sistemo malsukcesis" #: src/e_mod_main.c:219 msgid "News" -msgstr "Novaĵoj" +msgstr "Aktualaĵoj" #: src/news_config.c:100 #, c-format @@ -49,9 +48,9 @@ msgid "" "configuration of news modulehas been upgradedYour settings were " "removedSorry for the inconvenience(%d -> %d)" msgstr "" -"Modulo de novaĵoj: agordoj promociitajViaj " -"agordoj pri modulo de novaĵojestis promociitajViaj eksagordoj estis " -"forviŝitajBonvole pardonu pro la ĝeno(%d → %d)" +"Modulo de aktualaĵoj: agordoj ĝisdatigitajViaj " +"agordoj de la modulo de aktualaĵojestis ĝisdatigitaj.Viaj agordoj " +"estis forigitaj.Pardonon por la ĝeno.(%d -> %d)" #: src/news_config.c:112 #, c-format @@ -60,127 +59,127 @@ msgid "" "configuration of News modulehas been downgradedYour settings were " "removedSorry for the inconvenience(%d ->%d)" msgstr "" -"Modulo de novaĵoj: agordoj malpromociitajViaj " -"agordoj pri modulo de novaĵojestis malpromociitajViaj eksagordoj " -"estis forviŝitajBonvole pardonu pro la ĝeno(%d → %d)" +"Modulo de aktualaĵoj: agordoj malĝisdatigitajViaj " +"agordoj de la modulo de aktualaĵojestis malĝisdatigitaj.Viaj agordoj " +"estis forigitaj.Pardonon por la ĝeno.(%d -> %d)" #: src/news_config_dialog.c:90 msgid "News Main Configuration" -msgstr "Ĉefaj agordoj de la novaĵoj" +msgstr "Ĉefaj agordoj de aktualaĵoj" -#: src/news_config_dialog.c:190 src/news_config_dialog.c:228 +#: src/news_config_dialog.c:192 src/news_config_dialog.c:230 #: src/news_config_dialog_feeds.c:358 src/news_menu.c:153 msgid "Feeds" msgstr "Fluoj" -#: src/news_config_dialog.c:192 src/news_config_dialog.c:236 +#: src/news_config_dialog.c:194 src/news_config_dialog.c:238 msgid "Sort lists by name (disable Move action)" -msgstr "Ordigi listojn laŭ nomo (malŝalti Movi-agon)" +msgstr "Ordigi listojn laŭ nomo (malebligas movon)" -#: src/news_config_dialog.c:197 src/news_config_dialog.c:305 +#: src/news_config_dialog.c:199 src/news_config_dialog.c:307 #: src/news_viewer.c:307 msgid "News Viewer" -msgstr "Novaĵlegilo" +msgstr "Vidigilo de aktualaĵoj" -#: src/news_config_dialog.c:199 +#: src/news_config_dialog.c:201 msgid "Font size" -msgstr "Tipargrando" +msgstr "Tipara grando" -#: src/news_config_dialog.c:202 src/news_config_dialog.c:316 +#: src/news_config_dialog.c:204 src/news_config_dialog.c:318 #, c-format msgid "%1.0f" msgstr "%1.0f" -#: src/news_config_dialog.c:205 +#: src/news_config_dialog.c:207
[EGIT] [enlightenment/modules/places] enlightenment-0.17 01/01: Updating translations
maxerba pushed a commit to branch enlightenment-0.17. http://git.enlightenment.org/enlightenment/modules/places.git/commit/?id=75c99e53e6d34d6df1c3251bbb771adc4d6d758c commit 75c99e53e6d34d6df1c3251bbb771adc4d6d758c Author: maxerba Date: Mon May 19 22:47:03 2014 +0200 Updating translations --- po/eo.po | 79 +++ po/fr.po | 92 +++- 2 files changed, 84 insertions(+), 87 deletions(-) diff --git a/po/eo.po b/po/eo.po index 057bea9..3418331 100644 --- a/po/eo.po +++ b/po/eo.po @@ -1,22 +1,21 @@ -# Esperanto translations for places package. -# Copyright (C) 2009 Enlightenment development team -# This file is distributed under the same license as the places package. +# Esperanto translation for enlightenment +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the enlightenment package. +# FIRST AUTHOR , 2013. # -# Olivier , 2009. msgid "" msgstr "" -"Project-Id-Version: places 0.1.0\n" -"Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-04-14 18:28+0200\n" -"PO-Revision-Date: 2012-12-05 11:46+\n" -"Last-Translator: Michael Moroni \n" -"Language-Team: Esperanto \n" -"Language: eo\n" +"Project-Id-Version: enlightenment\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-12-30 12:11+0100\n" +"PO-Revision-Date: 2013-12-30 11:20+\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Esperanto \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-06 04:41+\n" -"X-Generator: Launchpad (build 16341)\n" +"X-Launchpad-Export-Date: 2014-01-11 06:35+\n" +"X-Generator: Launchpad (build 16890)\n" #: src/e_mod_config.c:54 msgid "Places Settings" @@ -32,11 +31,11 @@ msgstr "Montri en ĉefa menuo" #: src/e_mod_config.c:143 msgid "Hide the gadget header" -msgstr "Kaŝi la ĉapon de akcesoraĵo" +msgstr "Kaŝi la kapon de akcesoraĵo" #: src/e_mod_config.c:147 msgid "Mount volumes at boot" -msgstr "Surmeti datumportilojn je praŝargado" +msgstr "Surmunti datumportilojn dum praŝargo" #: src/e_mod_config.c:151 msgid "Mount volumes on insert" @@ -44,35 +43,35 @@ msgstr "Surmeti datumportilojn je enigo" #: src/e_mod_config.c:155 msgid "Open filemanager on insert" -msgstr "Lanĉi dosiermastrumilon je enigo" +msgstr "Malfermi dosieradministrilon post enmeto" #: src/e_mod_config.c:162 msgid "Use a custom file manager" -msgstr "Uzi propran dosiermastrumilon" +msgstr "Uzi propran dosieradministrilon" #: src/e_mod_config.c:175 msgid "Show in menu" msgstr "Montri en menuo" -#: src/e_mod_config.c:178 src/e_mod_places.c:774 +#: src/e_mod_config.c:178 src/e_mod_places.c:807 msgid "Home" msgstr "Hejmo" -#: src/e_mod_config.c:181 src/e_mod_places.c:783 +#: src/e_mod_config.c:181 src/e_mod_places.c:816 msgid "Desktop" msgstr "Labortablo" -#: src/e_mod_config.c:184 src/e_mod_places.c:793 +#: src/e_mod_config.c:184 src/e_mod_places.c:826 msgid "Trash" msgstr "Rubujo" -#: src/e_mod_config.c:187 src/e_mod_places.c:618 src/e_mod_places.c:802 +#: src/e_mod_config.c:187 src/e_mod_places.c:651 src/e_mod_places.c:835 msgid "Filesystem" msgstr "Dosiersistemo" -#: src/e_mod_config.c:190 src/e_mod_places.c:811 +#: src/e_mod_config.c:190 src/e_mod_places.c:844 msgid "Temp" -msgstr "Provizora" +msgstr "Dumtempaj" #: src/e_mod_config.c:193 msgid "Favorites" @@ -82,48 +81,48 @@ msgstr "Preferitaj" msgid "Files" msgstr "Dosieroj" -#: src/e_mod_main.c:61 src/e_mod_main.c:298 src/e_mod_places.c:236 -#: src/e_mod_places.c:868 +#: src/e_mod_main.c:61 src/e_mod_main.c:301 src/e_mod_places.c:273 +#: src/e_mod_places.c:901 msgid "Places" msgstr "Ejoj" -#: src/e_mod_main.c:394 +#: src/e_mod_main.c:397 msgid "Places Configuration Updated" -msgstr "La agordoj de Ejoj estas ĝisdatigitaj" +msgstr "Ĝisdatigitaj agordoj de Ejoj" -#: src/e_mod_main.c:434 +#: src/e_mod_main.c:507 msgid "Settings" msgstr "Agordoj" -#: src/e_mod_places.c:599 +#: src/e_mod_places.c:632 msgid "Warning" msgstr "Averto" -#: src/e_mod_places.c:600 +#: src/e_mod_places.c:633 msgid "" "Cannot run the Enlightenment FileManager.Please choose a custom " "file manager inthe gadget configuration." msgstr "" -"La dosiermastrumilo de Enlightenment ne ruleblas.Bonvole elektu " -"propran dosiermastrumilon enla agordoj de akcesoraĵoj." +"Enlightenment dosieradministrilon ne lanĉeblas.Bonvole elekti " +"propran dosieradministrilon en la agordoj de akcesoraĵo." -#: src/e_mod_places.c:622 +#: src/e_mod_places.c:655 msgid "No Name" -msgstr "Sen nomo" +msgstr "Neniu nomo" -#: src/e_mod_places.c:629 +#: src/e_mod_places.c:662 msgid "free of" -msgstr "libera je" +msgstr "libera de" -#: src/e_mod_places.c:635 +#: src/e_mod_places.c:668 #, c-format msgid "%s Not Mounted" -msgstr "%s ne surmetita"
[E-devel] Elm window resize
Hi guys, After opening this task about indow sizes in elm not respecting the scale set: https://phab.enlightenment.org/T1263 I realised that these are all set through evas_object_resize which clearly cannot know about elm scaling. Would there be any objection to creating an elm_win_resize or elm_win_size_set method that were to apply the scaling to the values beffore passing back to evas resize? Let me know equally if I've missed something but the elm_test code is all this way too. Cheers, Andy -- "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE Instantly run your Selenium tests across 300+ browser/OS combos. Get unparalleled scalability from the best Selenium testing platform available Simple to use. Nothing to install. Get started now for free." http://p.sf.net/sfu/SauceLabs ___ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
[EGIT] [core/elementary] master 01/01: elm_cnp: Fix build for windows (ecore_x)
jpeg pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=60c0a8d9c9e82445c319cee5e775eaeba151befe commit 60c0a8d9c9e82445c319cee5e775eaeba151befe Author: Jean-Philippe Andre Date: Tue May 20 11:32:19 2014 +0900 elm_cnp: Fix build for windows (ecore_x) --- src/lib/elm_cnp.c | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/lib/elm_cnp.c b/src/lib/elm_cnp.c index 2d5f4b9..7c02611 100644 --- a/src/lib/elm_cnp.c +++ b/src/lib/elm_cnp.c @@ -181,15 +181,19 @@ static Eina_List *cont_drag_tg = NULL; /* List of Item_Container_Drag_Info */ static void _cont_obj_mouse_up( void *data, Evas *e, Evas_Object *obj, void *event_info); static void _cont_obj_mouse_move( void *data, Evas *e, Evas_Object *obj, void *event_info); static void _all_drop_targets_cbs_del(void *data, Evas *e, Evas_Object *obj, void *info); +#ifdef HAVE_ELEMENTARY_X static Ecore_X_Window _x11_elm_widget_xwin_get(const Evas_Object *obj); +#endif static Eina_Bool _drag_cancel_animate(void *data EINA_UNUSED, double pos) { /* Animation to "move back" drag-window */ if (pos >= 0.99) { +#ifdef HAVE_ELEMENTARY_X Ecore_X_Window xdragwin = _x11_elm_widget_xwin_get(data); ecore_x_window_ignore_set(xdragwin, 0); +#endif evas_object_del(data); return ECORE_CALLBACK_CANCEL; } @@ -304,8 +308,6 @@ static Eina_Bool _x11_dnd_leave(void *data EINA_UNUSED, int static Eina_Bool _x11_drag_mouse_up(void *data, int etype EINA_UNUSED, void *event); static void _x11_drag_move(void *data EINA_UNUSED, Ecore_X_Xdnd_Position *pos); -static Ecore_X_Window _x11_elm_widget_xwin_get (const Evas_Object *obj); - static Eina_Bool _x11_elm_cnp_init (void); static Eina_Bool _x11_elm_cnp_selection_set (Ecore_X_Window xwin, Evas_Object *obj, Elm_Sel_Type selection, Elm_Sel_Format format, const void *selbuf, size_t buflen); static void _x11_elm_cnp_selection_loss_callback_set(Evas_Object *obj EINA_UNUSED, Elm_Sel_Type selection, Elm_Selection_Loss_Cb func, const void *data); --
Re: [E-devel] Elm window resize
If you set the window resize object correctly it should work IMO. If you want to scale the window size manually according to the elementary scale factor, you need to call evas_object_resize(obj, elm_config_scale_get() * 100, elm_config_scale_get() * 50); By the way, is there any testable samples? Thanks. Daniel Juyung Seo (SeoZ) On Tue, May 20, 2014 at 7:40 AM, Andrew Williams wrote: > Hi guys, > > After opening this task about indow sizes in elm not respecting the > scale set: > https://phab.enlightenment.org/T1263 > I realised that these are all set through evas_object_resize which > clearly cannot know about elm scaling. > > Would there be any objection to creating an elm_win_resize or > elm_win_size_set method that were to apply the scaling to the values > beffore passing back to evas resize? > > Let me know equally if I've missed something but the elm_test code is > all this way too. > > Cheers, > Andy > > > -- > "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE > Instantly run your Selenium tests across 300+ browser/OS combos. > Get unparalleled scalability from the best Selenium testing platform > available > Simple to use. Nothing to install. Get started now for free." > http://p.sf.net/sfu/SauceLabs > ___ > enlightenment-devel mailing list > enlightenment-devel@lists.sourceforge.net > https://lists.sourceforge.net/lists/listinfo/enlightenment-devel > -- "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE Instantly run your Selenium tests across 300+ browser/OS combos. Get unparalleled scalability from the best Selenium testing platform available Simple to use. Nothing to install. Get started now for free." http://p.sf.net/sfu/SauceLabs ___ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel
[EGIT] [core/efl] master 01/01: autotools: Fix Makefile_Ecore_Audio_Cxx.am.
raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=3e5408cfb0993d582f5d32e37b45fe665b80ae3d commit 3e5408cfb0993d582f5d32e37b45fe665b80ae3d Author: Savio Sena Date: Tue May 20 12:19:25 2014 +0900 autotools: Fix Makefile_Ecore_Audio_Cxx.am. Summary: This patch fixes T1246. Reviewers: cedric, smohanty, stefan_schmidt, raster Reviewed By: raster CC: felipealmeida, cedric Maniphest Tasks: T1246 Differential Revision: https://phab.enlightenment.org/D873 --- src/Makefile_Ecore_Audio_Cxx.am | 37 + 1 file changed, 21 insertions(+), 16 deletions(-) diff --git a/src/Makefile_Ecore_Audio_Cxx.am b/src/Makefile_Ecore_Audio_Cxx.am index 94ebc43..a5b408d 100644 --- a/src/Makefile_Ecore_Audio_Cxx.am +++ b/src/Makefile_Ecore_Audio_Cxx.am @@ -3,8 +3,7 @@ if HAVE_CXX11 ### Generated headers -generated_ecore_audio_cxx_bindings = -#\ +generated_ecore_audio_cxx_bindings = \ lib/ecore_audio/ecore_audio.eo.hh \ lib/ecore_audio/ecore_audio_in.eo.hh \ lib/ecore_audio/ecore_audio_out.eo.hh \ @@ -13,7 +12,7 @@ lib/ecore_audio/ecore_audio_out_sndfile.eo.hh \ lib/ecore_audio/ecore_audio_out_pulse.eo.hh \ lib/ecore_audio/ecore_audio_in_tone.eo.hh -#BUILT_SOURCES += \ +BUILT_SOURCES += \ lib/ecore_audio/Ecore_Audio.hh \ $(generated_ecore_audio_cxx_bindings) @@ -24,27 +23,33 @@ lib/ecore_audio/Ecore_Audio.hh: @echo -e "#endif\n\n#endif\n" >> $(top_builddir)/src/lib/ecore_audio/Ecore_Audio.hh installed_ecoreaudiocxxmainheadersdir = $(includedir)/ecore-audio-cxx-@VMAJ@ -#dist_installed_ecoreaudiocxxmainheaders_DATA = \ +nodist_installed_ecoreaudiocxxmainheaders_DATA = \ lib/ecore_audio/Ecore_Audio.hh \ $(generated_ecore_audio_cxx_bindings) ### Unit tests -# if EFL_ENABLE_TESTS +if EFL_ENABLE_TESTS -# check_PROGRAMS += tests/ecore_audio_cxx/cxx_compile_test -# TESTS += tests/ecore_audio_cxx/cxx_compile_test +check_PROGRAMS += tests/ecore_audio_cxx/cxx_compile_test +TESTS += tests/ecore_audio_cxx/cxx_compile_test -# tests_ecore_audio_cxx_cxx_compile_test_SOURCES = tests/ecore_audio_cxx/cxx_compile_test.cc -# tests_ecore_audio_cxx_cxx_compile_test_CPPFLAGS = -I$(top_builddir)/src/lib/efl -I$(top_builddir)/src/lib/efl \ -# -DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/ecore_audio_cxx\" \ -# -DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/ecore_audio_cxx\" \ -# @CHECK_CFLAGS@ @ECORE_CFLAGS@ @EINA_CFLAGS@ @EO_CFLAGS@ @ECORE_AUDIO_CFLAGS@ \ -# @ECORE_CXX_CFLAGS@ @EINA_CXX_CFLAGS@ @EO_CXX_CFLAGS@ @ECORE_AUDIO_CXX_CFLAGS@ +tests_ecore_audio_cxx_cxx_compile_test_SOURCES = tests/ecore_audio_cxx/cxx_compile_test.cc +tests_ecore_audio_cxx_cxx_compile_test_CPPFLAGS = \ +-I$(top_builddir)/src/lib/efl \ +-I$(top_srcdir)/src/lib/efl \ +-I$(builddir)/src/lib/efl \ +-I$(srcdir)/src/lib/efl \ +-DTESTS_WD=\"`pwd`\" \ +-DTESTS_SRC_DIR=\"$(top_srcdir)/src/tests/ecore_audio_cxx\" \ +-DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)/src/tests/ecore_audio_cxx\" \ +-DTESTS_BUILD_DIR=\"$(top_builddir)/src/tests/ecore_audio_cxx\" \ +@CHECK_CFLAGS@ @ECORE_CFLAGS@ @EINA_CFLAGS@ @EO_CFLAGS@ @ECORE_AUDIO_CFLAGS@ \ +@ECORE_CXX_CFLAGS@ @EINA_CXX_CFLAGS@ @EO_CXX_CFLAGS@ @ECORE_AUDIO_CXX_CFLAGS@ -# tests_ecore_audio_cxx_cxx_compile_test_LDADD = @CHECK_LIBS@ @USE_ECORE_LIBS@ -# tests_ecore_audio_cxx_cxx_compile_test_DEPENDENCIES = @USE_ECORE_INTERNAL_LIBS@ +tests_ecore_audio_cxx_cxx_compile_test_LDADD = @CHECK_LIBS@ @USE_ECORE_LIBS@ +tests_ecore_audio_cxx_cxx_compile_test_DEPENDENCIES = @USE_ECORE_INTERNAL_LIBS@ -# endif +endif endif --
[EGIT] [tools/enventor] master 01/01: parser - use array instead of list.
hermet pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=2b14f9a6fc069c7d6497af5c0c633304ce412dbf commit 2b14f9a6fc069c7d6497af5c0c633304ce412dbf Author: ChunEon Park Date: Tue May 20 13:28:24 2014 +0900 parser - use array instead of list. Since we know the item count is constant, array is better than list. --- src/bin/ctxpopup.c | 6 ++- src/bin/edc_parser.c | 148 +++ 2 files changed, 81 insertions(+), 73 deletions(-) diff --git a/src/bin/ctxpopup.c b/src/bin/ctxpopup.c index c7df192..7fb0c66 100644 --- a/src/bin/ctxpopup.c +++ b/src/bin/ctxpopup.c @@ -130,9 +130,11 @@ slider_layout_set(Evas_Object *ctxpopup, attr_value *attr, double slider_val, static void constant_candidate_set(Evas_Object *ctxpopup, attr_value *attr, void *data) { - Eina_List *l; Eina_Stringshare *candidate; - EINA_LIST_FOREACH(attr->strs, l, candidate) + Eina_Array_Iterator itr; + unsigned int i; + + EINA_ARRAY_ITER_NEXT(attr->strs, i, candidate, itr) elm_ctxpopup_item_append(ctxpopup, candidate, NULL, ctxpopup_it_cb, data); } diff --git a/src/bin/edc_parser.c b/src/bin/edc_parser.c index 0a60e43..98d6e72 100644 --- a/src/bin/edc_parser.c +++ b/src/bin/edc_parser.c @@ -298,19 +298,19 @@ type_init_thread_blocking(void *data, Ecore_Thread *thread EINA_UNUSED) //FIXME: construct from the configuration file. //Type: Constant - Eina_List *types = NULL; - types = eina_list_append(types, eina_stringshare_add("RECT")); - types = eina_list_append(types, eina_stringshare_add("TEXT")); - types = eina_list_append(types, eina_stringshare_add("IMAGE")); - types = eina_list_append(types, eina_stringshare_add("SWALLOW")); - types = eina_list_append(types, eina_stringshare_add("TEXTBLOCK")); - types = eina_list_append(types, eina_stringshare_add("GRADIENT")); - types = eina_list_append(types, eina_stringshare_add("GROUP")); - types = eina_list_append(types, eina_stringshare_add("BOX")); - types = eina_list_append(types, eina_stringshare_add("TABLE")); - types = eina_list_append(types, eina_stringshare_add("EXTERNAL")); - types = eina_list_append(types, eina_stringshare_add("PROXY")); - types = eina_list_append(types, eina_stringshare_add("SPACER")); + Eina_Array *types = eina_array_new(12); + eina_array_push(types, eina_stringshare_add("RECT")); + eina_array_push(types, eina_stringshare_add("TEXT")); + eina_array_push(types, eina_stringshare_add("IMAGE")); + eina_array_push(types, eina_stringshare_add("SWALLOW")); + eina_array_push(types, eina_stringshare_add("TEXTBLOCK")); + eina_array_push(types, eina_stringshare_add("GRADIENT")); + eina_array_push(types, eina_stringshare_add("GROUP")); + eina_array_push(types, eina_stringshare_add("BOX")); + eina_array_push(types, eina_stringshare_add("TABLE")); + eina_array_push(types, eina_stringshare_add("EXTERNAL")); + eina_array_push(types, eina_stringshare_add("PROXY")); + eina_array_push(types, eina_stringshare_add("SPACER")); attr = calloc(1, sizeof(parser_attr)); attr->keyword = eina_stringshare_add("type:"); @@ -318,11 +318,11 @@ type_init_thread_blocking(void *data, Ecore_Thread *thread EINA_UNUSED) attr->value.type = ATTR_VALUE_CONSTANT; td->attrs = eina_inlist_append(td->attrs, (Eina_Inlist *) attr); - Eina_List *comps = NULL; - comps = eina_list_append(comps, eina_stringshare_add("RAW")); - comps = eina_list_append(comps, eina_stringshare_add("USER")); - comps = eina_list_append(comps, eina_stringshare_add("COMP")); - comps = eina_list_append(comps, eina_stringshare_add("LOSSY")); + Eina_Array *comps = eina_array_new(4); + eina_array_push(comps, eina_stringshare_add("RAW")); + eina_array_push(comps, eina_stringshare_add("USER")); + eina_array_push(comps, eina_stringshare_add("COMP")); + eina_array_push(comps, eina_stringshare_add("LOSSY")); attr = calloc(1, sizeof(parser_attr)); attr->keyword = eina_stringshare_add("image:"); @@ -330,17 +330,17 @@ type_init_thread_blocking(void *data, Ecore_Thread *thread EINA_UNUSED) attr->value.type = ATTR_VALUE_CONSTANT; td->attrs = eina_inlist_append(td->attrs, (Eina_Inlist *) attr); - Eina_List *trans = NULL; - trans = eina_list_append(trans, eina_stringshare_add("LINEAR")); - trans = eina_list_append(trans, eina_stringshare_add("ACCELERATE")); - trans = eina_list_append(trans, eina_stringshare_add("DECELERATE")); - trans = eina_list_append(trans, eina_stringshare_add("SINUSOIDAL")); - trans = eina_list_append(trans, eina_stringshare_add("ACCELERATE_FACTOR")); - trans = eina_list_append(trans, eina_stringshare_add("DECELERATE_FACTOR")); - trans = eina_list_append(trans, eina_stringshare_add("SINUSOIDAL_FACTOR")); - trans = eina_list_append(trans, eina_stringshare_add("DIVISOR_INTERP")); - trans = eina_list_append(trans, eina_stringshare_add("BOUNCE")); - trans = eina_list_appen
[EGIT] [core/efl] master 01/01: update po's
raster pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=c17ba23891dbf52c2925f984ba7a1d3424cfa0bc commit c17ba23891dbf52c2925f984ba7a1d3424cfa0bc Author: Carsten Haitzler (Rasterman) Date: Tue May 20 13:56:54 2014 +0900 update po's --- po/ca.po| 2 +- po/cs.po| 2 +- po/de.po| 2 +- po/el.po| 2 +- po/eo.po| 80 +- po/es.po| 2 +- po/fr.po| 84 ++--- po/gl.po| 2 +- po/hu.po| 2 +- po/it.po| 2 +- po/ja.po| 2 +- po/ko.po| 2 +- po/lt.po| 2 +- po/nl.po| 2 +- po/pl.po| 2 +- po/pt.po| 2 +- po/ru.po| 2 +- po/sl.po| 2 +- po/sr.po| 2 +- po/zh_CN.po | 2 +- 20 files changed, 100 insertions(+), 100 deletions(-) diff --git a/po/ca.po b/po/ca.po index 97aec7a..8bf2d2d 100644 --- a/po/ca.po +++ b/po/ca.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Efl\n" "Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2014-05-14 14:29+0900\n" +"POT-Creation-Date: 2014-05-20 12:20+0900\n" "PO-Revision-Date: 2013-02-01 09:52+0100\n" "Last-Translator: Joan Coll \n" "Language-Team: Catalan\n" diff --git a/po/cs.po b/po/cs.po index ba540a7..0fc4e00 100644 --- a/po/cs.po +++ b/po/cs.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Efl\n" "Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2014-05-14 14:29+0900\n" +"POT-Creation-Date: 2014-05-20 12:20+0900\n" "PO-Revision-Date: 2012-12-13 12:06+0100\n" "Last-Translator: Tomáš Čech \n" "Language-Team: Czech \n" diff --git a/po/de.po b/po/de.po index 7bd9e2d..406cca1 100644 --- a/po/de.po +++ b/po/de.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Efl\n" "Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2014-05-14 14:29+0900\n" +"POT-Creation-Date: 2014-05-20 12:20+0900\n" "PO-Revision-Date: 2012-06-24 17:10+0900\n" "Last-Translator: Jerome Pinot \n" "Language-Team: Enlightenment Team\n" diff --git a/po/el.po b/po/el.po index 0d9210b..6cb89eb 100644 --- a/po/el.po +++ b/po/el.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Efl\n" "Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2014-05-14 14:29+0900\n" +"POT-Creation-Date: 2014-05-20 12:20+0900\n" "PO-Revision-Date: 2012-12-01 18:26+0200\n" "Last-Translator: Efstathios Iosifidis \n" "Language-Team: Ελληνικά, Σύγχρονα \n" diff --git a/po/eo.po b/po/eo.po index 22f80a7..ab083f7 100644 --- a/po/eo.po +++ b/po/eo.po @@ -6,17 +6,17 @@ msgid "" msgstr "" "Project-Id-Version: enlightenment\n" -"Report-Msgid-Bugs-To: $MSGID_BUGS_ADDRESS\n" -"POT-Creation-Date: 2014-01-21 11:50+0100\n" +"Report-Msgid-Bugs-To: enlightenment-devel@lists.sourceforge.net\n" +"POT-Creation-Date: 2014-05-20 12:20+0900\n" "PO-Revision-Date: 2014-02-13 06:52+\n" "Last-Translator: Eliovir \n" "Language-Team: Esperanto \n" +"Language: eo\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2014-02-14 06:59+\n" "X-Generator: Launchpad (build 16916)\n" -"Language: eo\n" #: src/lib/ecore/ecore_getopt.c:93 msgid "Version:" @@ -51,157 +51,157 @@ msgstr "Apriore: " msgid "Choices: " msgstr "Elektoj: " -#: src/lib/ecore/ecore_getopt.c:647 src/lib/ecore/ecore_getopt.c:648 +#: src/lib/ecore/ecore_getopt.c:648 src/lib/ecore/ecore_getopt.c:649 msgid "No categories available." msgstr "Neniu kategorio disponebla" -#: src/lib/ecore/ecore_getopt.c:652 +#: src/lib/ecore/ecore_getopt.c:653 msgid "Categories: " msgstr "Kategorioj: " -#: src/lib/ecore/ecore_getopt.c:774 +#: src/lib/ecore/ecore_getopt.c:775 msgid "Options:\n" msgstr "Opcioj:\n" -#: src/lib/ecore/ecore_getopt.c:783 +#: src/lib/ecore/ecore_getopt.c:784 msgid "Positional arguments:\n" msgstr "Poziciaj argumentoj:\n" -#: src/lib/ecore/ecore_getopt.c:869 +#: src/lib/ecore/ecore_getopt.c:870 #, c-format msgid "ERROR: unknown category '%s'.\n" msgstr "ERARO: nekonata kategorio \"%s\".\n" -#: src/lib/ecore/ecore_getopt.c:973 +#: src/lib/ecore/ecore_getopt.c:974 #, c-format msgid "ERROR: unknown option --%s.\n" msgstr "ERARO: nekonata opcio --%s.\n" -#: src/lib/ecore/ecore_getopt.c:975 +#: src/lib/ecore/ecore_getopt.c:976 #, c-format msgid "ERROR: unknown option -%c.\n" msgstr "ERARO: nekonata opcio -%c.\n" -#: src/lib/ecore/ecore_getopt.c:1038 +#: src/lib/ecore/ecore_getopt.c:1039 msgid "ERROR: " msgstr "ERARO: " -#: src/lib/ecore/ecore_getopt.c:1131 src/lib/ecore/ecore_getopt.c:1268 -#: src/lib/ecore/ecore_getopt.c:1284 src/lib/ecore/ecore_getopt.c:1299 -#: src/lib/ecore/ecore_getopt.c:1316 src/lib/ecore/ecore_getopt.c:1363 -#: src/lib/ecore/ecore_getopt.c:1483 src/lib/ecore/ecore_getopt.c:1524 +#: src/lib/ecore/ecore_
[EGIT] [core/efl] master 01/02: Win32: Fix ecore_evas engine search path
jpeg pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=83320ae105a9ff0aad02e67cfb755e45b80e777b commit 83320ae105a9ff0aad02e67cfb755e45b80e777b Author: Jean-Philippe Andre Date: Fri May 16 16:32:59 2014 +0900 Win32: Fix ecore_evas engine search path Engines are stored in a lib/ folder, while the main DLL files are in the bin/ folder, so the engine would never be found. A solution was to add the proper checkme file in the share folder, but since this is necessary only for Windows, we can simply use ../lib instead of using the full eina_prefix detector. Thanks vtorri for the review. --- src/Makefile_Ecore_Evas.am | 2 ++ src/lib/ecore_evas/ecore_evas_module.c | 6 -- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/Makefile_Ecore_Evas.am b/src/Makefile_Ecore_Evas.am index 6cd53a6..4689f34 100644 --- a/src/Makefile_Ecore_Evas.am +++ b/src/Makefile_Ecore_Evas.am @@ -26,7 +26,9 @@ lib/ecore_evas/ecore_evas_util.c lib_ecore_evas_libecore_evas_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ -I$(top_srcdir)/src/modules/evas/engines/buffer \ +-DPACKAGE_BIN_DIR=\"$(bindir)\" \ -DPACKAGE_LIB_DIR=\"$(libdir)\" \ +-DPACKAGE_DATA_DIR=\"$(datadir)/ecore_evas\" \ -DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)\" \ @ECORE_EVAS_CFLAGS@ lib_ecore_evas_libecore_evas_la_LIBADD = @ECORE_EVAS_LIBS@ diff --git a/src/lib/ecore_evas/ecore_evas_module.c b/src/lib/ecore_evas/ecore_evas_module.c index 60ceb36..9539bc2 100644 --- a/src/lib/ecore_evas/ecore_evas_module.c +++ b/src/lib/ecore_evas/ecore_evas_module.c @@ -101,9 +101,11 @@ _ecore_evas_engine_init(void) /* 1. libecore_evas.so/../ecore_evas/engines/ */ paths[0] = eina_module_symbol_path_get(_ecore_evas_engine_init, "/ecore_evas/engines"); - /* 2. PREFIX/ecore_evas/engines/ */ -#ifndef _MSC_VER +#ifndef _WIN32 + /* 3. PREFIX/ecore_evas/engines/ */ paths[1] = strdup(PACKAGE_LIB_DIR "/ecore_evas/engines"); +#else + paths[1] = eina_module_symbol_path_get(_ecore_evas_engine_init, "/../lib/ecore_evas/engines"); #endif for (j = 0; j < ((sizeof (paths) / sizeof (char*)) - 1); ++j) --
[EGIT] [core/efl] master 02/02: Win32: Add configuration to cross-compile
jpeg pushed a commit to branch master. http://git.enlightenment.org/core/efl.git/commit/?id=42e049fe865fce9a003f00ace172cdedb3f20bef commit 42e049fe865fce9a003f00ace172cdedb3f20bef Author: Shinwoo Kim Date: Fri May 16 11:26:53 2014 +0900 Win32: Add configuration to cross-compile Signed-off-by: Jean-Philippe Andre --- configure.ac | 1 + src/Makefile_Ecore.am | 2 +- src/Makefile_Ecore_Con.am | 2 +- src/Makefile_Ecore_Ipc.am | 2 +- src/Makefile_Eet.am | 2 +- src/Makefile_Efreet.am| 6 +++--- 6 files changed, 8 insertions(+), 7 deletions(-) diff --git a/configure.ac b/configure.ac index bea0922..1c915f2 100644 --- a/configure.ac +++ b/configure.ac @@ -1077,6 +1077,7 @@ AM_CONDITIONAL([EO_BUILD_EXAMPLE_EVAS], [test "x${have_elm}" = "xyes"]) ### Checks for linker characteristics ### Checks for library functions +EFL_CHECK_FUNCS([EO], [dladdr]) ### Check availability diff --git a/src/Makefile_Ecore.am b/src/Makefile_Ecore.am index d861e5f..9860844 100644 --- a/src/Makefile_Ecore.am +++ b/src/Makefile_Ecore.am @@ -109,7 +109,7 @@ lib_ecore_libecore_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ -DPACKAGE_DATA_DIR=\"$(datadir)/ecore\" \ -DPACKAGE_BUILD_DIR=\"`pwd`/$(top_builddir)\" \ @ECORE_CFLAGS@ -lib_ecore_libecore_la_LIBADD = @ECORE_LIBS@ +lib_ecore_libecore_la_LIBADD = @ECORE_LIBS@ @EVIL_LIBS@ lib_ecore_libecore_la_DEPENDENCIES = @ECORE_INTERNAL_LIBS@ lib_ecore_libecore_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ diff --git a/src/Makefile_Ecore_Con.am b/src/Makefile_Ecore_Con.am index 06ea520..9a5c2e8 100644 --- a/src/Makefile_Ecore_Con.am +++ b/src/Makefile_Ecore_Con.am @@ -34,6 +34,6 @@ endif endif lib_ecore_con_libecore_con_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl @ECORE_CON_CFLAGS@ -lib_ecore_con_libecore_con_la_LIBADD = @ECORE_CON_LIBS@ +lib_ecore_con_libecore_con_la_LIBADD = @ECORE_CON_LIBS@ @EVIL_LIBS@ lib_ecore_con_libecore_con_la_DEPENDENCIES = @ECORE_CON_INTERNAL_LIBS@ lib_ecore_con_libecore_con_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ diff --git a/src/Makefile_Ecore_Ipc.am b/src/Makefile_Ecore_Ipc.am index 1d41e05..4740b76 100644 --- a/src/Makefile_Ecore_Ipc.am +++ b/src/Makefile_Ecore_Ipc.am @@ -12,6 +12,6 @@ lib/ecore_ipc/ecore_ipc.c \ lib/ecore_ipc/ecore_ipc_private.h lib_ecore_ipc_libecore_ipc_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl @ECORE_IPC_CFLAGS@ -lib_ecore_ipc_libecore_ipc_la_LIBADD = @ECORE_IPC_LIBS@ +lib_ecore_ipc_libecore_ipc_la_LIBADD = @ECORE_IPC_LIBS@ @EVIL_LIBS@ lib_ecore_ipc_libecore_ipc_la_DEPENDENCIES = @ECORE_IPC_INTERNAL_LIBS@ lib_ecore_ipc_libecore_ipc_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ diff --git a/src/Makefile_Eet.am b/src/Makefile_Eet.am index a6055f1..c5da421 100644 --- a/src/Makefile_Eet.am +++ b/src/Makefile_Eet.am @@ -31,7 +31,7 @@ lib_eet_libeet_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl \ -DPACKAGE_LIB_DIR=\"$(libdir)\" \ -DPACKAGE_DATA_DIR=\"$(datadir)/eet\" \ @EET_CFLAGS@ -lib_eet_libeet_la_LIBADD = @EET_LIBS@ +lib_eet_libeet_la_LIBADD = @EET_LIBS@ @EVIL_LIBS@ lib_eet_libeet_la_DEPENDENCIES = @EET_INTERNAL_LIBS@ lib_eet_libeet_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ diff --git a/src/Makefile_Efreet.am b/src/Makefile_Efreet.am index 3225316..6bd62f3 100644 --- a/src/Makefile_Efreet.am +++ b/src/Makefile_Efreet.am @@ -46,21 +46,21 @@ lib/efreet/efreet_xml.h \ lib/efreet/efreet_cache_private.h lib_efreet_libefreet_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl $(EFREET_COMMON_CPPFLAGS) -lib_efreet_libefreet_la_LIBADD = @EFREET_LIBS@ +lib_efreet_libefreet_la_LIBADD = @EFREET_LIBS@ @EVIL_LIBS@ lib_efreet_libefreet_la_DEPENDENCIES = @EFREET_INTERNAL_LIBS@ lib_efreet_libefreet_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ # libefreet_mime.la lib_efreet_libefreet_mime_la_SOURCES = lib/efreet/efreet_mime.c lib_efreet_libefreet_mime_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl $(EFREET_COMMON_CPPFLAGS) -lib_efreet_libefreet_mime_la_LIBADD = @USE_EFREET_LIBS@ +lib_efreet_libefreet_mime_la_LIBADD = @USE_EFREET_LIBS@ @EVIL_LIBS@ lib_efreet_libefreet_mime_la_DEPENDENCIES = @USE_EFREET_INTERNAL_LIBS@ lib_efreet_libefreet_mime_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ # libefreet_trash.la lib_efreet_libefreet_trash_la_SOURCES = lib/efreet/efreet_trash.c lib_efreet_libefreet_trash_la_CPPFLAGS = -I$(top_builddir)/src/lib/efl $(EFREET_COMMON_CPPFLAGS) -lib_efreet_libefreet_trash_la_LIBADD = @USE_EFREET_LIBS@ +lib_efreet_libefreet_trash_la_LIBADD = @USE_EFREET_LIBS@ @EVIL_LIBS@ lib_efreet_libefreet_trash_la_DEPENDENCIES = @USE_EFREET_INTERNAL_LIBS@ lib_efreet_libefreet_trash_la_LDFLAGS = @EFL_LTLIBRARY_FLAGS@ --
[EGIT] [core/elementary] master 01/01: fix 0 size focus region
raster pushed a commit to branch master. http://git.enlightenment.org/core/elementary.git/commit/?id=bd383df05e2128c79be3ca2494cff6ac304d8892 commit bd383df05e2128c79be3ca2494cff6ac304d8892 Author: Carsten Haitzler (Rasterman) Date: Tue May 20 15:34:01 2014 +0900 fix 0 size focus region @fix - this fixes T1205 ... or should fix it... in theory. --- src/lib/elm_widget.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib/elm_widget.c b/src/lib/elm_widget.c index f4225a0..ce2b920 100644 --- a/src/lib/elm_widget.c +++ b/src/lib/elm_widget.c @@ -2899,6 +2899,7 @@ _elm_widget_focus_region_get(Eo *obj, Elm_Widget_Smart_Data *_pd EINA_UNUSED, Ev if (x) *x = 0; if (y) *y = 0; } + if ((*w <= 0) || (*h <= 0)) return EINA_FALSE; return EINA_TRUE; } --
Re: [E-devel] Elm window resize
On Mon, 19 May 2014 23:40:13 +0100 Andrew Williams said: > Hi guys, > > After opening this task about indow sizes in elm not respecting the > scale set: > https://phab.enlightenment.org/T1263 > I realised that these are all set through evas_object_resize which > clearly cannot know about elm scaling. > > Would there be any objection to creating an elm_win_resize or > elm_win_size_set method that were to apply the scaling to the values > beffore passing back to evas resize? > > Let me know equally if I've missed something but the elm_test code is > all this way too. not so simple. as daniel mentioned.. this is doable with a resize multipling by scale... what we are currently missign in elm is 2 things. 1. a nice simple way to add extra minimum sizing to a widget. currently the ADVICE it so make a table, put an invisible rect in the 0,0 1x1 cell ANd your real widget in the same cell. set a min size hint on the rect and presto - it acts as an extra "control" on the table and thus your widget (set widget to fill/expand). you can set the min size and multiple by scaling if you want. it'd be likely useful if this trick were formalised into a widget and/or some utility func. a simple elc_ thing to wrap this up would work - then if it scales the min size by scale factor or also put in finger size. and 2. more your focus - though #1 often is related. you want a *PREFERRED* size for an object - an initial size that is possibly bigger than min size and less than max - somewhere in between. believe it or not we have a "request" size which is kind of intended for exactly this. what we DON'T have is logic in elm that... * watches for changes in preferred size and if > 0x0, just like min size, propagates preferred size to a parent widget. * that takes preferred size once it propagates to the window and on first show actually resizes to that size * code that might set preferred size AND account for scaling reality is that you have a window where some widget (or widgets) - eg the text entry, is what you want to have at a preferred size on start... not the window as a whole, so you really want this propagation. it requires the same calcs as min - but providing preferred size as if it were min, then passing onto parent etc. ... this is what we really want. problem is - we haven't done it yet. this is the solution we want... not elm_win_reisze (that uses scaling) which is just as much a "workaround" as evas_object_resize on the window itself :) -- - Codito, ergo sum - "I code, therefore I am" -- The Rasterman (Carsten Haitzler)ras...@rasterman.com -- "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE Instantly run your Selenium tests across 300+ browser/OS combos. Get unparalleled scalability from the best Selenium testing platform available Simple to use. Nothing to install. Get started now for free." http://p.sf.net/sfu/SauceLabs ___ enlightenment-devel mailing list enlightenment-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/enlightenment-devel