E CVS: calendar morlenxus

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : morlenxus
Project : e_modules
Module  : calendar

Dir : e_modules/calendar


Modified Files:
e_mod_main.h 


Log Message:
Removed useless variable.

===
RCS file: /cvs/e/e_modules/calendar/e_mod_main.h,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- e_mod_main.h8 Dec 2007 15:29:17 -   1.7
+++ e_mod_main.h30 Dec 2007 13:17:30 -  1.8
@@ -9,7 +9,6 @@
 struct _Config 
 {
E_Module*module;
-   E_Config_Dialog *config_dialog;
E_Menu  *menu, *menu_firstweekday;
Ecore_Timer *timer;
Evas_List   *instances;



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/elitaire pfritz

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : pfritz
Project : e17
Module  : apps/elitaire

Dir : e17/apps/elitaire/src


Modified Files:
rules.cpp 


Log Message:
improve the hint quality

===
RCS file: /cvs/e/e17/apps/elitaire/src/rules.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- rules.cpp   9 Aug 2007 21:45:49 -   1.2
+++ rules.cpp   30 Dec 2007 15:17:16 -  1.3
@@ -240,7 +240,7 @@
 
 while (it != it_end) {
 for (size_t to = 0; to  stacks.size(); to++) {
-if (from != to  moveable(*it, to)) {
+if (from != to  moveableCard(*it)  moveable(*it, to)) {
 hints-push_back(*it);
 break;
 }



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_entry_dialog.c 


Log Message:
Give the entry widget focus when showing the entry dialog.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_entry_dialog.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -3 -r1.11 -r1.12
--- e_entry_dialog.c25 Dec 2007 18:15:26 -  1.11
+++ e_entry_dialog.c30 Dec 2007 15:26:33 -  1.12
@@ -60,6 +60,7 @@

e_win_centered_set(dia-win, 1);
e_dialog_show(dia);
+   e_widget_focus_set(ed-entry, 1);
return ed;
 }
 



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_window_display


Modified Files:
e_int_config_window_display.c 


Log Message:
Remove whitespace.
Remove extra list widget, not needed.

===
RCS file: 
/cvs/e/e17/apps/e/src/modules/conf_window_display/e_int_config_window_display.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- e_int_config_window_display.c   13 Oct 2007 12:14:51 -  1.2
+++ e_int_config_window_display.c   30 Dec 2007 18:33:34 -  1.3
@@ -19,7 +19,7 @@
int animate_shading;
int window_placement_policy;
int desk_auto_switch;
-   
+
/*- ADVANCED -*/
int move_info_visible;
int move_info_follows;
@@ -38,10 +38,10 @@
 {
E_Config_Dialog *cfd;
E_Config_Dialog_View *v;
-   
+
if (e_config_dialog_find(E, _config_window_display_dialog)) return NULL;
v = E_NEW(E_Config_Dialog_View, 1);
-   
+
/* methods */
v-create_cfdata   = _create_data;
v-free_cfdata = _free_data;
@@ -85,7 +85,7 @@
 * the running systems/config in the apply methods
 */
E_Config_Dialog_Data *cfdata;
-   
+
cfdata = E_NEW(E_Config_Dialog_Data, 1);
_fill_data(cfdata);
return cfdata;
@@ -150,14 +150,14 @@
/* generate the core widget layout for a basic dialog */
Evas_Object *o, *of, *ob;
E_Radio_Group *rg;
-   
+
if (cfdata-move_info_visible  cfdata-resize_info_visible)
  cfdata-move_resize_info = 1;
else
  cfdata-move_resize_info = 0;
-   
+
o = e_widget_list_add(evas, 0, 0);
-   
+
of = e_widget_framelist_add(evas, _(Display), 0);
ob = e_widget_check_add(evas, _(Show window geometry information when 
moving or resizing), (cfdata-move_resize_info));
e_widget_framelist_object_append(of, ob);
@@ -178,7 +178,7 @@
ob = e_widget_check_add(evas, _(Automatically switch to desktop of new 
window), (cfdata-desk_auto_switch));
e_widget_framelist_object_append(of, ob);
e_widget_list_object_append(o, of, 1, 1, 0.5);
-   
+
return o;
 }
 
@@ -186,12 +186,11 @@
 _advanced_create_widgets(E_Config_Dialog *cfd, Evas *evas, 
E_Config_Dialog_Data *cfdata)
 {
/* generate the core widget layout for an advanced dialog */
-   Evas_Object *o, *ob, *of, *ot;
+   Evas_Object *ob, *of, *ot;
E_Radio_Group *rg;
 
-   o = e_widget_list_add(evas, 0, 0);
ot = e_widget_table_add(evas, 0);
-   
+
of = e_widget_framelist_add(evas, _(Window Move Geometry), 0);
e_widget_framelist_content_align_set(of, 0.0, 0.0);
ob = e_widget_check_add(evas, _(Display information), 
(cfdata-move_info_visible));
@@ -199,7 +198,7 @@
ob = e_widget_check_add(evas, _(Follow the window as it moves), 
(cfdata-move_info_follows));
e_widget_framelist_object_append(of, ob);
e_widget_table_object_append(ot, of, 0, 0, 1, 1, 1, 1, 1, 1);
-   
+
of = e_widget_framelist_add(evas, _(Window Resize Geometry), 0);
e_widget_framelist_content_align_set(of, 0.0, 0.0);
ob = e_widget_check_add(evas, _(Display information), 
(cfdata-resize_info_visible));
@@ -224,7 +223,7 @@
ob = e_widget_radio_add(evas, _(Decelerate), E_TRANSITION_DECELERATE, rg);
e_widget_framelist_object_append(of, ob);
e_widget_table_object_append(ot, of, 1, 1, 1, 1, 1, 1, 1, 1);
-   
+
of = e_widget_framelist_add(evas, _(Automatic New Window Placement), 0);
e_widget_framelist_content_align_set(of, 0.0, 0.0);
rg = e_widget_radio_group_new((cfdata-window_placement_policy));
@@ -239,7 +238,7 @@
ob = e_widget_check_add(evas, _(Automatically switch to desktop of new 
window), (cfdata-desk_auto_switch));
e_widget_framelist_object_append(of, ob);
e_widget_table_object_append(ot, of, 0, 1, 1, 1, 1, 1, 1, 1);
-   
+
of = e_widget_framelist_add(evas, _(Window Border), 0);
e_widget_framelist_content_align_set(of, 0.0, 0.0);
rg = e_widget_radio_group_new((cfdata-use_app_icon));
@@ -254,8 +253,6 @@
ob = e_widget_check_add(evas, _(Always remember internal windows), 
(cfdata-remember_internal_windows));
e_widget_framelist_object_append(of, ob);
e_widget_table_object_append(ot, of, 1, 2, 1, 1, 1, 1, 1, 1);
-   
-   e_widget_list_object_append(o, ot, 1, 1, 0.5);
-   
-   return o;
+
+   return ot;
 }



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_exebuf


Modified Files:
e_int_config_exebuf.c 


Log Message:
Fix some formatting issues.
Move the terminal command entry widget to be closer to the label.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_exebuf/e_int_config_exebuf.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- e_int_config_exebuf.c   7 Oct 2007 21:22:40 -   1.3
+++ e_int_config_exebuf.c   30 Dec 2007 18:48:29 -  1.4
@@ -24,7 +24,7 @@
int pos_min_h;
int pos_max_w;
int pos_max_h;
-   char * term_cmd;
+   char *term_cmd;
 };
 
 EAPI E_Config_Dialog *
@@ -69,7 +69,6 @@
cfdata-pos_max_h = e_config-exebuf_pos_max_h;
if (e_config-exebuf_term_cmd)
  cfdata-term_cmd = strdup(e_config-exebuf_term_cmd);
-
 }
 
 static void *
@@ -183,11 +182,13 @@
e_widget_framelist_object_append(of, ob);   
e_widget_table_object_append(ot, of, 0, 1, 1, 1, 1, 1, 1, 1);
 
-   of = e_widget_framelist_add(evas, _(Terminal Settings), 0);  
+   of = e_widget_frametable_add(evas, _(Terminal Settings), 0);  
ob = e_widget_label_add(evas, _(Terminal Command (CTRL+RETURN to 
utilize)));
-   e_widget_framelist_object_append(of, ob);
+   e_widget_frametable_object_append(of, ob, 0, 0, 1, 1, 1, 0, 1, 0);
+//   e_widget_framelist_object_append(of, ob);
ob = e_widget_entry_add(evas, (cfdata-term_cmd), NULL, NULL, NULL);
-   e_widget_framelist_object_append(of, ob);
+   e_widget_frametable_object_append(of, ob, 0, 1, 1, 1, 1, 0, 1, 0);
+//   e_widget_framelist_object_append(of, ob);
e_widget_table_object_append(ot, of, 0, 2, 1, 1, 1, 1, 1, 1);
 
of = e_widget_frametable_add(evas, _(Size Settings), 0);



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_int_config_modules.c 


Log Message:
Move description area to be below both loaded  unloaded because
descriptions can be shown for either.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_config_modules.c,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -3 -r1.80 -r1.81
--- e_int_config_modules.c  4 Nov 2007 20:59:04 -   1.80
+++ e_int_config_modules.c  30 Dec 2007 19:01:33 -  1.81
@@ -162,7 +162,7 @@
 {
Evas_Object *o, *of, *ol;
 
-   o = e_widget_list_add(evas, 0, 1);
+   o = e_widget_table_add(evas, 0);
 
of = e_widget_frametable_add(evas, _(Available Modules), 0);
ol = e_widget_ilist_add(evas, 24, 24, NULL);
@@ -171,17 +171,14 @@
e_widget_on_change_hook_set(ol, _avail_list_cb_change, cfdata);
_fill_list(ol, 0);
e_widget_frametable_object_append(of, ol, 0, 0, 1, 1, 1, 1, 1, 1);
-   ol = e_widget_textblock_add(evas);
-   e_widget_min_size_set(ol, 200, 70);
-   cfdata-o_desc = ol;
-   e_widget_textblock_markup_set(ol, _(Description: Unavailable));
-   e_widget_frametable_object_append(of, ol, 0, 1, 1, 1, 1, 1, 1, 0);
ol = e_widget_button_add(evas, _(Load Module), NULL, 
_btn_cb_load, cfdata, NULL);
cfdata-b_load = ol;
e_widget_disabled_set(ol, 1);
-   e_widget_frametable_object_append(of, ol, 0, 2, 1, 1, 1, 1, 1, 0);
-   e_widget_list_object_append(o, of, 1, 1, 0.5);
+   e_widget_frametable_object_append(of, ol, 0, 1, 1, 1, 1, 1, 1, 0);
+   e_widget_table_object_append(o, of, 0, 0, 1, 1, 1, 1, 1, 1);
+
+//   e_widget_list_object_append(o, of, 1, 1, 0.5);
 
of = e_widget_frametable_add(evas, _(Loaded Modules), 0);
ol = e_widget_ilist_add(evas, 24, 24, NULL);
@@ -195,7 +192,18 @@
cfdata-b_unload = ol;
e_widget_disabled_set(ol, 1);
e_widget_frametable_object_append(of, ol, 0, 1, 1, 1, 1, 1, 1, 0);
-   e_widget_list_object_append(o, of, 1, 1, 0.5);
+   e_widget_table_object_append(o, of, 1, 0, 1, 1, 1, 1, 1, 1);
+
+//   e_widget_list_object_append(o, of, 1, 1, 0.5);
+
+   ol = e_widget_textblock_add(evas);
+   e_widget_min_size_set(ol, 200, 70);
+   cfdata-o_desc = ol;
+   e_widget_textblock_markup_set(ol, _(Description: Unavailable));
+//   e_widget_frametable_object_append(of, ol, 0, 1, 1, 1, 1, 1, 1, 0);
+   e_widget_table_object_append(o, ol, 0, 1, 2, 1, 1, 0, 1, 0);
+
+//   e_widget_list_object_append(o, of, 1, 1, 0.5);
 
return o;
 }
@@ -338,7 +346,7 @@
 
e_widget_ilist_go(obj);
e_widget_min_size_get(obj, w, NULL);
-   e_widget_min_size_set(obj, w, 200);
+   e_widget_min_size_set(obj, w, 250);
e_widget_ilist_thaw(obj);
edje_thaw();
evas_event_thaw(evas);



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/battery


Modified Files:
module.desktop.in 


Log Message:
Fix battery module description to fit width of new description box.
There will be a bunch more of these commits coming.

===
RCS file: /cvs/e/e17/apps/e/src/modules/battery/module.desktop.in,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- module.desktop.in   6 Dec 2007 05:07:28 -   1.7
+++ module.desktop.in   30 Dec 2007 19:04:58 -  1.8
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-battery
-Comment=hilightBattery Gadget/hilightbrA gadget to visualize your 
batterybrstatus.
+Comment=hilightBattery Gadget/hilightbrbrA gadget to visualize your 
battery status.
 Comment[de]=
-Comment[es]=hilightDispositivo batería/hilightbrUn dispositivo para ver 
el estado de subrbatería.
+Comment[es]=hilightDispositivo batería/hilightbrbrUn dispositivo para 
ver el estado de su batería.
 Comment[fr]=
-Comment[it]=hilightModulo Battery/hilightbrUn modulo per visualizzare 
lobrstato della batteria.
+Comment[it]=hilightModulo Battery/hilightbrbrUn modulo per 
visualizzare lo stato della batteria.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl jethomas

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : jethomas
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/lib


Modified Files:
ewl_filepicker.c 


Log Message:
Now when you change the directory the path combo actually updates to show it.

===
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_filepicker.c,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -3 -r1.42 -r1.43
--- ewl_filepicker.c11 Dec 2007 21:38:33 -  1.42
+++ ewl_filepicker.c30 Dec 2007 19:34:40 -  1.43
@@ -718,6 +718,7 @@
ecore_list_prepend(fp-path, strdup(path));
 
ewl_mvc_dirty_set(EWL_MVC(fp-mvc_path.combo), TRUE);
+   ewl_mvc_selected_set(EWL_MVC(fp-mvc_path.combo), NULL, fp-path, 0, 0);
 
DLEAVE_FUNCTION(DLEVEL_STABLE);
 }
@@ -736,9 +737,16 @@
 
fp = data;
idx = ewl_mvc_selected_get(EWL_MVC(w));
-   ecore_list_index_goto(fp-path, idx-row);
 
+   if (idx-row == 0)
+   {
+   free(idx);
+   DRETURN(DLEVEL_STABLE);
+   }
+
+   ecore_list_index_goto(fp-path, idx-row);
ewl_filepicker_directory_set(fp, ecore_list_current(fp-path));
+   free(idx);
 
DLEAVE_FUNCTION(DLEVEL_STABLE);
 }



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_borders


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_borders/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:28 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:51 -  1.6
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_borders
-Comment=hilightE17 Configuration Applet/hilightbrUsed to select a 
default borderbrstyle.
+Comment=hilightE17 Configuration Applet/hilightbrbrUsed to select a 
default border style.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrUSado para 
elegir un diseñobrde borde predeterminado.
+Comment[es]=hilightApplet de configuración de E17/hilightbrbrUSado 
para elegir un diseño de borde predeterminado.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrUsato per 
selezionare unobrstile di bordo predefinito.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrUsato per 
selezionare uno stile di bordo predefinito.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_display


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_display/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:29 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:52 -  1.6
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_display
-Comment=hilightE17 Configuration Applet/hilightbrUsed to configure your 
screen'sbrresolution.
+Comment=hilightE17 Configuration Applet/hilightbrbrUsed to configure 
your screen's resolution.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrUsado para 
configurar su resoluciónbrde pantalla.
+Comment[es]=hilightApplet de configuración de E17/hilightbrbrUsado 
para configurar su resolución de pantalla.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrUsato per 
configurare labrrisoluzione del vostro schermo.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrUsato per 
configurare la risoluzione del vostro schermo.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_keybindings


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_keybindings/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:30 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:53 -  1.6
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_keybindings
-Comment=hilightE17 Configuration Applet/hilightbrConfigure your 
keybindings here.
+Comment=hilightE17 Configuration Applet/hilightbrbrConfigure your 
keybindings here.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrConfigure 
sus atajos de teclado.
+Comment[es]=hilightApplet de configuración de 
E17/hilightbrbrConfigure sus atajos de teclado.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrConfigura le 
vostrebrassociazioni di tasti.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrConfigura 
le vostre associazioni di tasti.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_dialogs


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_dialogs/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:29 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:52 -  1.6
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_dialogs
-Comment=hilightE17 Configuration Applet/hilightbrConfigure default 
dialog properties.
+Comment=hilightE17 Configuration Applet/hilightbrbrConfigure default 
dialog properties.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrConfigura las 
propiedades predefinidas de los diálogos.
+Comment[es]=hilightApplet de configuración de E17/hilightbrbrConfigura 
las propiedades predefinidas de los diálogos.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrConfigura le 
proprietà predefinitebrper le finestre di dialogo.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrConfigura 
le proprietà predefinite per le finestre di dialogo.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_desks


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_desks/module.desktop.in,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- module.desktop.in   23 Dec 2007 05:35:45 -  1.6
+++ module.desktop.in   30 Dec 2007 19:34:52 -  1.7
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_desks
-Comment=hilightE17 Configuration Applet/hilightbrConfigure the virtual 
desktopbrproperties.
+Comment=hilightE17 Configuration Applet/hilightbrbrConfigure the 
virtual desktop properties.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrConfigura las 
propiedades de losbrescritorios virtuales.
+Comment[es]=hilightApplet de configuración de E17/hilightbrbrConfigura 
las propiedades de los escritorios virtuales.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrConfigura le 
proprietà deibrdesktop virtuali.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrConfigura 
le proprietà dei desktop virtuali.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_fonts


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_fonts/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:29 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:53 -  1.6
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_fonts
-Comment=hilightE17 Configuration Applet/hilightbrFont configuration 
dialog.
+Comment=hilightE17 Configuration Applet/hilightbrbrFont configuration 
dialog.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrDiálogo de 
configuración de fuentes.
+Comment[es]=hilightApplet de configuración de E17/hilightbrbrDiálogo 
de configuración de fuentes.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrInterfaccia per 
la configurazionebrdei font.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrInterfaccia 
per la configurazione dei font.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_paths


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_paths/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:30 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:54 -  1.6
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_paths
-Comment=hilightE17 Configuration Applet/hilightbrSpecifies the E17 
search pathsbrand default directories.
+Comment=hilightE17 Configuration Applet/hilightbrbrSpecifies the E17 
search paths and default directories.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrEspecifica 
las rutas de búsqueda de E17bry los directorios predefinidos. 
+Comment[es]=hilightApplet de configuración de 
E17/hilightbrbrEspecifica las rutas de búsqueda de E17 y los directorios 
predefinidos. 
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrSpecifica i 
percorsi di ricerca ebrle directory predefinite in E17.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrSpecifica i 
percorsi di ricerca e le directory predefinite in E17.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_desklock


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_desklock/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:28 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:52 -  1.6
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_desklock
-Comment=hilightE17 Configuration Applet/hilightbrConfigures the 
integrated desk lock.
+Comment=hilightE17 Configuration Applet/hilightbrbrConfigures the 
integrated desk lock.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrConfigura el 
bloqueador de escritorio integrado.
+Comment[es]=hilightApplet de configuración de 
E17/hilightbrbrConfigura el bloqueador de escritorio integrado.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrConfigura il 
bloccaschermo integrato.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrConfigura 
il bloccaschermo integrato.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_dpms


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_dpms/module.desktop.in,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- module.desktop.in   6 Dec 2007 05:07:29 -   1.6
+++ module.desktop.in   30 Dec 2007 19:34:52 -  1.7
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_dpms
-Comment=hilightE17 Configuration Applet/hilightbrConfigure the DPMS 
settings ofbryour system.
+Comment=hilightE17 Configuration Applet/hilightbrbrConfigure the DPMS 
settings of your system.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrConfigura 
las opciones de DPMS debrsu sistema.
+Comment[es]=hilightApplet de configuración de 
E17/hilightbrbrConfigura las opciones de DPMS de su sistema.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrConfigura le 
impostazioni DPMSbrdel vostro sistema.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrConfigura 
le impostazioni DPMS del vostro sistema.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_applications


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_applications/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:28 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:51 -  1.6
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_applications
-Comment=hilightE17 Configuration Applet/hilightbrAllows configuration of 
Ibar, Restart, brand Startup applications.
+Comment=hilightE17 Configuration Applet/hilightbrbrAllows 
configuration of Ibar, Restart, and Startup applications.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrPermite 
configurar la IBar, reiniciar, bre iniciar aplicaciones.
+Comment[es]=hilightApplet de configuración de E17/hilightbrbrPermite 
configurar la IBar, reiniciar, e iniciar aplicaciones.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrConsente la 
configurazione dellebrapplicazioni per l'avvio, ilbrriavvio e la barra Ibar.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrConsente la 
configurazione delle applicazioni per l'avvio, il riavvio e la barra Ibar.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_engine


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_engine/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:29 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:52 -  1.6
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_engine
-Comment=hilightE17 Configuration Applet/hilightbrUsed to select the 
rendering engine.
+Comment=hilightE17 Configuration Applet/hilightbrbrUsed to select the 
rendering engine.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrUsado para 
seleccionar el motor debrrenderizado.
+Comment[es]=hilightApplet de configuración de E17/hilightbrbrUsado 
para seleccionar el motor de renderizado.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrUsato per 
selezionere ilbrmotore di rendering.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrUsato per 
selezionere il motore di rendering.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_mouse


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_mouse/module.desktop.in,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- module.desktop.in   6 Dec 2007 05:07:30 -   1.6
+++ module.desktop.in   30 Dec 2007 19:34:54 -  1.7
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_mouse
-Comment=hilightE17 Configuration Applet/hilightbrConfigure mouse 
cursorbracceleration.
+Comment=hilightE17 Configuration Applet/hilightbrbrConfigure mouse 
cursor acceleration.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrConfigure la 
aceleraciónbrdel cursor del mouse.
+Comment[es]=hilightApplet de configuración de 
E17/hilightbrbrConfigure la aceleración del cursor del mouse.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrConfigura 
l'accelerazione delbrpuntatore del mouse.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrConfigura 
l'accelerazione del puntatore del mouse.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_colors


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_colors/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:28 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:52 -  1.6
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_colors
-Comment=hilightE17 Configuration Applet/hilightbrUsed to customize the 
color classes.
+Comment=hilightE17 Configuration Applet/hilightbrbrUsed to customize 
the color classes.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrUsado para 
personalizar las clases de colores.
+Comment[es]=hilightApplet de configuración de E17/hilightbrbrUsado 
para personalizar las clases de colores.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrUsato per la 
personalizzazionebrdelle classi di colore.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrUsato per 
la personalizzazione delle classi di colore.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_icon_theme


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_icon_theme/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:29 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:53 -  1.6
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_icon_theme
-Comment=hilightE17 Configuration Applet/hilightbrConfiguration applet 
used to selectbran icon theme for E17.
+Comment=hilightE17 Configuration Applet/hilightbrbrConfiguration 
applet used to select an icon theme for E17.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrApplet de 
configuración usado para seleccionarbrel tema de íconos para E17.
+Comment[es]=hilightApplet de configuración de E17/hilightbrbrApplet 
de configuración usado para seleccionar el tema de íconos para E17.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrApplet di 
configurazione perbrla selezione di un tema dibricone per E17.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrApplet di 
configurazione per la selezione di un tema di icone per E17.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_window_display


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_window_display/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:31 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:55 -  1.6
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_window_display
-Comment=hilightE17 Configuration Applet/hilightbrConfigures default 
windowbrproperties such as defaultbrgeometries, border icons,brplacement 
styles, etc.
+Comment=hilightE17 Configuration Applet/hilightbrbrConfigures default 
window properties such as default geometries, border icons, placement styles, 
etc.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrConfigura las 
propiedades predefinidasbrde las ventanas, como su geometría, los íconos del 
borde, brel diseño, ubicación, etc.
+Comment[es]=hilightApplet de configuración de E17/hilightbrbrConfigura 
las propiedades predefinidas de las ventanas, como su geometría, los íconos del 
borde, el diseño, ubicación, etc.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrConfigura le 
proprietà predefinitebrdelle finestre come geometrie, iconabrdel bordo, 
stile di posizionamento, ecc.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrConfigura 
le proprietà predefinite delle finestre come geometrie, icona del bordo, stile 
di posizionamento, ecc.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_desk


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_desk/module.desktop.in,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- module.desktop.in   6 Dec 2007 05:07:28 -   1.6
+++ module.desktop.in   30 Dec 2007 19:34:52 -  1.7
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_desk
-Comment=hilightE17 Configuration Applet/hilightbrUsed to configure the 
desktop namebrand wallpaper for individualbrvirtual desktops.
+Comment=hilightE17 Configuration Applet/hilightbrbrUsed to configure 
the desktop name and wallpaper for individual virtual desktops.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrUsado para 
configurar el nombre del escritoriobry los fondos de pantalla para cadabr 
escritorio virtual individualmente.
+Comment[es]=hilightApplet de configuración de E17/hilightbrbrUsado 
para configurar el nombre del escritorio y los fondos de pantalla para cada 
escritorio virtual individualmente.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrUsato per 
configurare il nome ebrlo sfondo per ogni singolobrdesktop virtuale.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrUsato per 
configurare il nome e lo sfondo per ogni singolo desktop virtuale.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_imc


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_imc/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:29 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:53 -  1.6
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_imc
-Comment=hilightE17 Configuration Applet/hilightbrUsed to select an input 
method.
+Comment=hilightE17 Configuration Applet/hilightbrbrUsed to select an 
input method.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrUsado para 
elegir el método de entrada.
+Comment[es]=hilightApplet de configuración de E17/hilightbrbrUsado 
para elegir el método de entrada.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrUsato per 
selezionare unbrmetodo di input.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrUsato per 
selezionare un metodo di input.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_mime


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_mime/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:30 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:54 -  1.6
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_mime
-Comment=hilightE17 Configuration Applet/hilightbrConfigure E17 mime 
icons.
+Comment=hilightE17 Configuration Applet/hilightbrbrConfigure E17 mime 
icons.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrConfigure 
los íconos mime de E17.
+Comment[es]=hilightApplet de configuración de 
E17/hilightbrbrConfigure los íconos mime de E17.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrConfigura le 
icone dei tipibrMIME in E17.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrConfigura 
le icone dei tipi MIME in E17.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_startup


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_startup/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:31 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:55 -  1.6
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_startup
-Comment=hilightE17 Configuration Applet/hilightbrUsed to configure the 
E17 splashbrscreen.
+Comment=hilightE17 Configuration Applet/hilightbrbrUsed to configure 
the E17 splash screen.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrUsado para 
configurar la pantallabrde inicio de E17.
+Comment[es]=hilightApplet de configuración de E17/hilightbrbrUsado 
para configurar la pantalla de inicio de E17.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrUsato per 
configurare lobrsplash screen di E17.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrUsato per 
configurare lo splash screen di E17.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_performance


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_performance/module.desktop.in,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- module.desktop.in   23 Dec 2007 05:36:55 -  1.6
+++ module.desktop.in   30 Dec 2007 19:34:54 -  1.7
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_performance
-Comment=hilightE17 Configuration Applet/hilightbrUsed to configure 
certainbrperformance related items asbrframe rates and cache settings.
+Comment=hilightE17 Configuration Applet/hilightbrbrUsed to configure 
certain performance related items as frame rates and cache settings.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrUsado para 
configurar ciertosbrelementos de rendimientobrcomo opciones de caché y 
cuadros por segundo.
+Comment[es]=hilightApplet de configuración de E17/hilightbrbrUsado 
para configurar ciertos elementos de rendimiento como opciones de caché y 
cuadros por segundo.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrUsato per 
configurare alcunebrproprieta' correlate alle prestazionibrcome velocità 
frame e cache.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrUsato per 
configurare alcune proprieta' correlate alle prestazioni come velocità frame e 
cache.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/dropshadow


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/dropshadow/module.desktop.in,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- module.desktop.in   6 Dec 2007 05:07:32 -   1.6
+++ module.desktop.in   30 Dec 2007 19:34:56 -  1.7
@@ -2,11 +2,11 @@
 Type=Link
 Name=Dropshadow
 Icon=e-module-dropshadow
-Comment=hilightDropshadow Module/hilightbrModule to add a dropshadow 
tobrwindows.
+Comment=hilightDropshadow Module/hilightbrbrModule to add a dropshadow 
to windows.
 Comment[de]=
-Comment[es]=hilightMódulo de sombra/hilightbrMódulo para añadir una 
sombrabra las ventanas.
+Comment[es]=hilightMódulo de sombra/hilightbrbrMódulo para añadir 
una sombra a las ventanas.
 Comment[fr]=
-Comment[it]=hilightModulo Dropshadow/hilightbrModulo per aggiungere 
un'ombreggiaturabralle finestre.
+Comment[it]=hilightModulo Dropshadow/hilightbrbrModulo per aggiungere 
un'ombreggiatura alle finestre.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_menus


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_menus/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:30 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:53 -  1.6
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_menus
-Comment=hilightE17 Configuration Applet/hilightbrConfigures menu 
behavior.
+Comment=hilightE17 Configuration Applet/hilightbrbrConfigures menu 
behavior.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrConfigura el 
comportamiento del menú.
+Comment[es]=hilightApplet de configuración de E17/hilightbrbrConfigura 
el comportamiento del menú.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrConfigura il 
comportamentobrdei menù.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrConfigura 
il comportamento dei menù.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/temperature


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/temperature/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   2 Nov 2007 06:22:24 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:57 -  1.6
@@ -2,6 +2,6 @@
 Type=Link
 Name=Temperature
 Icon=e-module-temperature
-Comment=hilightTemperature Gadget/hilightbrTemperature monitor.
-Comment[it]=hilightModulo Temperature/hilightbrMonitor per le 
temperature.
+Comment=hilightTemperature Gadget/hilightbrbrTemperature monitor.
+Comment[it]=hilightModulo Temperature/hilightbrbrMonitor per le 
temperature.
 X-Enlightenment-ModuleType=system



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/exebuf


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/exebuf/module.desktop.in,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- module.desktop.in   6 Dec 2007 05:07:32 -   1.6
+++ module.desktop.in   30 Dec 2007 19:34:56 -  1.7
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-exebuf
-Comment=hilightRun Command Module/hilightbrThe run command module 
providesbran application launcher dialog.
+Comment=hilightRun Command Module/hilightbrbrThe run command module 
provides an application launcher dialog.
 Comment[de]=
-Comment[es]=hilightMódulo para ejecutar comandos/hilightbrEl módulo de 
ejecutar comandos proveebrun diálogo para ejecutar aplicaciones.
+Comment[es]=hilightMódulo para ejecutar comandos/hilightbrbrEl módulo 
de ejecutar comandos provee un diálogo para ejecutar aplicaciones.
 Comment[fr]=
-Comment[it]=hilightModulo lanciacomandi/hilightbrQuesto modulo fornisce 
una vocebrdi menù per l'esecuzione di comandi.
+Comment[it]=hilightModulo lanciacomandi/hilightbrbrQuesto modulo 
fornisce una voce di menù per l'esecuzione di comandi.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_transitions


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_transitions/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:31 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:55 -  1.6
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_transitions
-Comment=hilightE17 Configuration Applet/hilightbrUsed to choose a 
default transition.brTransitions are used  upon wallpaperbrchanges, among 
other things.
+Comment=hilightE17 Configuration Applet/hilightbrbrUsed to choose a 
default transition. Transitions are used upon wallpaper changes, among other 
things.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrUsado para 
elegir la transición predeterminada.brLas transiciones se usan cuandobrse 
cambia el fondo de pantalla, entre otras cosas.
+Comment[es]=hilightApplet de configuración de E17/hilightbrbrUsado 
para elegir la transición predeterminada. Las transiciones se usan cuando se 
cambia el fondo de pantalla, entre otras cosas.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrUsato per 
scegliere una transizionebrpredefinita. Le transizioni sonobrusate al 
cambio di sfondo, e perbraltre cose.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrUsato per 
scegliere una transizione predefinita. Le transizioni sono usate al cambio di 
sfondo, e per altre cose.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/cpufreq


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/cpufreq/module.desktop.in,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- module.desktop.in   6 Dec 2007 05:07:32 -   1.8
+++ module.desktop.in   30 Dec 2007 19:34:55 -  1.9
@@ -2,11 +2,11 @@
 Type=Link
 Name=Cpufreq
 Icon=e-module-cpufreq
-Comment=hilightCPUfreq Gadget/hilightbrGadget to moitor and 
changebrthe CPU frequency.
+Comment=hilightCPUfreq Gadget/hilightbrbrGadget to moitor and change 
the CPU frequency.
 Comment[de]=
-Comment[es]=hilightDispositivo de frecuencia de CPU/hilightbrDispositivo 
para monitorear y cambiarbrla frecuencia del CPU.
+Comment[es]=hilightDispositivo de frecuencia de 
CPU/hilightbrbrDispositivo para monitorear y cambiar la frecuencia del 
CPU.
 Comment[fr]=
-Comment[it]=hilightModulo CPUfreq/hilightbrModulo per il monitoraggio e 
labrvariazione della frequenza della CPU.
+Comment[it]=hilightModulo CPUfreq/hilightbrbrModulo per il 
monitoraggio e la variazione della frequenza della CPU.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_winlist


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_winlist/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:31 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:55 -  1.6
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_winlist
-Comment=hilightE17 Configuration Applet/hilightbrConfigure your window 
listbrproperties.
+Comment=hilightE17 Configuration Applet/hilightbrbrConfigure your 
window list properties.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrConfigura las 
propiedades de su listabrde ventanas.
+Comment[es]=hilightApplet de configuración de E17/hilightbrbrConfigura 
las propiedades de su lista de ventanas.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrConfigura le 
proprietà dellabrlista delle finestre.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrConfigura 
le proprietà della lista delle finestre.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_profiles


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_profiles/module.desktop.in,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- module.desktop.in   6 Dec 2007 05:07:30 -   1.7
+++ module.desktop.in   30 Dec 2007 19:34:54 -  1.8
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_profiles
-Comment=hilightE17 Configuration Applet/hilightbrAllows management of 
configurationbrprofiles.
+Comment=hilightE17 Configuration Applet/hilightbrbrAllows management 
of configuration profiles.
 Comment[de]=
-Comment[es]=hilightApplet de copnfiguración de E17/hilightbrPermite la 
administración de perfilesbrde configuración.
+Comment[es]=hilightApplet de copnfiguración de E17/hilightbrbrPermite 
la administración de perfiles de configuración.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrConsente la 
gestione deibrprofili di configurazione.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrConsente la 
gestione dei profili di configurazione.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_window_manipulation


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: 
/cvs/e/e17/apps/e/src/modules/conf_window_manipulation/module.desktop.in,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- module.desktop.in   6 Dec 2007 05:07:31 -   1.6
+++ module.desktop.in   30 Dec 2007 19:34:55 -  1.7
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_winmanip
-Comment=hilightE17 Configuration Applet/hilightbrConfigures window 
raise, resistance,brand maximize policies.
+Comment=hilightE17 Configuration Applet/hilightbrbrConfigures window 
raise, resistance, and maximize policies.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrConfigura 
las reglas para la subida,brresistencia y maximización de las ventanas.
+Comment[es]=hilightApplet de configuración de 
E17/hilightbrbrConfigura las reglas para la subida, resistencia y 
maximización de las ventanas.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrConfigura le 
regole per l'elevazione,brla resistenza e la massimizzazionebrdelle 
finestre.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrConfigura 
le regole per l'elevazione, la resistenza e la massimizzazione delle finestre.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/start


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/start/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:33 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:56 -  1.6
@@ -2,11 +2,11 @@
 Type=Link
 Name=Start
 Icon=e-module-start
-Comment=hilightStart Button Gadget/hilightbrE17's Start button 
equivalent.
+Comment=hilightStart Button Gadget/hilightbrbrE17's Start button 
equivalent.
 Comment[de]=
-Comment[es]=hilightDispositivo botón de inicio/hilightbrEl equivalente 
al botón Inicio en E17.
+Comment[es]=hilightDispositivo botón de inicio/hilightbrbrEl 
equivalente al botón Inicio en E17.
 Comment[fr]=
-Comment[it]=hilightModulo Start/hilightbrL'equivalente del pulsante 
Avvio in E17.
+Comment[it]=hilightModulo Start/hilightbrbrL'equivalente del pulsante 
Avvio in E17.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/layout


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/layout/module.desktop.in,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- module.desktop.in   6 Dec 2007 05:07:33 -   1.4
+++ module.desktop.in   30 Dec 2007 19:34:56 -  1.5
@@ -2,11 +2,11 @@
 Type=Link
 Name=Layout
 Icon=e-module-layout
-Comment=hilightLayout Module/hilightbrUsed to enforce layout 
policies.brGenerally not applicable for abrdesktop PC.
+Comment=hilightLayout Module/hilightbrbrUsed to enforce layout 
policies. Generally not applicable for a desktop PC.
 Comment[de]=
-Comment[es]=hilightMódulo distribución/hilightbrUsado para forzar las 
reglas de la distribución en la pantalla.brGeneralmente no útil para 
brcomputadoras de escritorio.
+Comment[es]=hilightMódulo distribución/hilightbrbrUsado para forzar 
las reglas de la distribución en la pantalla. Generalmente no útil para 
computadoras de escritorio.
 Comment[fr]=
-Comment[it]=hilightModulo Layout/hilightbrUsato per forzare delle regole 
dibrlayout. In genere non applicabilebrad un PC desktop.
+Comment[it]=hilightModulo Layout/hilightbrbrUsato per forzare delle 
regole di layout. In genere non applicabile ad un PC desktop.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/wizard


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/wizard/module.desktop.in,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -3 -r1.6 -r1.7
--- module.desktop.in   2 Nov 2007 06:30:33 -   1.6
+++ module.desktop.in   30 Dec 2007 19:34:57 -  1.7
@@ -3,6 +3,6 @@
 Name=First Run Wizard
 Name[it]=Wizard prima esecuzione
 Icon=e-module-wizard
-Comment=hilightFirst Run Wizard/hilightbrThe first run wizard will 
helpbrconfigure E, when E is startedbrfor the first 
time.brhilightWARNING!!! DO NOT USE!!!/hilight
-Comment[it]=hilightWizard prima esecuzione/hilightbrWizard che aiuta a 
configurarebrE17 la prima volta che questobrviene 
avviato.brhilightATTENZIONE!!! NON USARE!!!/hilight
+Comment=hilightFirst Run Wizard/hilightbrbrThe first run wizard will 
help configure E, when E is started for the first time.brhilightWARNING!!! 
DO NOT USE!!!/hilight
+Comment[it]=hilightWizard prima esecuzione/hilightbrbrWizard che aiuta 
a configurare E17 la prima volta che questo viene 
avviato.brhilightATTENZIONE!!! NON USARE!!!/hilight
 X-Enlightenment-ModuleType=config



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_wallpaper


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_wallpaper/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:31 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:55 -  1.6
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_wallpaper
-Comment=hilightE17 Configuration Applet/hilightbrUsed to pick a 
wallpaper.
+Comment=hilightE17 Configuration Applet/hilightbrbrUsed to pick a 
wallpaper.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrPara elegir 
un fondo de pantalla.
+Comment[es]=hilightApplet de configuración de E17/hilightbrbrPara 
elegir un fondo de pantalla.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrUsato per 
selezionare uno sfondo.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrUsato per 
selezionare uno sfondo.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/fileman


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/fileman/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:32 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:56 -  1.6
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-fileman
-Comment=hilightThe E17 File Manager/hilightbrE17's integrated file 
manager.brhilightUnder Construction!/hilight
+Comment=hilightThe E17 File Manager/hilightbrbrE17's integrated file 
manager.brhilightUnder Construction!/hilight
 Comment[de]=
-Comment[es]=hilightEl Administrador de archivos de E17/hilightbrEl 
administrador de archivos integrado a E17.brhilight¡Todavía en 
construcción!/hilight
+Comment[es]=hilightEl Administrador de archivos de E17/hilightbrbrEl 
administrador de archivos integrado a E17.brhilight¡Todavía en 
construcción!/hilight
 Comment[fr]=
-Comment[it]=hilightIl file manager di E17/hilightbrQuesto è il file 
managerbrintegrato in E17.
+Comment[it]=hilightIl file manager di E17/hilightbrbrQuesto è il file 
manager integrato in E17.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/ibar


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/ibar/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:33 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:56 -  1.6
@@ -2,11 +2,11 @@
 Type=Link
 Name=IBar
 Icon=e-module-ibar
-Comment=hilightIconBar Gadget/hilightbrIconic application launcher.
+Comment=hilightIconBar Gadget/hilightbrbrIconic application launcher.
 Comment[de]=
-Comment[es]=hilightDispositivo IconBar/hilightbrLanzador de aplicaciones 
con íconos.
+Comment[es]=hilightDispositivo IconBar/hilightbrbrLanzador de 
aplicaciones con íconos.
 Comment[fr]=
-Comment[it]=hilightModulo IBar/hilightbrUna barra di icone per 
ilbrlancio di applicazioni.
+Comment[it]=hilightModulo IBar/hilightbrbrUna barra di icone per il 
lancio di applicazioni.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_mousebindings


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_mousebindings/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:30 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:54 -  1.6
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_mousebindings
-Comment=hilightE17 Configuration Applet/hilightbrUsed to configure your 
mousebrbindings.
+Comment=hilightE17 Configuration Applet/hilightbrbrUsed to configure 
your mouse bindings.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrUsado para 
configurar los atajosbrdel mouse.
+Comment[es]=hilightApplet de configuración de E17/hilightbrbrUsado 
para configurar los atajos del mouse.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrUsato per 
configurare lebrassociazioni per i tasti del mouse.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrUsato per 
configurare le associazioni per i tasti del mouse.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/ibox


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/ibox/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:33 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:56 -  1.6
@@ -2,11 +2,11 @@
 Type=Link
 Name=IBox
 Icon=e-module-ibox
-Comment=hilightIconBox Gadget/hilightbrAn home for your 
iconifiedbrapplications.
+Comment=hilightIconBox Gadget/hilightbrbrAn home for your iconified 
applications.
 Comment[de]=
-Comment[es]=hilightDispositivo IconBox/hilightUn contenedor para sus 
aplicacionesbriconificadas.
+Comment[es]=hilightDispositivo IconBox/hilightbrbrUn contenedor para 
sus aplicaciones iconificadas.
 Comment[fr]=
-Comment[it]=hilightModulo IBox/hilightbrUn contenitore per le 
applicazionibriconificate.
+Comment[it]=hilightModulo IBox/hilightbrbrUn contenitore per le 
applicazioni iconificate.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_exebuf


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_exebuf/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:29 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:52 -  1.6
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_exebuf
-Comment=hilightE17 Configuration Applet/hilightbrUsed to configure the 
settings ofbrthe run command GUI.
+Comment=hilightE17 Configuration Applet/hilightbrbrUsed to configure 
the settings of the run command GUI.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrUsado para 
configurar las opciones debrla GUI para ejecutar un comando.
+Comment[es]=hilightApplet de configuración de E17/hilightbrbrUsado 
para configurar las opciones de la GUI para ejecutar un comando.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrUsato per 
configurare lebrimpostazioni della GUI perbrl'esecuzione di comandi.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrUsato per 
configurare le impostazioni della GUI per l'esecuzione di comandi.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/pager


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/pager/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:33 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:56 -  1.6
@@ -2,11 +2,11 @@
 Type=Link
 Name=Pager
 Icon=e-module-pager
-Comment=hilightPager Gadget/hilightbrGadget to allow you to 
visualizebryour virtual desktops and thebrwindows they contain.
+Comment=hilightPager Gadget/hilightbrbrGadget to allow you to 
visualize your virtual desktops and the windows they contain.
 Comment[de]=
-Comment[es]=hilightDispositivo paginador/hilightbrDispositivo que 
permite visualizarbrlos escritorios virtuales ybrlas ventanas que contienen.
+Comment[es]=hilightDispositivo paginador/hilightbrbrDispositivo que 
permite visualizar los escritorios virtuales y las ventanas que contienen.
 Comment[fr]=
-Comment[it]=hilightModulo Pager/hilightbrModulo che permette di 
visualizzarebri desktop virtuali e le finestrebrche contengono.
+Comment[it]=hilightModulo Pager/hilightbrbrModulo che permette di 
visualizzare i desktop virtuali e le finestre che contengono.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_mouse_cursor


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_mouse_cursor/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:30 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:54 -  1.6
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_mouse_cursor
-Comment=hilightE17 Configuration Applet/hilightbrSelect the mouse cursor 
style.
+Comment=hilightE17 Configuration Applet/hilightbrbrSelect the mouse 
cursor style.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrSeleccione 
el diseño del cursor del mouse.
+Comment[es]=hilightApplet de configuración de 
E17/hilightbrbrSeleccione el diseño del cursor del mouse.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrSeleziona lo 
stile di puntatorebrper il mouse.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrSeleziona 
lo stile di puntatore per il mouse.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_screensaver


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_screensaver/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:31 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:54 -  1.6
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_screensaver
-Comment=hilightE17 Configuration Applet/hilightbrConfigures the X 
screensaver.
+Comment=hilightE17 Configuration Applet/hilightbrbrConfigures the X 
screensaver.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrConfigura el 
salvapantallas de X.
+Comment[es]=hilightApplet de configuración de 
E17/hilightbrbrConfigura el salvapantallas de X.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrConfigura lo 
screensaver di X.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrConfigura 
lo screensaver di X.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_window_focus


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_window_focus/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:31 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:55 -  1.6
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_window_focus
-Comment=hilightE17 Configuration Applet/hilightbrConfigure window focus 
behavior.
+Comment=hilightE17 Configuration Applet/hilightbrbrConfigure window 
focus behavior.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrConfigura el 
comportamiento del foco de las ventanas.
+Comment[es]=hilightApplet de configuración de 
E17/hilightbrbrConfigura el comportamiento del foco de las ventanas.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrConfigura il 
comportamento delbrfuoco delle finestre.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrConfigura 
il comportamento del fuoco delle finestre.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_shelves


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_shelves/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:31 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:54 -  1.6
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_shelves
-Comment=hilightE17 Configuration Applet/hilightbrShelf configuration 
dialog.
+Comment=hilightE17 Configuration Applet/hilightbrbrShelf configuration 
dialog.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrDiálogo de 
configuración del contenedor.
+Comment[es]=hilightApplet de configuración de E17/hilightbrbrDiálogo 
de configuración del contenedor.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrInterfaccia per 
la configurazionebrdelle mensole portamoduli.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrInterfaccia 
per la configurazione delle mensole portamoduli.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_theme


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_theme/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:31 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:55 -  1.6
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_theme
-Comment=hilightE17 Configuration Applet/hilightbrUsed to configure your 
themebrpreferences.
+Comment=hilightE17 Configuration Applet/hilightbrbrUsed to configure 
your theme preferences.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrUsado para 
configurar susbrpreferencias del tema.
+Comment[es]=hilightApplet de configuración de E17/hilightbrbrUsado 
para configurar sus preferencias del tema.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrUsato per 
configurare le preferenzebrper il vostro tema.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrUsato per 
configurare le preferenze per il vostro tema.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: wlan devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : wlan

Dir : e_modules/wlan


Modified Files:
module.desktop 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/wlan/module.desktop,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- module.desktop  4 Nov 2007 15:51:18 -   1.4
+++ module.desktop  30 Dec 2007 19:49:26 -  1.5
@@ -2,5 +2,5 @@
 Type=Link
 Name=Wlan
 Icon=e-module-wlan
-Comment=hilightWLan Gadget/hilightbrGadget to monitor a wlan device.
-Comment[it]=hilightModulo WLan/hilightbrModulo per il monitoraggio di 
unbrdispositivo di rete wireless.
+Comment=hilightWLan Gadget/hilightbrbrGadget to monitor a wlan device.
+Comment[it]=hilightModulo WLan/hilightbrbrModulo per il monitoraggio 
di un dispositivo di rete wireless.



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: winselector devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : winselector

Dir : e_modules/winselector


Modified Files:
module.desktop 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/winselector/module.desktop,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- module.desktop  18 Nov 2007 19:47:07 -  1.3
+++ module.desktop  30 Dec 2007 19:49:26 -  1.4
@@ -2,5 +2,5 @@
 Type=Link
 Name=Winselector
 Icon=e-module-winselector
-Comment=hilightWinselector Gadget/hilightbrThis module provides a 
menu-basedbr access to all the windows.
-Comment[it]=hilightModulo Winselector/hilightbrQuesto modulo fornisce 
accessobra tutte le finestre tramitebrmenù.
+Comment=hilightWinselector Gadget/hilightbrbrThis module provides a 
menu-based access to all the windows.
+Comment[it]=hilightModulo Winselector/hilightbrbrQuesto modulo 
fornisce accesso a tutte le finestre tramite menù.



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: calendar devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : calendar

Dir : e_modules/calendar


Modified Files:
module.desktop 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/calendar/module.desktop,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- module.desktop  18 Nov 2007 19:47:04 -  1.2
+++ module.desktop  30 Dec 2007 19:49:23 -  1.3
@@ -2,5 +2,5 @@
 Type=Link
 Name=Calendar
 Icon=e-module-calendar
-Comment=hilightCalendar Gadget/hilightbrCalendar sheet showingbrthe 
current day.
-Comment[it]=hilightModulo Calendar/hilightbrUn foglio di 
calendariobrche mostra la data attuale.
+Comment=hilightCalendar Gadget/hilightbrbrCalendar sheet showing the 
current day.
+Comment[it]=hilightModulo Calendar/hilightbrbrUn foglio di calendario 
che mostra la data attuale.



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: bling devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : bling

Dir : e_modules/bling


Modified Files:
module.desktop.in 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/bling/module.desktop.in,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -3 -r1.8 -r1.9
--- module.desktop.in   24 Dec 2007 18:59:36 -  1.8
+++ module.desktop.in   30 Dec 2007 19:49:23 -  1.9
@@ -7,5 +7,5 @@
 X-Enlightenment-IconClass=bling,gadget
 X-Enlightenment-ModuleType=appearance
 Icon=e-module-bling
-Comment=hilightBling Module/hilightbrAn xcompmgr derived, 
EFLizedbrcomposite manager for E17.
-Comment[it]=hilightModulo Bling/hilightbrUn composite manager per 
E17brderivato da xcompmgr ebradattato alle EFL.
+Comment=hilightBling Module/hilightbrbrAn xcompmgr derived, EFLized 
composite manager for E17.
+Comment[it]=hilightModulo Bling/hilightbrbrUn composite manager per 
E17 derivato da xcompmgr e adattato alle EFL.



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: cpu devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : cpu

Dir : e_modules/cpu


Modified Files:
module.desktop 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/cpu/module.desktop,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- module.desktop  4 Nov 2007 15:31:57 -   1.3
+++ module.desktop  30 Dec 2007 19:49:23 -  1.4
@@ -2,5 +2,5 @@
 Type=Link
 Name=Cpu
 Icon=e-module-cpu
-Comment=hilightCPU Gadget/hilightbrUsed to monitor CPU utilization.
-Comment[it]=hilightModulo CPU/hilightbrUsato per monitorare 
l'utilizzobrdella CPU.
+Comment=hilightCPU Gadget/hilightbrbrUsed to monitor CPU utilization.
+Comment[it]=hilightModulo CPU/hilightbrbrUsato per monitorare 
l'utilizzo della CPU.



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: deskshow devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : deskshow

Dir : e_modules/deskshow


Modified Files:
module.desktop 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/deskshow/module.desktop,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- module.desktop  18 Nov 2007 19:47:05 -  1.3
+++ module.desktop  30 Dec 2007 19:49:23 -  1.4
@@ -2,5 +2,5 @@
 Type=Link
 Name=Deskshow
 Icon=e-module-deskshow
-Comment=hilightDeskshow Gadget/hilightbrGadget to allow you to 
quicklybruncover your desktop.
-Comment[it]=hilightModulo Deskshow/hilightbrModulo che consente 
dibrscoprire rapidamente ilbrdesktop.
+Comment=hilightDeskshow Gadget/hilightbrbrGadget to allow you to 
quickly uncover your desktop.
+Comment[it]=hilightModulo Deskshow/hilightbrbrModulo che consente di 
scoprire rapidamente il desktop.



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: efm_path devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : efm_path

Dir : e_modules/efm_path


Modified Files:
module.desktop.in 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/efm_path/module.desktop.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- module.desktop.in   6 Dec 2007 05:34:00 -   1.3
+++ module.desktop.in   30 Dec 2007 19:49:23 -  1.4
@@ -13,11 +13,11 @@
 Exec=enlightenment
 StartupNotify=false
 Icon=e-module-efm_path
-Comment=hilightEfm Path Module/hilightbrA module that allows a user to 
typebr a location into the filemanager.
+Comment=hilightEfm Path Module/hilightbrbrA module that allows a user 
to type a location into the filemanager.
 Comment[de]=
-Comment[es]=hilightMódulo de Ruta EFM/hilightUn módulo que permite al 
usuario escribirbruna dirección dentro del Administrador de archivos.
+Comment[es]=hilightMódulo de Ruta EFM/hilightbrbrUn módulo que 
permite al usuario escribir una dirección dentro del Administrador de archivos.
 Comment[fr]=
-Comment[it]=hilightModulo percorso EFM/hilightbrUn modulo che permetti 
dibrinserire un percorso nel modulobrdel file manager.
+Comment[it]=hilightModulo percorso EFM/hilightbrbrUn modulo che 
permetti di inserire un percorso nel modulo del file manager.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: forecasts devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : forecasts

Dir : e_modules/forecasts


Modified Files:
module.desktop 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/forecasts/module.desktop,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- module.desktop  4 Nov 2007 15:33:51 -   1.3
+++ module.desktop  30 Dec 2007 19:49:24 -  1.4
@@ -2,5 +2,5 @@
 Type=Link
 Name=Forecasts
 Icon=e-module-forecasts
-Comment=hilightForecasts Gadget/hilightbrThe forecasts gadget will 
displaybrthe current weather conditionsbrplus a few days forecast.
-Comment[it]=hilightModulo Forecasts/hilightbrIl modulo forecasts 
mostrerà lebrattuali condizioni del tempo e lebrprevisioni per qualche 
giorno.
+Comment=hilightForecasts Gadget/hilightbrbrThe forecasts gadget will 
display the current weather conditions plus a few days forecast.
+Comment[it]=hilightModulo Forecasts/hilightbrbrIl modulo forecasts 
mostrerà le attuali condizioni del tempo e le previsioni per qualche giorno.



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: emu devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : emu

Dir : e_modules/emu/src/modules/emu


Modified Files:
module.desktop 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/emu/src/modules/emu/module.desktop,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- module.desktop  4 Nov 2007 15:32:41 -   1.3
+++ module.desktop  30 Dec 2007 19:49:23 -  1.4
@@ -5,5 +5,5 @@
 Comment=Experimental generic scriptable module for E17
 X-Enlightenment-IconClass=emu,gadget
 Icon=e-module-emu
-Comment=hilightEmu Module/hilightbrGeneric scriptable 
module.brhilightExperimental!/hilight
-Comment[it]=hilightModulo Emu/hilightbrModulo scriptabile 
generico.brhilightSperimentale!/hilight
+Comment=hilightEmu Module/hilightbrbrGeneric scriptable 
module.brhilightExperimental!/hilight
+Comment[it]=hilightModulo Emu/hilightbrbrModulo scriptabile 
generico.brhilightSperimentale!/hilight



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: mem devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : mem

Dir : e_modules/mem


Modified Files:
module.desktop 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/mem/module.desktop,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- module.desktop  4 Nov 2007 15:37:34 -   1.3
+++ module.desktop  30 Dec 2007 19:49:24 -  1.4
@@ -2,5 +2,5 @@
 Type=Link
 Name=Mem
 Icon=e-module-mem
-Comment=hilightMem Gadget/hilightbrUsed to monitor memory utilization.
-Comment[it]=hilightModulo Mem/hilightbrUsato per il monitoraggio 
delbrutilizzo della memoria.
+Comment=hilightMem Gadget/hilightbrbrUsed to monitor memory 
utilization.
+Comment[it]=hilightModulo Mem/hilightbrbrUsato per il monitoraggio del 
utilizzo della memoria.



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: language devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : language

Dir : e_modules/language


Modified Files:
module.desktop 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/language/module.desktop,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- module.desktop  4 Nov 2007 15:34:35 -   1.3
+++ module.desktop  30 Dec 2007 19:49:24 -  1.4
@@ -6,5 +6,5 @@
 X-Enlightenment-WaitExit=false
 X-Enlightenment-IconClass=language,gadget
 Icon=e-module-language
-Comment=hilightLanguage Gadget/hilightbrGadget to control active 
keyboard,brkeyboard layout, and layout variant.
-Comment[it]=hilightModulo Language/hilightbrModulo per controllare la 
tastierabrattiva, il layout di tastiera e lebrvarianti del layout.
+Comment=hilightLanguage Gadget/hilightbrbrGadget to control active 
keyboard, keyboard layout, and layout variant.
+Comment[it]=hilightModulo Language/hilightbrbrModulo per controllare 
la tastiera attiva, il layout di tastiera e le varianti del layout.



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: mail devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : mail

Dir : e_modules/mail


Modified Files:
module.desktop 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/mail/module.desktop,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- module.desktop  4 Nov 2007 15:36:52 -   1.3
+++ module.desktop  30 Dec 2007 19:49:24 -  1.4
@@ -2,5 +2,5 @@
 Type=Link
 Name=Mail
 Icon=e-module-mail
-Comment=hilightMail Gadget/hilightbrMail notification gadget. 
ChecksbrPOP3, IMAP, maildir, and mboxbrmailboxes.
-Comment[it]=hilightModulo Mail/hilightbrModulo per notificare l'arrivo 
dibrposta. Controlla caselle POP3,brIMAP, maildir e mbox.
+Comment=hilightMail Gadget/hilightbrbrMail notification gadget. Checks 
POP3, IMAP, maildir, and mbox mailboxes.
+Comment[it]=hilightModulo Mail/hilightbrbrModulo per notificare 
l'arrivo di posta. Controlla caselle POP3, IMAP, maildir e mbox.



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: mixer devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : mixer

Dir : e_modules/mixer


Modified Files:
module.desktop 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/mixer/module.desktop,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- module.desktop  4 Nov 2007 15:38:18 -   1.3
+++ module.desktop  30 Dec 2007 19:49:24 -  1.4
@@ -2,5 +2,5 @@
 Type=Link
 Name=Mixer
 Icon=e-module-mixer
-Comment=hilightMixer Gadget/hilightbrAllows you to control your 
systembrvolume.
-Comment[it]=hilightModulo Mixer/hilightbrPermette di controllare il 
volumebrdell'audio del sistema.
+Comment=hilightMixer Gadget/hilightbrbrAllows you to control your 
system volume.
+Comment[it]=hilightModulo Mixer/hilightbrbrPermette di controllare il 
volume dell'audio del sistema.



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: alarm devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : alarm

Dir : e_modules/alarm


Modified Files:
module.desktop.in 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/alarm/module.desktop.in,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- module.desktop.in   7 Nov 2007 18:23:58 -   1.7
+++ module.desktop.in   30 Dec 2007 19:49:23 -  1.8
@@ -6,5 +6,5 @@
 X-Enlightenment-WaitExit=false
 X-Enlightenment-IconClass=alarm,gadget
 Icon=e-module-alarm
-Comment=hilightAlarm Module/hilightbrA module which allows you tobrset 
popup reminders.
-Comment[it]=hilightModulo Alarm/hilightbrUn modulo che consente di 
impostarebrdei popup di promemoria.
+Comment=hilightAlarm Module/hilightbrbrA module which allows you to 
set popup reminders.
+Comment[it]=hilightModulo Alarm/hilightbrbrUn modulo che consente di 
impostare dei popup di promemoria.



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: net devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : net

Dir : e_modules/net


Modified Files:
module.desktop 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/net/module.desktop,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- module.desktop  4 Nov 2007 15:39:51 -   1.3
+++ module.desktop  30 Dec 2007 19:49:24 -  1.4
@@ -2,5 +2,5 @@
 Type=Link
 Name=Net
 Icon=e-module-net
-Comment=hilightNet Gadget/hilightbrNetwork interface monitor.
-Comment[it]=hilightModulo Net/hilightbrMonitor delle interfacce di rete.
+Comment=hilightNet Gadget/hilightbrbrNetwork interface monitor.
+Comment[it]=hilightModulo Net/hilightbrbrMonitor delle interfacce di 
rete.



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: flame devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : flame

Dir : e_modules/flame


Modified Files:
module.desktop 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/flame/module.desktop,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- module.desktop  8 Nov 2007 15:22:08 -   1.4
+++ module.desktop  30 Dec 2007 19:49:24 -  1.5
@@ -3,5 +3,5 @@
 Name=Flame
 Icon=e-module-flame
 X-Enlightenment-ModuleType=appearance
-Comment=hilightFlame Module/hilightbrA module to display flames 
onbrthe desktop.
-Comment[it]=hilightModulo Flame/hilightbrUn modulo per 
visualizzarebrfiamme sul desktop.
+Comment=hilightFlame Module/hilightbrbrA module to display flames on 
the desktop.
+Comment[it]=hilightModulo Flame/hilightbrbrUn modulo per visualizzare 
fiamme sul desktop.



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: penguins devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : penguins

Dir : e_modules/penguins


Modified Files:
module.desktop 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/penguins/module.desktop,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- module.desktop  8 Nov 2007 14:26:46 -   1.3
+++ module.desktop  30 Dec 2007 19:49:25 -  1.4
@@ -3,5 +3,5 @@
 Name=Penguins
 Icon=e-module-penguins
 X-Enlightenment-ModuleType=appearance
-Comment=hilightPenguins Module/hilightbrModule to display fancy 
penguinsbrwalking around your desktop 
-Comment[it]=hilightModulo Penguins/hilightbrModulo per visualizzare 
pinguinibrcarini che passeggiano attornobral vostro desktop.
+Comment=hilightPenguins Module/hilightbrbrModule to display fancy 
penguins walking around your desktop 
+Comment[it]=hilightModulo Penguins/hilightbrbrModulo per visualizzare 
pinguini carini che passeggiano attorno al vostro desktop.



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: taskbar devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : taskbar

Dir : e_modules/taskbar


Modified Files:
module.desktop 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/taskbar/module.desktop,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- module.desktop  4 Nov 2007 15:48:03 -   1.3
+++ module.desktop  30 Dec 2007 19:49:25 -  1.4
@@ -3,5 +3,5 @@
 Name=Taskbar
 X-Enlightenment-IconClass=taskbar,gadget
 Icon=e-module-taskbar
-Comment=hilightTaskbar Gadget/hilightbrGadget to provide a taskbar.
-Comment[it]=hilightModulo Taskbar/hilightbrModulo che fornisce una 
taskbar.
+Comment=hilightTaskbar Gadget/hilightbrbrGadget to provide a taskbar.
+Comment[it]=hilightModulo Taskbar/hilightbrbrModulo che fornisce una 
taskbar.



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: efm_nav devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : efm_nav

Dir : e_modules/efm_nav


Modified Files:
module.desktop.in 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/efm_nav/module.desktop.in,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- module.desktop.in   6 Dec 2007 05:34:00 -   1.3
+++ module.desktop.in   30 Dec 2007 19:49:23 -  1.4
@@ -13,11 +13,11 @@
 Exec=enlightenment
 StartupNotify=false
 Icon=e-module-efm_nav
-Comment=hilightEfm Navigation Module/hilightbrA module that allows a 
user to br navigate the filemanager module.
+Comment=hilightEfm Navigation Module/hilightbrbrA module that allows a 
user to navigate the filemanager module.
 Comment[de]=
-Comment[es]=hilightMódulo Navegación EFM/hilightbrUn módulo que 
permite al usuariobrnavegar el módulo administración de archivos.
+Comment[es]=hilightMódulo Navegación EFM/hilightbrbrUn módulo que 
permite al usuario navegar el módulo administración de archivos.
 Comment[fr]=
-Comment[it]=hilightModulo navigazione EFM/hilightbrUn modulo che 
permette dibrnavigare il modulo delbrfile manager.
+Comment[it]=hilightModulo navigazione EFM/hilightbrbrUn modulo che 
permette di navigare il modulo del file manager.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: snow devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : snow

Dir : e_modules/snow


Modified Files:
module.desktop 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/snow/module.desktop,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- module.desktop  8 Nov 2007 15:12:35 -   1.4
+++ module.desktop  30 Dec 2007 19:49:25 -  1.5
@@ -3,5 +3,5 @@
 Name=Snow
 Icon=e-module-snow
 X-Enlightenment-ModuleType=appearance
-Comment=hilightSnow Module/hilightbrModule to display snow on 
thebrdesktop.
-Comment[it]=hilightModulo Snow/hilightbrModulo per visualizzare la 
nevebrsul desktop.
+Comment=hilightSnow Module/hilightbrbrModule to display snow on the 
desktop.
+Comment[it]=hilightModulo Snow/hilightbrbrModulo per visualizzare la 
neve sul desktop.



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: uptime devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : uptime

Dir : e_modules/uptime


Modified Files:
module.desktop 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/uptime/module.desktop,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- module.desktop  4 Nov 2007 15:49:47 -   1.3
+++ module.desktop  30 Dec 2007 19:49:26 -  1.4
@@ -2,5 +2,5 @@
 Type=Link
 Name=Uptime
 Icon=e-module-uptime
-Comment=hilightUptime Gadget/hilightbrGadget to display the 
currentbruptime of the system.
-Comment[it]=hilightModulo Uptime/hilightbrModulo per visualizzare il 
tempobrdi servizio del sistema.
+Comment=hilightUptime Gadget/hilightbrbrGadget to display the current 
uptime of the system.
+Comment[it]=hilightModulo Uptime/hilightbrbrModulo per visualizzare il 
tempo di servizio del sistema.



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: screenshot devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : screenshot

Dir : e_modules/screenshot


Modified Files:
module.desktop.in 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/screenshot/module.desktop.in,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- module.desktop.in   30 Dec 2007 19:00:55 -  1.4
+++ module.desktop.in   30 Dec 2007 19:49:25 -  1.5
@@ -2,4 +2,4 @@
 Type=Link
 Name=Screenshot
 Icon=e-module-screenshot
-Comment=hilightScreenshot Gadget/hilightbrGadget to take screenshots 
utilizing emprint.
+Comment=hilightScreenshot Gadget/hilightbrbrGadget to take screenshots 
utilizing emprint.



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: mpdule devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : mpdule

Dir : e_modules/mpdule


Modified Files:
module.desktop 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/mpdule/module.desktop,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- module.desktop  16 Dec 2007 11:46:14 -  1.3
+++ module.desktop  30 Dec 2007 19:49:24 -  1.4
@@ -2,5 +2,5 @@
 Type=Link
 Name=MPDule
 Icon=e-module-mpdule
-Comment=hilightMpdule Gadget/hilightbrView what's playing in MPD.
-Comment[it]=hilightModulo Mpdule/hilightbrUn'interfaccia per il demone 
MPD.
+Comment=hilightMpdule Gadget/hilightbrbrView what's playing in MPD.
+Comment[it]=hilightModulo Mpdule/hilightbrbrUn'interfaccia per il 
demone MPD.



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: slideshow devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : slideshow

Dir : e_modules/slideshow


Modified Files:
module.desktop 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/slideshow/module.desktop,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- module.desktop  4 Nov 2007 15:45:45 -   1.3
+++ module.desktop  30 Dec 2007 19:49:25 -  1.4
@@ -2,5 +2,5 @@
 Type=Link
 Name=Slideshow
 Icon=e-module-slideshow
-Comment=hilightSlideshow Module/hilightbrTurns your desktop 
backgroundbrinto a slideshow.
-Comment[it]=hilightModulo Slideshow/hilightbrTrasforma lo sfondo del 
vostrobrdesktop in uno slideshow.
+Comment=hilightSlideshow Module/hilightbrbrTurns your desktop 
background into a slideshow.
+Comment[it]=hilightModulo Slideshow/hilightbrbrTrasforma lo sfondo del 
vostro desktop in uno slideshow.



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: moon devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : moon

Dir : e_modules/moon/data/themes


Modified Files:
module.desktop 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/moon/data/themes/module.desktop,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- module.desktop  4 Nov 2007 15:38:59 -   1.3
+++ module.desktop  30 Dec 2007 19:49:24 -  1.4
@@ -2,6 +2,6 @@
 Type=Link
 Name=Moon
 GenericName=gadget
-Comment=hilightMoon Gadget/hilightbrGadget for e17 which displays 
thebrcurrent phase of the moon.
-Comment[it]=hilightModulo Moon/hilightbrModulo per e17 che mostra 
l'attualebrfase lunare.
+Comment=hilightMoon Gadget/hilightbrbrGadget for e17 which displays 
the current phase of the moon.
+Comment[it]=hilightModulo Moon/hilightbrbrModulo per e17 che mostra 
l'attuale fase lunare.
 Icon=e-module-moon



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: weather devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : weather

Dir : e_modules/weather


Modified Files:
module.desktop 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/weather/module.desktop,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- module.desktop  4 Nov 2007 15:50:34 -   1.3
+++ module.desktop  30 Dec 2007 19:49:26 -  1.4
@@ -2,5 +2,5 @@
 Type=Link
 Name=Weather
 Icon=e-module-weather
-Comment=hilightWeather Gadget/hilightbrA weather gadget.
-Comment[it]=hilightModulo Weather/hilightbrUn modulo per le condizioni 
meteo.
+Comment=hilightWeather Gadget/hilightbrbrA weather gadget.
+Comment[it]=hilightModulo Weather/hilightbrbrUn modulo per le 
condizioni meteo.



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: news devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : news

Dir : e_modules/news


Modified Files:
module.desktop 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/news/module.desktop,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- module.desktop  18 Nov 2007 19:47:06 -  1.3
+++ module.desktop  30 Dec 2007 19:49:24 -  1.4
@@ -2,5 +2,5 @@
 Type=Link
 Name=News
 Icon=e-module-news
-Comment=hilightNews Gadget/hilightbrGadget to monitor RSS feeds.
-Comment[it]=hilightModulo News/hilightbrModulo per il 
monitoraggiobrdei feed RSS.
+Comment=hilightNews Gadget/hilightbrbrGadget to monitor RSS feeds.
+Comment[it]=hilightModulo News/hilightbrbrModulo per il monitoraggio 
dei feed RSS.



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: rain devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : rain

Dir : e_modules/rain


Modified Files:
module.desktop 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/rain/module.desktop,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- module.desktop  8 Nov 2007 15:07:44 -   1.4
+++ module.desktop  30 Dec 2007 19:49:25 -  1.5
@@ -3,5 +3,5 @@
 Name=Rain
 Icon=e-module-rain
 X-Enlightenment-ModuleType=appearance
-Comment=hilightRain Module/hilightbrModule to display rain on 
thebrdesktop.
-Comment[it]=hilightModulo Rain/hilightbrModulo per visualizzare la 
pioggiabrsul desktop.
+Comment=hilightRain Module/hilightbrbrModule to display rain on the 
desktop.
+Comment[it]=hilightModulo Rain/hilightbrbrModulo per visualizzare la 
pioggia sul desktop.



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: tclock devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : tclock

Dir : e_modules/tclock


Modified Files:
module.desktop 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/tclock/module.desktop,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -3 -r1.4 -r1.5
--- module.desktop  4 Nov 2007 15:48:51 -   1.4
+++ module.desktop  30 Dec 2007 19:49:25 -  1.5
@@ -2,5 +2,5 @@
 Type=Link
 Name=TClock
 Icon=e-module-tclock
-Comment=hilightTClock Gadget/hilightbrA digital clock gadget.
-Comment[it]=hilightModulo TClock/hilightbrUn modulo per un orologio 
digitale.
+Comment=hilightTClock Gadget/hilightbrbrA digital clock gadget.
+Comment[it]=hilightModulo TClock/hilightbrbrUn modulo per un orologio 
digitale.



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: photo devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : photo

Dir : e_modules/photo


Modified Files:
module.desktop 


Log Message:
Fix up module.desktop descriptions for new box width.

===
RCS file: /cvs/e/e_modules/photo/module.desktop,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -3 -r1.3 -r1.4
--- module.desktop  18 Nov 2007 19:47:06 -  1.3
+++ module.desktop  30 Dec 2007 19:49:25 -  1.4
@@ -6,5 +6,5 @@
 X-Enlightenment-WaitExit=false
 X-Enlightenment-IconClass=photo,gadget
 Icon=e-module-photo
-Comment=hilightPhoto Gadget/hilightbrView photos or a mini 
slideshowbrwithin this gadget.
-Comment[it]=hilightModulo Photo/hilightbrGuarda le tue foto in 
unbrmini slideshow con questobrmodulo.
+Comment=hilightPhoto Gadget/hilightbrbrView photos or a mini slideshow 
within this gadget.
+Comment[it]=hilightModulo Photo/hilightbrbrGuarda le tue foto in un 
mini slideshow con questo modulo.



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/conf_intl


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/conf_intl/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   6 Dec 2007 05:07:30 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:53 -  1.6
@@ -11,11 +11,11 @@
 Name[zh_CN]=
 Name[zh_TW]=
 Icon=e-module-conf_intl
-Comment=hilightE17 Configuration Applet/hilightbrUsed to select a 
default language.
+Comment=hilightE17 Configuration Applet/hilightbrbrUsed to select a 
default language.
 Comment[de]=
-Comment[es]=hilightApplet de configuración de E17/hilightbrUsado para 
elegir el idioma predeterminado.
+Comment[es]=hilightApplet de configuración de E17/hilightbrbrUsado 
para elegir el idioma predeterminado.
 Comment[fr]=
-Comment[it]=hilightApplet configurazione di E17/hilightbrUsato per 
selezionare unabrlingua predefinita.
+Comment[it]=hilightApplet configurazione di E17/hilightbrbrUsato per 
selezionare una lingua predefinita.
 Comment[ja]=
 Comment[pt]=
 Comment[pt_BR]=



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/modules/winlist


Modified Files:
module.desktop.in 


Log Message:
Fix up module descriptions for new width of description box.

===
RCS file: /cvs/e/e17/apps/e/src/modules/winlist/module.desktop.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- module.desktop.in   2 Nov 2007 06:30:33 -   1.5
+++ module.desktop.in   30 Dec 2007 19:34:57 -  1.6
@@ -3,6 +3,6 @@
 Name=Window Switcher List
 Name[it]=Commutatore finestre
 Icon=e-module-winlist
-Comment=hilightWindow List Module/hilightbrA module to show the list 
ofbrclient applications presently running.
-Comment[it]=hilightModulo commutazione finestre/hilightbrUn modulo per 
la visualizzazione e labrnavigazione tra le finestre aperte.
+Comment=hilightWindow List Module/hilightbrbrA module to show the list 
of client applications presently running.
+Comment[it]=hilightModulo commutazione finestre/hilightbrbrUn modulo 
per la visualizzazione e la navigazione tra le finestre aperte.
 X-Enlightenment-ModuleType=system



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: e kwo

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/src


Modified Files:
borders.c buttons.c coords.c dialog.c iclass.c iclass.h 
tclass.h text.c 


Log Message:
Center title vertically within border.

===
RCS file: /cvs/e/e16/e/src/borders.c,v
retrieving revision 1.301
retrieving revision 1.302
diff -u -3 -r1.301 -r1.302
--- borders.c   10 Sep 2007 20:26:52 -  1.301
+++ borders.c   30 Dec 2007 20:40:49 -  1.302
@@ -112,7 +112,7 @@
 
ITApply(ewb-win, ewin-border-part[i].iclass, is,
   ewb-state, ewin-state.active, EoIsSticky(ewin),
-  ST_BORDER, ewin-border-part[i].tclass, ts, txt);
+  ST_BORDER, ewin-border-part[i].tclass, ts, txt, 1);
 }
 
 static int
===
RCS file: /cvs/e/e16/e/src/buttons.c,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -3 -r1.107 -r1.108
--- buttons.c   21 Dec 2007 22:04:54 -  1.107
+++ buttons.c   30 Dec 2007 20:40:49 -  1.108
@@ -262,7 +262,7 @@
 ButtonDraw(Button * b)
 {
ITApply(EoGetWin(b), b-iclass, NULL,
-  b-state, 0, 0, ST_BUTTON, b-tclass, NULL, b-label);
+  b-state, 0, 0, ST_BUTTON, b-tclass, NULL, b-label, 0);
EoShapeUpdate(b, 0);
 }
 
===
RCS file: /cvs/e/e16/e/src/coords.c,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -3 -r1.47 -r1.48
--- coords.c10 Sep 2007 20:26:53 -  1.47
+++ coords.c30 Dec 2007 20:40:49 -  1.48
@@ -125,7 +125,7 @@
EobjMap(eo, 0);
  }
 
-   ITApply(eo-win, ic, NULL, STATE_NORMAL, 1, 0, ST_SOLID, tc, NULL, s);
+   ITApply(eo-win, ic, NULL, STATE_NORMAL, 1, 0, ST_SOLID, tc, NULL, s, 1);
 
if (md) /* Assuming that shape change only happens when 
size changes too */
   EobjShapeUpdate(eo, 0);
===
RCS file: /cvs/e/e16/e/src/dialog.c,v
retrieving revision 1.193
retrieving revision 1.194
diff -u -3 -r1.193 -r1.194
--- dialog.c21 Dec 2007 22:04:54 -  1.193
+++ dialog.c30 Dec 2007 20:40:49 -  1.194
@@ -440,7 +440,7 @@
else
  {
ITApply(db-win, db-iclass, NULL, state, 0, 0,
-   ST_WIDGET, db-tclass, NULL, db-text);
+   ST_WIDGET, db-tclass, NULL, db-text, 0);
  }
 }
 #endif
@@ -1660,7 +1660,7 @@
else if (!(di-hilited)  (di-clicked))
   state = STATE_CLICKED;
ITApply(di-win, di-iclass, NULL, state, 0, 0,
-   ST_WIDGET, di-tclass, NULL, di-text);
+   ST_WIDGET, di-tclass, NULL, di-text, 0);
break;
 
  case DITEM_AREA:
===
RCS file: /cvs/e/e16/e/src/iclass.c,v
retrieving revision 1.125
retrieving revision 1.126
diff -u -3 -r1.125 -r1.126
--- iclass.c15 Dec 2007 16:29:22 -  1.125
+++ iclass.c30 Dec 2007 20:40:49 -  1.126
@@ -1165,7 +1165,7 @@
 void
 ITApply(Win win, ImageClass * ic, ImageState * is,
int state, int active, int sticky, int image_type,
-   TextClass * tc, TextState * ts, const char *text)
+   TextClass * tc, TextState * ts, const char *text, int flags)
 {
int w, h;
 
@@ -1212,7 +1212,7 @@
 
  TextstateTextDraw(ts, win, pmap, text, 0, 0, w, h,
(ic-padding), 0,
-   TextclassGetJustification(tc));
+   TextclassGetJustification(tc), flags);
   }
 
 /* Set window pixmap */
@@ -1261,7 +1261,8 @@
 ImageclassApply(ImageClass * ic, Win win, int active, int sticky, int state,
int image_type)
 {
-   ITApply(win, ic, NULL, state, active, sticky, image_type, NULL, NULL, NULL);
+   ITApply(win, ic, NULL, state, active, sticky, image_type, NULL, NULL, NULL,
+  0);
 }
 
 void
===
RCS file: /cvs/e/e16/e/src/iclass.h,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -3 -r1.16 -r1.17
--- iclass.h10 Sep 2007 20:26:53 -  1.16
+++ iclass.h30 Dec 2007 20:40:49 -  1.17
@@ -121,6 +121,7 @@
  int image_type);
 voidITApply(Win win, ImageClass * ic, ImageState * is,
int state, int active, int sticky, int image_type,
-   TextClass * tc, TextState * ts, const char *text);
+   TextClass * tc, TextState * ts, const char *text,
+   int flags);
 
 #endif /* _ICLASS_H */
===
RCS file: /cvs/e/e16/e/src/tclass.h,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -3 -r1.24 -r1.25
--- 

E CVS: e kwo

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/src


Modified Files:
E.h handlers.c session.c 


Log Message:
Fix more trouble during exit.

Good signals (HUP, INT, QUIT, ...) should exit by quitting the main
event loop.
Evil signals (ILL, FPE, SEGV, ...) should exit immediately, i.e.
not return from the signal handler.

===
RCS file: /cvs/e/e16/e/src/E.h,v
retrieving revision 1.598
retrieving revision 1.599
diff -u -3 -r1.598 -r1.599
--- E.h 21 Dec 2007 22:04:52 -  1.598
+++ E.h 30 Dec 2007 20:55:20 -  1.599
@@ -533,6 +533,7 @@
   charxselect;
   charexiting;
   charin_signal_handler;
+  charexit_now;
   charsave_ok;
   charcoredump;
   int exit_mode;
===
RCS file: /cvs/e/e16/e/src/handlers.c,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -3 -r1.58 -r1.59
--- handlers.c  2 Dec 2007 11:15:57 -   1.58
+++ handlers.c  30 Dec 2007 20:55:20 -  1.59
@@ -33,6 +33,7 @@
 {
static int  loop_count = 0;
int status;
+   const char *txt;
 
Mode.wm.in_signal_handler = 1;
 
@@ -60,62 +61,57 @@
break;
 
  case SIGILL:
-   if (disp)
-  EUngrabServer();
-   DialogAlert(_
-   (Enlightenment performed an Illegal Instruction.\n \n
-This most likely is due to you having installed an run 
a\n
-binary of Enlightenment that was compiled for a make or 
model\n
-of CPU not 100%% identical or compatible with yours. 
Please\n
-either obtain the correct package for your system, or\n
-re-compile Enlightenment and possibly any support 
libraries\n
-that you got in binary format to run Enlightenment.\n));
-   SessionExit(EEXIT_ERROR, NULL);
-   break;
+   txt = _(Enlightenment performed an Illegal Instruction.\n \n
+   This most likely is due to you having installed an run a\n
+   binary of Enlightenment that was compiled for a make or 
model\n
+   of CPU not 100%% identical or compatible with yours. Please\n
+   either obtain the correct package for your system, or\n
+   re-compile Enlightenment and possibly any support libraries\n
+   that you got in binary format to run Enlightenment.\n);
+   goto do_alert;
 
  case SIGFPE:
-   if (disp)
-  EUngrabServer();
-   DialogAlert(_
-   (Enlightenment caused a Floating Point Exception.\n \n
-This means that Enlightenment or support library routines 
it calls\n
-have performed an illegal mathematical operation (most 
likely\n
-dividing a number by zero). This is most likely a bug. It 
is\n
-recommended to restart now. If you wish to help fix this 
please\n
-compile Enlightenment with debugging symbols in and run\n
-Enlightenment under gdb so you can backtrace for where it 
died and\n
-send in a useful bug report with backtrace information 
and variable\n
-dumps etc.\n));
-   SessionExit(EEXIT_ERROR, NULL);
-   break;
+   txt = _(Enlightenment caused a Floating Point Exception.\n \n
+   This means that Enlightenment or support library routines it 
calls\n
+   have performed an illegal mathematical operation (most 
likely\n
+   dividing a number by zero). This is most likely a bug. It is\n
+   recommended to restart now. If you wish to help fix this 
please\n
+   compile Enlightenment with debugging symbols in and run\n
+   Enlightenment under gdb so you can backtrace for where it died 
and\n
+   send in a useful bug report with backtrace information and 
variable\n
+   dumps etc.\n);
+   goto do_alert;
 
  case SIGSEGV:
+   txt = _(Enlightenment caused Segment Violation (Segfault)\n \n
+   This means that Enlightenment or support library routines it 
calls\n
+   have accessed areas of your system's memory that they are 
not\n
+   allowed access to. This is most likely a bug. It is 
recommended to\n
+   restart now. If you wish to help fix this please compile\n
+   Enlightenment with debugging symbols in and run 
Enlightenment\n
+   under gdb so you can backtrace for where it died and send in 
a\n
+   useful bug report with backtrace information and variable\n
+   dumps etc.\n);
+   goto do_alert;
+
+ case SIGBUS:
+   txt = 

E CVS: e kwo

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/src


Modified Files:
borders.c 


Log Message:
Formatting cleanup.

===
RCS file: /cvs/e/e16/e/src/borders.c,v
retrieving revision 1.302
retrieving revision 1.303
diff -u -3 -r1.302 -r1.303
--- borders.c   30 Dec 2007 20:40:49 -  1.302
+++ borders.c   30 Dec 2007 20:58:00 -  1.303
@@ -200,13 +200,14 @@
   BorderWinpartCalc(ewin, topleft, ww, hh);
if (bottomright = 0)
   BorderWinpartCalc(ewin, bottomright, ww, hh);
+
x = y = 0;
if (topleft == -1)
  {
-   x = ((ewin-border-part[i].geom.topleft.x.percent *
- ww)  10) + ewin-border-part[i].geom.topleft.x.absolute;
-   y = ((ewin-border-part[i].geom.topleft.y.percent *
- hh)  10) + ewin-border-part[i].geom.topleft.y.absolute;
+   x = ((ewin-border-part[i].geom.topleft.x.percent * ww)  10) +
+  ewin-border-part[i].geom.topleft.x.absolute;
+   y = ((ewin-border-part[i].geom.topleft.y.percent * hh)  10) +
+  ewin-border-part[i].geom.topleft.y.absolute;
  }
else if (topleft = 0)
  {
@@ -219,14 +220,13 @@
   ewin-border-part[i].geom.topleft.y.absolute +
   ewin-bits[topleft].y;
  }
+
ox = oy = 0;
if (bottomright == -1)
  {
-   ox = ((ewin-border-
-  part[i].geom.bottomright.x.percent * ww)  10) +
+   ox = ((ewin-border-part[i].geom.bottomright.x.percent * ww)  10) +
   ewin-border-part[i].geom.bottomright.x.absolute;
-   oy = ((ewin-border-
-  part[i].geom.bottomright.y.percent * hh)  10) +
+   oy = ((ewin-border-part[i].geom.bottomright.y.percent * hh)  10) +
   ewin-border-part[i].geom.bottomright.y.absolute;
  }
else if (bottomright = 0)
@@ -240,6 +240,7 @@
   ewin-border-part[i].geom.bottomright.y.absolute +
   ewin-bits[bottomright].y;
  }
+
/*
 * calculate height before width, because we may need it in order to
 * determine the font size. But we might do it the other way around for



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: e kwo

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/src


Modified Files:
borders.c 


Log Message:
Fix potential segv with broken themes.

===
RCS file: /cvs/e/e16/e/src/borders.c,v
retrieving revision 1.303
retrieving revision 1.304
diff -u -3 -r1.303 -r1.304
--- borders.c   30 Dec 2007 20:58:00 -  1.303
+++ borders.c   30 Dec 2007 21:03:57 -  1.304
@@ -1196,56 +1196,59 @@
i1 = ConfigParseline1(s, s2, NULL, NULL);
i2 = atoi(s2);
 
-   if (i2 == CONFIG_OPEN)
+   switch (i1)
  {
-err = BorderPartLoad(fs, i1, b);
-if (err)
-   break;
- }
-   else
- {
-switch (i1)
+ case CONFIG_CLOSE:
+goto done;
+ case CONFIG_CLASSNAME:
+ case BORDER_NAME:
+if (BorderFind(s2))
   {
-  case CONFIG_CLOSE:
+ SkipTillEnd(fs);
  goto done;
-  case BORDER_INIT:
- break;
-  case CONFIG_CLASSNAME:
-  case BORDER_NAME:
- if (BorderFind(s2))
-   {
-  SkipTillEnd(fs);
-  goto done;
-   }
- b = BorderCreate(s2);
- break;
-  case BORDER_GROUP_NAME:
- b-group_border_name = Estrdup(s2);
- break;
-  case BORDER_LEFT:
- b-border.left = i2;
- break;
-  case BORDER_RIGHT:
- b-border.right = i2;
- break;
-  case BORDER_TOP:
- b-border.top = i2;
- break;
-  case BORDER_BOTTOM:
- b-border.bottom = i2;
- break;
-  case SHADEDIR:
- b-shadedir = i2;
- break;
-  case BORDER_CHANGES_SHAPE:
- b-changes_shape = i2;
- break;
-  case CONFIG_ACTIONCLASS:
- b-aclass = ActionclassFind(s2);
- break;
-  default:
- break;
   }
+b = BorderCreate(s2);
+continue;
+ }
+
+   if (!b)
+  break;
+
+   switch (i1)
+ {
+ default:
+break;
+ case BORDER_INIT:
+if (i2 != CONFIG_OPEN)
+   break;
+err = BorderPartLoad(fs, i1, b);
+if (err)
+   break;
+break;
+ case BORDER_GROUP_NAME:
+b-group_border_name = Estrdup(s2);
+break;
+ case BORDER_LEFT:
+b-border.left = i2;
+break;
+ case BORDER_RIGHT:
+b-border.right = i2;
+break;
+ case BORDER_TOP:
+b-border.top = i2;
+break;
+ case BORDER_BOTTOM:
+b-border.bottom = i2;
+break;
+ case SHADEDIR:
+b-shadedir = i2;
+break;
+ case BORDER_CHANGES_SHAPE:
+b-changes_shape = i2;
+break;
+ case CONFIG_ACTIONCLASS:
+b-aclass = ActionclassFind(s2);
+break;
  }
  }
err = -1;



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: e kwo

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/src


Modified Files:
desktops.c eimage.c eimage.h iclass.c iclass.h pager.c 


Log Message:
Simplify ImageclassApplySimple and ScaleRect.

===
RCS file: /cvs/e/e16/e/src/desktops.c,v
retrieving revision 1.273
retrieving revision 1.274
diff -u -3 -r1.273 -r1.274
--- desktops.c  21 Dec 2007 22:04:54 -  1.273
+++ desktops.c  30 Dec 2007 21:18:04 -  1.274
@@ -2479,20 +2479,12 @@
ImageClass *ic;
 
ic = ImageclassFind(SETTINGS_AREA_AREA, 0);
-   if (ic)
-  ImageclassApply(ic, win, 0, 0, STATE_NORMAL, ST_SOLID);
+   ImageclassApply(ic, win, 0, 0, STATE_NORMAL, ST_SOLID);
+
awin = ECreateWindow(win, 0, 0, 18, 14, 0);
ic = ImageclassFind(SETTINGS_AREADESK_AREA, 0);
-   if (ic)
- {
-Pixmap  pmap;
+   ImageclassApply(ic, awin, 0, 0, STATE_NORMAL, ST_SOLID);
 
-pmap = ImageclassApplySimple(ic, awin, None, STATE_NORMAL,
- 0, 0, 18, 14);
-ESetWindowBackgroundPixmap(awin, pmap);
-EFreePixmap(pmap);
- }
-   EClearWindow(awin);
called = 1;
  }
EMoveResizeWindow(awin, ((w / 2) - (9 * tmp_area_x)),
===
RCS file: /cvs/e/e16/e/src/eimage.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -3 -r1.20 -r1.21
--- eimage.c15 Dec 2007 17:10:47 -  1.20
+++ eimage.c30 Dec 2007 21:18:04 -  1.21
@@ -473,7 +473,7 @@
 }
 
 void
-ScaleRect(Win wsrc, Drawable src, Win wdst, Pixmap dst, Pixmap * pdst,
+ScaleRect(Win wsrc, Drawable src, Win wdst, Pixmap dst,
  int sx, int sy, int sw, int sh,
  int dx, int dy, int dw, int dh, int scale)
 {
@@ -483,15 +483,7 @@
 
im = EImageGrabDrawableScaled(wsrc, src, None, sx, sy, sw, sh,
 scale * dw, scale * dh, 0, 0);
-   if (pdst)
- {
-   EImageRenderPixmaps(im, wdst, EIMAGE_ANTI_ALIAS, pdst, None, dw, dh);
- }
-   else
- {
-   EImageRenderOnDrawable(im, wdst, dst, EIMAGE_ANTI_ALIAS,
-  dx, dy, dw, dh);
- }
+   EImageRenderOnDrawable(im, wdst, dst, EIMAGE_ANTI_ALIAS, dx, dy, dw, dh);
imlib_free_image();
 }
 
===
RCS file: /cvs/e/e16/e/src/eimage.h,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -3 -r1.13 -r1.14
--- eimage.h15 Dec 2007 17:10:47 -  1.13
+++ eimage.h30 Dec 2007 21:18:04 -  1.14
@@ -102,8 +102,7 @@
 unsigned char *b,
 unsigned char *a);
 
-voidScaleRect(Win wsrc, Drawable src,
- Win wdst, Pixmap dst, Pixmap * pdst,
+voidScaleRect(Win wsrc, Drawable src, Win wdst, Pixmap dst,
  int sx, int sy, int sw, int sh,
  int dx, int dy, int dw, int dh, int scale);
 
===
RCS file: /cvs/e/e16/e/src/iclass.c,v
retrieving revision 1.126
retrieving revision 1.127
diff -u -3 -r1.126 -r1.127
--- iclass.c30 Dec 2007 20:40:49 -  1.126
+++ iclass.c30 Dec 2007 21:18:04 -  1.127
@@ -806,29 +806,18 @@
return im;
 }
 
-Pixmap
+void
 ImageclassApplySimple(ImageClass * ic, Win win, Drawable draw, int state,
  int x, int y, int w, int h)
 {
-   Pixmap  pmap;
EImage *im;
 
im = ImageclassGetImage(ic, 0, 0, state);
if (!im)
-  return None;
-
-   pmap = None;
-   if (draw == None)
- {
-   pmap = ECreatePixmap(win, w, h, 0);
-   draw = pmap;
-   x = y = 0;
- }
+  return;
 
EImageRenderOnDrawable(im, win, draw, 0, x, y, w, h);
EImageFree(im);
-
-   return pmap;
 }
 
 #ifdef ENABLE_TRANSPARENCY
===
RCS file: /cvs/e/e16/e/src/iclass.h,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -3 -r1.17 -r1.18
--- iclass.h30 Dec 2007 20:40:49 -  1.17
+++ iclass.h30 Dec 2007 21:18:04 -  1.18
@@ -105,7 +105,7 @@
 ImageClass *ImageclassCreateSimple(const char *name, const char 
*image);
 EImage *ImageclassGetImage(ImageClass * ic, int active, int sticky,
   int state);
-Pixmap  ImageclassApplySimple(ImageClass * ic, Win win,
+voidImageclassApplySimple(ImageClass * ic, Win win,
  Drawable draw, int state, int x,
  int y, int w, int h);
 voidImageclassApply(ImageClass * ic, Win win,

E CVS: apps/e devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e17
Module  : apps/e

Dir : e17/apps/e/src/bin


Modified Files:
e_int_config_modules.c 


Log Message:
Remove commented lines.

===
RCS file: /cvs/e/e17/apps/e/src/bin/e_int_config_modules.c,v
retrieving revision 1.81
retrieving revision 1.82
diff -u -3 -r1.81 -r1.82
--- e_int_config_modules.c  30 Dec 2007 19:01:33 -  1.81
+++ e_int_config_modules.c  30 Dec 2007 21:20:41 -  1.82
@@ -178,8 +178,6 @@
e_widget_frametable_object_append(of, ol, 0, 1, 1, 1, 1, 1, 1, 0);
e_widget_table_object_append(o, of, 0, 0, 1, 1, 1, 1, 1, 1);
 
-//   e_widget_list_object_append(o, of, 1, 1, 0.5);
-
of = e_widget_frametable_add(evas, _(Loaded Modules), 0);
ol = e_widget_ilist_add(evas, 24, 24, NULL);
cfdata-l_loaded = ol;
@@ -194,16 +192,11 @@
e_widget_frametable_object_append(of, ol, 0, 1, 1, 1, 1, 1, 1, 0);
e_widget_table_object_append(o, of, 1, 0, 1, 1, 1, 1, 1, 1);
 
-//   e_widget_list_object_append(o, of, 1, 1, 0.5);
-
ol = e_widget_textblock_add(evas);
e_widget_min_size_set(ol, 200, 70);
cfdata-o_desc = ol;
e_widget_textblock_markup_set(ol, _(Description: Unavailable));
-//   e_widget_frametable_object_append(of, ol, 0, 1, 1, 1, 1, 1, 1, 0);
e_widget_table_object_append(o, ol, 0, 1, 2, 1, 1, 0, 1, 0);
-
-//   e_widget_list_object_append(o, of, 1, 1, 0.5);
 
return o;
 }



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: e kwo

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/src


Modified Files:
E.h buttons.c desktops.c 


Log Message:
Mark deskray stuff as such.

===
RCS file: /cvs/e/e16/e/src/E.h,v
retrieving revision 1.599
retrieving revision 1.600
diff -u -3 -r1.599 -r1.600
--- E.h 30 Dec 2007 20:55:20 -  1.599
+++ E.h 30 Dec 2007 21:20:52 -  1.600
@@ -69,6 +69,7 @@
 #include xwin.h
 
 #define ENABLE_COLOR_MODIFIERS 0   /* Not functional */
+#define ENABLE_DESKRAY 0   /* Not functional */
 
 #define ENABLE_TRANSPARENCY 1
 #define ENABLE_THEME_TRANSPARENCY 1
===
RCS file: /cvs/e/e16/e/src/buttons.c,v
retrieving revision 1.108
retrieving revision 1.109
diff -u -3 -r1.108 -r1.109
--- buttons.c   30 Dec 2007 20:40:49 -  1.108
+++ buttons.c   30 Dec 2007 21:20:52 -  1.109
@@ -949,8 +949,10 @@
match = matchregexp(bmd-regex, EoGetName(b));
if ((match  !bmd-match) || (!match  bmd-match))
   return;
-   if (!strcmp(EoGetName(b), _DESKTOP_DESKRAY_DRAG_CONTROL)) /* 
FIXME - ??? */
+#if ENABLE_DESKRAY
+   if (!strcmp(EoGetName(b), _DESKTOP_DESKRAY_DRAG_CONTROL))
   return;
+#endif
  }
 
ButtonToggle(b);
===
RCS file: /cvs/e/e16/e/src/desktops.c,v
retrieving revision 1.274
retrieving revision 1.275
diff -u -3 -r1.274 -r1.275
--- desktops.c  30 Dec 2007 21:18:04 -  1.274
+++ desktops.c  30 Dec 2007 21:20:52 -  1.275
@@ -79,6 +79,10 @@
 {
chars[512];
const char *ic1, *ic2, *ic3;
+
+#if ENABLE_DESKRAY
+   const char *ic4;
+#endif
charac1[64], ac2[64], ac3[64];
Button *b;
ActionClass*ac;
@@ -171,7 +175,7 @@
ic1 = DESKTOP_DRAGBUTTON_VERT;
ic2 = DESKTOP_RAISEBUTTON_VERT;
ic3 = DESKTOP_LOWERBUTTON_VERT;
-#if 0
+#if ENABLE_DESKRAY
ic4 = DESKTOP_DESKRAY_VERT;
 #endif
  }
@@ -180,7 +184,7 @@
ic1 = DESKTOP_DRAGBUTTON_HORIZ;
ic2 = DESKTOP_RAISEBUTTON_HORIZ;
ic3 = DESKTOP_LOWERBUTTON_HORIZ;
-#if 0
+#if ENABLE_DESKRAY
ic4 = DESKTOP_DESKRAY_HORIZ;
 #endif
  }
@@ -289,7 +293,7 @@
ButtonSetCallback(b, DeskButtonCallback, EoObj(dsk));
  }
 
-#if 0  /* What is this anyway? */
+#if ENABLE_DESKRAY
if (dsk-num  0)
  {
if (Conf.desks.dragdir == 0)
@@ -2081,7 +2085,9 @@
  }
return 0;
 }
+#endif
 
+#if ENABLE_DESKRAY
 static int
 doDeskray(EWin * edummy, const char *params)
 {
@@ -2113,7 +2119,7 @@
  }
return 0;
 }
-#endif
+#endif /* ENABLE_DESKRAY */
 
 static void
 DesksInit(void)



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: e kwo

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : kwo
Project : e16
Module  : e

Dir : e16/e/po


Modified Files:
bg.po bs.po da.po de.po en_US.po es.po fr.po hu.po ja.po ko.po 
nl.po no.po pl.po pt.po pt_BR.po ru.po sv.po tr.po 


Log Message:
Update po.




-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: screenshot devilhorns

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : devilhorns
Project : e_modules
Module  : screenshot

Dir : e_modules/screenshot/src


Modified Files:
e_mod_main.c 


Log Message:
Make sure we define filename  app for the config.
This should fix the rare segfault people may have.

===
RCS file: /cvs/e/e_modules/screenshot/src/e_mod_main.c,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -3 -r1.1 -r1.2
--- e_mod_main.c29 Dec 2007 21:18:47 -  1.1
+++ e_mod_main.c30 Dec 2007 21:52:30 -  1.2
@@ -299,6 +299,8 @@
cfg-use_bell = 1;
cfg-use_thumb = 0;
cfg-location = evas_stringshare_add(e_user_homedir_get());
+   cfg-filename = NULL;
+   cfg-app = NULL;
IFMODCFGEND;
 
cfg-version = MOD_CONFIG_FILE_VERSION;



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl jethomas

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : jethomas
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/lib


Modified Files:
ewl_image.c 


Log Message:
Fix bug 243

===
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_image.c,v
retrieving revision 1.70
retrieving revision 1.71
diff -u -3 -r1.70 -r1.71
--- ewl_image.c 12 Nov 2007 22:42:22 -  1.70
+++ ewl_image.c 31 Dec 2007 05:56:17 -  1.71
@@ -14,6 +14,7 @@
 
 static Ecore_Event_Handler *ewl_image_epsilon_handler = NULL;
 static int ewl_image_thumbnail_cb_complete(void *data, int type, void *event);
+static void ewl_image_thumbnail_cb_value_changed(Ewl_Widget *w, void *ev, void 
*data);
 #endif
 
 
@@ -637,12 +638,37 @@
ewl_image_thumbnail_request(EWL_IMAGE_THUMBNAIL(thumb),
(char *)ewl_image_file_path_get(i));
EWL_IMAGE_THUMBNAIL(thumb)-orig = EWL_WIDGET(i);
+   ewl_callback_append(EWL_WIDGET(i),
+   EWL_CALLBACK_VALUE_CHANGED,
+   ewl_image_thumbnail_cb_value_changed,
+   thumb);
}
}
 #endif
 
DRETURN_PTR(thumb, DLEVEL_STABLE);
 }
+
+#ifdef BUILD_EPSILON_SUPPORT
+static void
+ewl_image_thumbnail_cb_value_changed(Ewl_Widget *w, void *ev, void *data)
+{
+   Ewl_Widget *thumb;
+   Ewl_Widget *image;
+
+   DENTER_FUNCTION(DLEVEL_STABLE);
+   DCHECK_PARAM_PTR(w);
+   DCHECK_PARAM_PTR(data);
+
+   thumb = data;
+   image = w;
+
+   ewl_image_thumbnail_request(EWL_IMAGE_THUMBNAIL(thumb),
+   (char *)ewl_image_file_path_get(EWL_IMAGE(image)));
+
+   DLEAVE_FUNCTION(DLEVEL_STABLE);
+}
+#endif
 
 /**
  * @return Returns a new Ewl_Image_Thumbnail widget



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs


E CVS: libs/ewl jethomas

2007-12-30 Thread Enlightenment CVS
Enlightenment CVS committal

Author  : jethomas
Project : e17
Module  : libs/ewl

Dir : e17/libs/ewl/src/lib


Modified Files:
ewl_image.c 


Log Message:
Remove unnecessary cast

===
RCS file: /cvs/e/e17/libs/ewl/src/lib/ewl_image.c,v
retrieving revision 1.71
retrieving revision 1.72
diff -u -3 -r1.71 -r1.72
--- ewl_image.c 31 Dec 2007 05:56:17 -  1.71
+++ ewl_image.c 31 Dec 2007 06:50:32 -  1.72
@@ -664,7 +664,7 @@
image = w;
 
ewl_image_thumbnail_request(EWL_IMAGE_THUMBNAIL(thumb),
-   (char *)ewl_image_file_path_get(EWL_IMAGE(image)));
+   ewl_image_file_path_get(EWL_IMAGE(image)));
 
DLEAVE_FUNCTION(DLEVEL_STABLE);
 }



-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/
___
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs