You can subscribe to this list here.
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(2) |
Aug
(281) |
Sep
(604) |
Oct
(993) |
Nov
(511) |
Dec
(520) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2009 |
Jan
(476) |
Feb
(432) |
Mar
(524) |
Apr
(653) |
May
(393) |
Jun
(356) |
Jul
(329) |
Aug
(584) |
Sep
(683) |
Oct
(559) |
Nov
(690) |
Dec
(762) |
2010 |
Jan
(924) |
Feb
(912) |
Mar
(964) |
Apr
(859) |
May
(867) |
Jun
(593) |
Jul
(769) |
Aug
(1067) |
Sep
(1142) |
Oct
(1134) |
Nov
(1030) |
Dec
(691) |
2011 |
Jan
(822) |
Feb
(828) |
Mar
(791) |
Apr
(824) |
May
(799) |
Jun
(1039) |
Jul
(1035) |
Aug
(1121) |
Sep
(687) |
Oct
(852) |
Nov
(1138) |
Dec
(979) |
2012 |
Jan
(957) |
Feb
(893) |
Mar
(1265) |
Apr
(737) |
May
(1051) |
Jun
(1464) |
Jul
(1618) |
Aug
(1202) |
Sep
(1304) |
Oct
(1504) |
Nov
(1219) |
Dec
(1981) |
2013 |
Jan
(1566) |
Feb
(858) |
Mar
(83) |
Apr
(66) |
May
(9) |
Jun
(14) |
Jul
(13) |
Aug
|
Sep
(5) |
Oct
|
Nov
|
Dec
|
From: Enlightenment S. <no-...@en...> - 2013-09-09 17:17:43
|
Log: use regular changed smart callback to show our glorious starting text Author: discomfitor Date: 2013-09-09 10:17:34 -0700 (Mon, 09 Sep 2013) New Revision: 84584 Trac: http://trac.enlightenment.org/e/changeset/84584 Modified: trunk/MISC/pinkpanther/main.c Modified: trunk/MISC/pinkpanther/main.c =================================================================== --- trunk/MISC/pinkpanther/main.c 2013-09-09 17:13:13 UTC (rev 84583) +++ trunk/MISC/pinkpanther/main.c 2013-09-09 17:17:34 UTC (rev 84584) @@ -64,8 +64,8 @@ evas_object_resize(win, 300, 300); evas_object_show(win); - evas_object_smart_callback_add(e1, "changed,user", _entry_change_cb, e2); - evas_object_smart_callback_add(e2, "changed,user", _entry_change_cb, e1); + evas_object_smart_callback_add(e1, "changed", _entry_change_cb, e2); + evas_object_smart_callback_add(e2, "changed", _entry_change_cb, e1); elm_object_text_set(e1, "Uryyb GNfa!"); elm_object_focus_set(e2, 1); |
From: Enlightenment S. <no-...@en...> - 2013-09-09 17:13:21
|
Log: set focus on textable entry Author: discomfitor Date: 2013-09-09 10:13:13 -0700 (Mon, 09 Sep 2013) New Revision: 84583 Trac: http://trac.enlightenment.org/e/changeset/84583 Modified: trunk/MISC/pinkpanther/main.c Modified: trunk/MISC/pinkpanther/main.c =================================================================== --- trunk/MISC/pinkpanther/main.c 2013-09-09 17:12:52 UTC (rev 84582) +++ trunk/MISC/pinkpanther/main.c 2013-09-09 17:13:13 UTC (rev 84583) @@ -68,6 +68,7 @@ evas_object_smart_callback_add(e2, "changed,user", _entry_change_cb, e1); elm_object_text_set(e1, "Uryyb GNfa!"); + elm_object_focus_set(e2, 1); elm_run(); |
From: Enlightenment S. <no-...@en...> - 2013-09-09 17:13:02
|
Log: add tooltips Author: discomfitor Date: 2013-09-09 10:12:52 -0700 (Mon, 09 Sep 2013) New Revision: 84582 Trac: http://trac.enlightenment.org/e/changeset/84582 Modified: trunk/MISC/pinkpanther/main.c Modified: trunk/MISC/pinkpanther/main.c =================================================================== --- trunk/MISC/pinkpanther/main.c 2013-09-09 17:05:58 UTC (rev 84581) +++ trunk/MISC/pinkpanther/main.c 2013-09-09 17:12:52 UTC (rev 84582) @@ -46,6 +46,7 @@ evas_object_show(box); e1 = elm_entry_add(win); + elm_object_tooltip_text_set(e1, "translation here"); elm_entry_scrollable_set(e1, EINA_TRUE); evas_object_size_hint_weight_set(e1, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); evas_object_size_hint_align_set(e1, EVAS_HINT_FILL, EVAS_HINT_FILL); @@ -53,6 +54,7 @@ evas_object_show(e1); e2 = elm_entry_add(win); + elm_object_tooltip_text_set(e2, "text here"); elm_entry_scrollable_set(e2, EINA_TRUE); evas_object_size_hint_weight_set(e2, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); evas_object_size_hint_align_set(e2, EVAS_HINT_FILL, EVAS_HINT_FILL); |
From: Enlightenment S. <no-...@en...> - 2013-09-09 17:06:07
|
Log: Welcome the Pink Panther Author: sachiel Date: 2013-09-09 10:05:58 -0700 (Mon, 09 Sep 2013) New Revision: 84581 Trac: http://trac.enlightenment.org/e/changeset/84581 Added: trunk/MISC/pinkpanther/ trunk/MISC/pinkpanther/Makefile trunk/MISC/pinkpanther/main.c Added: trunk/MISC/pinkpanther/Makefile =================================================================== --- trunk/MISC/pinkpanther/Makefile (rev 0) +++ trunk/MISC/pinkpanther/Makefile 2013-09-09 17:05:58 UTC (rev 84581) @@ -0,0 +1,4 @@ +CFLAGS=`pkg-config --cflags elementary` +LDFLAGS=`pkg-config --libs elementary` + +all: main Added: trunk/MISC/pinkpanther/main.c =================================================================== --- trunk/MISC/pinkpanther/main.c (rev 0) +++ trunk/MISC/pinkpanther/main.c 2013-09-09 17:05:58 UTC (rev 84581) @@ -0,0 +1,75 @@ +#include <Elementary.h> + +static void +_entry_change_cb(void *data, Evas_Object *from, void *ev EINA_UNUSED) +{ + Evas_Object *to = data; + const char *str = elm_object_text_get(from); + char *buf; + int i, len = eina_stringshare_strlen(str); + + buf = malloc(len + 1); + for (i = 0; i <= len; i++) + { + char l = str[i]; + if ((l >= 'A' && l <= 'M') || (l >= 'a' && l <= 'm')) + { + l += 13; + } + else if ((l >= 'N' && l <= 'Z') || (l >= 'n' && l <= 'z')) + { + l -= 13; + } + + buf[i] = l; + } + + elm_object_text_set(to, buf); + free(buf); +} + +int +main(int c, char **v) +{ + Evas_Object *win, *box, *e1, *e2; + + elm_init(c, v); + + elm_policy_set(ELM_POLICY_QUIT, ELM_POLICY_QUIT_LAST_WINDOW_CLOSED); + + win = elm_win_util_standard_add("pink-panther", "Pink Panther"); + elm_win_autodel_set(win, EINA_TRUE); + + box = elm_box_add(win); + evas_object_size_hint_weight_set(box, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); + elm_win_resize_object_add(win, box); + evas_object_show(box); + + e1 = elm_entry_add(win); + elm_entry_scrollable_set(e1, EINA_TRUE); + evas_object_size_hint_weight_set(e1, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); + evas_object_size_hint_align_set(e1, EVAS_HINT_FILL, EVAS_HINT_FILL); + elm_box_pack_end(box, e1); + evas_object_show(e1); + + e2 = elm_entry_add(win); + elm_entry_scrollable_set(e2, EINA_TRUE); + evas_object_size_hint_weight_set(e2, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND); + evas_object_size_hint_align_set(e2, EVAS_HINT_FILL, EVAS_HINT_FILL); + elm_box_pack_end(box, e2); + evas_object_show(e2); + + evas_object_resize(win, 300, 300); + evas_object_show(win); + + evas_object_smart_callback_add(e1, "changed,user", _entry_change_cb, e2); + evas_object_smart_callback_add(e2, "changed,user", _entry_change_cb, e1); + + elm_object_text_set(e1, "Uryyb GNfa!"); + + elm_run(); + + elm_shutdown(); + + return 0; +} |
From: Enlightenment S. <no-...@en...> - 2013-09-02 14:49:03
|
Log: Moved eskiss to git. Author: tasn Date: 2013-09-02 07:48:53 -0700 (Mon, 02 Sep 2013) New Revision: 84580 Trac: http://trac.enlightenment.org/e/changeset/84580 Removed: trunk/GAMES/eskiss/ |
Log: updating desktop files Author: maxerba Date: 2013-07-31 04:06:01 -0700 (Wed, 31 Jul 2013) New Revision: 84579 Trac: http://trac.enlightenment.org/e/changeset/84579 Modified: trunk/E-MODULES-EXTRA/deskshow/module.desktop.in trunk/E-MODULES-EXTRA/diskio/module.desktop.in trunk/E-MODULES-EXTRA/eektool/module.desktop.in trunk/E-MODULES-EXTRA/eooorg/module.desktop.in trunk/E-MODULES-EXTRA/everything-aspell/module.desktop.in trunk/E-MODULES-EXTRA/everything-mpris/module.desktop.in trunk/E-MODULES-EXTRA/everything-mpris/mpris-remote/Add_Tracks.desktop trunk/E-MODULES-EXTRA/everything-pidgin/module.desktop.in trunk/E-MODULES-EXTRA/everything-shotgun/module.desktop.in trunk/E-MODULES-EXTRA/everything-skeleton/module.desktop.in trunk/E-MODULES-EXTRA/everything-tracker/module.desktop.in trunk/E-MODULES-EXTRA/everything-wallpaper/module.desktop.in trunk/E-MODULES-EXTRA/exalt-client/module.desktop.in trunk/E-MODULES-EXTRA/exebuf/module.desktop.in trunk/E-MODULES-EXTRA/execwatch/module.desktop.in trunk/E-MODULES-EXTRA/flame/module.desktop.in trunk/E-MODULES-EXTRA/iiirk/module.desktop.in trunk/E-MODULES-EXTRA/itask/module.desktop.in trunk/E-MODULES-EXTRA/mem/module.desktop.in trunk/E-MODULES-EXTRA/rain/module.desktop.in trunk/E-MODULES-EXTRA/rmb/module.desktop.in trunk/E-MODULES-EXTRA/screenshot/module.desktop.in trunk/E-MODULES-EXTRA/share/module.desktop.in trunk/E-MODULES-EXTRA/skel/module.desktop.in trunk/E-MODULES-EXTRA/slideshow/module.desktop.in trunk/E-MODULES-EXTRA/snow/module.desktop.in trunk/E-MODULES-EXTRA/taskbar/module.desktop.in trunk/E-MODULES-EXTRA/uptime/module.desktop.in trunk/E-MODULES-EXTRA/weather/module.desktop.in trunk/E-MODULES-EXTRA/winlist-ng/module.desktop.in trunk/E-MODULES-EXTRA/winselector/module.desktop.in trunk/E-MODULES-EXTRA/wlan/module.desktop.in trunk/EXAMPLES/elementary/calculator/data/desktop/calculator-edje.desktop trunk/EXAMPLES/elementary/converter/data/desktop/converter-sample.desktop trunk/EXAMPLES/elementary/phonebook/data/desktop/Phone_Book_Sample.desktop trunk/EXAMPLES/elementary/sticky-notes/data/desktop/sticky-notes-edje.desktop trunk/PROTO/ardy/data/applications/ardy.desktop trunk/PROTO/ekbd/data/ekbd.desktop trunk/PROTO/elm_fullscreen/data/desktop/elm_fullscreen.desktop trunk/PROTO/elm_illume/data/desktop/elm_illume.desktop trunk/PROTO/elm_indicator/data/desktop/elm_indicator.desktop trunk/PROTO/elm_kbd/data/desktop/elm_kbd.desktop trunk/PROTO/elm_quickpanel/data/desktop/elm_quickpanel.desktop trunk/PROTO/elm_softkey/data/desktop/elm_softkey.desktop trunk/PROTO/enna-explorer/data/other/enna-explorer.desktop trunk/PROTO/ev/ev.desktop trunk/PROTO/keys/data/applications/keys.desktop trunk/editje/data/editje.desktop trunk/edje_viewer/data/edje_viewer.desktop trunk/elmdentica/data/elmdentica.desktop.in trunk/enki/enki.desktop trunk/envision/data/desktop/envision.desktop trunk/espionnage/espionnage.desktop.in trunk/eve/data/desktop/eve.desktop trunk/excessive/excessive.desktop.in Modified: trunk/E-MODULES-EXTRA/deskshow/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/deskshow/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/deskshow/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,6 +2,9 @@ Encoding=UTF-8 Type=Link Name=Deskshow +Name[Name]=Deskshow +Name[ab]= +Name[ca]= Name[cs]=Zobrazit plochu Name[de]=Arbeitsflächenzeiger Name[el]=Εμφάνιση Επιφάνειας @@ -10,8 +13,13 @@ Name[fr]=Bureau Name[gl]=Mostrar escritorio Name[hu]=Munkaasztal megjelenítése +Name[it]= +Name[ja]= +Name[ko]= Name[pt]=Mostrar área de trabalho Name[ru]=Показать рабочий стол +Name[sr]= +Name[tr]= Comment=Gadget to allow you to quickly uncover your desktop. Comment[cs]=Umožňuje rychle odkrýt plochu. Comment[de]=Helfer zum schnellen Freilegen der Arbeitsfläche. Modified: trunk/E-MODULES-EXTRA/diskio/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/diskio/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/diskio/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,14 +2,24 @@ Encoding=UTF-8 Type=Link Name=DiskIO +Name[Name]=DiskIO +Name[ab]= +Name[ca]= +Name[cs]= Name[de]=Festplatten-Ein-/Ausgabe Name[el]=DiskIO Name[eo]=DiskEE Name[es]=DiscoES Name[fr]=DisquES Name[gl]=DiscoES +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= Name[pt]=DiscoES Name[ru]=ДискВВ +Name[sr]= +Name[tr]= Comment=Visualize disk i/o. Comment[cs]=Zviditelní I/O disku. Comment[de]=Festplatten-Zugriffe visualisieren. Modified: trunk/E-MODULES-EXTRA/eektool/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/eektool/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/eektool/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,6 +2,24 @@ Encoding=UTF-8 Type=Link Name=Eektool +Name[Name]=Eektool +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= +Name[eo]= +Name[es]= +Name[fr]= +Name[gl]= +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= +Name[pt]= +Name[ru]= +Name[sr]= +Name[tr]= Comment=Redirects the output of a cmd to an edje textblock Comment[de]=Stellt die Ausgabe eines Kommandos als Edje Textblock da Comment[eo]=Alidirekti eligon de komando en Edje-tekstblokon Modified: trunk/E-MODULES-EXTRA/eooorg/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/eooorg/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/eooorg/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,13 +2,24 @@ Encoding=UTF-8 Type=Link Name=OpenOffice.org Quickstart +Name[Name]=OpenOffice.org Quickstart +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= Name[eo]=Rapida startigo de OpenOffice.org Name[es]=Arranque rápido de OpenOffice.org Name[fr]=Démarrage rapide OpenOffice.org Name[gl]=Inicio rápido de OpenOffice.org +Name[hu]= Name[it]=Avvio rapido OpenOffice.org +Name[ja]= +Name[ko]= Name[pt]=Início rápido do OpenOffice.org Name[ru]=Быстрый запуск OpenOffice.org +Name[sr]= +Name[tr]= Comment=This module preloads the openoffice process to save start time with the costs of some memory. Comment[eo]=Tiu modulo antaŭŝargas la procezon de OpenOffice.org por ŝpari starto-daŭron kontraŭ iom da memoro. Comment[es]=Este módulo 'precarga' el proceso de OpenOffice.org para minimizar el tiempo de arranque,<br>a costas de una poca memoria. Modified: trunk/E-MODULES-EXTRA/everything-aspell/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/everything-aspell/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/everything-aspell/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,11 +2,23 @@ Encoding=UTF-8 Type=Link Name=Everything Aspell +Name[Name]=Everything Aspell +Name[ab]= +Name[ca]= +Name[cs]= Name[de]=Everything - Aspell +Name[el]= Name[eo]=Ĉiuilo por Aspell +Name[es]= Name[fr]=Omni - Aspell +Name[gl]= +Name[hu]= Name[it]=Everything - Aspell +Name[ja]= +Name[ko]= +Name[pt]= Name[ru]=Всё - Aspell +Name[sr]= Name[tr]=Everything - Aspell Comment=Aspell Frontend, use 'aspell ' as trigger. Comment[de]=Bedienung von Aspell. Verwenden Sie 'aspell ' als Auslöser. Modified: trunk/E-MODULES-EXTRA/everything-mpris/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/everything-mpris/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/everything-mpris/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -1,14 +1,33 @@ [Desktop Entry] Encoding=UTF-8 Type=Link -Name=EMpris -Name[eo]=E-MPRIS -Comment=Control MPRIS supporting music player like Amarok, Audacious, xmms2, vlc and others -Comment[eo]=Kontroli MPRIS-kongruajn ludilojn kiel Amarok, Audacious, xmms2, vlc kaj aliaj -Comment[es]=Controle los reproductores multimedia como Amarok, Audacious, xmms2, vlc y otros mediante MPRIS. -Comment[fr]=Contrôle de lecteurs multimédias compatibles MPRIS comme Amarok, Audacious, Xmms2, Vlc et autres. -Comment[gl]=Controle os reprodutores multimedia como Amarok, Audacious, xmms2, vlc e outros mediante MPRIS. -Comment[it]=Controlla i player multimediali che supportano MPRIS come Amarok, Audacious, xmms2, vlc ed altri. -Comment[pt]=Controlar leitores multiméda tais como Amarok, Audacious, xmms2, vlc e outras aplicações via MPRIS -Comment[ru]=Контролирует MPRIS совместимые музыкальные проигрыватели типа Amarok, Audacious, xmms2, vlc и другие. -Icon=e-module-empris +Name=Everything MPRIS +Name[Name]=Everything MPRIS +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]=Everything MPRIS +Name[el]= +Name[eo]=Ĉio-MPRIS +Name[es]= +Name[fr]=Omni - MPRIS +Name[gl]= +Name[hu]= +Name[it]=Everything - MPRIS +Name[ja]= +Name[ko]= +Name[pt]= +Name[ru]=Всё - MPRIS +Name[sr]= +Name[tr]= +Comment=Control MPRIS compatible media player from Everything. +Comment[de]=MPRIS-kompatible Mediaplayer mit Everything steuern. +Comment[eo]=Kontroli MPRIS-kongrua ludilo el Ĉio +Comment[es]=Controla los reproductores multimedia compatibles con MPRIS de Everything. +Comment[fr]=Contrôle des lecteurs multimédias compatibles MPRIS depuis Omni. +Comment[gl]=Controla os reprodutores multimedia compatíbeis con MPRIS de Everything. +Comment[it]=Controlla i lettori multimediali compatibili con MPRIS da Everything. +Comment[pt]=Controlar reprodutores multimédia compatíveis com MPRIS através do Everything +Comment[ru]=Контроль над MPRIS совместимыми медиа проигрывателями из Everything. +Icon=e-module +X-Enlightenment-ModuleType=launcher Modified: trunk/E-MODULES-EXTRA/everything-mpris/mpris-remote/Add_Tracks.desktop =================================================================== --- trunk/E-MODULES-EXTRA/everything-mpris/mpris-remote/Add_Tracks.desktop 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/everything-mpris/mpris-remote/Add_Tracks.desktop 2013-07-31 11:06:01 UTC (rev 84579) @@ -3,14 +3,25 @@ Type=Application Version=1.0 Name=Add Tracks +Name[Name]=Add Tracks +Name[ab]=Add Tracks +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= Name[en_US]=Add Tracks Name[eo]=Aldoni muzikpecojn Name[es]=Añadir pistas Name[fr]=Ajouter des pistes Name[gl]=Engadir pistas +Name[hu]= Name[it]=Aggiungi tracce +Name[ja]= +Name[ko]= Name[pt]=Adicionar faixas Name[ru]=Добавить треки +Name[sr]= +Name[tr]= NoDisplay=false Icon=emblem-sound Hidden=false Modified: trunk/E-MODULES-EXTRA/everything-pidgin/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/everything-pidgin/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/everything-pidgin/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,12 +2,24 @@ Encoding=UTF-8 Type=Link Name=Everything Pidgin +Name[Name]=Everything Pidgin +Name[ab]= +Name[ca]= +Name[cs]= Name[de]=Everything Pidgin Name[el]=ΤαΠάνταΌλα - Pidgin Name[eo]=Ĉio-piĝin +Name[es]= Name[fr]=Omni - Pidgin +Name[gl]= +Name[hu]= Name[it]=Everything - Pidgin +Name[ja]= +Name[ko]= +Name[pt]= Name[ru]=Всё - Pidgin +Name[sr]= +Name[tr]= Comment=Open chat windows and send files to buddies. Comment[de]=Chat-Fenster öffnen und Dateien an Kontakte senden. Comment[el]=Ανοίγει παράθυρα συνομιλιών και αποστολής αρχείων στους φίλους. Modified: trunk/E-MODULES-EXTRA/everything-shotgun/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/everything-shotgun/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/everything-shotgun/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,10 +2,24 @@ Encoding=UTF-8 Type=Link Name=Everything Shotgun +Name[Name]=Everything Shotgun +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= Name[eo]=Ĉio-Shotgun +Name[es]= Name[fr]=Omni Shotgun +Name[gl]= +Name[hu]= Name[it]=Everything - Shotgun +Name[ja]= +Name[ko]= Name[pt]=Everything - Shotgun +Name[ru]= +Name[sr]= +Name[tr]= Comment=Interface for Shotgun Instant Messanger Comment[eo]=Interfaco por la tujmesaĝilo Shotgun Comment[es]=Interfaz para el cliente de mensajes instantáneas Shotgun Modified: trunk/E-MODULES-EXTRA/everything-skeleton/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/everything-skeleton/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/everything-skeleton/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,8 +2,24 @@ Encoding=UTF-8 Type=Link Name=Everything SKEL +Name[Name]=Everything SKEL +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= Name[eo]=Ĉio-skeleto +Name[es]= Name[fr]=Squelette Omni +Name[gl]= +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= +Name[pt]= +Name[ru]= +Name[sr]= +Name[tr]= Comment=Example Plugin for Everything Comment[eo]=Ekzempla kromaĵo por Ĉio Icon=accessories-dictionary Modified: trunk/E-MODULES-EXTRA/everything-tracker/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/everything-tracker/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/everything-tracker/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,13 +2,24 @@ Encoding=UTF-8 Type=Link Name=Everything Tracker +Name[Name]=Everything Tracker +Name[ab]= +Name[ca]= +Name[cs]= Name[de]=Everything Tracker Name[el]=ΤαΠάνταΌλα - Tracker Name[eo]=Ĉio-ŝanĝospurilo +Name[es]= Name[fr]=Omni - Tracker +Name[gl]= +Name[hu]= Name[it]=Everything - Tracker +Name[ja]= +Name[ko]= Name[pt]=Everything - Tracker Name[ru]=Всё - Трекер +Name[sr]= +Name[tr]= Comment=Find Files with Tracker (requires version 0.8) Comment[de]=Dateien mit Tracker finden (benötigt Version 0.8) Comment[el]=Βρίσκει Αρχεία με τον Tracker (απαιτεί την έκδοση 0,8). Modified: trunk/E-MODULES-EXTRA/everything-wallpaper/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/everything-wallpaper/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/everything-wallpaper/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,14 +2,24 @@ Encoding=UTF-8 Type=Link Name=Everything Wallpaper +Name[Name]=Everything Wallpaper +Name[ab]= +Name[ca]= +Name[cs]= Name[de]=Everything Hintergrundbild +Name[el]= Name[eo]=Ĉio-ekranfono Name[es]=Everything Fondo de escritorio Name[fr]=Omni - Fond Name[gl]=Everything Fondo de escritorio +Name[hu]= Name[it]=Everything - Sfondo +Name[ja]= +Name[ko]= Name[pt]=Everything - Papel de parede Name[ru]=Всё - Обои +Name[sr]= +Name[tr]= Comment=Select wallpaper or create new ones from images Comment[de]=Hintergrundbild auswählen oder neue aus vorhandenen Bildern erstellen. Comment[eo]=Elekti ekranfonon aŭ krei novajn el bildoj Modified: trunk/E-MODULES-EXTRA/exalt-client/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/exalt-client/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/exalt-client/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,11 +2,24 @@ Encoding=UTF-8 Type=Link Name=Exalt +Name[Name]=Exalt +Name[ab]= +Name[ca]= +Name[cs]= Name[de]=Exalt Name[el]=Exalt Name[eo]=Exalt +Name[es]= Name[fr]=Exalt +Name[gl]= +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= +Name[pt]= Name[ru]=Exalt +Name[sr]= +Name[tr]= Comment=A user-friendly tool to setup and manage network interfaces. Comment[cs]=Uživatelsky přívětivé rozhraní k nastavení a správě sítových zařízení. Comment[de]=Ein nutzerfreundliches Werkzeug zum Einrichten von Netzwerkschnittstellen Modified: trunk/E-MODULES-EXTRA/exebuf/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/exebuf/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/exebuf/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,6 +2,9 @@ Encoding=UTF-8 Type=Link Name=Run Command +Name[Name]=Run Command +Name[ab]= +Name[ca]= Name[cs]=Dialog Spustit Name[de]=Befehl ausführen Name[el]=Εκτέλεση εντολής @@ -12,9 +15,11 @@ Name[hu]=Parancs futtatása Name[it]=Lanciacomandi Name[ja]= +Name[ko]= Name[pt]=Executar comando Name[pt_BR]= Name[ru]=Запустить комманду +Name[sr]= Name[tr]=Komut Çalıştır Name[zh_CN]= Name[zh_TW]= @@ -26,7 +31,7 @@ Comment[eo]=La modulo de lanĉo de komandoj provizas dialogon de lanĉilo de aplikaĵoj. Comment[es]=El módulo de ejecutar comandos provee un diálogo para ejecutar aplicaciones. Comment[fr]=Fournit une fenêtre de commande pour lancer des applications. -Comment[gl]=Este módulo ofrece un diálogo para iniciar aplicativos. +Comment[gl]=O módulo de executar ordes ofrécelle un dialogo para iniciar aplicativos. Comment[hu]=A parancs futtató modul egy alkalmazásindítót biztosít a számunkra. Comment[it]=Questo modulo fornisce una finestra di dialogo per l'esecuzione di comandi. Comment[ja]= Modified: trunk/E-MODULES-EXTRA/execwatch/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/execwatch/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/execwatch/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,8 +2,24 @@ Encoding=UTF-8 Type=Link Name=Execwatch +Name[Name]=Execwatch +Name[ab]= +Name[ca]= +Name[cs]= Name[de]=Befehlsbeobachtung +Name[el]= Name[eo]=KomandAtentilo +Name[es]= +Name[fr]= +Name[gl]= +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= +Name[pt]= +Name[ru]= +Name[sr]= +Name[tr]= Comment=Shows the last state of a periodic executed cmd. Useful as an update checker or for checking if a remote host is available (through ping). Comment[cs]=Zobrazuje poslední stav periodicky spouštěného příkazu. Užitečný jako kontrola aktualizací nebo jestli je dostupný vzdálený PC(přes ping). Comment[de]=Zeigt den letzten Zustand eines periodisch ausgeführten Befehls. Sinnvoll zum Überprüfen auf Aktualisierungen oder auf Verfügbarkeit eines Hosts (mittels Ping). Modified: trunk/E-MODULES-EXTRA/flame/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/flame/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/flame/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,14 +2,24 @@ Encoding=UTF-8 Type=Link Name=Flame +Name[Name]=Flame +Name[ab]= +Name[ca]= Name[cs]=Plamen +Name[de]= +Name[el]= Name[eo]=Flamoj Name[es]=Llama Name[fr]=Flamme Name[gl]=Chama Name[hu]=Lángoló asztal +Name[it]= +Name[ja]= +Name[ko]= Name[pt]=Chama Name[ru]=Пламя +Name[sr]= +Name[tr]= Comment=A module to display flames on the desktop. Comment[cs]=Modul zobrazujcí plameny na ploše. Comment[eo]=Vidigi flamojn sur la labortablo. Modified: trunk/E-MODULES-EXTRA/iiirk/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/iiirk/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/iiirk/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,9 +2,24 @@ Encoding=UTF-8 Type=Link Name=Iiirk +Name[Name]=Iiirk +Name[ab]= +Name[ca]= +Name[cs]= Name[de]=Iiirk-Leiste +Name[el]= Name[eo]=Iiirk +Name[es]= Name[fr]=Iiirk +Name[gl]= +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= +Name[pt]= +Name[ru]= +Name[sr]= +Name[tr]= Comment=Act like a taskbar but only for selected applications. Comment[cs]=Jako taskbar, ale jen pro vybrané aplikace. Comment[de]=Ähnlich zu einer Taskleiste, allerdings nur für ausgewählte Anwendungen Modified: trunk/E-MODULES-EXTRA/itask/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/itask/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/itask/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,8 +2,24 @@ Encoding=UTF-8 Type=Link Name=ITask +Name[Name]=ITask +Name[ab]= +Name[ca]= +Name[cs]= Name[de]=ITask +Name[el]= +Name[eo]= +Name[es]= +Name[fr]= +Name[gl]= +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= +Name[pt]= Name[ru]=ITask +Name[sr]= +Name[tr]= Comment=<hilight>Itask Module</hilight><br>It will hold all of your open applications for fast switching<br><br>it has three basic functionalities that you dont wanna miss:<br>1. If you click on an icon the corresponding window will be shown, yeah;<br>and if its on another desk, then you will be switched right to it.<br>2. If you drag an icon out of Itask the Window will be shown on the<br>current desktop.<br>3. Drag an icon to a pagers desk to send it there.<br> Comment[de]=<hilight>Modul ITask</hilight><br>Entält alle offenen Anwendungen, damit man schnell zwischen diesen wechseln kann.<br><br>Es enthält drei grundlegende Funktionalitäten, die man unbedingt haben möchte:<br>1. Beim Anklicken eines Icons wird das entsprechende Fenster gezeigt,<br> und. wenn das Fenster auf einem anderen Desktop ist, wird man zum anderen Desktop gebracht.<br>2. Wenn man ein Icon aus ITask heraus zieht, wird das Fenster auf dem aktuellen Desktop gezeigt.<br>3. Zieht man ein Icon auf den Arbeitsflächenumschalter, wird das Fenster auf den entsprechenden Desktop verschoben.<br> Comment[es]=<hilight>Módulo Itask</hilight><br>Este módulo memoriza todas las aplicaciones abiertos para cambiar rápidamente entre ellos.<br><br>Tiene tres funcionalidades básicas:<br>1. Al clicar en un icono, se mostrará la ventana correspondiente;<br>y si está en otro escritorio, entonces se cambiará a él.<br>2. Si arrastra un icono fuera de Itask, la ventana se mostrará en el escritorio actual.<br>3. Arrastre un icono al paginador y se enviará al escritorio que desee.<br> Modified: trunk/E-MODULES-EXTRA/mem/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/mem/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/mem/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,12 +2,24 @@ Encoding=UTF-8 Type=Link Name=Mem +Name[Name]=Mem +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= Name[el]=Μνήμη Name[eo]=Memoro +Name[es]= Name[fr]=Mémoire +Name[gl]= Name[hu]=Memória +Name[it]= +Name[ja]= +Name[ko]= Name[pt]=Memória Name[ru]=Память +Name[sr]= +Name[tr]= Comment=Used to monitor memory utilization. Comment[cs]=Zobrazí využití paměti. Comment[el]=Χρησιμοποιείται για την παρατήρηση της μνήμης. Modified: trunk/E-MODULES-EXTRA/rain/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/rain/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/rain/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,6 +2,9 @@ Encoding=UTF-8 Type=Link Name=Rain +Name[Name]=Rain +Name[ab]= +Name[ca]= Name[cs]=Déšť Name[de]=Regen Name[el]=Βροχή @@ -10,8 +13,13 @@ Name[fr]=Pluie Name[gl]=Chuvia Name[hu]=Nyári Zápor +Name[it]= +Name[ja]= +Name[ko]= Name[pt]=Chuva Name[ru]=Дождь +Name[sr]= +Name[tr]= Comment=Module to display rain on the desktop. Comment[cs]=Zobrazí déšť na ploše. Comment[de]=Regen auf dem Desktop. Modified: trunk/E-MODULES-EXTRA/rmb/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/rmb/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/rmb/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,11 +2,24 @@ Encoding=UTF-8 Type=Link Name=Emulate Right Mouse Button +Name[Name]=Emulate Right Mouse Button +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= Name[eo]=Imiti desktran musan butonon Name[es]=Emula el botón derecho del ratón +Name[fr]= Name[gl]=Emula o botón dereito do rato +Name[hu]= Name[it]=Emula tasto destro +Name[ja]= +Name[ko]= Name[pt]=Emulação do botão direito do rato +Name[ru]= +Name[sr]= +Name[tr]= Comment=A module to toggle right click, useful for touch screens. Comment[eo]=Modulo por baskuligi desktran alklakon, utile por tuŝeblaj ekranoj. Comment[es]=Un módulo para alternar el botón derecho del ratón, útil para pantallas táctiles. Modified: trunk/E-MODULES-EXTRA/screenshot/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/screenshot/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/screenshot/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,15 +2,24 @@ Encoding=UTF-8 Type=Link Name=Screenshot +Name[Name]=Screenshot +Name[ab]= +Name[ca]= Name[cs]=Snímek obrazovky +Name[de]= Name[el]=Στιγμιότυπο Οθόνης Name[eo]=Ekrankopio Name[es]=Captura de pantalla Name[fr]=Capture Name[gl]=Captura de pantalla Name[hu]=Képernyőkép készítő +Name[it]= +Name[ja]= +Name[ko]= Name[pt]=Captura de ecrã Name[ru]=Снимок экрана +Name[sr]= +Name[tr]= Comment=Gadget to take screenshots using emprint. Comment[cs]=Gadget umožňující vytvářet snímky obrazovky pomocí emprint. Comment[el]=Συστατικό για τη λήψη στιγμιοτύπων της οθόνης με το emprint. Modified: trunk/E-MODULES-EXTRA/share/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/share/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/share/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,8 +2,24 @@ Encoding=UTF-8 Type=Link Name=Share +Name[Name]=Share +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= Name[eo]=Kunhavigi +Name[es]= Name[fr]=Partager +Name[gl]= +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= +Name[pt]= +Name[ru]= +Name[sr]= +Name[tr]= Comment=Gadget that shares your clipboard content online and puts a link to it into your clipboard Comment[eo]=Akcesoraĵo kiu kunhavigas vian tondejan enhavon rete kaj metas ligilon en vian tondejon. Icon=e-module-share Modified: trunk/E-MODULES-EXTRA/skel/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/skel/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/skel/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,11 +2,24 @@ Encoding=UTF-8 Type=Link Name=Skeleton +Name[Name]=Skeleton +Name[ab]= +Name[ca]= +Name[cs]= Name[de]=Skelett Name[el]=Skel Name[eo]=Skeleto +Name[es]= Name[fr]=Squelette +Name[gl]= +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= +Name[pt]= Name[ru]=Скелет +Name[sr]= +Name[tr]= Comment=Not meant for users. Basis for building new ones. Comment[cs]=Není pro uživatele. Jen jako základ pro vytváøení nových modulù. Comment[de]=Nicht für Nutzer gedacht. Basis für neue Helfermodule. Modified: trunk/E-MODULES-EXTRA/slideshow/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/slideshow/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/slideshow/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,6 +2,10 @@ Encoding=UTF-8 Type=Link Name=Slideshow +Name[Name]=Slideshow +Name[ab]= +Name[ca]= +Name[cs]= Name[de]=Diaschau Name[el]=Προβολή Σλάιντ Name[eo]=Bildoprezento @@ -9,8 +13,13 @@ Name[fr]=Diaporama Name[gl]=Diapositivas Name[hu]=Diavetítés +Name[it]= +Name[ja]= +Name[ko]= Name[pt]=Apresentação Name[ru]=Слайдоскоп +Name[sr]= +Name[tr]= Comment=Turns your desktop background into a slideshow. Comment[cs]=Přemění pozadí plochy na slideshow. Comment[de]=Verwandelt den Desktop-Hintergrund in eine Diaschau. Modified: trunk/E-MODULES-EXTRA/snow/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/snow/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/snow/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,6 +2,9 @@ Encoding=UTF-8 Type=Link Name=Snow +Name[Name]=Snow +Name[ab]= +Name[ca]= Name[cs]=Sníh Name[de]=Schnee Name[el]=Χιόνι @@ -10,8 +13,13 @@ Name[fr]=Neige Name[gl]=Neve Name[hu]=Havazás +Name[it]= +Name[ja]= +Name[ko]= Name[pt]=Neve Name[ru]=Снег +Name[sr]= +Name[tr]= Comment=Module to display snow on the desktop. Comment[cs]=Modul zobrazující sněžení na ploše. Comment[de]=Schnee auf dem Desktop Modified: trunk/E-MODULES-EXTRA/taskbar/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/taskbar/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/taskbar/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,6 +2,10 @@ Encoding=UTF-8 Type=Link Name=Taskbar +Name[Name]=Taskbar +Name[ab]= +Name[ca]= +Name[cs]= Name[de]=Taskleiste Name[el]=Γραμμή Εργασιών Name[eo]=Taskopleto @@ -9,8 +13,13 @@ Name[fr]=Barre des tâches Name[gl]=Barra de tarefas Name[hu]=Folyamatjelző +Name[it]= +Name[ja]= +Name[ko]= Name[pt]=Barra de tarefas Name[ru]=Панель задач +Name[sr]= +Name[tr]= Comment=Gadget to provide a taskbar. Comment[cs]=Gadget poskytující taskbar. Comment[de]=Stellt eine Taskleiste zur Verfügung. Modified: trunk/E-MODULES-EXTRA/uptime/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/uptime/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/uptime/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,10 +2,24 @@ Encoding=UTF-8 Type=Link Name=Uptime +Name[Name]=Uptime +Name[ab]= +Name[ca]= +Name[cs]= Name[de]=Betriebszeit +Name[el]= Name[eo]=Daŭro de funkciado +Name[es]= Name[fr]=Durée de fonctionnement +Name[gl]= Name[hu]=Üzemóra +Name[it]= +Name[ja]= +Name[ko]= +Name[pt]= +Name[ru]= +Name[sr]= +Name[tr]= Comment=Gadget to display the current uptime of the system. Comment[cs]=Zobrazuje aktuální uptime systému. Comment[de]=Aktuelle Systembetriebsdauer anzeigen Modified: trunk/E-MODULES-EXTRA/weather/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/weather/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/weather/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,6 +2,9 @@ Encoding=UTF-8 Type=Link Name=Weather +Name[Name]=Weather +Name[ab]= +Name[ca]= Name[cs]=Počasí Name[de]=Wetter Name[el]=Καιρός @@ -10,8 +13,13 @@ Name[fr]=Météo Name[gl]=O Tempo Name[hu]=Időjárás +Name[it]= +Name[ja]= +Name[ko]= Name[pt]=Meteorologia Name[ru]=Погода +Name[sr]= +Name[tr]= Comment=A weather gadget. Comment[cs]=Zobrazí aktuální počasí. Comment[de]=Aktuelles Wetter betrachten Modified: trunk/E-MODULES-EXTRA/winlist-ng/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/winlist-ng/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/winlist-ng/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,8 +2,24 @@ Encoding=UTF-8 Type=Link Name=Winlist NG +Name[Name]=Winlist NG +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= Name[eo]=NG-fenestrolisto +Name[es]= Name[fr]=Liste de fenêtres NG +Name[gl]= +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= +Name[pt]= +Name[ru]= +Name[sr]= +Name[tr]= Comment=<hilight>Winlist Switcher Module</hilight><br>Configure it with: <br> Config Panel > Extensions > Winlist NG Comment[eo]=<hilight>Modulo de interŝanĝo de fenestroj</hilight><br>Agordi ĝin per: <br> Panelo de agordoj > Etendaĵoj > Fenestrolisto NG Comment[es]=<hilight>Módulo alternador de ventanas</hilight><br>Configúrelo desde: <br> Panel de configuración > Extensiones > Winlist NG Modified: trunk/E-MODULES-EXTRA/winselector/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/winselector/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/winselector/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,15 +2,24 @@ Encoding=UTF-8 Type=Link Name=Winselector +Name[Name]=Winselector +Name[ab]= +Name[ca]= Name[cs]=Výběr oken +Name[de]= Name[el]=Επιλογέας Παραθύρων Name[eo]=Fenestro-elektilo Name[es]=Selector de ventanas Name[fr]=Sélecteur Name[gl]=Selector de xanelas Name[hu]=Ablak választó +Name[it]= +Name[ja]= +Name[ko]= Name[pt]=Seletor de janelas Name[ru]=Выбор окна +Name[sr]= +Name[tr]= Comment=This module provides a menu-based access to all the windows. Comment[cs]=Modul poskytující menu-přístup ke všem oknům. Comment[el]=Το συστατικό αυτό παρέχει πρόσβαση σε όλα τα παράθυρα μέσω ενός μενού. Modified: trunk/E-MODULES-EXTRA/wlan/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/wlan/module.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/E-MODULES-EXTRA/wlan/module.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,11 +2,24 @@ Encoding=UTF-8 Type=Link Name=Wlan +Name[Name]=Wlan +Name[ab]= +Name[ca]= +Name[cs]= Name[de]=WLAN Name[el]=Ασύρματο Δίκτυο Name[eo]=Sendrata loka reto +Name[es]= Name[fr]=Réseau local sans fil +Name[gl]= +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= Name[pt]=Rede sem fios +Name[ru]= +Name[sr]= +Name[tr]= Comment=Gadget to monitor a wlan device. Comment[cs]=Gadget k monitorování wlan zařízení. Comment[de]=Drahtloses Netzwerk beobachten Modified: trunk/EXAMPLES/elementary/calculator/data/desktop/calculator-edje.desktop =================================================================== --- trunk/EXAMPLES/elementary/calculator/data/desktop/calculator-edje.desktop 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/EXAMPLES/elementary/calculator/data/desktop/calculator-edje.desktop 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,9 +2,24 @@ Encoding=UTF-8 Type=Application Name=calculator-edje +Name[Name]=calculator-edje +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= Name[eo]=Kalkulilo Edje +Name[es]= Name[fr]=calculatrice Edje +Name[gl]= +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= Name[pt]=Calculadora Edje +Name[ru]= +Name[sr]= +Name[tr]= Comment=A sample, basic calculator application using Edje and Elementary. Comment[eo]=Simpla kalkulilo uzante Edje kaj Elementary. Comment[es]=Una calculadora básica usando Edje y Elementary. Modified: trunk/EXAMPLES/elementary/converter/data/desktop/converter-sample.desktop =================================================================== --- trunk/EXAMPLES/elementary/converter/data/desktop/converter-sample.desktop 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/EXAMPLES/elementary/converter/data/desktop/converter-sample.desktop 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,8 +2,24 @@ Encoding=UTF-8 Type=Application Name=converter-sample +Name[Name]=converter-sample +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= Name[eo]=Ekzemplo de konvertilo +Name[es]= +Name[fr]= +Name[gl]= +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= Name[pt]=Exemplo de conversor +Name[ru]= +Name[sr]= +Name[tr]= Comment=converter sample made by editje Comment[eo]=Ekzemplo de konvertilo farita per Editje Comment[es]=Un ejemplo de conversor hecho con Editje Modified: trunk/EXAMPLES/elementary/phonebook/data/desktop/Phone_Book_Sample.desktop =================================================================== --- trunk/EXAMPLES/elementary/phonebook/data/desktop/Phone_Book_Sample.desktop 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/EXAMPLES/elementary/phonebook/data/desktop/Phone_Book_Sample.desktop 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,8 +2,24 @@ Encoding=UTF-8 Type=Application Name=Phone_Book_Sample +Name[Name]=Phone_Book_Sample +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= Name[eo]=Ekzemplo de adresaro +Name[es]= +Name[fr]= +Name[gl]= +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= Name[pt]=Exemplo de lista telefónica +Name[ru]= +Name[sr]= +Name[tr]= Comment=Simple Phone Book designed using Editje and C Language Programing Comment[eo]=Simpla adresaro elpensita uzante Editje kaj programlingvo C Comment[es]=Una agenda telefónica diseñada usando Editje y programación en C Modified: trunk/EXAMPLES/elementary/sticky-notes/data/desktop/sticky-notes-edje.desktop =================================================================== --- trunk/EXAMPLES/elementary/sticky-notes/data/desktop/sticky-notes-edje.desktop 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/EXAMPLES/elementary/sticky-notes/data/desktop/sticky-notes-edje.desktop 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,8 +2,24 @@ Encoding=UTF-8 Type=Application Name=sticky-notes-edje +Name[Name]=sticky-notes-edje +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= Name[eo]=Glunotoj Edje +Name[es]= +Name[fr]= +Name[gl]= +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= Name[pt]=Notas edje +Name[ru]= +Name[sr]= +Name[tr]= Comment=A sample sticky notes application using Edje and Elementary. Comment[eo]=Simpla aplikaĵo de glunotoj uzante Edje kaj Elementary. Comment[es]=Un ejemplo de aplicación de notas adhesivas usando Edje y Elementary. Modified: trunk/PROTO/ardy/data/applications/ardy.desktop =================================================================== --- trunk/PROTO/ardy/data/applications/ardy.desktop 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/PROTO/ardy/data/applications/ardy.desktop 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,6 +2,24 @@ Encoding=UTF-8 Type=Application Name=Ardy +Name[Name]=Ardy +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= +Name[eo]= +Name[es]= +Name[fr]= +Name[gl]= +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= +Name[pt]= +Name[ru]= +Name[sr]= +Name[tr]= Comment=Python-EFL-based Arduino serial controller Comment[eo]=Kontrolilo de serio Arduino uzante Python-EFL Comment[es]=Controlador de la serie Arduino basado en Python-EFL Modified: trunk/PROTO/ekbd/data/ekbd.desktop =================================================================== --- trunk/PROTO/ekbd/data/ekbd.desktop 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/PROTO/ekbd/data/ekbd.desktop 2013-07-31 11:06:01 UTC (rev 84579) @@ -3,6 +3,24 @@ Type=Application Version=1.0 Name=Ekbd +Name[Name]=Ekbd +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= +Name[eo]= +Name[es]= +Name[fr]= +Name[gl]= +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= +Name[pt]= +Name[ru]= +Name[sr]= +Name[tr]= TryExec=ekbd_test Exec=ekbd_test Categories=System;FileTools;FileManager; Modified: trunk/PROTO/elm_fullscreen/data/desktop/elm_fullscreen.desktop =================================================================== --- trunk/PROTO/elm_fullscreen/data/desktop/elm_fullscreen.desktop 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/PROTO/elm_fullscreen/data/desktop/elm_fullscreen.desktop 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,8 +2,24 @@ Encoding=UTF-8 Type=Application Name=Elm_Fullscreen +Name[Name]=Elm_Fullscreen +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= Name[eo]=Plenekrano Elm +Name[es]= +Name[fr]= +Name[gl]= +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= Name[pt]=Ecrã completo Elm +Name[ru]= +Name[sr]= +Name[tr]= Comment=Elementary Fullscreen Comment[eo]=Plenekrano de Elementary Comment[es]=Elementary en pantalla completa Modified: trunk/PROTO/elm_illume/data/desktop/elm_illume.desktop =================================================================== --- trunk/PROTO/elm_illume/data/desktop/elm_illume.desktop 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/PROTO/elm_illume/data/desktop/elm_illume.desktop 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,6 +2,24 @@ Encoding=UTF-8 Type=Application Name=Elm_Illume +Name[Name]=Elm_Illume +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= +Name[eo]= +Name[es]= +Name[fr]= +Name[gl]= +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= +Name[pt]= +Name[ru]= +Name[sr]= +Name[tr]= Comment=Elementary Illume Icon=elm_illume Exec=elm_illume Modified: trunk/PROTO/elm_indicator/data/desktop/elm_indicator.desktop =================================================================== --- trunk/PROTO/elm_indicator/data/desktop/elm_indicator.desktop 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/PROTO/elm_indicator/data/desktop/elm_indicator.desktop 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,6 +2,24 @@ Encoding=UTF-8 Type=Application Name=Elm_Indicator +Name[Name]=Elm_Indicator +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= +Name[eo]= +Name[es]= +Name[fr]= +Name[gl]= +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= +Name[pt]= +Name[ru]= +Name[sr]= +Name[tr]= Comment=Elementary Indicator Comment[eo]=Indikilo de Elementary Comment[es]=Indicador de Elementary Modified: trunk/PROTO/elm_kbd/data/desktop/elm_kbd.desktop =================================================================== --- trunk/PROTO/elm_kbd/data/desktop/elm_kbd.desktop 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/PROTO/elm_kbd/data/desktop/elm_kbd.desktop 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,6 +2,24 @@ Encoding=UTF-8 Type=Application Name=Elm_Kbd +Name[Name]=Elm_Kbd +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= +Name[eo]= +Name[es]= +Name[fr]= +Name[gl]= +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= +Name[pt]= +Name[ru]= +Name[sr]= +Name[tr]= Comment=Elementary Keyboard Comment[eo]=Klavaro de Elementary Comment[es]=Teclado de Elementary Modified: trunk/PROTO/elm_quickpanel/data/desktop/elm_quickpanel.desktop =================================================================== --- trunk/PROTO/elm_quickpanel/data/desktop/elm_quickpanel.desktop 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/PROTO/elm_quickpanel/data/desktop/elm_quickpanel.desktop 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,6 +2,24 @@ Encoding=UTF-8 Type=Application Name=Elm_Quickpanel +Name[Name]=Elm_Quickpanel +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= +Name[eo]= +Name[es]= +Name[fr]= +Name[gl]= +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= +Name[pt]= +Name[ru]= +Name[sr]= +Name[tr]= Comment=Elementary Quickpanel Comment[eo]=Rapida panelo de Elementary Comment[es]=Panel rápido de Elementary Modified: trunk/PROTO/elm_softkey/data/desktop/elm_softkey.desktop =================================================================== --- trunk/PROTO/elm_softkey/data/desktop/elm_softkey.desktop 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/PROTO/elm_softkey/data/desktop/elm_softkey.desktop 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,6 +2,24 @@ Encoding=UTF-8 Type=Application Name=Elm_Softkey +Name[Name]=Elm_Softkey +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= +Name[eo]= +Name[es]= +Name[fr]= +Name[gl]= +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= +Name[pt]= +Name[ru]= +Name[sr]= +Name[tr]= Comment=Elementary Softkey Comment[eo]=Programo de klavaro de Elementary Comment[es]=Software del teclado de Elementary Modified: trunk/PROTO/enna-explorer/data/other/enna-explorer.desktop =================================================================== --- trunk/PROTO/enna-explorer/data/other/enna-explorer.desktop 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/PROTO/enna-explorer/data/other/enna-explorer.desktop 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,10 +2,24 @@ Encoding=UTF-8 Type=Application Name=Enna Explorer +Name[Name]=Enna Explorer +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= Name[eo]=Foliumilo Enna Name[es]=Explorador Enna +Name[fr]= Name[gl]=Explorador Enna +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= Name[pt]=Explorador Enna +Name[ru]= +Name[sr]= +Name[tr]= GenericName=File Explorer GenericName[eo]=Foliumilo de dosieroj GenericName[es]=Explorador de arhivos Modified: trunk/PROTO/ev/ev.desktop =================================================================== --- trunk/PROTO/ev/ev.desktop 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/PROTO/ev/ev.desktop 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,6 +2,24 @@ Encoding=UTF-8 Type=Application Name=ev +Name[Name]=ev +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= +Name[eo]= +Name[es]= +Name[fr]= +Name[gl]= +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= +Name[pt]= +Name[ru]= +Name[sr]= +Name[tr]= GenericName=Image Viewer GenericName[ca]=Visor d'imatges GenericName[cs]=Prohlížeč obrázků Modified: trunk/PROTO/keys/data/applications/keys.desktop =================================================================== --- trunk/PROTO/keys/data/applications/keys.desktop 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/PROTO/keys/data/applications/keys.desktop 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,11 +2,24 @@ Encoding=UTF-8 Type=Application Name=Keys +Name[Name]=Keys +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= Name[eo]=Klavoj Name[es]=Teclas Name[fr]=Touches Name[gl]=Teclas +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= Name[pt]=Teclas +Name[ru]= +Name[sr]= +Name[tr]= Comment=Python-EFL-based on-screen keyboard Comment[cs]=Klávesnice na obrazovce založená na EFL a Pythonu Comment[eo]=Ekrana klavaro per Pitono-EFL Modified: trunk/editje/data/editje.desktop =================================================================== --- trunk/editje/data/editje.desktop 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/editje/data/editje.desktop 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,6 +2,24 @@ Encoding=UTF-8 Type=Application Name=Editje +Name[Name]=Editje +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= +Name[eo]= +Name[es]= +Name[fr]= +Name[gl]= +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= +Name[pt]= +Name[ru]= +Name[sr]= +Name[tr]= Comment=Editje Edje Editor Comment[eo]=Redaktilo de dosieroj Edje Comment[es]=Editor de archivos Edje Modified: trunk/edje_viewer/data/edje_viewer.desktop =================================================================== --- trunk/edje_viewer/data/edje_viewer.desktop 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/edje_viewer/data/edje_viewer.desktop 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,11 +2,24 @@ Encoding=UTF-8 Type=Application Name=Edje Viewer +Name[Name]=Edje Viewer +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= Name[eo]=Edje-rigardilo Name[es]=Visualizador Edje Name[fr]=Edje-Visio Name[gl]=Visualizador Edje +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= Name[pt]=Visualizador Edje +Name[ru]= +Name[sr]= +Name[tr]= Comment=A simple viewer for Edje files Comment[cs]=Nástroj pro zobrazování edje souborù Comment[eo]=Simpla rigardilo por Edje-dosieroj Modified: trunk/elmdentica/data/elmdentica.desktop.in =================================================================== --- trunk/elmdentica/data/elmdentica.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/elmdentica/data/elmdentica.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,6 +2,24 @@ Encoding=UTF-8 Type=Application Name=ElmDentica +Name[Name]=ElmDentica +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= +Name[eo]= +Name[es]= +Name[fr]= +Name[gl]= +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= +Name[pt]= +Name[ru]= +Name[sr]= +Name[tr]= GenericName=Identi.ca client GenericName[eo]=Kliento por Identi.ca GenericName[es]=Cliente Identi.ca Modified: trunk/enki/enki.desktop =================================================================== --- trunk/enki/enki.desktop 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/enki/enki.desktop 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,6 +2,24 @@ Encoding=UTF-8 Type=Application Name=Enki +Name[Name]=Enki +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= +Name[eo]= +Name[es]= +Name[fr]= +Name[gl]= +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= +Name[pt]= +Name[ru]= +Name[sr]= +Name[tr]= GenericName=Photo Manager GenericName[ar]=مدير photo GenericName[bg]=photo мениджър @@ -20,6 +38,7 @@ GenericName[hr]=photo Manager GenericName[id]=photo Manager GenericName[it]=Photo Manager +GenericName[iw]=מנהל photo GenericName[ja]=Photo画像マネージャ GenericName[lt]=photo vadybininkas GenericName[lv]=photo Manager @@ -53,6 +72,7 @@ Comment[hr]=Upravljajte svojim foto albumi Comment[id]=Mengelola foto album Comment[it]=Gestisce i vostri album fotografici +Comment[iw]=ניהול אלבומי התמונות שלך Comment[ja]=を管理してフォトアルバム Comment[lt]=Tvarkyk savo fotoalbumai Comment[lv]=Pārvaldiet savu foto albumi Modified: trunk/envision/data/desktop/envision.desktop =================================================================== --- trunk/envision/data/desktop/envision.desktop 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/envision/data/desktop/envision.desktop 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,7 +2,24 @@ Encoding=UTF-8 Type=Application Name=envision +Name[Name]=envision +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= +Name[eo]= +Name[es]= +Name[fr]= +Name[gl]= +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= Name[pt]=Envision +Name[ru]= +Name[sr]= +Name[tr]= Comment=E-PDF Reader Comment[eo]=PDF-legilo de Enlightenment Comment[es]=Lector PDF de Enlightenment Modified: trunk/espionnage/espionnage.desktop.in =================================================================== --- trunk/espionnage/espionnage.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/espionnage/espionnage.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,7 +2,24 @@ Encoding=UTF-8 Type=Application Name=Espionnage +Name[Name]=Espionnage +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= Name[eo]=Spionado +Name[es]= +Name[fr]= +Name[gl]= +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= +Name[pt]= +Name[ru]= +Name[sr]= +Name[tr]= GenericName=Webcam testing application GenericName[eo]=Aplikaĵo de provo de retkamerao GenericName[es]=Aplicación para probar la cámara web Modified: trunk/eve/data/desktop/eve.desktop =================================================================== --- trunk/eve/data/desktop/eve.desktop 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/eve/data/desktop/eve.desktop 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,6 +2,24 @@ Encoding=UTF-8 Type=Application Name=eve +Name[Name]=eve +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= +Name[eo]= +Name[es]= +Name[fr]= +Name[gl]= +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= +Name[pt]= +Name[ru]= +Name[sr]= +Name[tr]= Comment=WebKit-EFL demo application Comment[eo]=Provoversia aplikaĵo de WebKit-EFL Comment[es]=Aplicación demostrativa de WebKit-EFL Modified: trunk/excessive/excessive.desktop.in =================================================================== --- trunk/excessive/excessive.desktop.in 2013-07-10 14:42:45 UTC (rev 84578) +++ trunk/excessive/excessive.desktop.in 2013-07-31 11:06:01 UTC (rev 84579) @@ -2,6 +2,24 @@ Encoding=UTF-8 Type=Application Name=Excessive +Name[Name]=Excessive +Name[ab]= +Name[ca]= +Name[cs]= +Name[de]= +Name[el]= +Name[eo]= +Name[es]= +Name[fr]= +Name[gl]= +Name[hu]= +Name[it]= +Name[ja]= +Name[ko]= +Name[pt]= +Name[ru]= +Name[sr]= +Name[tr]= GenericName=Files Browser GenericName[eo]=Dosiero-foliumilo GenericName[es]=Explorador de archivos |
From: Enlightenment S. <no-...@en...> - 2013-07-10 14:42:51
|
Log: Migrated web to git. Author: tasn Date: 2013-07-10 07:42:45 -0700 (Wed, 10 Jul 2013) New Revision: 84578 Trac: http://trac.enlightenment.org/e/changeset/84578 Removed: trunk/web/ |
From: Enlightenment S. <no-...@en...> - 2013-07-05 17:05:45
|
Log: Fixed sorting of desktop file Author: maxerba Date: 2013-07-05 10:05:36 -0700 (Fri, 05 Jul 2013) New Revision: 84577 Trac: http://trac.enlightenment.org/e/changeset/84577 Modified: trunk/E-MODULES-EXTRA/everything-mpris/module.desktop.in Modified: trunk/E-MODULES-EXTRA/everything-mpris/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/everything-mpris/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) +++ trunk/E-MODULES-EXTRA/everything-mpris/module.desktop.in 2013-07-05 17:05:36 UTC (rev 84577) @@ -1,20 +1,14 @@ [Desktop Entry] Encoding=UTF-8 Type=Link -Name=Everything MPRIS -Name[de]=Everything MPRIS -Name[eo]=Ĉio-MPRIS -Name[fr]=Omni - MPRIS -Name[it]=Everything - MPRIS -Name[ru]=Всё - MPRIS -Comment=Control MPRIS compatible media player from Everything. -Comment[de]=MPRIS-kompatible Mediaplayer mit Everything steuern. -Comment[eo]=Kontroli MPRIS-kongrua ludilo el Ĉio -Comment[es]=Controla los reproductores multimedia compatibles con MPRIS de Everything. -Comment[fr]=Contrôle des lecteurs multimédias compatibles MPRIS depuis Omni. -Comment[gl]=Controla os reprodutores multimedia compatíbeis con MPRIS de Everything. -Comment[it]=Controlla i lettori multimediali compatibili con MPRIS da Everything. -Comment[pt]=Controlar reprodutores multimédia compatíveis com MPRIS através do Everything -Comment[ru]=Контроль над MPRIS совместимыми медиа проигрывателями из Everything. -Icon=e-module -X-Enlightenment-ModuleType=launcher +Name=EMpris +Name[eo]=E-MPRIS +Comment=Control MPRIS supporting music player like Amarok, Audacious, xmms2, vlc and others +Comment[eo]=Kontroli MPRIS-kongruajn ludilojn kiel Amarok, Audacious, xmms2, vlc kaj aliaj +Comment[es]=Controle los reproductores multimedia como Amarok, Audacious, xmms2, vlc y otros mediante MPRIS. +Comment[fr]=Contrôle de lecteurs multimédias compatibles MPRIS comme Amarok, Audacious, Xmms2, Vlc et autres. +Comment[gl]=Controle os reprodutores multimedia como Amarok, Audacious, xmms2, vlc e outros mediante MPRIS. +Comment[it]=Controlla i player multimediali che supportano MPRIS come Amarok, Audacious, xmms2, vlc ed altri. +Comment[pt]=Controlar leitores multiméda tais como Amarok, Audacious, xmms2, vlc e outras aplicações via MPRIS +Comment[ru]=Контролирует MPRIS совместимые музыкальные проигрыватели типа Amarok, Audacious, xmms2, vlc и другие. +Icon=e-module-empris |
Log: Fixed sorting of desktop files Author: maxerba Date: 2013-07-04 10:48:15 -0700 (Thu, 04 Jul 2013) New Revision: 84576 Trac: http://trac.enlightenment.org/e/changeset/84576 Modified: trunk/E-MODULES-EXTRA/deskshow/module.desktop.in trunk/E-MODULES-EXTRA/diskio/module.desktop.in trunk/E-MODULES-EXTRA/eektool/module.desktop.in trunk/E-MODULES-EXTRA/eooorg/module.desktop.in trunk/E-MODULES-EXTRA/everything-aspell/module.desktop.in trunk/E-MODULES-EXTRA/everything-mpris/module.desktop.in trunk/E-MODULES-EXTRA/everything-mpris/mpris-remote/Add_Tracks.desktop trunk/E-MODULES-EXTRA/everything-pidgin/module.desktop.in trunk/E-MODULES-EXTRA/everything-shotgun/module.desktop.in trunk/E-MODULES-EXTRA/everything-skeleton/module.desktop.in trunk/E-MODULES-EXTRA/everything-tracker/module.desktop.in trunk/E-MODULES-EXTRA/everything-wallpaper/module.desktop.in trunk/E-MODULES-EXTRA/exalt-client/module.desktop.in trunk/E-MODULES-EXTRA/exebuf/module.desktop.in trunk/E-MODULES-EXTRA/execwatch/module.desktop.in trunk/E-MODULES-EXTRA/flame/module.desktop.in trunk/E-MODULES-EXTRA/iiirk/module.desktop.in trunk/E-MODULES-EXTRA/itask/module.desktop.in trunk/E-MODULES-EXTRA/mem/module.desktop.in trunk/E-MODULES-EXTRA/rain/module.desktop.in trunk/E-MODULES-EXTRA/rmb/module.desktop.in trunk/E-MODULES-EXTRA/screenshot/module.desktop.in trunk/E-MODULES-EXTRA/share/module.desktop.in trunk/E-MODULES-EXTRA/skel/module.desktop.in trunk/E-MODULES-EXTRA/slideshow/module.desktop.in trunk/E-MODULES-EXTRA/snow/module.desktop.in trunk/E-MODULES-EXTRA/taskbar/module.desktop.in trunk/E-MODULES-EXTRA/uptime/module.desktop.in trunk/E-MODULES-EXTRA/weather/module.desktop.in trunk/E-MODULES-EXTRA/winlist-ng/module.desktop.in trunk/E-MODULES-EXTRA/winselector/module.desktop.in trunk/E-MODULES-EXTRA/wlan/module.desktop.in trunk/EXAMPLES/elementary/calculator/data/desktop/calculator-edje.desktop trunk/EXAMPLES/elementary/converter/data/desktop/converter-sample.desktop trunk/EXAMPLES/elementary/phonebook/data/desktop/Phone_Book_Sample.desktop trunk/EXAMPLES/elementary/sticky-notes/data/desktop/sticky-notes-edje.desktop trunk/PROTO/ardy/data/applications/ardy.desktop trunk/PROTO/ekbd/data/ekbd.desktop trunk/PROTO/elm_fullscreen/data/desktop/elm_fullscreen.desktop trunk/PROTO/elm_illume/data/desktop/elm_illume.desktop trunk/PROTO/elm_indicator/data/desktop/elm_indicator.desktop trunk/PROTO/elm_kbd/data/desktop/elm_kbd.desktop trunk/PROTO/elm_quickpanel/data/desktop/elm_quickpanel.desktop trunk/PROTO/elm_softkey/data/desktop/elm_softkey.desktop trunk/PROTO/enna-explorer/data/other/enna-explorer.desktop trunk/PROTO/ev/ev.desktop trunk/PROTO/keys/data/applications/keys.desktop trunk/TEST/tests/data/sub/test.desktop trunk/TEST/tests/data/test.desktop trunk/TEST/tests/data/test_type.desktop trunk/editje/data/editje.desktop trunk/edje_viewer/data/edje_viewer.desktop trunk/elmdentica/data/elmdentica.desktop.in trunk/enki/enki.desktop trunk/envision/data/desktop/envision.desktop trunk/espionnage/espionnage.desktop.in trunk/eve/data/desktop/eve.desktop trunk/excessive/excessive.desktop.in Modified: trunk/E-MODULES-EXTRA/deskshow/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/deskshow/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/deskshow/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,4 +1,17 @@ [Desktop Entry] +Encoding=UTF-8 +Type=Link +Name=Deskshow +Name[cs]=Zobrazit plochu +Name[de]=Arbeitsflächenzeiger +Name[el]=Εμφάνιση Επιφάνειας +Name[eo]=LabortabloVidigilo +Name[es]=Mostrar escritorio +Name[fr]=Bureau +Name[gl]=Mostrar escritorio +Name[hu]=Munkaasztal megjelenítése +Name[pt]=Mostrar área de trabalho +Name[ru]=Показать рабочий стол Comment=Gadget to allow you to quickly uncover your desktop. Comment[cs]=Umožňuje rychle odkrýt plochu. Comment[de]=Helfer zum schnellen Freilegen der Arbeitsfläche. @@ -12,18 +25,5 @@ Comment[pt]=Módulo para mostrar a área de trabalho Comment[ru]=Позволяет быстро добраться до рабочего стола методом сворачивания всех окон. Comment[zh_CN]=允许快速显示桌面的小程序。 -Encoding=UTF-8 Icon=e-module-deskshow -Name=Deskshow -Name[cs]=Zobrazit plochu -Name[de]=Arbeitsflächenzeiger -Name[el]=Εμφάνιση Επιφάνειας -Name[eo]=LabortabloVidigilo -Name[es]=Mostrar escritorio -Name[fr]=Bureau -Name[gl]=Mostrar escritorio -Name[hu]=Munkaasztal megjelenítése -Name[pt]=Mostrar área de trabalho -Name[ru]=Показать рабочий стол -Type=Link X-Enlightenment-ModuleType=utils Modified: trunk/E-MODULES-EXTRA/diskio/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/diskio/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/diskio/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,4 +1,15 @@ [Desktop Entry] +Encoding=UTF-8 +Type=Link +Name=DiskIO +Name[de]=Festplatten-Ein-/Ausgabe +Name[el]=DiskIO +Name[eo]=DiskEE +Name[es]=DiscoES +Name[fr]=DisquES +Name[gl]=DiscoES +Name[pt]=DiscoES +Name[ru]=ДискВВ Comment=Visualize disk i/o. Comment[cs]=Zviditelní I/O disku. Comment[de]=Festplatten-Zugriffe visualisieren. @@ -10,15 +21,4 @@ Comment[it]=Visualizza l'input/output del disco. Comment[pt]=Ver as e/s do disco Comment[ru]=Показывает ввод/вывод диска. -Encoding=UTF-8 Icon=e-module-diskio -Name=DiskIO -Name[de]=Festplatten-Ein-/Ausgabe -Name[el]=DiskIO -Name[eo]=DiskEE -Name[es]=DiscoES -Name[fr]=DisquES -Name[gl]=DiscoES -Name[pt]=DiscoES -Name[ru]=ДискВВ -Type=Link Modified: trunk/E-MODULES-EXTRA/eektool/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/eektool/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/eektool/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,4 +1,7 @@ [Desktop Entry] +Encoding=UTF-8 +Type=Link +Name=Eektool Comment=Redirects the output of a cmd to an edje textblock Comment[de]=Stellt die Ausgabe eines Kommandos als Edje Textblock da Comment[eo]=Alidirekti eligon de komando en Edje-tekstblokon @@ -7,8 +10,5 @@ Comment[gl]=Redirixe a saída dun comando cara a un bloque de texto edje. Comment[it]=Redirige l'output di un comando verso un textblock di edje Comment[pt]=Envia o resultado da linha de comandos para um bloco de texto edje -Encoding=UTF-8 Icon=e-module-eektool -Name=Eektool -Type=Link X-Enlightenment-ModuleType=utils Modified: trunk/E-MODULES-EXTRA/eooorg/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/eooorg/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/eooorg/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,4 +1,14 @@ [Desktop Entry] +Encoding=UTF-8 +Type=Link +Name=OpenOffice.org Quickstart +Name[eo]=Rapida startigo de OpenOffice.org +Name[es]=Arranque rápido de OpenOffice.org +Name[fr]=Démarrage rapide OpenOffice.org +Name[gl]=Inicio rápido de OpenOffice.org +Name[it]=Avvio rapido OpenOffice.org +Name[pt]=Início rápido do OpenOffice.org +Name[ru]=Быстрый запуск OpenOffice.org Comment=This module preloads the openoffice process to save start time with the costs of some memory. Comment[eo]=Tiu modulo antaŭŝargas la procezon de OpenOffice.org por ŝpari starto-daŭron kontraŭ iom da memoro. Comment[es]=Este módulo 'precarga' el proceso de OpenOffice.org para minimizar el tiempo de arranque,<br>a costas de una poca memoria. @@ -7,15 +17,5 @@ Comment[it]=Questo modulo precarica il processo di OpenOffice.org per risparmiare tempo<br>nell'avvio al costo di un po' di memoria. Comment[pt]=Este módulo faz o carregamento automático do openoffice para minimizar o tempo de arranque. Comment[ru]=Этот модуль подгружает процесс OpenOffice.org для убыстрения запуска, ценой некоторого объема памяти. -Encoding=UTF-8 Icon=e-module-eooorg -Name=OpenOffice.org Quickstart -Name[eo]=Rapida startigo de OpenOffice.org -Name[es]=Arranque rápido de OpenOffice.org -Name[fr]=Démarrage rapide OpenOffice.org -Name[gl]=Inicio rápido de OpenOffice.org -Name[it]=Avvio rapido OpenOffice.org -Name[pt]=Início rápido do OpenOffice.org -Name[ru]=Быстрый запуск OpenOffice.org -Type=Link X-Enlightenment-ModuleType=utils Modified: trunk/E-MODULES-EXTRA/everything-aspell/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/everything-aspell/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/everything-aspell/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,4 +1,13 @@ [Desktop Entry] +Encoding=UTF-8 +Type=Link +Name=Everything Aspell +Name[de]=Everything - Aspell +Name[eo]=Ĉiuilo por Aspell +Name[fr]=Omni - Aspell +Name[it]=Everything - Aspell +Name[ru]=Всё - Aspell +Name[tr]=Everything - Aspell Comment=Aspell Frontend, use 'aspell ' as trigger. Comment[de]=Bedienung von Aspell. Verwenden Sie 'aspell ' als Auslöser. Comment[eo]=Fasado de Aspell, uzu "aspell" kiel ekagilon. @@ -9,14 +18,5 @@ Comment[pt]=Interface gráfica para o Aspell. Utiliza "aspell" como lançador Comment[ru]=Графический интерфейс к утилите Aspell, используйте 'aspell ' для запуска. Comment[tr]=Aspell önyüzü, tetikleyici olarak 'aspell' yazın. -Encoding=UTF-8 Icon=accessories-dictionary -Name=Everything Aspell -Name[de]=Everything - Aspell -Name[eo]=Ĉiuilo por Aspell -Name[fr]=Omni - Aspell -Name[it]=Everything - Aspell -Name[ru]=Всё - Aspell -Name[tr]=Everything - Aspell -Type=Link X-Enlightenment-ModuleType=launcher Modified: trunk/E-MODULES-EXTRA/everything-mpris/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/everything-mpris/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/everything-mpris/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,4 +1,12 @@ [Desktop Entry] +Encoding=UTF-8 +Type=Link +Name=Everything MPRIS +Name[de]=Everything MPRIS +Name[eo]=Ĉio-MPRIS +Name[fr]=Omni - MPRIS +Name[it]=Everything - MPRIS +Name[ru]=Всё - MPRIS Comment=Control MPRIS compatible media player from Everything. Comment[de]=MPRIS-kompatible Mediaplayer mit Everything steuern. Comment[eo]=Kontroli MPRIS-kongrua ludilo el Ĉio @@ -8,13 +16,5 @@ Comment[it]=Controlla i lettori multimediali compatibili con MPRIS da Everything. Comment[pt]=Controlar reprodutores multimédia compatíveis com MPRIS através do Everything Comment[ru]=Контроль над MPRIS совместимыми медиа проигрывателями из Everything. -Encoding=UTF-8 Icon=e-module -Name=Everything MPRIS -Name[de]=Everything MPRIS -Name[eo]=Ĉio-MPRIS -Name[fr]=Omni - MPRIS -Name[it]=Everything - MPRIS -Name[ru]=Всё - MPRIS -Type=Link X-Enlightenment-ModuleType=launcher Modified: trunk/E-MODULES-EXTRA/everything-mpris/mpris-remote/Add_Tracks.desktop =================================================================== --- trunk/E-MODULES-EXTRA/everything-mpris/mpris-remote/Add_Tracks.desktop 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/everything-mpris/mpris-remote/Add_Tracks.desktop 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,9 +1,7 @@ [Desktop Entry] Encoding=UTF-8 -Exec=mpris-remote addtrack %f false -Hidden=false -Icon=emblem-sound -MimeType=application/x-ogg;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mp3;audio/x-mpeg;audio/mpeg;audio/x-mpegurl;audio/x-flac;x-directory/gnome-default-handler;x-directory/normal;inode/directory; +Type=Application +Version=1.0 Name=Add Tracks Name[en_US]=Add Tracks Name[eo]=Aldoni muzikpecojn @@ -14,7 +12,9 @@ Name[pt]=Adicionar faixas Name[ru]=Добавить треки NoDisplay=false +Icon=emblem-sound +Hidden=false +Exec=mpris-remote addtrack %f false +Terminal=false +MimeType=application/x-ogg;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mp3;audio/x-mpeg;audio/mpeg;audio/x-mpegurl;audio/x-flac;x-directory/gnome-default-handler;x-directory/normal;inode/directory; StartupNotify=false -Terminal=false -Type=Application -Version=1.0 Modified: trunk/E-MODULES-EXTRA/everything-pidgin/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/everything-pidgin/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/everything-pidgin/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,4 +1,13 @@ [Desktop Entry] +Encoding=UTF-8 +Type=Link +Name=Everything Pidgin +Name[de]=Everything Pidgin +Name[el]=ΤαΠάνταΌλα - Pidgin +Name[eo]=Ĉio-piĝin +Name[fr]=Omni - Pidgin +Name[it]=Everything - Pidgin +Name[ru]=Всё - Pidgin Comment=Open chat windows and send files to buddies. Comment[de]=Chat-Fenster öffnen und Dateien an Kontakte senden. Comment[el]=Ανοίγει παράθυρα συνομιλιών και αποστολής αρχείων στους φίλους. @@ -9,14 +18,5 @@ Comment[it]=Apre finestre di chat e invia file ai contatti. Comment[pt]=Abrir janela de conversação e enviar ficheiros aos amigos Comment[ru]=Чат и передача файлов между друзьями. -Encoding=UTF-8 Icon=e-module -Name=Everything Pidgin -Name[de]=Everything Pidgin -Name[el]=ΤαΠάνταΌλα - Pidgin -Name[eo]=Ĉio-piĝin -Name[fr]=Omni - Pidgin -Name[it]=Everything - Pidgin -Name[ru]=Всё - Pidgin -Type=Link X-Enlightenment-ModuleType=launcher Modified: trunk/E-MODULES-EXTRA/everything-shotgun/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/everything-shotgun/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/everything-shotgun/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,16 +1,16 @@ [Desktop Entry] +Encoding=UTF-8 +Type=Link +Name=Everything Shotgun +Name[eo]=Ĉio-Shotgun +Name[fr]=Omni Shotgun +Name[it]=Everything - Shotgun +Name[pt]=Everything - Shotgun Comment=Interface for Shotgun Instant Messanger Comment[eo]=Interfaco por la tujmesaĝilo Shotgun Comment[es]=Interfaz para el cliente de mensajes instantáneas Shotgun Comment[gl]=Interface para o cliente de mensaxes instantáneas Shotgun Comment[it]=Interfaccia per il client di instant messaging Shotgun Comment[pt]=Interface para o cliente de mensagens instantâneas Shotgun -Encoding=UTF-8 Icon=e-module -Name=Everything Shotgun -Name[eo]=Ĉio-Shotgun -Name[fr]=Omni Shotgun -Name[it]=Everything - Shotgun -Name[pt]=Everything - Shotgun -Type=Link X-Enlightenment-ModuleType=launcher Modified: trunk/E-MODULES-EXTRA/everything-skeleton/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/everything-skeleton/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/everything-skeleton/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,10 +1,10 @@ [Desktop Entry] -Comment=Example Plugin for Everything -Comment[eo]=Ekzempla kromaĵo por Ĉio Encoding=UTF-8 -Icon=accessories-dictionary +Type=Link Name=Everything SKEL Name[eo]=Ĉio-skeleto Name[fr]=Squelette Omni -Type=Link +Comment=Example Plugin for Everything +Comment[eo]=Ekzempla kromaĵo por Ĉio +Icon=accessories-dictionary X-Enlightenment-ModuleType=launcher Modified: trunk/E-MODULES-EXTRA/everything-tracker/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/everything-tracker/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/everything-tracker/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,4 +1,14 @@ [Desktop Entry] +Encoding=UTF-8 +Type=Link +Name=Everything Tracker +Name[de]=Everything Tracker +Name[el]=ΤαΠάνταΌλα - Tracker +Name[eo]=Ĉio-ŝanĝospurilo +Name[fr]=Omni - Tracker +Name[it]=Everything - Tracker +Name[pt]=Everything - Tracker +Name[ru]=Всё - Трекер Comment=Find Files with Tracker (requires version 0.8) Comment[de]=Dateien mit Tracker finden (benötigt Version 0.8) Comment[el]=Βρίσκει Αρχεία με τον Tracker (απαιτεί την έκδοση 0,8). @@ -9,15 +19,5 @@ Comment[it]=Trova i file con Tracker (versione richiesta 0.8). Comment[pt]=Encontre ficheiros com o "Tracker"(requer a versão 0.8) Comment[ru]=Искать файлы через трекер (требуется версия 0.8). -Encoding=UTF-8 Icon=e-module -Name=Everything Tracker -Name[de]=Everything Tracker -Name[el]=ΤαΠάνταΌλα - Tracker -Name[eo]=Ĉio-ŝanĝospurilo -Name[fr]=Omni - Tracker -Name[it]=Everything - Tracker -Name[pt]=Everything - Tracker -Name[ru]=Всё - Трекер -Type=Link X-Enlightenment-ModuleType=launcher Modified: trunk/E-MODULES-EXTRA/everything-wallpaper/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/everything-wallpaper/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/everything-wallpaper/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,4 +1,15 @@ [Desktop Entry] +Encoding=UTF-8 +Type=Link +Name=Everything Wallpaper +Name[de]=Everything Hintergrundbild +Name[eo]=Ĉio-ekranfono +Name[es]=Everything Fondo de escritorio +Name[fr]=Omni - Fond +Name[gl]=Everything Fondo de escritorio +Name[it]=Everything - Sfondo +Name[pt]=Everything - Papel de parede +Name[ru]=Всё - Обои Comment=Select wallpaper or create new ones from images Comment[de]=Hintergrundbild auswählen oder neue aus vorhandenen Bildern erstellen. Comment[eo]=Elekti ekranfonon aŭ krei novajn el bildoj @@ -8,16 +19,5 @@ Comment[it]=Fornisce un'azione per impostare un'immagine come sfondo. Comment[pt]=Selecione ou crie o papel de parede a partir de imagens Comment[ru]=Выбирайте обои или создавайте новые из изображений. -Encoding=UTF-8 Icon=preferences-desktop-wallpaper -Name=Everything Wallpaper -Name[de]=Everything Hintergrundbild -Name[eo]=Ĉio-ekranfono -Name[es]=Everything Fondo de escritorio -Name[fr]=Omni - Fond -Name[gl]=Everything Fondo de escritorio -Name[it]=Everything - Sfondo -Name[pt]=Everything - Papel de parede -Name[ru]=Всё - Обои -Type=Link X-Enlightenment-ModuleType=launcher Modified: trunk/E-MODULES-EXTRA/exalt-client/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/exalt-client/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/exalt-client/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,4 +1,12 @@ [Desktop Entry] +Encoding=UTF-8 +Type=Link +Name=Exalt +Name[de]=Exalt +Name[el]=Exalt +Name[eo]=Exalt +Name[fr]=Exalt +Name[ru]=Exalt Comment=A user-friendly tool to setup and manage network interfaces. Comment[cs]=Uživatelsky přívětivé rozhraní k nastavení a správě sítových zařízení. Comment[de]=Ein nutzerfreundliches Werkzeug zum Einrichten von Netzwerkschnittstellen @@ -10,13 +18,5 @@ Comment[it]=Una utilità per configurare e gestire le interfacce di rete. Comment[pt]=Uma ferramenta para configurar e gerir interfaces de rede. Comment[ru]=Дружественный к пользователю интерфейс настройки сетевых соединений. -Encoding=UTF-8 Icon=e-module-exalt -Name=Exalt -Name[de]=Exalt -Name[el]=Exalt -Name[eo]=Exalt -Name[fr]=Exalt -Name[ru]=Exalt -Type=Link X-Enlightenment-ModuleType=system Modified: trunk/E-MODULES-EXTRA/exebuf/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/exebuf/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/exebuf/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,5 +1,25 @@ [Desktop Entry] +Encoding=UTF-8 +Type=Link +Name=Run Command +Name[cs]=Dialog Spustit +Name[de]=Befehl ausführen +Name[el]=Εκτέλεση εντολής +Name[eo]=Lanĉi komandojn +Name[es]=Ejecutar comando +Name[fr]=Ligne de commande +Name[gl]=Executar comando +Name[hu]=Parancs futtatása +Name[it]=Lanciacomandi +Name[ja]= +Name[pt]=Executar comando +Name[pt_BR]= +Name[ru]=Запустить комманду +Name[tr]=Komut Çalıştır +Name[zh_CN]= +Name[zh_TW]= Comment=The run command module provides an application launcher dialog. +Comment[ca]=El mòdul d'executar comandes ofereix un diàleg per a llançar aplicacions. Comment[cs]=Poskytuje dialog pro spuštění aplikací. Comment[de]=Der Ausführen-Befehl stellt einen Anwendungsstarter zur Verfügung. Comment[el]=Το άρθρωμα της εκτέλεση εντολής παρέχει ένα παράθυρο διαλόγου εκτέλεσης εφαρμογής. @@ -16,24 +36,5 @@ Comment[tr]=Komut çalıştır modülü program çalıştırma penceresi açar. Comment[zh_CN]= Comment[zh_TW]= -Encoding=UTF-8 Icon=e-module-exebuf -Name=Run Command -Name[cs]=Dialog Spustit -Name[de]=Befehl ausführen -Name[el]=Εκτέλεση εντολής -Name[eo]=Lanĉi komandojn -Name[es]=Ejecutar comando -Name[fr]=Ligne de commande -Name[gl]=Executar comando -Name[hu]=Parancs futtatása -Name[it]=Lanciacomandi -Name[ja]= -Name[pt]=Executar comando -Name[pt_BR]= -Name[ru]=Запустить комманду -Name[tr]=Komut Çalıştır -Name[zh_CN]= -Name[zh_TW]= -Type=Link X-Enlightenment-ModuleType=launcher Modified: trunk/E-MODULES-EXTRA/execwatch/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/execwatch/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/execwatch/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,4 +1,9 @@ [Desktop Entry] +Encoding=UTF-8 +Type=Link +Name=Execwatch +Name[de]=Befehlsbeobachtung +Name[eo]=KomandAtentilo Comment=Shows the last state of a periodic executed cmd. Useful as an update checker or for checking if a remote host is available (through ping). Comment[cs]=Zobrazuje poslední stav periodicky spouštěného příkazu. Užitečný jako kontrola aktualizací nebo jestli je dostupný vzdálený PC(přes ping). Comment[de]=Zeigt den letzten Zustand eines periodisch ausgeführten Befehls. Sinnvoll zum Überprüfen auf Aktualisierungen oder auf Verfügbarkeit eines Hosts (mittels Ping). @@ -11,10 +16,5 @@ Comment[it]=Mostra l'ultimo stato di un comando eseguito periodicamente. Utile per il controlo di aggiornamenti o per il controllo della disponibilità di un host remoto (tramite ping). Comment[pt]=Mostra o último estado de um comando periódico. Útil como um verificador de atualizações ou para verificar a disponibilidade de um servidor remoto Comment[ru]=Показывает последний результат периодической комманды. Полезен для циклических проверок или проверок доступности другого хоста (через пинг). -Encoding=UTF-8 Icon=e-module-execwatch -Name=Execwatch -Name[de]=Befehlsbeobachtung -Name[eo]=KomandAtentilo -Type=Link X-Enlightenment-ModuleType=utils Modified: trunk/E-MODULES-EXTRA/flame/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/flame/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/flame/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,4 +1,15 @@ [Desktop Entry] +Encoding=UTF-8 +Type=Link +Name=Flame +Name[cs]=Plamen +Name[eo]=Flamoj +Name[es]=Llama +Name[fr]=Flamme +Name[gl]=Chama +Name[hu]=Lángoló asztal +Name[pt]=Chama +Name[ru]=Пламя Comment=A module to display flames on the desktop. Comment[cs]=Modul zobrazujcí plameny na ploše. Comment[eo]=Vidigi flamojn sur la labortablo. @@ -9,16 +20,5 @@ Comment[it]=Un modulo per visualizzare fiamme sul desktop. Comment[pt]=Um módulo que exibe chamas na área de trabalho. Comment[ru]=Модуль показа огня на рабочем столе. -Encoding=UTF-8 Icon=e-module-flame -Name=Flame -Name[cs]=Plamen -Name[eo]=Flamoj -Name[es]=Llama -Name[fr]=Flamme -Name[gl]=Chama -Name[hu]=Lángoló asztal -Name[pt]=Chama -Name[ru]=Пламя -Type=Link X-Enlightenment-ModuleType=look Modified: trunk/E-MODULES-EXTRA/iiirk/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/iiirk/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/iiirk/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,4 +1,10 @@ [Desktop Entry] +Encoding=UTF-8 +Type=Link +Name=Iiirk +Name[de]=Iiirk-Leiste +Name[eo]=Iiirk +Name[fr]=Iiirk Comment=Act like a taskbar but only for selected applications. Comment[cs]=Jako taskbar, ale jen pro vybrané aplikace. Comment[de]=Ähnlich zu einer Taskleiste, allerdings nur für ausgewählte Anwendungen @@ -11,11 +17,5 @@ Comment[it]=Si comporta come una taskbar, ma solo per applicazioni selezionate. Comment[pt]=Atua como uma barra de tarefas mas apenas para as aplicações escolhidas Comment[ru]=Предоставляет функции аналогичные панели задач, только для выбранных приложений. -Encoding=UTF-8 Icon=e-module-iiirk -Name=Iiirk -Name[de]=Iiirk-Leiste -Name[eo]=Iiirk -Name[fr]=Iiirk -Type=Link X-Enlightenment-ModuleType=utils Modified: trunk/E-MODULES-EXTRA/itask/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/itask/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/itask/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,4 +1,9 @@ [Desktop Entry] +Encoding=UTF-8 +Type=Link +Name=ITask +Name[de]=ITask +Name[ru]=ITask Comment=<hilight>Itask Module</hilight><br>It will hold all of your open applications for fast switching<br><br>it has three basic functionalities that you dont wanna miss:<br>1. If you click on an icon the corresponding window will be shown, yeah;<br>and if its on another desk, then you will be switched right to it.<br>2. If you drag an icon out of Itask the Window will be shown on the<br>current desktop.<br>3. Drag an icon to a pagers desk to send it there.<br> Comment[de]=<hilight>Modul ITask</hilight><br>Entält alle offenen Anwendungen, damit man schnell zwischen diesen wechseln kann.<br><br>Es enthält drei grundlegende Funktionalitäten, die man unbedingt haben möchte:<br>1. Beim Anklicken eines Icons wird das entsprechende Fenster gezeigt,<br> und. wenn das Fenster auf einem anderen Desktop ist, wird man zum anderen Desktop gebracht.<br>2. Wenn man ein Icon aus ITask heraus zieht, wird das Fenster auf dem aktuellen Desktop gezeigt.<br>3. Zieht man ein Icon auf den Arbeitsflächenumschalter, wird das Fenster auf den entsprechenden Desktop verschoben.<br> Comment[es]=<hilight>Módulo Itask</hilight><br>Este módulo memoriza todas las aplicaciones abiertos para cambiar rápidamente entre ellos.<br><br>Tiene tres funcionalidades básicas:<br>1. Al clicar en un icono, se mostrará la ventana correspondiente;<br>y si está en otro escritorio, entonces se cambiará a él.<br>2. Si arrastra un icono fuera de Itask, la ventana se mostrará en el escritorio actual.<br>3. Arrastre un icono al paginador y se enviará al escritorio que desee.<br> @@ -7,10 +12,5 @@ Comment[it]=<hilight>Modulo Itask</hilight><br>Gestirà tutte le applicazioni aperte per scorrerle rapidamente<br><br>Ha tre funzionalità di base imperdibili:<br>1. cliccando su un'icona verrà mostrata la finestra corrispondente,<br> cambiando desktop se la finestra sta su un altro.<br>2. trascinando un'icona fuori da Itask la finestra verrà mostrata<br> sul desktop corrente.<br>3. trascinando un'icona su un pager la si invia ad un altro desktop.<br> Comment[pt]=<hilight>Módulo Itask</hilight><br>Este módulo memoriza todas as aplicações ativas para uma troca de aplicações mais rápida.<br><br>Possui três funções:<br>1. Ao clicar num ícone, a janela correspondente será exibida e<br>caso esteja noutro ecrã virtual, a área de trabalho será automaticamente trocada.<br>2. Se arrastar um ícone para fora do Itask, a janela será exibida no ecrã atual.<br>3. Se arrastar um ícone para algum dos ecrã dos paginadores o ícone srá enviado para a área de trabalho correspondente.<br> Comment[ru]=<hilight>Модуль Itask</hilight>Будет содержать все ваши открытые приложения для быстрого переключения<br><br>Он имеет три основные функции, которые вы не хотите упустить:<br>1. Если Вы кликните на иконку - соответствующее окно будет показано, а если оно находится на другом столе, то Вы будете переключены на тот рабочий стол.<br>2. Если вы перетащите иконку из ITask - окно будет показано на текущем рабочем столе.<br>3. Перетащите иконку на пейджер стола, чтобы отправить ее туда.<br> -Encoding=UTF-8 Icon=e-module-itask -Name=ITask -Name[de]=ITask -Name[ru]=ITask -Type=Link X-Enlightenment-ModuleType=utils Modified: trunk/E-MODULES-EXTRA/mem/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/mem/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/mem/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,4 +1,13 @@ [Desktop Entry] +Encoding=UTF-8 +Type=Link +Name=Mem +Name[el]=Μνήμη +Name[eo]=Memoro +Name[fr]=Mémoire +Name[hu]=Memória +Name[pt]=Memória +Name[ru]=Память Comment=Used to monitor memory utilization. Comment[cs]=Zobrazí využití paměti. Comment[el]=Χρησιμοποιείται για την παρατήρηση της μνήμης. @@ -10,14 +19,5 @@ Comment[it]=Usato per il monitoraggio dell'utilizzo della memoria. Comment[pt]=Utilizado para monitorizar a memória utilizada Comment[ru]=Используется для мониторинга использования памяти. -Encoding=UTF-8 Icon=e-module-mem -Name=Mem -Name[el]=Μνήμη -Name[eo]=Memoro -Name[fr]=Mémoire -Name[hu]=Memória -Name[pt]=Memória -Name[ru]=Память -Type=Link X-Enlightenment-ModuleType=system Modified: trunk/E-MODULES-EXTRA/rain/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/rain/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/rain/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,4 +1,17 @@ [Desktop Entry] +Encoding=UTF-8 +Type=Link +Name=Rain +Name[cs]=Déšť +Name[de]=Regen +Name[el]=Βροχή +Name[eo]=Pluvo +Name[es]=Lluvia +Name[fr]=Pluie +Name[gl]=Chuvia +Name[hu]=Nyári Zápor +Name[pt]=Chuva +Name[ru]=Дождь Comment=Module to display rain on the desktop. Comment[cs]=Zobrazí déšť na ploše. Comment[de]=Regen auf dem Desktop. @@ -11,18 +24,5 @@ Comment[it]=Modulo per visualizzare la pioggia sul desktop. Comment[pt]=Módulo que exibe chuva na área de trabalho Comment[ru]=Модуль для показа дождя на рабочем столе. -Encoding=UTF-8 Icon=e-module-rain -Name=Rain -Name[cs]=Déšť -Name[de]=Regen -Name[el]=Βροχή -Name[eo]=Pluvo -Name[es]=Lluvia -Name[fr]=Pluie -Name[gl]=Chuvia -Name[hu]=Nyári Zápor -Name[pt]=Chuva -Name[ru]=Дождь -Type=Link X-Enlightenment-ModuleType=look Modified: trunk/E-MODULES-EXTRA/rmb/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/rmb/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/rmb/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,17 +1,17 @@ [Desktop Entry] +Encoding=UTF-8 +Type=Link +Name=Emulate Right Mouse Button +Name[eo]=Imiti desktran musan butonon +Name[es]=Emula el botón derecho del ratón +Name[gl]=Emula o botón dereito do rato +Name[it]=Emula tasto destro +Name[pt]=Emulação do botão direito do rato Comment=A module to toggle right click, useful for touch screens. Comment[eo]=Modulo por baskuligi desktran alklakon, utile por tuŝeblaj ekranoj. Comment[es]=Un módulo para alternar el botón derecho del ratón, útil para pantallas táctiles. Comment[gl]=Un módulo para alternar o botón dereito do rato, útil para pantallas táctiles. Comment[it]=Un modulo consente di passare al tasto destro, utile per i touchscreen. Comment[pt]=Um módulo que emula o botão direito do rato. Útil para ecrãs de toque -Encoding=UTF-8 Icon=right -Name=Emulate Right Mouse Button -Name[eo]=Imiti desktran musan butonon -Name[es]=Emula el botón derecho del ratón -Name[gl]=Emula o botón dereito do rato -Name[it]=Emula tasto destro -Name[pt]=Emulação do botão direito do rato -Type=Link X-Enlightenment-ModuleType=system Modified: trunk/E-MODULES-EXTRA/screenshot/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/screenshot/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/screenshot/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,4 +1,16 @@ [Desktop Entry] +Encoding=UTF-8 +Type=Link +Name=Screenshot +Name[cs]=Snímek obrazovky +Name[el]=Στιγμιότυπο Οθόνης +Name[eo]=Ekrankopio +Name[es]=Captura de pantalla +Name[fr]=Capture +Name[gl]=Captura de pantalla +Name[hu]=Képernyőkép készítő +Name[pt]=Captura de ecrã +Name[ru]=Снимок экрана Comment=Gadget to take screenshots using emprint. Comment[cs]=Gadget umožňující vytvářet snímky obrazovky pomocí emprint. Comment[el]=Συστατικό για τη λήψη στιγμιοτύπων της οθόνης με το emprint. @@ -10,17 +22,5 @@ Comment[it]=Modulo per la cattura di istantanee dello schermo utilizzando emprint. Comment[pt]=Módulo para obter capturas do ecrã através do emprint Comment[ru]=Гаджет для получения снимков экрана. -Encoding=UTF-8 Icon=e-module-screenshot -Name=Screenshot -Name[cs]=Snímek obrazovky -Name[el]=Στιγμιότυπο Οθόνης -Name[eo]=Ekrankopio -Name[es]=Captura de pantalla -Name[fr]=Capture -Name[gl]=Captura de pantalla -Name[hu]=Képernyőkép készítő -Name[pt]=Captura de ecrã -Name[ru]=Снимок экрана -Type=Link X-Enlightenment-ModuleType=utils Modified: trunk/E-MODULES-EXTRA/share/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/share/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/share/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,10 +1,10 @@ [Desktop Entry] -Comment=Gadget that shares your clipboard content online and puts a link to it into your clipboard -Comment[eo]=Akcesoraĵo kiu kunhavigas vian tondejan enhavon rete kaj metas ligilon en vian tondejon. Encoding=UTF-8 -Icon=e-module-share +Type=Link Name=Share Name[eo]=Kunhavigi Name[fr]=Partager -Type=Link +Comment=Gadget that shares your clipboard content online and puts a link to it into your clipboard +Comment[eo]=Akcesoraĵo kiu kunhavigas vian tondejan enhavon rete kaj metas ligilon en vian tondejon. +Icon=e-module-share X-Enlightenment-ModuleType=utils Modified: trunk/E-MODULES-EXTRA/skel/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/skel/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/skel/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,4 +1,12 @@ [Desktop Entry] +Encoding=UTF-8 +Type=Link +Name=Skeleton +Name[de]=Skelett +Name[el]=Skel +Name[eo]=Skeleto +Name[fr]=Squelette +Name[ru]=Скелет Comment=Not meant for users. Basis for building new ones. Comment[cs]=Není pro uživatele. Jen jako základ pro vytváøení nových modulù. Comment[de]=Nicht für Nutzer gedacht. Basis für neue Helfermodule. @@ -10,13 +18,5 @@ Comment[it]=Non inteso per gli utenti. Fornisce la base per costruire nuovi moduli. Comment[pt]=Não é destinado a utilizadores. Bases para desenvolvimento de módulos. Comment[ru]=Не предназначен для пользователей. База для создания новых модулей. -Encoding=UTF-8 Icon=e-module-skel -Name=Skeleton -Name[de]=Skelett -Name[el]=Skel -Name[eo]=Skeleto -Name[fr]=Squelette -Name[ru]=Скелет -Type=Link X-Enlightenment-ModuleType=utils Modified: trunk/E-MODULES-EXTRA/slideshow/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/slideshow/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/slideshow/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,4 +1,16 @@ [Desktop Entry] +Encoding=UTF-8 +Type=Link +Name=Slideshow +Name[de]=Diaschau +Name[el]=Προβολή Σλάιντ +Name[eo]=Bildoprezento +Name[es]=Diapositivas +Name[fr]=Diaporama +Name[gl]=Diapositivas +Name[hu]=Diavetítés +Name[pt]=Apresentação +Name[ru]=Слайдоскоп Comment=Turns your desktop background into a slideshow. Comment[cs]=Přemění pozadí plochy na slideshow. Comment[de]=Verwandelt den Desktop-Hintergrund in eine Diaschau. @@ -11,17 +23,5 @@ Comment[it]=Trasforma lo sfondo del vostro desktop in uno slideshow. Comment[pt]=Módulo que altera as imagens de fundo tal como numa apresentação Comment[ru]=Превращает фон рабочего стола в слайдоскоп. -Encoding=UTF-8 Icon=e-module-slideshow -Name=Slideshow -Name[de]=Diaschau -Name[el]=Προβολή Σλάιντ -Name[eo]=Bildoprezento -Name[es]=Diapositivas -Name[fr]=Diaporama -Name[gl]=Diapositivas -Name[hu]=Diavetítés -Name[pt]=Apresentação -Name[ru]=Слайдоскоп -Type=Link X-Enlightenment-ModuleType=look Modified: trunk/E-MODULES-EXTRA/snow/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/snow/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/snow/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,4 +1,17 @@ [Desktop Entry] +Encoding=UTF-8 +Type=Link +Name=Snow +Name[cs]=Sníh +Name[de]=Schnee +Name[el]=Χιόνι +Name[eo]=Neĝo +Name[es]=Nieve +Name[fr]=Neige +Name[gl]=Neve +Name[hu]=Havazás +Name[pt]=Neve +Name[ru]=Снег Comment=Module to display snow on the desktop. Comment[cs]=Modul zobrazující sněžení na ploše. Comment[de]=Schnee auf dem Desktop @@ -11,18 +24,5 @@ Comment[it]=Modulo per visualizzare la neve sul desktop. Comment[pt]=Módulo que exibe neve na área de trabalho Comment[ru]=Модуль для показа снега на рабочем столе. -Encoding=UTF-8 Icon=e-module-snow -Name=Snow -Name[cs]=Sníh -Name[de]=Schnee -Name[el]=Χιόνι -Name[eo]=Neĝo -Name[es]=Nieve -Name[fr]=Neige -Name[gl]=Neve -Name[hu]=Havazás -Name[pt]=Neve -Name[ru]=Снег -Type=Link X-Enlightenment-ModuleType=look Modified: trunk/E-MODULES-EXTRA/taskbar/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/taskbar/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/taskbar/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,4 +1,16 @@ [Desktop Entry] +Encoding=UTF-8 +Type=Link +Name=Taskbar +Name[de]=Taskleiste +Name[el]=Γραμμή Εργασιών +Name[eo]=Taskopleto +Name[es]=Barra de tareas +Name[fr]=Barre des tâches +Name[gl]=Barra de tarefas +Name[hu]=Folyamatjelző +Name[pt]=Barra de tarefas +Name[ru]=Панель задач Comment=Gadget to provide a taskbar. Comment[cs]=Gadget poskytující taskbar. Comment[de]=Stellt eine Taskleiste zur Verfügung. @@ -11,18 +23,6 @@ Comment[it]=Modulo che fornisce una barra contenente le applicazioni in esecuzione. Comment[pt]=Módulo que disponibiliza uma barra de tarefas Comment[ru]=Гаджет предоставляет панель задач. -Encoding=UTF-8 Icon=e-module-taskbar -Name=Taskbar -Name[de]=Taskleiste -Name[el]=Γραμμή Εργασιών -Name[eo]=Taskopleto -Name[es]=Barra de tareas -Name[fr]=Barre des tâches -Name[gl]=Barra de tarefas -Name[hu]=Folyamatjelző -Name[pt]=Barra de tarefas -Name[ru]=Панель задач -Type=Link X-Enlightenment-IconClass=taskbar,gadget X-Enlightenment-ModuleType=utils Modified: trunk/E-MODULES-EXTRA/uptime/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/uptime/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/uptime/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,4 +1,11 @@ [Desktop Entry] +Encoding=UTF-8 +Type=Link +Name=Uptime +Name[de]=Betriebszeit +Name[eo]=Daŭro de funkciado +Name[fr]=Durée de fonctionnement +Name[hu]=Üzemóra Comment=Gadget to display the current uptime of the system. Comment[cs]=Zobrazuje aktuální uptime systému. Comment[de]=Aktuelle Systembetriebsdauer anzeigen @@ -10,12 +17,5 @@ Comment[it]=Modulo per visualizzare il tempo di servizio del sistema. Comment[pt]=Módulo que exibe o tempo de atividade do sistema Comment[ru]=Показывает текущий uptime системы. -Encoding=UTF-8 Icon=e-module-uptime -Name=Uptime -Name[de]=Betriebszeit -Name[eo]=Daŭro de funkciado -Name[fr]=Durée de fonctionnement -Name[hu]=Üzemóra -Type=Link X-Enlightenment-ModuleType=utils Modified: trunk/E-MODULES-EXTRA/weather/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/weather/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/weather/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,4 +1,17 @@ [Desktop Entry] +Encoding=UTF-8 +Type=Link +Name=Weather +Name[cs]=Počasí +Name[de]=Wetter +Name[el]=Καιρός +Name[eo]=Vetero +Name[es]=El Tiempo +Name[fr]=Météo +Name[gl]=O Tempo +Name[hu]=Időjárás +Name[pt]=Meteorologia +Name[ru]=Погода Comment=A weather gadget. Comment[cs]=Zobrazí aktuální počasí. Comment[de]=Aktuelles Wetter betrachten @@ -11,18 +24,5 @@ Comment[it]=Un modulo per le condizioni meteo. Comment[pt]=Módulo meteorológico Comment[ru]=Гаджет показа погоды. -Encoding=UTF-8 Icon=e-module-weather -Name=Weather -Name[cs]=Počasí -Name[de]=Wetter -Name[el]=Καιρός -Name[eo]=Vetero -Name[es]=El Tiempo -Name[fr]=Météo -Name[gl]=O Tempo -Name[hu]=Időjárás -Name[pt]=Meteorologia -Name[ru]=Погода -Type=Link X-Enlightenment-ModuleType=utils Modified: trunk/E-MODULES-EXTRA/winlist-ng/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/winlist-ng/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/winlist-ng/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,4 +1,9 @@ [Desktop Entry] +Encoding=UTF-8 +Type=Link +Name=Winlist NG +Name[eo]=NG-fenestrolisto +Name[fr]=Liste de fenêtres NG Comment=<hilight>Winlist Switcher Module</hilight><br>Configure it with: <br> Config Panel > Extensions > Winlist NG Comment[eo]=<hilight>Modulo de interŝanĝo de fenestroj</hilight><br>Agordi ĝin per: <br> Panelo de agordoj > Etendaĵoj > Fenestrolisto NG Comment[es]=<hilight>Módulo alternador de ventanas</hilight><br>Configúrelo desde: <br> Panel de configuración > Extensiones > Winlist NG @@ -7,10 +12,5 @@ Comment[it]=Modulo commutazione finestre<br>Per configurarlo: Pannello di configurazione → Estensioni → Winlist NG Comment[pt]=<hilight>Módulo para alternar as janelas</hilight><br>Configure-o via: <br> Painel de configuração > Extensões > Winlist NG Comment[ru]=<hilight>Модуль переключения окон</hilight><br>Конфигурация через: Панель параметров → Расширения → Winlist NG -Encoding=UTF-8 Icon=e-module-ng -Name=Winlist NG -Name[eo]=NG-fenestrolisto -Name[fr]=Liste de fenêtres NG -Type=Link X-Enlightenment-ModuleType=core Modified: trunk/E-MODULES-EXTRA/winselector/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/winselector/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/winselector/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,4 +1,16 @@ [Desktop Entry] +Encoding=UTF-8 +Type=Link +Name=Winselector +Name[cs]=Výběr oken +Name[el]=Επιλογέας Παραθύρων +Name[eo]=Fenestro-elektilo +Name[es]=Selector de ventanas +Name[fr]=Sélecteur +Name[gl]=Selector de xanelas +Name[hu]=Ablak választó +Name[pt]=Seletor de janelas +Name[ru]=Выбор окна Comment=This module provides a menu-based access to all the windows. Comment[cs]=Modul poskytující menu-přístup ke všem oknům. Comment[el]=Το συστατικό αυτό παρέχει πρόσβαση σε όλα τα παράθυρα μέσω ενός μενού. @@ -10,17 +22,5 @@ Comment[it]=Questo modulo fornisce accesso a tutte le finestre tramite menù. Comment[pt]=Módulo que disponibiliza o acesso a um menu com todas as janelas Comment[ru]=Модуль предоставляет доступ ко всем открытым окнам. -Encoding=UTF-8 Icon=e-module-winselector -Name=Winselector -Name[cs]=Výběr oken -Name[el]=Επιλογέας Παραθύρων -Name[eo]=Fenestro-elektilo -Name[es]=Selector de ventanas -Name[fr]=Sélecteur -Name[gl]=Selector de xanelas -Name[hu]=Ablak választó -Name[pt]=Seletor de janelas -Name[ru]=Выбор окна -Type=Link X-Enlightenment-ModuleType=utils Modified: trunk/E-MODULES-EXTRA/wlan/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/wlan/module.desktop.in 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/E-MODULES-EXTRA/wlan/module.desktop.in 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,4 +1,12 @@ [Desktop Entry] +Encoding=UTF-8 +Type=Link +Name=Wlan +Name[de]=WLAN +Name[el]=Ασύρματο Δίκτυο +Name[eo]=Sendrata loka reto +Name[fr]=Réseau local sans fil +Name[pt]=Rede sem fios Comment=Gadget to monitor a wlan device. Comment[cs]=Gadget k monitorování wlan zařízení. Comment[de]=Drahtloses Netzwerk beobachten @@ -11,12 +19,4 @@ Comment[it]=Modulo per il monitoraggio di un dispositivo di rete wireless. Comment[pt]=Módulo de monitorização dos dispositivos de rede sem fios Comment[ru]=Гаджет для мониторинга карты беспроводной сети. -Encoding=UTF-8 Icon=e-module-wlan -Name=Wlan -Name[de]=WLAN -Name[el]=Ασύρματο Δίκτυο -Name[eo]=Sendrata loka reto -Name[fr]=Réseau local sans fil -Name[pt]=Rede sem fios -Type=Link Modified: trunk/EXAMPLES/elementary/calculator/data/desktop/calculator-edje.desktop =================================================================== --- trunk/EXAMPLES/elementary/calculator/data/desktop/calculator-edje.desktop 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/EXAMPLES/elementary/calculator/data/desktop/calculator-edje.desktop 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,5 +1,10 @@ [Desktop Entry] -Categories=Application;Utility; +Encoding=UTF-8 +Type=Application +Name=calculator-edje +Name[eo]=Kalkulilo Edje +Name[fr]=calculatrice Edje +Name[pt]=Calculadora Edje Comment=A sample, basic calculator application using Edje and Elementary. Comment[eo]=Simpla kalkulilo uzante Edje kaj Elementary. Comment[es]=Una calculadora básica usando Edje y Elementary. @@ -7,12 +12,7 @@ Comment[gl]=Unha calculadora básica empregando Edje e Elementary. Comment[it]=Una semplice calcolatrice che usa Edje e Elementary Comment[pt]=Uma calculadora básica que utiliza Edje e Elementary -Encoding=UTF-8 +Icon=calculator-edje Exec=calculator-edje -Icon=calculator-edje -Name=calculator-edje -Name[eo]=Kalkulilo Edje -Name[fr]=calculatrice Edje -Name[pt]=Calculadora Edje Terminal=false -Type=Application +Categories=Application;Utility; Modified: trunk/EXAMPLES/elementary/converter/data/desktop/converter-sample.desktop =================================================================== --- trunk/EXAMPLES/elementary/converter/data/desktop/converter-sample.desktop 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/EXAMPLES/elementary/converter/data/desktop/converter-sample.desktop 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,5 +1,9 @@ [Desktop Entry] -Categories=Application;Utility; +Encoding=UTF-8 +Type=Application +Name=converter-sample +Name[eo]=Ekzemplo de konvertilo +Name[pt]=Exemplo de conversor Comment=converter sample made by editje Comment[eo]=Ekzemplo de konvertilo farita per Editje Comment[es]=Un ejemplo de conversor hecho con Editje @@ -7,11 +11,7 @@ Comment[gl]=Un exemplo de conversor feito con Editje Comment[it]=Un convertitore di esempio fatto con editje Comment[pt]=Um exemplo de conversão via editje -Encoding=UTF-8 +Icon=converter-sample Exec=converter-sample -Icon=converter-sample -Name=converter-sample -Name[eo]=Ekzemplo de konvertilo -Name[pt]=Exemplo de conversor Terminal=false -Type=Application +Categories=Application;Utility; Modified: trunk/EXAMPLES/elementary/phonebook/data/desktop/Phone_Book_Sample.desktop =================================================================== --- trunk/EXAMPLES/elementary/phonebook/data/desktop/Phone_Book_Sample.desktop 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/EXAMPLES/elementary/phonebook/data/desktop/Phone_Book_Sample.desktop 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,5 +1,9 @@ [Desktop Entry] -Categories=Application;Utility; +Encoding=UTF-8 +Type=Application +Name=Phone_Book_Sample +Name[eo]=Ekzemplo de adresaro +Name[pt]=Exemplo de lista telefónica Comment=Simple Phone Book designed using Editje and C Language Programing Comment[eo]=Simpla adresaro elpensita uzante Editje kaj programlingvo C Comment[es]=Una agenda telefónica diseñada usando Editje y programación en C @@ -7,11 +11,7 @@ Comment[gl]=Unha axenda telefónica feita con Editje e a linguaxe de programación C Comment[it]=Un'agenda telefonica progettata con Editje e la programmazione in C Comment[pt]=Uma agenda telefónica desenvolvida com o Editje e programação C -Encoding=UTF-8 +Icon=Phone_Book_Sample Exec=Phone_Book_Sample -Icon=Phone_Book_Sample -Name=Phone_Book_Sample -Name[eo]=Ekzemplo de adresaro -Name[pt]=Exemplo de lista telefónica Terminal=false -Type=Application +Categories=Application;Utility; Modified: trunk/EXAMPLES/elementary/sticky-notes/data/desktop/sticky-notes-edje.desktop =================================================================== --- trunk/EXAMPLES/elementary/sticky-notes/data/desktop/sticky-notes-edje.desktop 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/EXAMPLES/elementary/sticky-notes/data/desktop/sticky-notes-edje.desktop 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,5 +1,9 @@ [Desktop Entry] -Categories=Application;Utility; +Encoding=UTF-8 +Type=Application +Name=sticky-notes-edje +Name[eo]=Glunotoj Edje +Name[pt]=Notas edje Comment=A sample sticky notes application using Edje and Elementary. Comment[eo]=Simpla aplikaĵo de glunotoj uzante Edje kaj Elementary. Comment[es]=Un ejemplo de aplicación de notas adhesivas usando Edje y Elementary. @@ -7,11 +11,7 @@ Comment[gl]=Un exemplo de aplicativo de notas adhesivas empregando Edje e Elementary. Comment[it]=Una semplice applicazione per post-it che usa Edje e Elementary Comment[pt]=Uma aplicação de notas que utiliza Edje e o Elementary -Encoding=UTF-8 +Icon=sticky-notes-edje Exec=sticky-notes-edje -Icon=sticky-notes-edje -Name=sticky-notes-edje -Name[eo]=Glunotoj Edje -Name[pt]=Notas edje Terminal=false -Type=Application +Categories=Application;Utility; Modified: trunk/PROTO/ardy/data/applications/ardy.desktop =================================================================== --- trunk/PROTO/ardy/data/applications/ardy.desktop 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/PROTO/ardy/data/applications/ardy.desktop 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,14 +1,14 @@ [Desktop Entry] -Categories=Application;Utility; +Encoding=UTF-8 +Type=Application +Name=Ardy Comment=Python-EFL-based Arduino serial controller Comment[eo]=Kontrolilo de serio Arduino uzante Python-EFL Comment[es]=Controlador de la serie Arduino basado en Python-EFL Comment[gl]=Controlador da serie Arduino baseado en Python-EFL Comment[it]=Controller seriale Arduino basato su Python-EFL Comment[pt]=Controlador de série Arduino baseado em Python-EFL -Encoding=UTF-8 +Icon=ardy Exec=ardy -Icon=ardy -Name=Ardy Terminal=false -Type=Application +Categories=Application;Utility; Modified: trunk/PROTO/ekbd/data/ekbd.desktop =================================================================== --- trunk/PROTO/ekbd/data/ekbd.desktop 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/PROTO/ekbd/data/ekbd.desktop 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,10 +1,10 @@ [Desktop Entry] -Categories=System;FileTools;FileManager; Encoding=UTF-8 +Type=Application +Version=1.0 +Name=Ekbd +TryExec=ekbd_test Exec=ekbd_test -Name=Ekbd +Categories=System;FileTools;FileManager; StartupWMClass=keyboard -TryExec=ekbd_test -Type=Application -Version=1.0 X-ORDISSIMO-Restart=1 Modified: trunk/PROTO/elm_fullscreen/data/desktop/elm_fullscreen.desktop =================================================================== --- trunk/PROTO/elm_fullscreen/data/desktop/elm_fullscreen.desktop 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/PROTO/elm_fullscreen/data/desktop/elm_fullscreen.desktop 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,17 +1,17 @@ [Desktop Entry] -Categories=Application;Development; +Encoding=UTF-8 +Type=Application +Name=Elm_Fullscreen +Name[eo]=Plenekrano Elm +Name[pt]=Ecrã completo Elm Comment=Elementary Fullscreen Comment[eo]=Plenekrano de Elementary Comment[es]=Elementary en pantalla completa Comment[gl]=Elementary en pantalla completa Comment[it]=Elementary - Schermo pieno Comment[pt]=Ecrã completo do Elementary -Encoding=UTF-8 +Icon=elm_fullscreen Exec=elm_fullscreen -Icon=elm_fullscreen -Name=Elm_Fullscreen -Name[eo]=Plenekrano Elm -Name[pt]=Ecrã completo Elm +Terminal=false +Categories=Application;Development; StartupWMClass=elm_fullscreen -Terminal=false -Type=Application Modified: trunk/PROTO/elm_illume/data/desktop/elm_illume.desktop =================================================================== --- trunk/PROTO/elm_illume/data/desktop/elm_illume.desktop 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/PROTO/elm_illume/data/desktop/elm_illume.desktop 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,10 +1,10 @@ [Desktop Entry] -Categories=Application;Development; +Encoding=UTF-8 +Type=Application +Name=Elm_Illume Comment=Elementary Illume -Encoding=UTF-8 +Icon=elm_illume Exec=elm_illume -Icon=elm_illume -Name=Elm_Illume +Terminal=false +Categories=Application;Development; StartupWMClass=elm_illume -Terminal=false -Type=Application Modified: trunk/PROTO/elm_indicator/data/desktop/elm_indicator.desktop =================================================================== --- trunk/PROTO/elm_indicator/data/desktop/elm_indicator.desktop 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/PROTO/elm_indicator/data/desktop/elm_indicator.desktop 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,15 +1,15 @@ [Desktop Entry] -Categories=Application;Development; +Encoding=UTF-8 +Type=Application +Name=Elm_Indicator Comment=Elementary Indicator Comment[eo]=Indikilo de Elementary Comment[es]=Indicador de Elementary Comment[gl]=Indicador de Elementary Comment[it]=Elementary - Indicatore Comment[pt]=Indicador do Elementary -Encoding=UTF-8 +Icon=elm_indicator Exec=elm_indicator -Icon=elm_indicator -Name=Elm_Indicator +Terminal=false +Categories=Application;Development; StartupWMClass=elm_indicator -Terminal=false -Type=Application Modified: trunk/PROTO/elm_kbd/data/desktop/elm_kbd.desktop =================================================================== --- trunk/PROTO/elm_kbd/data/desktop/elm_kbd.desktop 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/PROTO/elm_kbd/data/desktop/elm_kbd.desktop 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,15 +1,15 @@ [Desktop Entry] -Categories=Application;Development; +Encoding=UTF-8 +Type=Application +Name=Elm_Kbd Comment=Elementary Keyboard Comment[eo]=Klavaro de Elementary Comment[es]=Teclado de Elementary Comment[gl]=Teclado de Elementary Comment[it]=Elementary - Tastiera Comment[pt]=Teclado Elementary -Encoding=UTF-8 +Icon=elm_kbd Exec=elm_kbd -Icon=elm_kbd -Name=Elm_Kbd +Terminal=false +Categories=Application;Development; StartupWMClass=elm_kbd -Terminal=false -Type=Application Modified: trunk/PROTO/elm_quickpanel/data/desktop/elm_quickpanel.desktop =================================================================== --- trunk/PROTO/elm_quickpanel/data/desktop/elm_quickpanel.desktop 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/PROTO/elm_quickpanel/data/desktop/elm_quickpanel.desktop 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,15 +1,15 @@ [Desktop Entry] -Categories=Application;Development; +Encoding=UTF-8 +Type=Application +Name=Elm_Quickpanel Comment=Elementary Quickpanel Comment[eo]=Rapida panelo de Elementary Comment[es]=Panel rápido de Elementary Comment[gl]=Panel rápido de Elementary Comment[it]=Elementary - Pannello rapido Comment[pt]=Painel rápido do Elementary -Encoding=UTF-8 +Icon=elm_quickpanel Exec=elm_quickpanel -Icon=elm_quickpanel -Name=Elm_Quickpanel +Terminal=false +Categories=Application;Development; StartupWMClass=elm_quickpanel -Terminal=false -Type=Application Modified: trunk/PROTO/elm_softkey/data/desktop/elm_softkey.desktop =================================================================== --- trunk/PROTO/elm_softkey/data/desktop/elm_softkey.desktop 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/PROTO/elm_softkey/data/desktop/elm_softkey.desktop 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,15 +1,15 @@ [Desktop Entry] -Categories=Application;Development; +Encoding=UTF-8 +Type=Application +Name=Elm_Softkey Comment=Elementary Softkey Comment[eo]=Programo de klavaro de Elementary Comment[es]=Software del teclado de Elementary Comment[gl]=Software do teclado de Elementary Comment[it]=Elementary - Tastiera software Comment[pt]=Teclado Elementary -Encoding=UTF-8 +Icon=elm_softkey Exec=elm_softkey -Icon=elm_softkey -Name=Elm_Softkey +Terminal=false +Categories=Application;Development; StartupWMClass=elm_softkey -Terminal=false -Type=Application Modified: trunk/PROTO/enna-explorer/data/other/enna-explorer.desktop =================================================================== --- trunk/PROTO/enna-explorer/data/other/enna-explorer.desktop 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/PROTO/enna-explorer/data/other/enna-explorer.desktop 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,14 +1,11 @@ [Desktop Entry] -Categories=X-ENLIGHTENMENT;AudioVideo;Player; -Comment=EFL File Explorer -Comment[eo]=EFL dosier-foliumilo -Comment[es]=Explorador de arhivos usando las EFL -Comment[fr]=Explorateur de fichiers utilisant les EFL. -Comment[gl]=Explorador de ficheiros empregando as EFL -Comment[it]=Esploratore di file Enna -Comment[pt]=Explorador de ficheiros Enna Encoding=UTF-8 -Exec=enna-explorer +Type=Application +Name=Enna Explorer +Name[eo]=Foliumilo Enna +Name[es]=Explorador Enna +Name[gl]=Explorador Enna +Name[pt]=Explorador Enna GenericName=File Explorer GenericName[eo]=Foliumilo de dosieroj GenericName[es]=Explorador de arhivos @@ -16,13 +13,16 @@ GenericName[gl]=Explorador de ficheiros GenericName[it]=Esploratore di file GenericName[pt]=Explorador de ficheiros +Comment=EFL File Explorer +Comment[eo]=EFL dosier-foliumilo +Comment[es]=Explorador de arhivos usando las EFL +Comment[fr]=Explorateur de fichiers utilisant les EFL. +Comment[gl]=Explorador de ficheiros empregando as EFL +Comment[it]=Esploratore di file Enna +Comment[pt]=Explorador de ficheiros Enna Icon=enna-explorer -Name=Enna Explorer -Name[eo]=Foliumilo Enna -Name[es]=Explorador Enna -Name[gl]=Explorador Enna -Name[pt]=Explorador Enna +TryExec=enna-explorer +Exec=enna-explorer +Terminal=false +Categories=X-ENLIGHTENMENT;AudioVideo;Player; StartupWMClass=enna-explorer -Terminal=false -TryExec=enna-explorer -Type=Application Modified: trunk/PROTO/ev/ev.desktop =================================================================== --- trunk/PROTO/ev/ev.desktop 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/PROTO/ev/ev.desktop 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,7 +1,7 @@ [Desktop Entry] -Categories=Graphics;Viewer; Encoding=UTF-8 -Exec=ev %F +Type=Application +Name=ev GenericName=Image Viewer GenericName[ca]=Visor d'imatges GenericName[cs]=Prohlížeč obrázků @@ -20,7 +20,7 @@ GenericName[sr@latin]=Razgledač slika GenericName[sr]=Разгледач слика Icon=ev +Exec=ev %F +Terminal=false +Categories=Graphics;Viewer; Mimetype=image/jpeg;image/gif;image/png;image/x-png;image/tiff;image/bmp;image/x-bmp;image/x-MS-bmp;image/svg;image/svg+xml;image/x-portable-graymap;image/x-portable-bitmap;image/x-portable-pixmap;image/x-portable-anymap;image/x-portable-bitmap;image/xpm;image/x-icon;image/x-xbitmap;image/x-xpixmap;image/x-tga;image/x-ico;image/vnd.wap.wbmp -Name=ev -Terminal=false -Type=Application Modified: trunk/PROTO/keys/data/applications/keys.desktop =================================================================== --- trunk/PROTO/keys/data/applications/keys.desktop 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/PROTO/keys/data/applications/keys.desktop 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,5 +1,12 @@ [Desktop Entry] -Categories=Application;Utility; +Encoding=UTF-8 +Type=Application +Name=Keys +Name[eo]=Klavoj +Name[es]=Teclas +Name[fr]=Touches +Name[gl]=Teclas +Name[pt]=Teclas Comment=Python-EFL-based on-screen keyboard Comment[cs]=Klávesnice na obrazovce založená na EFL a Pythonu Comment[eo]=Ekrana klavaro per Pitono-EFL @@ -7,14 +14,7 @@ Comment[gl]=Un teclado de pantalla baseado en Python-EFL Comment[it]=Tastiera a schermo basata su Python-EFL Comment[pt]=Um teclado no ecrã baseado em Python-EFL -Encoding=UTF-8 +Icon=keys Exec=efl-keys -Icon=keys -Name=Keys -Name[eo]=Klavoj -Name[es]=Teclas -Name[fr]=Touches -Name[gl]=Teclas -Name[pt]=Teclas Terminal=false -Type=Application +Categories=Application;Utility; Modified: trunk/TEST/tests/data/sub/test.desktop =================================================================== --- trunk/TEST/tests/data/sub/test.desktop 2013-07-04 10:06:18 UTC (rev 84575) +++ trunk/TEST/tests/data/sub/test.desktop 2013-07-04 17:48:15 UTC (rev 84576) @@ -1,4 +1,5 @@ [Desktop Entry] +Encoding=UTF-8 Type=Application Name=Sub Exec=subtest... [truncated message content] |
From: Enlightenment S. <no-...@en...> - 2013-07-04 10:06:28
|
Log: Migrated dark to Git. Author: tasn Date: 2013-07-04 03:06:18 -0700 (Thu, 04 Jul 2013) New Revision: 84575 Trac: http://trac.enlightenment.org/e/changeset/84575 Removed: trunk/THEMES/ |
From: Enlightenment S. <no-...@en...> - 2013-07-04 09:25:22
|
Log: more work on list - horizontal... only started. not done. Author: raster Date: 2013-07-04 02:25:10 -0700 (Thu, 04 Jul 2013) New Revision: 84574 Trac: http://trac.enlightenment.org/e/changeset/84574 Modified: trunk/THEMES/dark/edje/edc/elm/list.edc Modified: trunk/THEMES/dark/edje/edc/elm/list.edc =================================================================== --- trunk/THEMES/dark/edje/edc/elm/list.edc 2013-07-04 09:23:21 UTC (rev 84573) +++ trunk/THEMES/dark/edje/edc/elm/list.edc 2013-07-04 09:25:10 UTC (rev 84574) @@ -395,6 +395,313 @@ // elm/list/h_item_compress/default // elm/list/h_item_compress_odd/default + + + + + + + + + + + + + +group { name: "elm/list/h_item/default"; + data.item: "selectraise" "on"; + images.image: "bevel_curved_horiz_out.png" COMP; + images.image: "shadow_rounded_horiz.png" COMP; + images.image: "vgrad_med_dark.png" COMP; + images.image: "bevel_horiz_out.png" COMP; + images.image: "shine.png" COMP; + parts { + part { name: "event"; type: RECT; + description { state: "default" 0.0; + color: 0 0 0 0; + } + description { state: "disabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + } + part { name: "base"; type: RECT; mouse_events: 0; + description { state: "default" 0.0; + color: 64 64 64 255; + color_class: "list_item_base"; + } + description { state: "odd" 0.0; + color: 56 56 56 255; + color_class: "list_item_base_odd"; + } + } + program { + signal: "elm,state,odd"; source: "elm"; + action: STATE_SET "odd" 1.0; + target: "base"; + } + program { + signal: "elm,state,even"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "base"; + } + part { name: "bevel"; mouse_events: 0; + description { state: "default" 0.0; + image.normal: "bevel_curved_horiz_out.png"; + image.border: 0 0 2 2; + image.middle: 0; + fill.smooth: 0; + } + } + part { name: "sel_shadow"; mouse_events: 0; + description { state: "default" 0.0; + image.normal: "shadow_rounded_horiz.png"; + image.border: 0 0 9 9; + rel1.offset: 0 -4; + rel2.offset: -1 5; + fill.smooth: 0; + visible: 0; + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 1; + } + } + part { name: "sel_base"; mouse_events: 0; + description { state: "default" 0.0; + image.normal: "vgrad_med_dark.png"; + fill.smooth: 0; + visible: 0; + TILED_HORIZ(120) + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 1; + } + } + part { name: "sel_bevel"; mouse_events: 0; + description { state: "default" 0.0; + image.normal: "bevel_horiz_out.png"; + image.border: 0 0 2 2; + image.middle: 0; + fill.smooth: 0; + visible: 0; + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 1; + } + } + program { + signal: "elm,state,selected"; source: "elm"; + action: STATE_SET "selected" 0.0; + target: "sel_shadow"; + target: "sel_base"; + target: "sel_bevel"; + } + program { + signal: "elm,state,unselected"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "sel_shadow"; + target: "sel_base"; + target: "sel_bevel"; + } + program { + signal: "elm,state,disabled"; source: "elm"; + action: STATE_SET "disabled" 0.0; + target: "event"; + } + program { + signal: "elm,state,enabled"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "event"; + } + + //##// + part { name: "elm.text"; type: TEXT; mouse_events: 0; + effect: SHADOW BOTTOM; + scale: 1; + description { state: "default" 0.0; + rel1.offset: 2 3; + rel1.relative: 1.0 0.0; + rel1.to_x: "elm.swallow.icon"; + rel2.offset: -3 -3; + rel2.relative: 0.0 1.0; + rel2.to_x: "elm.swallow.end"; + color: 255 255 255 255; + color3: 0 0 0 128; + color_class: "list_item"; + text { font: "Sans"; size: 10; + min: 1 1; + align: 0.0 0.5; + text_class: "list_item"; + } + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 0; + } + description { state: "disabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + } + part { name: "label2"; type: TEXT; mouse_events: 0; + effect: SHADOW BOTTOM; + scale: 1; + description { state: "default" 0.0; + rel1.to: "elm.text"; + rel2.to: "elm.text"; + color: 21 21 21 255; + color3: 255 255 255 25; + color_class: "list_item_disabled"; + text { font: "Sans"; size: 10; + text_source: "elm.text"; + align: 0.0 0.5; + text_class: "list_item"; + } + visible: 0; + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 0; + } + description { state: "disabled" 0.0; + inherit: "default" 0.0; + visible: 1; + } + } + part { name: "label3"; type: TEXT; mouse_events: 0; + effect: GLOW; + scale: 1; + description { state: "default" 0.0; + rel1.offset: -2 -3; + rel1.to: "elm.text"; + rel2.offset: -1 1; + rel2.to: "elm.text"; + color: 51 153 255 255; + color2: 51 153 255 24; + color3: 51 153 255 18; + color_class: "list_item_selected"; + text { font: "Sans"; size: 10; + text_source: "elm.text"; + align: 0.0 0.5; + text_class: "list_item"; + } + visible: 0; + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 1; + } + description { state: "disabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + } + program { + signal: "elm,state,selected"; source: "elm"; + action: STATE_SET "selected" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + } + program { + signal: "elm,state,unselected"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + } + program { + signal: "elm,state,disabled"; source: "elm"; + action: STATE_SET "disabled" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + } + program { + signal: "elm,state,enabled"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + } + //##// + part { name: "elm.swallow.icon"; type: SWALLOW; + description { state: "default" 0.0; + fixed: 1 0; + align: 0.0 0.5; + aspect: 1.0 1.0; + rel1.offset: 2 2; + rel2.relative: 0.0 1.0; + rel2.offset: 2 -3; + } + } + part { name: "elm.swallow.end"; type: SWALLOW; + description { state: "default" 0.0; + fixed: 1 0; + align: 1.0 0.5; + aspect: 1.0 1.0; + rel1.offset: -3 2; + rel1.relative: 1.0 0.0; + rel2.offset: -3 -3; + } + } + //##// + + part { name: "sel_shine"; mouse_events: 0; + description { state: "default" 0.0; + image.normal: "shine.png"; + rel1.offset: 0 -2; + rel1.to: "sel_base"; + rel2.relative: 1.0 0.0; + rel2.offset: -1 2; + rel2.to: "sel_base"; + visible: 0; + FIXED_SIZE(69, 5) + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 1; + } + } + part { name: "event_block"; type: RECT; + description { state: "default" 0.0; + color: 0 0 0 0; + visible: 0; + } + description { state: "disabled" 0.0; + inherit: "default" 0.0; + visible: 1; + } + } + program { + signal: "elm,state,selected"; source: "elm"; + action: STATE_SET "selected" 0.0; + target: "sel_shine"; + } + program { + signal: "elm,state,unselected"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "sel_shine"; + } + program { + signal: "elm,state,disabled"; source: "elm"; + action: STATE_SET "disabled" 0.0; + target: "event_block"; + } + program { + signal: "elm,state,enabled"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "event_block"; + } + } +} +ODD("elm/list/h_item_odd/default", "elm/list/h_item/default") +COMPRESS("elm/list/h_item_compress/default", "elm/list/h_item/default") +COMPRESS_ODD("elm/list/h_item_compress_odd/default", "elm/list/h_item/default") + #undef ODD #undef COMPRESS #undef COMPRESS_ODD |
From: Enlightenment S. <no-...@en...> - 2013-07-04 09:23:33
|
Log: more work on dark. Author: raster Date: 2013-07-04 02:23:21 -0700 (Thu, 04 Jul 2013) New Revision: 84573 Trac: http://trac.enlightenment.org/e/changeset/84573 Added: trunk/THEMES/dark/edje/edc/elm/conform.edc Modified: trunk/THEMES/dark/edje/dark.edc trunk/THEMES/dark/edje/edc/elm/genlist.edc trunk/THEMES/dark/edje/edc/elm/list.edc Modified: trunk/THEMES/dark/edje/dark.edc =================================================================== --- trunk/THEMES/dark/edje/dark.edc 2013-07-04 04:16:18 UTC (rev 84572) +++ trunk/THEMES/dark/edje/dark.edc 2013-07-04 09:23:21 UTC (rev 84573) @@ -19,37 +19,46 @@ #include "edc/elm/toolbar.edc" #include "edc/elm/genlist.edc" #include "edc/elm/list.edc" +#include "edc/elm/conform.edc" +//#include "edc/elm/icon.edc" +//#include "edc/elm/video.edc" +//#include "edc/elm/access.edc" //#include "edc/elm/photo.edc" -//#include "edc/elm/panel.edc" -//#include "edc/elm/tooltip.edc" -//#include "edc/elm/progress.edc" -//#include "edc/elm/multibuttonentry.edc" //#include "edc/elm/focus.edc" +//#include "edc/elm/datetime.edc" +//#include "edc/elm/player.edc" +//#include "edc/elm/thumb.edc" +//#include "edc/elm/pointer.edc" +//#include "edc/elm/fileselector.edc" +//#include "edc/elm/win.edc" +//#include "edc/elm/inwin.edc" +//#include "edc/elm/slideshow.edc" +//#include "edc/elm/disksel.edc" //#include "edc/elm/ctxpopup.edc" +//#include "edc/elm/multibuttonentry.edc" +//#include "edc/elm/daysel.edc" +//#include "edc/elm/actionslider.edc" +//#include "edc/elm/photocam.edc" +//#include "edc/elm/tooltip.edc" +//#include "edc/elm/colorsel.edc" +//#include "edc/elm/segmentcontrol.edc" +//#include "edc/elm/flipsel.edc" +//#include "edc/elm/notification.edc" //#include "edc/elm/map.edc" -//#include "edc/elm/photocam.edc" -//#include "edc/elm/slideshow.edc" -//#include "edc/elm/thumb.edc" -//#include "edc/elm/video.edc" +//#include "edc/elm/index.edc" +//#include "edc/elm/calendar.edc" +//#include "edc/elm/layout.edc" +//#include "edc/elm/progress.edc" //#include "edc/elm/naviframe.edc" -//#include "edc/elm/hover.edc" +//#include "edc/elm/panel.edc" //#include "edc/elm/popup.edc" +//#include "edc/elm/border.edc" //#include "edc/elm/spinner.edc" -//#include "edc/elm/actionslider.edc" -//#include "edc/elm/colorsel.edc" -//#include "edc/elm/daysel.edc" -//#include "edc/elm/disksel.edc" -//#include "edc/elm/hoversel.edc" -//#include "edc/elm/index.edc" -//#include "edc/elm/flipsel.edc" //#include "edc/elm/menu.edc" -//#include "edc/elm/segmentcontrol.edc" -//#include "edc/elm/conform.edc" -//#include "edc/elm/notification.edc" -//#include "edc/elm/calendar.edc" //#include "edc/elm/clock.edc" -//#include "edc/elm/datetime.edc" -//#include "edc/elm/inwin.edc" +//#include "edc/elm/gengrid.edc" +//#include "edc/elm/hover.edc" +//#include "edc/elm/hoversel.edc" // desktop in general #include "edc/comp.edc" Added: trunk/THEMES/dark/edje/edc/elm/conform.edc =================================================================== --- trunk/THEMES/dark/edje/edc/elm/conform.edc (rev 0) +++ trunk/THEMES/dark/edje/edc/elm/conform.edc 2013-07-04 09:23:21 UTC (rev 84573) @@ -0,0 +1,53 @@ +group { name: "elm/conformant/base/default"; + parts { + part { name: "elm.swallow.indicator"; + type: SWALLOW; + description { state: "default" 0.0; + fixed: 0 1; + align: 0.0 0.0; + rel2.relative: 1.0 0.0; + } + } + part { name: "elm.swallow.content"; + type: SWALLOW; + description { state: "default" 0.0; + fixed: 0 1; + align: 0.5 0.5; + rel1.relative: 0.0 1.0; + rel1.to_y: "elm.swallow.indicator"; + rel2.relative: 1.0 0.0; + rel2.to_y: "elm.swallow.clipboard"; + } + } + part { name: "elm.swallow.clipboard"; + type: SWALLOW; + description { state: "default" 0.0; + fixed: 0 1; + align: 0.0 1.0; + rel1.relative: 0.0 0.0; + rel1.to_y: "elm.swallow.virtualkeypad"; + rel2.relative: 1.0 0.0; + rel2.to_y: "elm.swallow.virtualkeypad"; + } + } + part { name: "elm.swallow.virtualkeypad"; + type: SWALLOW; + description { state: "default" 0.0; + fixed: 0 1; + align: 0.0 1.0; + rel1.relative: 0.0 0.0; + rel1.to_y: "elm.swallow.softkey"; + rel2.relative: 1.0 0.0; + rel2.to_y: "elm.swallow.softkey"; + } + } + part { name: "elm.swallow.softkey"; + type: SWALLOW; + description { state: "default" 0.0; + fixed: 0 1; + align: 0.0 1.0; + rel1.relative: 0.0 1.0; + } + } + } +} Modified: trunk/THEMES/dark/edje/edc/elm/genlist.edc =================================================================== --- trunk/THEMES/dark/edje/edc/elm/genlist.edc 2013-07-04 04:16:18 UTC (rev 84572) +++ trunk/THEMES/dark/edje/edc/elm/genlist.edc 2013-07-04 09:23:21 UTC (rev 84573) @@ -1,9 +1,3 @@ -//////////////////////////////////////////////////////////////////////////// -//-- item -//-- item_odd -//-- item_compress -//-- item_compress_odd - #define ODD(_NAME, _SRC) \ group { name: _NAME; \ inherit: _SRC; \ Modified: trunk/THEMES/dark/edje/edc/elm/list.edc =================================================================== --- trunk/THEMES/dark/edje/edc/elm/list.edc 2013-07-04 04:16:18 UTC (rev 84572) +++ trunk/THEMES/dark/edje/edc/elm/list.edc 2013-07-04 09:23:21 UTC (rev 84573) @@ -1,9 +1,3 @@ -//////////////////////////////////////////////////////////////////////////// -//-- item -//-- item_odd -//-- item_compress -//-- item_compress_odd - #define ODD(_NAME, _SRC) \ group { name: _NAME; \ inherit: _SRC; \ |
From: Enlightenment S. <no-...@en...> - 2013-07-04 04:16:29
|
Log: genlist fixes and vertical list theme done. Author: raster Date: 2013-07-03 21:16:18 -0700 (Wed, 03 Jul 2013) New Revision: 84572 Trac: http://trac.enlightenment.org/e/changeset/84572 Added: trunk/THEMES/dark/edje/edc/elm/list.edc Modified: trunk/THEMES/dark/edje/dark.edc trunk/THEMES/dark/edje/edc/elm/genlist.edc Modified: trunk/THEMES/dark/edje/dark.edc =================================================================== --- trunk/THEMES/dark/edje/dark.edc 2013-07-04 03:33:28 UTC (rev 84571) +++ trunk/THEMES/dark/edje/dark.edc 2013-07-04 04:16:18 UTC (rev 84572) @@ -18,7 +18,7 @@ #include "edc/elm/panes.edc" #include "edc/elm/toolbar.edc" #include "edc/elm/genlist.edc" -//#include "edc/elm/list.edc" +#include "edc/elm/list.edc" //#include "edc/elm/photo.edc" //#include "edc/elm/panel.edc" //#include "edc/elm/tooltip.edc" Modified: trunk/THEMES/dark/edje/edc/elm/genlist.edc =================================================================== --- trunk/THEMES/dark/edje/edc/elm/genlist.edc 2013-07-04 03:33:28 UTC (rev 84571) +++ trunk/THEMES/dark/edje/edc/elm/genlist.edc 2013-07-04 04:16:18 UTC (rev 84572) @@ -24,7 +24,44 @@ description { state: "default" 0.0; \ text.min: 0 1; \ } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ } \ + part { name: "label2"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ + part { name: "label3"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ } \ } #define COMPRESS_ODD(_NAME, _SRC) \ @@ -35,7 +72,44 @@ description { state: "default" 0.0; \ text.min: 0 1; \ } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ } \ + part { name: "label2"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ + part { name: "label3"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ part { name: "base"; \ description { state: "default" 0.0; \ color: 56 56 56 255; \ @@ -2149,12 +2223,86 @@ description { state: "default" 0.0; \ text.min: 0 1; \ } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ } \ + part { name: "label2"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ + part { name: "label3"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ part { name: "elm.text.sub"; \ description { state: "default" 0.0; \ text.min: 0 1; \ } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ } \ + part { name: "label4"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ + part { name: "label5"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ } \ } #define COMPRESS_SUB_ODD(_NAME, _SRC) \ @@ -2165,12 +2313,86 @@ description { state: "default" 0.0; \ text.min: 0 1; \ } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ } \ + part { name: "label2"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ + part { name: "label3"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ part { name: "elm.text.sub"; \ description { state: "default" 0.0; \ text.min: 0 1; \ } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ } \ + part { name: "label4"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ + part { name: "label5"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ part { name: "base"; \ description { state: "default" 0.0; \ color: 56 56 56 255; \ @@ -2549,17 +2771,128 @@ description { state: "default" 0.0; \ text.min: 0 1; \ } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ } \ + part { name: "label2"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ + part { name: "label3"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ part { name: "elm.title.1"; \ description { state: "default" 0.0; \ text.min: 0 1; \ } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ } \ + part { name: "label4"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ + part { name: "label5"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ part { name: "elm.title.2"; \ description { state: "default" 0.0; \ text.min: 0 1; \ } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ } \ + part { name: "label6"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ + part { name: "label7"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ } \ } #define COMPRESS_T1T2_ODD(_NAME, _SRC) \ @@ -2570,17 +2903,128 @@ description { state: "default" 0.0; \ text.min: 0 1; \ } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ } \ + part { name: "label2"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ + part { name: "label3"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ part { name: "elm.title.1"; \ description { state: "default" 0.0; \ text.min: 0 1; \ } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ } \ + part { name: "label4"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ + part { name: "label5"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ part { name: "elm.title.2"; \ description { state: "default" 0.0; \ text.min: 0 1; \ } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ } \ + part { name: "label6"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ + part { name: "label7"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ part { name: "base"; \ description { state: "default" 0.0; \ color: 56 56 56 255; \ @@ -3289,12 +3733,86 @@ description { state: "default" 0.0; \ text.min: 0 1; \ } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ } \ + part { name: "label2"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ + part { name: "label3"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ part { name: "elm.text.album-artist"; \ description { state: "default" 0.0; \ text.min: 0 1; \ } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ } \ + part { name: "label4"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ + part { name: "label5"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ } \ } #define COMPRESS_MEDIA_ODD(_NAME, _SRC) \ @@ -3305,12 +3823,86 @@ description { state: "default" 0.0; \ text.min: 0 1; \ } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ } \ + part { name: "label2"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ + part { name: "label3"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ part { name: "elm.text.album-artist"; \ description { state: "default" 0.0; \ text.min: 0 1; \ } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ } \ + part { name: "label4"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ + part { name: "label5"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ part { name: "base"; \ description { state: "default" 0.0; \ color: 56 56 56 255; \ @@ -3755,12 +4347,86 @@ description { state: "default" 0.0; text.min: 0 1; } + description { state: "selected" 0.0; + text.min: 0 1; + } + description { state: "disabled" 0.0; + text.min: 0 1; + } + description { state: "flip_enabled" 0.0; + text.min: 0 1; + } } + part { name: "label2"; + description { state: "default" 0.0; + text.min: 0 1; + } + description { state: "selected" 0.0; + text.min: 0 1; + } + description { state: "disabled" 0.0; + text.min: 0 1; + } + description { state: "flip_enabled" 0.0; + text.min: 0 1; + } + } + part { name: "label3"; + description { state: "default" 0.0; + text.min: 0 1; + } + description { state: "selected" 0.0; + text.min: 0 1; + } + description { state: "disabled" 0.0; + text.min: 0 1; + } + description { state: "flip_enabled" 0.0; + text.min: 0 1; + } + } part { name: "elm.text.length"; description { state: "default" 0.0; text.min: 0 1; } + description { state: "selected" 0.0; + text.min: 0 1; + } + description { state: "disabled" 0.0; + text.min: 0 1; + } + description { state: "flip_enabled" 0.0; + text.min: 0 1; + } } + part { name: "label4"; + description { state: "default" 0.0; + text.min: 0 1; + } + description { state: "selected" 0.0; + text.min: 0 1; + } + description { state: "disabled" 0.0; + text.min: 0 1; + } + description { state: "flip_enabled" 0.0; + text.min: 0 1; + } + } + part { name: "label5"; + description { state: "default" 0.0; + text.min: 0 1; + } + description { state: "selected" 0.0; + text.min: 0 1; + } + description { state: "disabled" 0.0; + text.min: 0 1; + } + description { state: "flip_enabled" 0.0; + text.min: 0 1; + } + } } } group { name: "elm/genlist/item_compress_odd/media-album/default"; @@ -3770,12 +4436,86 @@ description { state: "default" 0.0; text.min: 0 1; } + description { state: "selected" 0.0; + text.min: 0 1; + } + description { state: "disabled" 0.0; + text.min: 0 1; + } + description { state: "flip_enabled" 0.0; + text.min: 0 1; + } } + part { name: "label2"; + description { state: "default" 0.0; + text.min: 0 1; + } + description { state: "selected" 0.0; + text.min: 0 1; + } + description { state: "disabled" 0.0; + text.min: 0 1; + } + description { state: "flip_enabled" 0.0; + text.min: 0 1; + } + } + part { name: "label3"; + description { state: "default" 0.0; + text.min: 0 1; + } + description { state: "selected" 0.0; + text.min: 0 1; + } + description { state: "disabled" 0.0; + text.min: 0 1; + } + description { state: "flip_enabled" 0.0; + text.min: 0 1; + } + } part { name: "elm.text.length"; description { state: "default" 0.0; text.min: 0 1; } + description { state: "selected" 0.0; + text.min: 0 1; + } + description { state: "disabled" 0.0; + text.min: 0 1; + } + description { state: "flip_enabled" 0.0; + text.min: 0 1; + } } + part { name: "label4"; + description { state: "default" 0.0; + text.min: 0 1; + } + description { state: "selected" 0.0; + text.min: 0 1; + } + description { state: "disabled" 0.0; + text.min: 0 1; + } + description { state: "flip_enabled" 0.0; + text.min: 0 1; + } + } + part { name: "label5"; + description { state: "default" 0.0; + text.min: 0 1; + } + description { state: "selected" 0.0; + text.min: 0 1; + } + description { state: "disabled" 0.0; + text.min: 0 1; + } + description { state: "flip_enabled" 0.0; + text.min: 0 1; + } + } } } @@ -4102,12 +4842,86 @@ description { state: "default" 0.0; text.min: 0 1; } + description { state: "selected" 0.0; + text.min: 0 1; + } + description { state: "disabled" 0.0; + text.min: 0 1; + } + description { state: "flip_enabled" 0.0; + text.min: 0 1; + } } + part { name: "label2"; + description { state: "default" 0.0; + text.min: 0 1; + } + description { state: "selected" 0.0; + text.min: 0 1; + } + description { state: "disabled" 0.0; + text.min: 0 1; + } + description { state: "flip_enabled" 0.0; + text.min: 0 1; + } + } + part { name: "label3"; + description { state: "default" 0.0; + text.min: 0 1; + } + description { state: "selected" 0.0; + text.min: 0 1; + } + description { state: "disabled" 0.0; + text.min: 0 1; + } + description { state: "flip_enabled" 0.0; + text.min: 0 1; + } + } part { name: "elm.text.artist"; description { state: "default" 0.0; text.min: 0 1; } + description { state: "selected" 0.0; + text.min: 0 1; + } + description { state: "disabled" 0.0; + text.min: 0 1; + } + description { state: "flip_enabled" 0.0; + text.min: 0 1; + } } + part { name: "label4"; + description { state: "default" 0.0; + text.min: 0 1; + } + description { state: "selected" 0.0; + text.min: 0 1; + } + description { state: "disabled" 0.0; + text.min: 0 1; + } + description { state: "flip_enabled" 0.0; + text.min: 0 1; + } + } + part { name: "label5"; + description { state: "default" 0.0; + text.min: 0 1; + } + description { state: "selected" 0.0; + text.min: 0 1; + } + description { state: "disabled" 0.0; + text.min: 0 1; + } + description { state: "flip_enabled" 0.0; + text.min: 0 1; + } + } } } group { name: "elm/genlist/item_odd_compress/media-preview/default"; @@ -4117,12 +4931,86 @@ description { state: "default" 0.0; text.min: 0 1; } + description { state: "selected" 0.0; + text.min: 0 1; + } + description { state: "disabled" 0.0; + text.min: 0 1; + } + description { state: "flip_enabled" 0.0; + text.min: 0 1; + } } + part { name: "label2"; + description { state: "default" 0.0; + text.min: 0 1; + } + description { state: "selected" 0.0; + text.min: 0 1; + } + description { state: "disabled" 0.0; + text.min: 0 1; + } + description { state: "flip_enabled" 0.0; + text.min: 0 1; + } + } + part { name: "label3"; + description { state: "default" 0.0; + text.min: 0 1; + } + description { state: "selected" 0.0; + text.min: 0 1; + } + description { state: "disabled" 0.0; + text.min: 0 1; + } + description { state: "flip_enabled" 0.0; + text.min: 0 1; + } + } part { name: "elm.text.artist"; description { state: "default" 0.0; text.min: 0 1; } + description { state: "selected" 0.0; + text.min: 0 1; + } + description { state: "disabled" 0.0; + text.min: 0 1; + } + description { state: "flip_enabled" 0.0; + text.min: 0 1; + } } + part { name: "label4"; + description { state: "default" 0.0; + text.min: 0 1; + } + description { state: "selected" 0.0; + text.min: 0 1; + } + description { state: "disabled" 0.0; + text.min: 0 1; + } + description { state: "flip_enabled" 0.0; + text.min: 0 1; + } + } + part { name: "label5"; + description { state: "default" 0.0; + text.min: 0 1; + } + description { state: "selected" 0.0; + text.min: 0 1; + } + description { state: "disabled" 0.0; + text.min: 0 1; + } + description { state: "flip_enabled" 0.0; + text.min: 0 1; + } + } } } @@ -4134,7 +5022,44 @@ description { state: "default" 0.0; \ text.min: 0 1; \ } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ } \ + part { name: "label2"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ + part { name: "label3"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ } \ } #define COMPRESS_MODE_ODD(_NAME, _SRC) \ @@ -4145,7 +5070,44 @@ description { state: "default" 0.0; \ text.min: 0 1; \ } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ } \ + part { name: "label2"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ + part { name: "label3"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "flip_enabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ part { name: "base"; \ description { state: "default" 0.0; \ color: 56 56 56 255; \ Added: trunk/THEMES/dark/edje/edc/elm/list.edc =================================================================== --- trunk/THEMES/dark/edje/edc/elm/list.edc (rev 0) +++ trunk/THEMES/dark/edje/edc/elm/list.edc 2013-07-04 04:16:18 UTC (rev 84572) @@ -0,0 +1,406 @@ +//////////////////////////////////////////////////////////////////////////// +//-- item +//-- item_odd +//-- item_compress +//-- item_compress_odd + +#define ODD(_NAME, _SRC) \ + group { name: _NAME; \ + inherit: _SRC; \ + parts { \ + part { name: "base"; \ + description { state: "default" 0.0; \ + color: 56 56 56 255; \ + color_class: "list_item_base_odd"; \ + } \ + } \ + } \ + } +#define COMPRESS(_NAME, _SRC) \ + group { name: _NAME; \ + inherit: _SRC; \ + parts { \ + part { name: "elm.text"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ + part { name: "label2"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ + part { name: "label3"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ + } \ + } +#define COMPRESS_ODD(_NAME, _SRC) \ + group { name: _NAME; \ + inherit: _SRC; \ + parts { \ + part { name: "elm.text"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ + part { name: "label2"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ + part { name: "label3"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "selected" 0.0; \ + text.min: 0 1; \ + } \ + description { state: "disabled" 0.0; \ + text.min: 0 1; \ + } \ + } \ + part { name: "base"; \ + description { state: "default" 0.0; \ + color: 56 56 56 255; \ + color_class: "list_item_base_odd"; \ + } \ + } \ + } \ + } + +group { name: "elm/list/item/default"; + data.item: "selectraise" "on"; + images.image: "bevel_curved_horiz_out.png" COMP; + images.image: "shadow_rounded_horiz.png" COMP; + images.image: "vgrad_med_dark.png" COMP; + images.image: "bevel_horiz_out.png" COMP; + images.image: "shine.png" COMP; + parts { + part { name: "event"; type: RECT; + description { state: "default" 0.0; + color: 0 0 0 0; + } + description { state: "disabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + } + part { name: "base"; type: RECT; mouse_events: 0; + description { state: "default" 0.0; + color: 64 64 64 255; + color_class: "list_item_base"; + } + description { state: "odd" 0.0; + color: 56 56 56 255; + color_class: "list_item_base_odd"; + } + } + program { + signal: "elm,state,odd"; source: "elm"; + action: STATE_SET "odd" 1.0; + target: "base"; + } + program { + signal: "elm,state,even"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "base"; + } + part { name: "bevel"; mouse_events: 0; + description { state: "default" 0.0; + image.normal: "bevel_curved_horiz_out.png"; + image.border: 0 0 2 2; + image.middle: 0; + fill.smooth: 0; + } + } + part { name: "sel_shadow"; mouse_events: 0; + description { state: "default" 0.0; + image.normal: "shadow_rounded_horiz.png"; + image.border: 0 0 9 9; + rel1.offset: 0 -4; + rel2.offset: -1 5; + fill.smooth: 0; + visible: 0; + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 1; + } + } + part { name: "sel_base"; mouse_events: 0; + description { state: "default" 0.0; + image.normal: "vgrad_med_dark.png"; + fill.smooth: 0; + visible: 0; + TILED_HORIZ(120) + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 1; + } + } + part { name: "sel_bevel"; mouse_events: 0; + description { state: "default" 0.0; + image.normal: "bevel_horiz_out.png"; + image.border: 0 0 2 2; + image.middle: 0; + fill.smooth: 0; + visible: 0; + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 1; + } + } + program { + signal: "elm,state,selected"; source: "elm"; + action: STATE_SET "selected" 0.0; + target: "sel_shadow"; + target: "sel_base"; + target: "sel_bevel"; + } + program { + signal: "elm,state,unselected"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "sel_shadow"; + target: "sel_base"; + target: "sel_bevel"; + } + program { + signal: "elm,state,disabled"; source: "elm"; + action: STATE_SET "disabled" 0.0; + target: "event"; + } + program { + signal: "elm,state,enabled"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "event"; + } + + //##// + part { name: "elm.text"; type: TEXT; mouse_events: 0; + effect: SHADOW BOTTOM; + scale: 1; + description { state: "default" 0.0; + rel1.offset: 2 3; + rel1.relative: 1.0 0.0; + rel1.to_x: "elm.swallow.icon"; + rel2.offset: -3 -3; + rel2.relative: 0.0 1.0; + rel2.to_x: "elm.swallow.end"; + color: 255 255 255 255; + color3: 0 0 0 128; + color_class: "list_item"; + text { font: "Sans"; size: 10; + min: 1 1; + align: 0.0 0.5; + text_class: "list_item"; + } + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 0; + } + description { state: "disabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + } + part { name: "label2"; type: TEXT; mouse_events: 0; + effect: SHADOW BOTTOM; + scale: 1; + description { state: "default" 0.0; + rel1.to: "elm.text"; + rel2.to: "elm.text"; + color: 21 21 21 255; + color3: 255 255 255 25; + color_class: "list_item_disabled"; + text { font: "Sans"; size: 10; + text_source: "elm.text"; + align: 0.0 0.5; + text_class: "list_item"; + } + visible: 0; + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 0; + } + description { state: "disabled" 0.0; + inherit: "default" 0.0; + visible: 1; + } + } + part { name: "label3"; type: TEXT; mouse_events: 0; + effect: GLOW; + scale: 1; + description { state: "default" 0.0; + rel1.offset: -2 -3; + rel1.to: "elm.text"; + rel2.offset: -1 1; + rel2.to: "elm.text"; + color: 51 153 255 255; + color2: 51 153 255 24; + color3: 51 153 255 18; + color_class: "list_item_selected"; + text { font: "Sans"; size: 10; + text_source: "elm.text"; + align: 0.0 0.5; + text_class: "list_item"; + } + visible: 0; + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 1; + } + description { state: "disabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + } + program { + signal: "elm,state,selected"; source: "elm"; + action: STATE_SET "selected" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + } + program { + signal: "elm,state,unselected"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + } + program { + signal: "elm,state,disabled"; source: "elm"; + action: STATE_SET "disabled" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + } + program { + signal: "elm,state,enabled"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + } + //##// + part { name: "elm.swallow.icon"; type: SWALLOW; + description { state: "default" 0.0; + fixed: 1 0; + align: 0.0 0.5; + aspect: 1.0 1.0; + rel1.offset: 2 2; + rel2.relative: 0.0 1.0; + rel2.offset: 2 -3; + } + } + part { name: "elm.swallow.end"; type: SWALLOW; + description { state: "default" 0.0; + fixed: 1 0; + align: 1.0 0.5; + aspect: 1.0 1.0; + rel1.offset: -3 2; + rel1.relative: 1.0 0.0; + rel2.offset: -3 -3; + } + } + //##// + + part { name: "sel_shine"; mouse_events: 0; + description { state: "default" 0.0; + image.normal: "shine.png"; + rel1.offset: 0 -2; + rel1.to: "sel_base"; + rel2.relative: 1.0 0.0; + rel2.offset: -1 2; + rel2.to: "sel_base"; + visible: 0; + FIXED_SIZE(69, 5) + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 1; + } + } + part { name: "event_block"; type: RECT; + description { state: "default" 0.0; + color: 0 0 0 0; + visible: 0; + } + description { state: "disabled" 0.0; + inherit: "default" 0.0; + visible: 1; + } + } + program { + signal: "elm,state,selected"; source: "elm"; + action: STATE_SET "selected" 0.0; + target: "sel_shine"; + } + program { + signal: "elm,state,unselected"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "sel_shine"; + } + program { + signal: "elm,state,disabled"; source: "elm"; + action: STATE_SET "disabled" 0.0; + target: "event_block"; + } + program { + signal: "elm,state,enabled"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "event_block"; + } + } +} +ODD("elm/list/item_odd/default", "elm/list/item/default") +COMPRESS("elm/list/item_compress/default", "elm/list/item/default") +COMPRESS_ODD("elm/list/item_compress_odd/default", "elm/list/item/default") + +// XXX: DO: +// elm/list/h_item/default +// elm/list/h_item_odd/default +// elm/list/h_item_compress/default +// elm/list/h_item_compress_odd/default + +#undef ODD +#undef COMPRESS +#undef COMPRESS_ODD |
From: Enlightenment S. <no-...@en...> - 2013-07-04 03:33:39
|
Log: fix shadows at ends of decorate mode. Author: raster Date: 2013-07-03 20:33:28 -0700 (Wed, 03 Jul 2013) New Revision: 84571 Trac: http://trac.enlightenment.org/e/changeset/84571 Added: trunk/THEMES/dark/edje/img/shadow_horiz.png Modified: trunk/THEMES/dark/edje/edc/elm/genlist.edc Modified: trunk/THEMES/dark/edje/edc/elm/genlist.edc =================================================================== --- trunk/THEMES/dark/edje/edc/elm/genlist.edc 2013-07-03 12:54:43 UTC (rev 84570) +++ trunk/THEMES/dark/edje/edc/elm/genlist.edc 2013-07-04 03:33:28 UTC (rev 84571) @@ -4494,6 +4494,7 @@ data.item: "selectraise" "on"; images.image: "vgrad_med_dark.png" COMP; images.image: "bevel_horiz_out.png" COMP; + images.image: "shadow_horiz.png" COMP; parts { part { name: "base"; type: RECT; mouse_events: 0; description { state: "default" 0.0; @@ -4516,6 +4517,38 @@ target: "base"; } + part { name: "sel_shadow1"; mouse_events: 0; + description { state: "default" 0.0; + image.normal: "shadow_horiz.png"; + image.border: 0 0 9 9; + rel1.offset: 0 -4; + rel2.offset: -1 5; + rel2.to_x: "elm.swallow.decorate.content"; + rel2.relative: 0.0 1.0; + fill.smooth: 0; + visible: 0; + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 1; + } + } + part { name: "sel_shadow2"; mouse_events: 0; + description { state: "default" 0.0; + image.normal: "shadow_horiz.png"; + image.border: 0 0 9 9; + rel1.to_x: "elm.swallow.decorate.content"; + rel1.relative: 1.0 0.0; + rel1.offset: 0 -4; + rel2.offset: -1 5; + fill.smooth: 0; + visible: 0; + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 1; + } + } part { name: "sel_base"; mouse_events: 0; description { state: "default" 0.0; image.normal: "vgrad_med_dark.png"; @@ -4546,12 +4579,16 @@ action: STATE_SET "selected" 0.0; target: "sel_base"; target: "sel_bevel"; + target: "sel_shadow1"; + target: "sel_shadow2"; } program { signal: "elm,state,unselected"; source: "elm"; action: STATE_SET "default" 0.0; target: "sel_base"; target: "sel_bevel"; + target: "sel_shadow1"; + target: "sel_shadow2"; } part { name: "elm.edit.icon.1"; type: SWALLOW; Added: trunk/THEMES/dark/edje/img/shadow_horiz.png =================================================================== (Binary files differ) Index: trunk/THEMES/dark/edje/img/shadow_horiz.png =================================================================== --- trunk/THEMES/dark/edje/img/shadow_horiz.png 2013-07-03 12:54:43 UTC (rev 84570) +++ trunk/THEMES/dark/edje/img/shadow_horiz.png 2013-07-04 03:33:28 UTC (rev 84571) Property changes on: trunk/THEMES/dark/edje/img/shadow_horiz.png ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property |
From: Enlightenment S. <no-...@en...> - 2013-07-03 12:54:59
|
Log: genlist stuff for dark along with some refinements ported from e18 no - list is not done, but should be an easy recycle of genlist. decorate mode is a bit ugly - missing shadow extension at the end/start under edit icon 1 & 2. Author: raster Date: 2013-07-03 05:54:43 -0700 (Wed, 03 Jul 2013) New Revision: 84570 Trac: http://trac.enlightenment.org/e/changeset/84570 Added: trunk/THEMES/dark/copy.svgz trunk/THEMES/dark/desktops.svgz trunk/THEMES/dark/edje/edc/elm/genlist.edc trunk/THEMES/dark/edje/img/led_tiny_blue.png trunk/THEMES/dark/edje/img/sym_left_dark_normal.png trunk/THEMES/dark/edje/img/sym_right_dark_normal.png trunk/THEMES/dark/env-vars.svgz trunk/THEMES/dark/lock-apps.svgz trunk/THEMES/dark/lock-lang.svgz trunk/THEMES/dark/mock-18.xcf.gz trunk/THEMES/dark/personal-apps.svgz trunk/THEMES/dark/signal-bindings.svgz trunk/THEMES/dark/touch.svgz trunk/THEMES/dark/unlock-apps.svgz Modified: trunk/THEMES/dark/edje/dark.edc trunk/THEMES/dark/edje/edc/button.edc trunk/THEMES/dark/edje/edc/comp.edc trunk/THEMES/dark/edje/edc/fileman.edc trunk/THEMES/dark/edje/edc/ibar-ibox.edc trunk/THEMES/dark/edje/img/sym_down_dark_normal.png trunk/THEMES/dark/edje/img/sym_up_dark_normal.png Added: trunk/THEMES/dark/copy.svgz =================================================================== (Binary files differ) Index: trunk/THEMES/dark/copy.svgz =================================================================== --- trunk/THEMES/dark/copy.svgz 2013-07-02 17:12:48 UTC (rev 84569) +++ trunk/THEMES/dark/copy.svgz 2013-07-03 12:54:43 UTC (rev 84570) Property changes on: trunk/THEMES/dark/copy.svgz ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Added: trunk/THEMES/dark/desktops.svgz =================================================================== (Binary files differ) Index: trunk/THEMES/dark/desktops.svgz =================================================================== --- trunk/THEMES/dark/desktops.svgz 2013-07-02 17:12:48 UTC (rev 84569) +++ trunk/THEMES/dark/desktops.svgz 2013-07-03 12:54:43 UTC (rev 84570) Property changes on: trunk/THEMES/dark/desktops.svgz ___________________________________________________________________ Added: svn:mime-type ## -0,0 +1 ## +application/octet-stream \ No newline at end of property Modified: trunk/THEMES/dark/edje/dark.edc =================================================================== --- trunk/THEMES/dark/edje/dark.edc 2013-07-02 17:12:48 UTC (rev 84569) +++ trunk/THEMES/dark/edje/dark.edc 2013-07-03 12:54:43 UTC (rev 84570) @@ -17,6 +17,39 @@ #include "edc/elm/bubble.edc" #include "edc/elm/panes.edc" #include "edc/elm/toolbar.edc" +#include "edc/elm/genlist.edc" +//#include "edc/elm/list.edc" +//#include "edc/elm/photo.edc" +//#include "edc/elm/panel.edc" +//#include "edc/elm/tooltip.edc" +//#include "edc/elm/progress.edc" +//#include "edc/elm/multibuttonentry.edc" +//#include "edc/elm/focus.edc" +//#include "edc/elm/ctxpopup.edc" +//#include "edc/elm/map.edc" +//#include "edc/elm/photocam.edc" +//#include "edc/elm/slideshow.edc" +//#include "edc/elm/thumb.edc" +//#include "edc/elm/video.edc" +//#include "edc/elm/naviframe.edc" +//#include "edc/elm/hover.edc" +//#include "edc/elm/popup.edc" +//#include "edc/elm/spinner.edc" +//#include "edc/elm/actionslider.edc" +//#include "edc/elm/colorsel.edc" +//#include "edc/elm/daysel.edc" +//#include "edc/elm/disksel.edc" +//#include "edc/elm/hoversel.edc" +//#include "edc/elm/index.edc" +//#include "edc/elm/flipsel.edc" +//#include "edc/elm/menu.edc" +//#include "edc/elm/segmentcontrol.edc" +//#include "edc/elm/conform.edc" +//#include "edc/elm/notification.edc" +//#include "edc/elm/calendar.edc" +//#include "edc/elm/clock.edc" +//#include "edc/elm/datetime.edc" +//#include "edc/elm/inwin.edc" // desktop in general #include "edc/comp.edc" Modified: trunk/THEMES/dark/edje/edc/button.edc =================================================================== --- trunk/THEMES/dark/edje/edc/button.edc 2013-07-02 17:12:48 UTC (rev 84569) +++ trunk/THEMES/dark/edje/edc/button.edc 2013-07-03 12:54:43 UTC (rev 84570) @@ -1,6 +1,7 @@ group { name: "e/widgets/button"; images.image: "button_normal.png" COMP; images.image: "button_clicked.png" COMP; + images.image: "win_glow.png" COMP; parts { part { name: "base"; description { state: "default" 0.0; @@ -113,6 +114,36 @@ visible: 1; } } + part { name: "base2"; type: SPACER; + description { state: "default" 0.0; + rel1.to: "base"; + rel2.to: "base"; + } + description { state: "clicked" 0.0; + inherit: "default" 0.0; + rel1.offset: 1 1; + rel2.offset: -2 -2; + } + } + part { name: "glow"; mouse_events: 0; + description { state: "default" 0.0; + image.normal: "win_glow.png"; + image.border: 9 9 9 9; + image.middle: 0; + rel1.to: "base2"; + rel1.offset: -2 -3; + rel2.to: "base2"; + rel2.offset: 1 0; + fill.smooth: 0; + color: 255 255 255 0; + visible: 0; + } + description { state: "focused" 0.0; + inherit: "default" 0.0; + color: 255 255 255 255; + visible: 1; + } + } part { name: "event"; type: RECT; ignore_flags: ON_HOLD; description { state: "default" 0.0; @@ -129,11 +160,13 @@ signal: "mouse,down,1"; source: "event"; action: STATE_SET "clicked" 0.0; target: "base"; + target: "base2"; } program { signal: "mouse,up,1"; source: "event"; action: STATE_SET "default" 0.0; target: "base"; + target: "base2"; } program { signal: "mouse,clicked,1*"; source: "event"; @@ -173,5 +206,13 @@ target: "label_clip"; target: "label2"; } + program { signal: "e,state,focused"; source: "e"; + action: STATE_SET "focused" 0.0; + target: "glow"; + } + program { signal: "e,state,unfocused"; source: "e"; + action: STATE_SET "default" 0.0; + target: "glow"; + } } } Modified: trunk/THEMES/dark/edje/edc/comp.edc =================================================================== --- trunk/THEMES/dark/edje/edc/comp.edc 2013-07-02 17:12:48 UTC (rev 84569) +++ trunk/THEMES/dark/edje/edc/comp.edc 2013-07-03 12:54:43 UTC (rev 84570) @@ -24,7 +24,12 @@ group { name: "e/comp/screen/base/default"; alias: "e/comp/screen/base/noeffects"; parts { + part { name: "clip"; type: RECT; mouse_events: 0; + description { state: "default" 0.0; + } + } part { name: "e.swallow.background"; type: SWALLOW; mouse_events: 0; + clip_to: "clip"; description { state: "default" 0.0; } } @@ -236,7 +241,7 @@ } } -group { name: "e/comp/default"; +group { name: "e/comp/border/default"; images.image: "win_shadow.png" COMP; images.image: "win_glow.png" COMP; parts { @@ -255,7 +260,7 @@ visible: 1; } } - part { name: "shadow"; + part { name: "shadow"; mouse_events: 0; clip_to: "clipper"; description { state: "default" 0.0; image.normal: "win_shadow.png"; @@ -272,7 +277,7 @@ visible: 0; } } - part { name: "glow"; + part { name: "glow"; mouse_events: 0; clip_to: "clipper"; description { state: "default" 0.0; image.normal: "win_glow.png"; @@ -303,11 +308,21 @@ rel2.relative: 1.0 1.0; } } - part { name: "focus-clipper"; + part { name: "trans-clipper"; type: RECT; clip_to: "clipper"; mouse_events: 0; description { state: "default" 0.0; + color_class: "comp_alpha"; + rel1.to: "clipper"; + rel2.to: "clipper"; + } + } + part { name: "focus-clipper"; + type: RECT; + clip_to: "trans-clipper"; + mouse_events: 0; + description { state: "default" 0.0; color_class: "comp_focus-out_color"; rel1.to: "clipper"; rel2.to: "clipper"; @@ -411,8 +426,8 @@ } } -group { name: "e/comp/rotate"; - inherit: "e/comp/default"; +group { name: "e/comp/border/rotate"; + inherit: "e/comp/border/default"; parts { part { name: "e.swallow.content"; description { state: "default"; @@ -452,8 +467,8 @@ } } -group { name: "e/comp/rotate/fast"; - inherit: "e/comp/rotate"; +group { name: "e/comp/border/rotate/fast"; + inherit: "e/comp/border/rotate"; programs { program { name: "focus3"; transition: LINEAR 0; @@ -464,8 +479,8 @@ } } -group { name: "e/comp/flip"; - inherit: "e/comp/rotate"; +group { name: "e/comp/border/flip"; + inherit: "e/comp/border/rotate"; parts { part { name: "e.swallow.content"; description { state: "default"; @@ -489,8 +504,8 @@ } } -group { name: "e/comp/flip/fast"; - inherit: "e/comp/flip"; +group { name: "e/comp/border/flip/fast"; + inherit: "e/comp/border/flip"; programs { program { name: "focus3"; transition: LINEAR 0; @@ -501,8 +516,8 @@ } } -group { name: "e/comp/popup"; - inherit: "e/comp/default"; +group { name: "e/comp/border/popup"; + inherit: "e/comp/border/default"; parts { part { name: "focus-clipper"; description { state: "default"; @@ -512,8 +527,8 @@ } } -group { name: "e/comp/default/fast"; - inherit: "e/comp/default"; +group { name: "e/comp/border/default/fast"; + inherit: "e/comp/border/default"; programs { program { name: "visible_on"; @@ -542,8 +557,8 @@ } } -group { name: "e/comp/popup/fast"; - inherit: "e/comp/default/fast"; +group { name: "e/comp/border/popup/fast"; + inherit: "e/comp/border/default/fast"; parts { part { name: "focus-clipper"; description { state: "default"; @@ -553,7 +568,7 @@ } } -group { name: "e/comp/none"; +group { name: "e/comp/border/none"; parts { part { name: "e.swallow.content"; type: SWALLOW; description { state: "default" 0.0; @@ -572,8 +587,8 @@ } } -group { name: "e/comp/still"; - inherit: "e/comp/default"; +group { name: "e/comp/border/still"; + inherit: "e/comp/border/default"; parts { part { name: "shower"; description { state: "default" 0.0; @@ -584,8 +599,8 @@ } } -group { name: "e/comp/still/fast"; - inherit: "e/comp/default/fast"; +group { name: "e/comp/border/still/fast"; + inherit: "e/comp/border/default/fast"; parts { part { name: "shower"; description { state: "default" 0.0; @@ -596,8 +611,8 @@ } } -group { name: "e/comp/menu"; - inherit: "e/comp/popup"; +group { name: "e/comp/border/menu"; + inherit: "e/comp/border/popup"; parts { part { name: "shower"; description { state: "default" 0.0; @@ -608,8 +623,8 @@ } } -group { name: "e/comp/menu/fast"; - inherit: "e/comp/popup/fast"; +group { name: "e/comp/border/menu/fast"; + inherit: "e/comp/border/popup/fast"; parts { part { name: "shower"; description { state: "default" 0.0; @@ -620,8 +635,8 @@ } } -group { name: "e/comp/everything"; - inherit: "e/comp/popup"; +group { name: "e/comp/border/everything"; + inherit: "e/comp/border/popup"; parts { part { name: "shower"; description { state: "default" 0.0; @@ -632,8 +647,8 @@ } } -group { name: "e/comp/everything/fast"; - inherit: "e/comp/popup/fast"; +group { name: "e/comp/border/everything/fast"; + inherit: "e/comp/border/popup/fast"; parts { part { name: "shower"; description { state: "default" 0.0; @@ -644,7 +659,7 @@ } } -group { name: "e/comp/fullscreen"; +group { name: "e/comp/border/fullscreen"; images.image: "win_shadow.png" COMP; images.image: "screen_circular_shadow.png" COMP; data.item: "screen.bg" "fullscreen.bg"; @@ -693,7 +708,7 @@ description { state: "default" 0.0; } } - part { name: "scr_shadow"; + part { name: "scr_shadow"; mouse_events: 0; clip_to: "clipper_all"; description { state: "default" 0.0; rel1.relative: -1.0 -1.0; @@ -722,7 +737,7 @@ visible: 1; } } - part { name: "shadow"; + part { name: "shadow"; mouse_events: 0; clip_to: "clipper_sh"; description { state: "default" 0.0; image.normal: "win_shadow.png"; @@ -860,8 +875,8 @@ } } -group { name: "e/comp/fullscreen/fast"; - inherit: "e/comp/fullscreen"; +group { name: "e/comp/border/fullscreen/fast"; + inherit: "e/comp/border/fullscreen"; programs { program { name: "visible_on"; Added: trunk/THEMES/dark/edje/edc/elm/genlist.edc =================================================================== --- trunk/THEMES/dark/edje/edc/elm/genlist.edc (rev 0) +++ trunk/THEMES/dark/edje/edc/elm/genlist.edc 2013-07-03 12:54:43 UTC (rev 84570) @@ -0,0 +1,4668 @@ +//////////////////////////////////////////////////////////////////////////// +//-- item +//-- item_odd +//-- item_compress +//-- item_compress_odd + +#define ODD(_NAME, _SRC) \ + group { name: _NAME; \ + inherit: _SRC; \ + parts { \ + part { name: "base"; \ + description { state: "default" 0.0; \ + color: 56 56 56 255; \ + color_class: "list_item_base_odd"; \ + } \ + } \ + } \ + } +#define COMPRESS(_NAME, _SRC) \ + group { name: _NAME; \ + inherit: _SRC; \ + parts { \ + part { name: "elm.text"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + } \ + } \ + } +#define COMPRESS_ODD(_NAME, _SRC) \ + group { name: _NAME; \ + inherit: _SRC; \ + parts { \ + part { name: "elm.text"; \ + description { state: "default" 0.0; \ + text.min: 0 1; \ + } \ + } \ + part { name: "base"; \ + description { state: "default" 0.0; \ + color: 56 56 56 255; \ + color_class: "list_item_base_odd"; \ + } \ + } \ + } \ + } + +#define TREEPAD 19 + +group { name: "elm/genlist/item/group_index/default"; + data.item: "texts" "elm.text"; + data.item: "contents" "elm.swallow.icon elm.swallow.end"; + data.item: "treesize" TREEPAD; + + images.image: "shadow_square_tiny.png" COMP; + images.image: "bevel_out.png" COMP; + + parts { + part { name: "shadow_vbar"; mouse_events: 0; + description { state: "default" 0.0; + rel1.offset: -3 -2; + rel1.to: "base_vbar"; + rel2.offset: 2 4; + rel2.to: "base_vbar"; + image.normal: "shadow_square_tiny.png"; + image.border: 6 6 6 6; + fill.smooth: 0; + } + } + part { name: "base_vbar"; mouse_events: 0; + description { state: "default" 0.0; + image.normal: "vgrad_med_lighter.png"; + fill.smooth: 0; + min: 5 13; + TILED_HORIZ(120) + } + } + part { name: "bevel_vbar"; mouse_events: 0; + description { state: "default" 0.0; + rel1.to: "base_vbar"; + rel2.to: "base_vbar"; + image.normal: "bevel_out.png"; + image.border: 1 1 1 1; + image.middle: 0; + fill.smooth: 0; + min: 5 5; + } + } + + part { name: "elm.text"; type: TEXT; mouse_events: 0; + effect: SHADOW BOTTOM; + scale: 1; + description { state: "default" 0.0; + rel1.offset: 2 3; + rel1.relative: 1.0 0.0; + rel1.to_x: "elm.swallow.icon"; + rel2.offset: -3 -3; + rel2.relative: 0.0 1.0; + rel2.to_x: "elm.swallow.end"; + color: 255 255 255 255; + color3: 0 0 0 128; + color_class: "list_group_item"; + text { font: "Sans:style=Bold"; size: 10; + min: 1 1; + align: 0.0 0.5; + text_class: "list_group_item"; + } + } + description { state: "disabled" 0.0; + inherit: "default" 0.0; + color: 21 21 21 255; + color3: 255 255 255 25; + color_class: "list_group_item_disabled"; + } + } + program { + signal: "elm,state,disabled"; source: "elm"; + action: STATE_SET "disabled" 0.0; + target: "elm.text"; + } + program { + signal: "elm,state,enabled"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "elm.text"; + } + part { name: "elm.swallow.pad"; type: SWALLOW; + description { state: "default" 0.0; + fixed: 1 0; + align: 0.0 0.5; + rel1.offset: 2 2; + rel2.relative: 0.0 1.0; + rel2.offset: 2 -3; + } + } + part { name: "elm.swallow.icon"; type: SWALLOW; + description { state: "default" 0.0; + fixed: 1 0; + align: 0.0 0.5; + rel1.to_x: "elm.swallow.pad"; + rel1.relative: 1.0 0.0; + rel1.offset: -1 2; + rel2.to_x: "elm.swallow.pad"; + rel2.relative: 1.0 1.0; + rel2.offset: -1 -3; + } + } + part { name: "elm.swallow.end"; type: SWALLOW; + description { state: "default" 0.0; + fixed: 1 0; + align: 1.0 0.5; + rel1.offset: -3 2; + rel1.relative: 1.0 0.0; + rel2.offset: -3 -3; + } + } + } +} + +group { name: "elm/genlist/item/default/default"; + data.item: "selectraise" "on"; + data.item: "texts" "elm.text"; + data.item: "contents" "elm.swallow.icon elm.swallow.end"; + data.item: "treesize" TREEPAD; + data.item: "flips" "elm.text.flip"; +#define IMGP() \ + images.image: "bevel_curved_horiz_out.png" COMP; \ + images.image: "shadow_rounded_horiz.png" COMP; \ + images.image: "vgrad_med_dark.png" COMP; \ + images.image: "bevel_horiz_out.png" COMP; \ + images.image: "shine.png" COMP; + IMGP() + parts { +//--------------------------------------------------------------------------- +#define BASEP() \ + part { name: "event"; type: RECT; \ + description { state: "default" 0.0; \ + color: 0 0 0 0; \ + } \ + description { state: "disabled" 0.0; \ + inherit: "default" 0.0; \ + visible: 0; \ + } \ + } \ + part { name: "base"; type: RECT; mouse_events: 0; \ + description { state: "default" 0.0; \ + color: 64 64 64 255; \ + color_class: "list_item_base"; \ + } \ + description { state: "odd" 0.0; \ + color: 56 56 56 255; \ + color_class: "list_item_base_odd"; \ + } \ + } \ + program { \ + signal: "elm,state,odd"; source: "elm"; \ + action: STATE_SET "odd" 1.0; \ + target: "base"; \ + } \ + program { \ + signal: "elm,state,even"; source: "elm"; \ + action: STATE_SET "default" 0.0; \ + target: "base"; \ + } \ + part { name: "bevel"; mouse_events: 0; \ + description { state: "default" 0.0; \ + image.normal: "bevel_curved_horiz_out.png"; \ + image.border: 0 0 2 2; \ + image.middle: 0; \ + fill.smooth: 0; \ + } \ + } \ + part { name: "sel_shadow"; mouse_events: 0; \ + description { state: "default" 0.0; \ + image.normal: "shadow_rounded_horiz.png"; \ + image.border: 0 0 9 9; \ + rel1.offset: 0 -4; \ + rel2.offset: -1 5; \ + fill.smooth: 0; \ + visible: 0; \ + } \ + description { state: "selected" 0.0; \ + inherit: "default" 0.0; \ + visible: 1; \ + } \ + } \ + part { name: "sel_base"; mouse_events: 0; \ + description { state: "default" 0.0; \ + image.normal: "vgrad_med_dark.png"; \ + fill.smooth: 0; \ + visible: 0; \ + TILED_HORIZ(120) \ + } \ + description { state: "selected" 0.0; \ + inherit: "default" 0.0; \ + visible: 1; \ + } \ + } \ + part { name: "sel_bevel"; mouse_events: 0; \ + description { state: "default" 0.0; \ + image.normal: "bevel_horiz_out.png"; \ + image.border: 0 0 2 2; \ + image.middle: 0; \ + fill.smooth: 0; \ + visible: 0; \ + } \ + description { state: "selected" 0.0; \ + inherit: "default" 0.0; \ + visible: 1; \ + } \ + } \ + program { \ + signal: "elm,state,selected"; source: "elm"; \ + action: STATE_SET "selected" 0.0; \ + target: "sel_shadow"; \ + target: "sel_base"; \ + target: "sel_bevel"; \ + } \ + program { \ + signal: "elm,state,unselected"; source: "elm"; \ + action: STATE_SET "default" 0.0; \ + target: "sel_shadow"; \ + target: "sel_base"; \ + target: "sel_bevel"; \ + } \ + program { \ + signal: "elm,state,disabled"; source: "elm"; \ + action: STATE_SET "disabled" 0.0; \ + target: "event"; \ + } \ + program { \ + signal: "elm,state,enabled"; source: "elm"; \ + action: STATE_SET "default" 0.0; \ + target: "event"; \ + } +#define TOPP() \ + part { name: "sel_shine"; mouse_events: 0; \ + description { state: "default" 0.0; \ + image.normal: "shine.png"; \ + rel1.offset: 0 -2; \ + rel1.to: "sel_base"; \ + rel2.relative: 1.0 0.0; \ + rel2.offset: -1 2; \ + rel2.to: "sel_base"; \ + visible: 0; \ + FIXED_SIZE(69, 5) \ + } \ + description { state: "selected" 0.0; \ + inherit: "default" 0.0; \ + visible: 1; \ + } \ + } \ + part { name: "event_block"; type: RECT; \ + description { state: "default" 0.0; \ + color: 0 0 0 0; \ + visible: 0; \ + } \ + description { state: "disabled" 0.0; \ + inherit: "default" 0.0; \ + visible: 1; \ + } \ + } \ + program { \ + signal: "elm,state,selected"; source: "elm"; \ + action: STATE_SET "selected" 0.0; \ + target: "sel_shine"; \ + } \ + program { \ + signal: "elm,state,unselected"; source: "elm"; \ + action: STATE_SET "default" 0.0; \ + target: "sel_shine"; \ + } \ + program { \ + signal: "elm,state,disabled"; source: "elm"; \ + action: STATE_SET "disabled" 0.0; \ + target: "event_block"; \ + } \ + program { \ + signal: "elm,state,enabled"; source: "elm"; \ + action: STATE_SET "default" 0.0; \ + target: "event_block"; \ + } +//--------------------------------------------------------------------------- + BASEP() + + //##// + part { name: "elm.text"; type: TEXT; mouse_events: 0; + effect: SHADOW BOTTOM; + scale: 1; + description { state: "default" 0.0; + rel1.offset: 2 3; + rel1.relative: 1.0 0.0; + rel1.to_x: "elm.swallow.icon"; + rel2.offset: -3 -3; + rel2.relative: 0.0 1.0; + rel2.to_x: "elm.swallow.end"; + color: 255 255 255 255; + color3: 0 0 0 128; + color_class: "list_item"; + text { font: "Sans"; size: 10; + min: 1 1; + align: 0.0 0.5; + text_class: "list_item"; + } + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 0; + } + description { state: "disabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + description { state: "flip_enabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + } + part { name: "label2"; type: TEXT; mouse_events: 0; + effect: SHADOW BOTTOM; + scale: 1; + description { state: "default" 0.0; + rel1.to: "elm.text"; + rel2.to: "elm.text"; + color: 21 21 21 255; + color3: 255 255 255 25; + color_class: "list_item_disabled"; + text { font: "Sans"; size: 10; + text_source: "elm.text"; + align: 0.0 0.5; + text_class: "list_item"; + } + visible: 0; + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 0; + } + description { state: "disabled" 0.0; + inherit: "default" 0.0; + visible: 1; + } + description { state: "flip_enabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + } + part { name: "label3"; type: TEXT; mouse_events: 0; + effect: GLOW; + scale: 1; + description { state: "default" 0.0; + rel1.offset: -2 -3; + rel1.to: "elm.text"; + rel2.offset: -1 1; + rel2.to: "elm.text"; + color: 51 153 255 255; + color2: 51 153 255 24; + color3: 51 153 255 18; + color_class: "list_item_selected"; + text { font: "Sans"; size: 10; + text_source: "elm.text"; + align: 0.0 0.5; + text_class: "list_item"; + } + visible: 0; + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 1; + } + description { state: "disabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + description { state: "flip_enabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + } + part { name: "elm.text.flip"; type: SWALLOW; + scale: 1; + description { state: "default" 0.0; + visible: 0; + rel1.to_y: "elm.text"; + rel2.to_y: "elm.text"; + } + description { state: "flip_enabled" 0.0; + inherit: "default" 0.0; + visible: 1; + } + } + program { + signal: "elm,state,selected"; source: "elm"; + action: STATE_SET "selected" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + } + program { + signal: "elm,state,unselected"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + } + program { + signal: "elm,state,disabled"; source: "elm"; + action: STATE_SET "disabled" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + } + program { + signal: "elm,state,enabled"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + } + program { + signal: "elm,state,flip,enabled"; source: "elm"; + action: STATE_SET "flip_enabled" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + target: "elm.text.flip"; + } + program { + signal: "elm,state,flip,disabled"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + target: "elm.text.flip"; + } + //##// + part { name: "elm.swallow.pad"; type: SWALLOW; + description { state: "default" 0.0; + fixed: 1 0; + align: 0.0 0.5; + rel1.offset: 2 2; + rel2.relative: 0.0 1.0; + rel2.offset: 2 -3; + } + } + part { name: "elm.swallow.icon"; type: SWALLOW; + description { state: "default" 0.0; + fixed: 1 0; + align: 0.0 0.5; + aspect: 1.0 1.0; + rel1.to_x: "elm.swallow.pad"; + rel1.relative: 1.0 0.0; + rel1.offset: -1 2; + rel2.to_x: "elm.swallow.pad"; + rel2.relative: 1.0 1.0; + rel2.offset: -1 -3; + } + description { state: "flip_enabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + } + part { name: "elm.swallow.end"; type: SWALLOW; + description { state: "default" 0.0; + fixed: 1 0; + align: 1.0 0.5; + aspect: 1.0 1.0; + rel1.offset: -3 2; + rel1.relative: 1.0 0.0; + rel2.offset: -3 -3; + } + description { state: "flip_enabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + } + program { + signal: "elm,state,flip,enabled"; source: "elm"; + action: STATE_SET "flip_enabled" 0.0; + target: "elm.swallow.icon"; + target: "elm.swallow.end"; + } + program { + signal: "elm,state,flip,disabled"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "elm.swallow.icon"; + target: "elm.swallow.end"; + } + //##// + + TOPP() + } +} +ODD("elm/genlist/item_odd/default/default", "elm/genlist/item/default/default") +COMPRESS("elm/genlist/item_compress/default/default", "elm/genlist/item/default/default") +COMPRESS_ODD("elm/genlist/item_compress_odd/default/default", "elm/genlist/item/default/default") + +group { name: "elm/genlist/item/default_style/default"; + data.item: "selectraise" "on"; + data.item: "texts" "elm.text"; + data.item: "contents" "elm.swallow.icon elm.swallow.end"; + data.item: "treesize" TREEPAD; + data.item: "flips" "elm.text.flip"; + styles.style { name: "genlist_style"; + base: "font=Sans font_size=10 align=left valign=0.5 color=#fff style=shadow,bottom shadow_color=#00000080 text_class=list_item"; + tag: "br" "\n"; + tag: "ps" "ps"; + tag: "hilight" "+ font_weight=Bold"; + tag: "b" "+ font_weight=Bold"; + tag: "tab" "\t"; + } + styles.style { name: "genlist_style_selected"; + base: "font=Sans font_size=10 align=left valign=0.5 color=#3399ffff style=glow glow_color=#3399ff18 glow2_color=#3399ff12 text_class=list_item_selected"; + tag: "br" "\n"; + tag: "ps" "ps"; + tag: "hilight" "+ font_weight=Bold"; + tag: "b" "+ font_weight=Bold"; + tag: "tab" "\t"; + } + styles.style { name: "genlist_style_disabled"; + base: "font=Sans font_size=10 align=left valign=0.5 color=#151515 style=shadow,bottom shadow_color=#ffffff19 text_class=list_item"; + tag: "br" "\n"; + tag: "ps" "ps"; + tag: "hilight" "+ font_weight=Bold"; + tag: "b" "+ font_weight=Bold"; + tag: "tab" "\t"; + } + + IMGP() + parts { + BASEP() + + //##// + part { name: "elm.text"; type: TEXTBLOCK; mouse_events: 0; + scale: 1; + description { state: "default" 0.0; + rel1.offset: 2 7; + rel1.relative: 1.0 0.0; + rel1.to_x: "elm.swallow.icon"; + rel2.offset: -3 -4; + rel2.relative: 0.0 1.0; + rel2.to_x: "elm.swallow.end"; + color_class: "list_item"; + text { font: "Sans"; size: 10; + min: 1 1; + align: 0.0 0.5; + text_class: "list_item"; + style: "genlist_style"; + } + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 0; + } + description { state: "disabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + description { state: "flip_enabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + } + part { name: "label2"; type: TEXTBLOCK; mouse_events: 0; + scale: 1; + description { state: "default" 0.0; + rel1.to: "elm.text"; + rel2.to: "elm.text"; + color_class: "list_item_disabled"; + text { font: "Sans"; size: 10; + text_source: "elm.text"; + align: 0.0 0.5; + text_class: "list_item"; + style: "genlist_style_disabled"; + } + visible: 0; + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 0; + } + description { state: "disabled" 0.0; + inherit: "default" 0.0; + visible: 1; + } + description { state: "flip_enabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + } + part { name: "label3"; type: TEXTBLOCK; mouse_events: 0; + scale: 1; + description { state: "default" 0.0; + rel1.offset: 0 0; + rel1.to: "elm.text"; + rel2.offset: -1 -1; + rel2.to: "elm.text"; + color_class: "list_item_selected"; + text { font: "Sans"; size: 10; + text_source: "elm.text"; + align: 0.0 0.5; + text_class: "list_item"; + style: "genlist_style_selected"; + } + visible: 0; + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 1; + } + description { state: "disabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + description { state: "flip_enabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + } + part { name: "elm.text.flip"; type: SWALLOW; + scale: 1; + description { state: "default" 0.0; + visible: 0; + rel1.to_y: "elm.text"; + rel2.to_y: "elm.text"; + } + description { state: "flip_enabled" 0.0; + inherit: "default" 0.0; + visible: 1; + } + } + program { + signal: "elm,state,selected"; source: "elm"; + action: STATE_SET "selected" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + } + program { + signal: "elm,state,unselected"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + } + program { + signal: "elm,state,disabled"; source: "elm"; + action: STATE_SET "disabled" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + } + program { + signal: "elm,state,enabled"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + } + program { + signal: "elm,state,flip,enabled"; source: "elm"; + action: STATE_SET "flip_enabled" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + target: "elm.text.flip"; + } + program { + signal: "elm,state,flip,disabled"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + target: "elm.text.flip"; + } + //##// + part { name: "elm.swallow.pad"; type: SWALLOW; + description { state: "default" 0.0; + fixed: 1 0; + align: 0.0 0.5; + rel1.offset: 2 2; + rel2.relative: 0.0 1.0; + rel2.offset: 2 -3; + } + } + part { name: "elm.swallow.icon"; type: SWALLOW; + description { state: "default" 0.0; + fixed: 1 0; + align: 0.0 0.5; + aspect: 1.0 1.0; + rel1.to_x: "elm.swallow.pad"; + rel1.relative: 1.0 0.0; + rel1.offset: -1 2; + rel2.to_x: "elm.swallow.pad"; + rel2.relative: 1.0 1.0; + rel2.offset: -1 -3; + } + description { state: "flip_enabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + } + part { name: "elm.swallow.end"; type: SWALLOW; + description { state: "default" 0.0; + fixed: 1 0; + align: 1.0 0.5; + aspect: 1.0 1.0; + rel1.offset: -3 2; + rel1.relative: 1.0 0.0; + rel2.offset: -3 -3; + } + description { state: "flip_enabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + } + program { + signal: "elm,state,flip,enabled"; source: "elm"; + action: STATE_SET "flip_enabled" 0.0; + target: "elm.swallow.icon"; + target: "elm.swallow.end"; + } + program { + signal: "elm,state,flip,disabled"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "elm.swallow.icon"; + target: "elm.swallow.end"; + } + //##// + + TOPP() + } +} +ODD("elm/genlist/item_odd/default_style/default", "elm/genlist/item/default_style/default") +COMPRESS("elm/genlist/item_compress/default_style/default", "elm/genlist/item/default_style/default") +COMPRESS_ODD("elm/genlist/item_compress_odd/default_style/default", "elm/genlist/item/default_style/default") + +group { name: "elm/genlist/item/one_icon/default"; + data.item: "selectraise" "on"; + data.item: "texts" "elm.text"; + data.item: "contents" "elm.swallow.icon"; + data.item: "treesize" TREEPAD; + data.item: "flips" "elm.text.flip"; + IMGP() + parts { + BASEP() + + //##// + part { name: "elm.text"; type: TEXT; mouse_events: 0; + effect: SHADOW BOTTOM; + scale: 1; + description { state: "default" 0.0; + rel1.offset: 2 3; + rel1.relative: 1.0 0.0; + rel1.to_x: "elm.swallow.icon"; + rel2.offset: -3 -3; + color: 255 255 255 255; + color3: 0 0 0 128; + color_class: "list_item"; + text { font: "Sans"; size: 10; + min: 1 1; + align: 0.0 0.5; + text_class: "list_item"; + } + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 0; + } + description { state: "disabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + description { state: "flip_enabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + } + part { name: "label2"; type: TEXT; mouse_events: 0; + effect: SHADOW BOTTOM; + scale: 1; + description { state: "default" 0.0; + rel1.to: "elm.text"; + rel2.to: "elm.text"; + color: 21 21 21 255; + color3: 255 255 255 25; + color_class: "list_item_disabled"; + text { font: "Sans"; size: 10; + text_source: "elm.text"; + align: 0.0 0.5; + text_class: "list_item"; + } + visible: 0; + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 0; + } + description { state: "disabled" 0.0; + inherit: "default" 0.0; + visible: 1; + } + description { state: "flip_enabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + } + part { name: "label3"; type: TEXT; mouse_events: 0; + effect: GLOW; + scale: 1; + description { state: "default" 0.0; + rel1.offset: -2 -3; + rel1.to: "elm.text"; + rel2.offset: -1 1; + rel2.to: "elm.text"; + color: 51 153 255 255; + color2: 51 153 255 24; + color3: 51 153 255 18; + color_class: "list_item_selected"; + text { font: "Sans"; size: 10; + text_source: "elm.text"; + align: 0.0 0.5; + text_class: "list_item"; + } + visible: 0; + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 1; + } + description { state: "disabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + description { state: "flip_enabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + } + part { name: "elm.text.flip"; type: SWALLOW; + scale: 1; + description { state: "default" 0.0; + visible: 0; + rel1.to_y: "elm.text"; + rel2.to_y: "elm.text"; + } + description { state: "flip_enabled" 0.0; + inherit: "default" 0.0; + visible: 1; + } + } + program { + signal: "elm,state,selected"; source: "elm"; + action: STATE_SET "selected" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + } + program { + signal: "elm,state,unselected"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + } + program { + signal: "elm,state,disabled"; source: "elm"; + action: STATE_SET "disabled" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + } + program { + signal: "elm,state,enabled"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + } + program { + signal: "elm,state,flip,enabled"; source: "elm"; + action: STATE_SET "flip_enabled" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + target: "elm.text.flip"; + } + program { + signal: "elm,state,flip,disabled"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + target: "elm.text.flip"; + } + //##// + part { name: "elm.swallow.pad"; type: SWALLOW; + description { state: "default" 0.0; + fixed: 1 0; + align: 0.0 0.5; + rel1.offset: 2 2; + rel2.relative: 0.0 1.0; + rel2.offset: 2 -3; + } + } + part { name: "elm.swallow.icon"; type: SWALLOW; + description { state: "default" 0.0; + fixed: 1 0; + align: 0.0 0.5; + aspect: 1.0 1.0; + rel1.to_x: "elm.swallow.pad"; + rel1.relative: 1.0 0.0; + rel1.offset: -1 2; + rel2.to_x: "elm.swallow.pad"; + rel2.relative: 1.0 1.0; + rel2.offset: -1 -3; + } + description { state: "flip_enabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + } + program { + signal: "elm,state,flip,enabled"; source: "elm"; + action: STATE_SET "flip_enabled" 0.0; + target: "elm.swallow.icon"; + } + program { + signal: "elm,state,flip,disabled"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "elm.swallow.icon"; + } + //##// + + TOPP() + } +} +ODD("elm/genlist/item_odd/one_icon/default", "elm/genlist/item/one_icon/default") +COMPRESS("elm/genlist/item_compress/one_icon/default", "elm/genlist/item/one_icon/default") +COMPRESS_ODD("elm/genlist/item_compress_odd/one_icon/default", "elm/genlist/item/one_icon/default") + +group { name: "elm/genlist/item/end_icon/default"; + data.item: "selectraise" "on"; + data.item: "texts" "elm.text"; + data.item: "contents" "elm.swallow.icon"; + data.item: "treesize" TREEPAD; + data.item: "flips" "elm.text.flip"; + IMGP() + parts { + BASEP() + + //##// + part { name: "elm.text"; type: TEXT; mouse_events: 0; + effect: SHADOW BOTTOM; + scale: 1; + description { state: "default" 0.0; + rel1.offset: 2 3; + rel1.relative: 1.0 0.0; + rel1.to_x: "elm.swallow.pad"; + rel2.offset: -3 -3; + rel2.relative: 0.0 1.0; + rel2.to_x: "elm.swallow.icon"; + color: 255 255 255 255; + color3: 0 0 0 128; + color_class: "list_item"; + text { font: "Sans"; size: 10; + min: 1 1; + align: 0.0 0.5; + text_class: "list_item"; + } + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 0; + } + description { state: "disabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + description { state: "flip_enabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + } + part { name: "label2"; type: TEXT; mouse_events: 0; + effect: SHADOW BOTTOM; + scale: 1; + description { state: "default" 0.0; + rel1.to: "elm.text"; + rel2.to: "elm.text"; + color: 21 21 21 255; + color3: 255 255 255 25; + color_class: "list_item_disabled"; + text { font: "Sans"; size: 10; + text_source: "elm.text"; + align: 0.0 0.5; + text_class: "list_item"; + } + visible: 0; + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 0; + } + description { state: "disabled" 0.0; + inherit: "default" 0.0; + visible: 1; + } + description { state: "flip_enabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + } + part { name: "label3"; type: TEXT; mouse_events: 0; + effect: GLOW; + scale: 1; + description { state: "default" 0.0; + rel1.offset: -2 -3; + rel1.to: "elm.text"; + rel2.offset: -1 1; + rel2.to: "elm.text"; + color: 51 153 255 255; + color2: 51 153 255 24; + color3: 51 153 255 18; + color_class: "list_item_selected"; + text { font: "Sans"; size: 10; + text_source: "elm.text"; + align: 0.0 0.5; + text_class: "list_item"; + } + visible: 0; + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 1; + } + description { state: "disabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + description { state: "flip_enabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + } + part { name: "elm.text.flip"; type: SWALLOW; + scale: 1; + description { state: "default" 0.0; + visible: 0; + rel1.to_y: "elm.text"; + rel2.to_y: "elm.text"; + } + description { state: "flip_enabled" 0.0; + inherit: "default" 0.0; + visible: 1; + } + } + program { + signal: "elm,state,selected"; source: "elm"; + action: STATE_SET "selected" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + } + program { + signal: "elm,state,unselected"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + } + program { + signal: "elm,state,disabled"; source: "elm"; + action: STATE_SET "disabled" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + } + program { + signal: "elm,state,enabled"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + } + program { + signal: "elm,state,flip,enabled"; source: "elm"; + action: STATE_SET "flip_enabled" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + target: "elm.text.flip"; + } + program { + signal: "elm,state,flip,disabled"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + target: "elm.text.flip"; + } + //##// + part { name: "elm.swallow.pad"; type: SWALLOW; + description { state: "default" 0.0; + fixed: 1 0; + align: 0.0 0.5; + rel1.offset: 2 2; + rel2.relative: 0.0 1.0; + rel2.offset: 2 -3; + } + } + part { name: "elm.swallow.icon"; type: SWALLOW; + description { state: "default" 0.0; + fixed: 1 0; + align: 1.0 0.5; + aspect: 1.0 1.0; + rel1.offset: -3 2; + rel1.relative: 1.0 0.0; + rel2.offset: -3 -3; + } + description { state: "flip_enabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + } + program { + signal: "elm,state,flip,enabled"; source: "elm"; + action: STATE_SET "flip_enabled" 0.0; + target: "elm.swallow.icon"; + } + program { + signal: "elm,state,flip,disabled"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "elm.swallow.icon"; + } + //##// + + TOPP() + } +} +ODD("elm/genlist/item_odd/end_icon/default", "elm/genlist/item/end_icon/default") +COMPRESS("elm/genlist/item_compress/end_icon/default", "elm/genlist/item/end_icon/default") +COMPRESS_ODD("elm/genlist/item_compress_odd/end_icon/default", "elm/genlist/item/end_icon/default") + +group { name: "elm/genlist/item/no_icon/default"; + data.item: "selectraise" "on"; + data.item: "texts" "elm.text"; + data.item: "treesize" TREEPAD; + data.item: "flips" "elm.text.flip"; + IMGP() + parts { + BASEP() + + //##// + part { name: "elm.text"; type: TEXT; mouse_events: 0; + effect: SHADOW BOTTOM; + scale: 1; + description { state: "default" 0.0; + rel1.offset: 2 3; + rel1.relative: 1.0 0.0; + rel1.to_x: "elm.swallow.pad"; + rel2.offset: -3 -3; + color: 255 255 255 255; + color3: 0 0 0 128; + color_class: "list_item"; + text { font: "Sans"; size: 10; + min: 1 1; + align: 0.0 0.5; + text_class: "list_item"; + } + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 0; + } + description { state: "disabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + description { state: "flip_enabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + } + part { name: "label2"; type: TEXT; mouse_events: 0; + effect: SHADOW BOTTOM; + scale: 1; + description { state: "default" 0.0; + rel1.to: "elm.text"; + rel2.to: "elm.text"; + color: 21 21 21 255; + color3: 255 255 255 25; + color_class: "list_item_disabled"; + text { font: "Sans"; size: 10; + text_source: "elm.text"; + align: 0.0 0.5; + text_class: "list_item"; + } + visible: 0; + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 0; + } + description { state: "disabled" 0.0; + inherit: "default" 0.0; + visible: 1; + } + description { state: "flip_enabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + } + part { name: "label3"; type: TEXT; mouse_events: 0; + effect: GLOW; + scale: 1; + description { state: "default" 0.0; + rel1.offset: -2 -3; + rel1.to: "elm.text"; + rel2.offset: -1 1; + rel2.to: "elm.text"; + color: 51 153 255 255; + color2: 51 153 255 24; + color3: 51 153 255 18; + color_class: "list_item_selected"; + text { font: "Sans"; size: 10; + text_source: "elm.text"; + align: 0.0 0.5; + text_class: "list_item"; + } + visible: 0; + } + description { state: "selected" 0.0; + inherit: "default" 0.0; + visible: 1; + } + description { state: "disabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + description { state: "flip_enabled" 0.0; + inherit: "default" 0.0; + visible: 0; + } + } + part { name: "elm.text.flip"; type: SWALLOW; + scale: 1; + description { state: "default" 0.0; + visible: 0; + rel1.to_y: "elm.text"; + rel2.to_y: "elm.text"; + } + description { state: "flip_enabled" 0.0; + inherit: "default" 0.0; + visible: 1; + } + } + program { + signal: "elm,state,selected"; source: "elm"; + action: STATE_SET "selected" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + } + program { + signal: "elm,state,unselected"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + } + program { + signal: "elm,state,disabled"; source: "elm"; + action: STATE_SET "disabled" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + } + program { + signal: "elm,state,enabled"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + } + program { + signal: "elm,state,flip,enabled"; source: "elm"; + action: STATE_SET "flip_enabled" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + target: "elm.text.flip"; + } + program { + signal: "elm,state,flip,disabled"; source: "elm"; + action: STATE_SET "default" 0.0; + target: "elm.text"; + target: "label2"; + target: "label3"; + target: "elm.text.flip"; + } + //##// + part { name: "elm.swallow.pad"; type: SWALLOW; + description { state: "default" 0.0; + fixed: 1 0; + align: 0.0 0.5; + rel1.offset: 2 2; + rel2.relative: 0.0 1.0; + rel2.offset: 2 -3; + } + } + //##// + + TOPP() + } +} +ODD("elm/genlist/item_odd/no_icon/default", "elm/genlist/item/no_icon/default") +COMPRESS("elm/genlist/item_compress/no_icon/default", "elm/genlist/item/no_icon/default") +COMPRESS_ODD("elm/genlist/item_compress_odd/no_icon/default", "elm/genlist/item/no_icon/default") + +group { name: "elm/genlist/item/full/default"; + data.item: "selectraise" "on"; + data.item: "contents" "elm.swallow.content"; + data.item: "treesize" TREEPAD; + data.item: "flips" "elm.text.flip"; + IMGP() + parts { + BASEP() + + //##// + part { name: "elm.swallow.content"; type: SWALLOW; + scale: 1; + description { state: "default" 0.0; + min: 19 19; + rel1.offset: -1 2; + rel1.relative: 1.0 0.0; + rel1.to_x: "elm.swallow.pad"; + rel2.offset: -3 -3; + } + } + //##// + part { name: "elm.swallow.pad"; type: SWALLOW; + description { state: "default" 0.0; + fixed: 1 0; + align: 0.0 0.5; + rel1.offset: 2 2; + rel2.relative: 0.0 1.0; + rel2.offset: 2 -3; + } + } + //##// + + TOPP() + } +} +ODD("elm/genlist/item_odd/full/default", "elm/genlist/item/full/default") +group { name: "elm/genlist/item_compress/full/default"; + inherit: "elm/genlist/item/full/default"; +} +group { name: "elm/genlist/item_compress_odd/full/default"; + inherit: "elm/genlist/item_odd/full/default"; +} + +///////////////////////////////////////////////////////////////////////////// +//-- tree +//-- tree_odd +//-- tree_compress +//-- tree_compress_odd +group { name: "elm/genlist/tree/default/default"; + inherit: "elm/genlist/item/default/default"; + // XXX: these need to be... done specially. +// alias: "elm/genlist/tree/tree_effect/default"; +// alias: "elm/genlist/item/tree_effect/default"; +// alias: "elm/genlist/tree/effect_parts/default"; +// alias: "elm/genlist/item/effect_parts/default"; +#define TREEIMGS() \ + images.image: "sym_left_light_normal.png" COMP; \ + images.image: "sym_left_glow_normal.png" COMP; \ + images.image: "sym_left_dark_normal.png" COMP; \ + images.image: "sym_right_light_normal.png" COMP; \ + images.image: "sym_right_glow_normal.png" COMP; \ + images.image: "sym_right_dark_normal.png" COMP; \ + images.image: "sym_down_light_normal.png" COMP; \ + images.image: "sym_down_glow_normal.png" COMP; \ + images.image: "sym_down_dark_normal.png" COMP; + TREEIMGS() + parts { + part { name: "elm.swallow.icon"; + description { state: "default" 0.0; + rel1.to_x: "arrow"; + rel1.offset: 1 2; + rel2.to_x: "arrow"; + rel2.offset: 1 -3; + } + description { state: "flip_enabled" 0.0; + rel1.to_x: "arrow"; + rel1.offset: 1 2; + rel2.to_x: "arrow"; + rel2.offset: 1 -3; + } + } +#define ARROW() \ + part { name: "arrow_img_l"; mouse_events: 0; insert_after: "sel_bevel"; \ + clip_to: "arrow_clip_l"; \ + scale: 1; \ + ignore_flags: ON_HOLD; \ + description { state: "default" 0.0; \ + fixed: 1 1; \ + min: 15 15; \ + max: 15 15; \ + rel1.to: "arrow"; \ + rel2.to: "arrow"; \ + image.normal: "sym_right_light_normal.png"; \ + } \ + description { state: "selected" 0.0; \ + inherit: "default" 0.0; \ + image.normal: "sym_right_glow_normal.png"; \ + } \ + description { state: "disabled" 0.0; \ + inherit: "default" 0.0; \ + image.normal: "sym_right_dark_normal.png"; \ + } \ + description { state: "default" 1.0; \ + inherit: "default" 0.0; \ + image.normal: "sym_down_light_normal.png"; \ + } \ + description { state: "selected" 1.0; \ + inherit: "default" 0.0; \ + image.normal: "sym_down_glow_normal.png"; \ + } \ + description { state: "disabled" 1.0; \ + inherit: "default" 0.0; \ + image.normal: "sym_down_dark_normal.png"; \ + } \ + } \ + part { name: "arr... [truncated message content] |
From: Enlightenment S. <no-...@en...> - 2013-07-02 17:12:57
|
Log: updating french translation Author: maxerba Date: 2013-07-02 10:12:48 -0700 (Tue, 02 Jul 2013) New Revision: 84569 Trac: http://trac.enlightenment.org/e/changeset/84569 Modified: trunk/E-MODULES-EXTRA/screenshot/po/fr.po Modified: trunk/E-MODULES-EXTRA/screenshot/po/fr.po =================================================================== --- trunk/E-MODULES-EXTRA/screenshot/po/fr.po 2013-07-02 16:51:43 UTC (rev 84568) +++ trunk/E-MODULES-EXTRA/screenshot/po/fr.po 2013-07-02 17:12:48 UTC (rev 84569) @@ -7,14 +7,14 @@ "Project-Id-Version: Screenshot module\n" "Report-Msgid-Bugs-To: $MSGID_BUGS_ADDRESS\n" "POT-Creation-Date: 2013-05-22 20:28+0200\n" -"PO-Revision-Date: 2013-01-05 13:31+0000\n" -"Last-Translator: batden <Unknown>\n" +"PO-Revision-Date: 2013-05-29 20:47+0000\n" +"Last-Translator: Eliovir <Unknown>\n" "Language-Team: Enlightenment French Team <pou...@gm...>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-23 05:28+0000\n" -"X-Generator: Launchpad (build 16640)\n" +"X-Launchpad-Export-Date: 2013-05-30 05:53+0000\n" +"X-Generator: Launchpad (build 16652)\n" "X-Poedit-Country: FRANCE\n" "Language: \n" "X-Poedit-Language: French\n" @@ -39,7 +39,7 @@ #: src/e_mod_config.c:104 src/e_mod_config.c:185 #, c-format msgid "%1.0f seconds" -msgstr "" +msgstr "%1.0f secondes" #: src/e_mod_config.c:109 src/e_mod_config.c:196 src/e_mod_main.c:389 msgid "Capture Mode" |
From: Enlightenment S. <no-...@en...> - 2013-07-02 16:51:53
|
Log: updating french translation Author: maxerba Date: 2013-07-02 09:51:43 -0700 (Tue, 02 Jul 2013) New Revision: 84568 Trac: http://trac.enlightenment.org/e/changeset/84568 Modified: trunk/empower/po/fr.po Modified: trunk/empower/po/fr.po =================================================================== --- trunk/empower/po/fr.po 2013-07-02 16:08:07 UTC (rev 84567) +++ trunk/empower/po/fr.po 2013-07-02 16:51:43 UTC (rev 84568) @@ -4,27 +4,28 @@ msgid "" msgstr "" "Project-Id-Version: Empower\n" -"Report-Msgid-Bugs-To: enl...@li...\n" +"Report-Msgid-Bugs-To: $MSGID_BUGS_ADDRESS\n" "POT-Creation-Date: 2013-01-20 13:43+0100\n" -"PO-Revision-Date: 2009-08-05 11:46+0000\n" -"Last-Translator: batden <da...@sf...>\n" +"PO-Revision-Date: 2013-06-26 18:20+0000\n" +"Last-Translator: Eliovir <Unknown>\n" "Language-Team: French <enl...@li...>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-01-21 04:46+0000\n" -"X-Generator: Launchpad (build 16430)\n" +"X-Launchpad-Export-Date: 2013-06-27 05:36+0000\n" +"X-Generator: Launchpad (build 16681)\n" "X-Poedit-Country: FRANCE\n" +"Language: fr\n" "X-Poedit-Language: French\n" #: src/bin/gui.c:256 msgid "Unable to grab keyboard, exiting...\n" -msgstr "Impossible d'accaparer le clavier, fermeture...\n" +msgstr "Impossible de détecter le clavier, fermeture...\n" #: src/bin/main.c:26 #, c-format msgid "Unable to init Eina!" -msgstr "" +msgstr "Impossible d'initialiser Eina !" #: src/bin/main.c:32 #, c-format @@ -34,17 +35,17 @@ #: src/bin/main.c:38 #, c-format msgid "Unable to init efreet" -msgstr "" +msgstr "Impossible d'initialiser efreet" #: src/bin/main.c:43 #, c-format msgid "Unable to init elementary" -msgstr "" +msgstr "Impossible d'initialiser elementary" #: src/bin/main.c:50 msgid "Unable to initialize GUI!" -msgstr "" +msgstr "Impossible d'initialiser l'interface graphique !" #: src/bin/main.c:56 msgid "Unable to initialize Polkit Agent interface!" -msgstr "" +msgstr "Impossible d'initialiser l'interface Polkit Agent !" |
Log: updating various translations Author: maxerba Date: 2013-07-02 09:08:07 -0700 (Tue, 02 Jul 2013) New Revision: 84567 Trac: http://trac.enlightenment.org/e/changeset/84567 Added: trunk/E-MODULES-EXTRA/everything-aspell/po/fr.po trunk/E-MODULES-EXTRA/exebuf/po/fr.po trunk/PROTO/e_pattern_lock/po/fr.po Modified: trunk/E-MODULES-EXTRA/deskshow/module.desktop.in trunk/E-MODULES-EXTRA/diskio/module.desktop.in trunk/E-MODULES-EXTRA/eektool/module.desktop.in trunk/E-MODULES-EXTRA/eooorg/module.desktop.in trunk/E-MODULES-EXTRA/everything-aspell/module.desktop.in trunk/E-MODULES-EXTRA/everything-aspell/po/LINGUAS trunk/E-MODULES-EXTRA/everything-mpris/module.desktop.in trunk/E-MODULES-EXTRA/everything-mpris/mpris-remote/Add_Tracks.desktop trunk/E-MODULES-EXTRA/everything-mpris/po/eo.po trunk/E-MODULES-EXTRA/everything-mpris/po/fr.po trunk/E-MODULES-EXTRA/everything-mpris/po/sr.po trunk/E-MODULES-EXTRA/everything-pidgin/module.desktop.in trunk/E-MODULES-EXTRA/everything-shotgun/module.desktop.in trunk/E-MODULES-EXTRA/everything-skeleton/module.desktop.in trunk/E-MODULES-EXTRA/everything-tracker/module.desktop.in trunk/E-MODULES-EXTRA/everything-wallpaper/module.desktop.in trunk/E-MODULES-EXTRA/exalt-client/module.desktop.in trunk/E-MODULES-EXTRA/exebuf/module.desktop.in trunk/E-MODULES-EXTRA/exebuf/po/LINGUAS trunk/E-MODULES-EXTRA/execwatch/module.desktop.in trunk/E-MODULES-EXTRA/flame/module.desktop.in trunk/E-MODULES-EXTRA/flame/po/fr.po trunk/E-MODULES-EXTRA/iiirk/module.desktop.in trunk/E-MODULES-EXTRA/iiirk/po/fr.po trunk/E-MODULES-EXTRA/itask/module.desktop.in trunk/E-MODULES-EXTRA/mem/module.desktop.in trunk/E-MODULES-EXTRA/mem/po/fr.po trunk/E-MODULES-EXTRA/rain/module.desktop.in trunk/E-MODULES-EXTRA/rmb/module.desktop.in trunk/E-MODULES-EXTRA/screenshot/module.desktop.in trunk/E-MODULES-EXTRA/share/module.desktop.in trunk/E-MODULES-EXTRA/skel/module.desktop.in trunk/E-MODULES-EXTRA/skel/po/fr.po trunk/E-MODULES-EXTRA/slideshow/module.desktop.in trunk/E-MODULES-EXTRA/snow/module.desktop.in trunk/E-MODULES-EXTRA/taskbar/module.desktop.in trunk/E-MODULES-EXTRA/uptime/module.desktop.in trunk/E-MODULES-EXTRA/uptime/po/fr.po trunk/E-MODULES-EXTRA/uptime/po/sr.po trunk/E-MODULES-EXTRA/weather/module.desktop.in trunk/E-MODULES-EXTRA/winlist-ng/module.desktop.in trunk/E-MODULES-EXTRA/winselector/module.desktop.in trunk/E-MODULES-EXTRA/wlan/module.desktop.in trunk/E-MODULES-EXTRA/wlan/po/eo.po trunk/E-MODULES-EXTRA/wlan/po/fr.po trunk/EXAMPLES/elementary/calculator/data/desktop/calculator-edje.desktop trunk/EXAMPLES/elementary/converter/data/desktop/converter-sample.desktop trunk/EXAMPLES/elementary/phonebook/data/desktop/Phone_Book_Sample.desktop trunk/EXAMPLES/elementary/sticky-notes/data/desktop/sticky-notes-edje.desktop trunk/PROTO/ardy/data/applications/ardy.desktop trunk/PROTO/e_pattern_lock/po/LINGUAS trunk/PROTO/ekbd/data/ekbd.desktop trunk/PROTO/elm_fullscreen/data/desktop/elm_fullscreen.desktop trunk/PROTO/elm_illume/data/desktop/elm_illume.desktop trunk/PROTO/elm_indicator/data/desktop/elm_indicator.desktop trunk/PROTO/elm_kbd/data/desktop/elm_kbd.desktop trunk/PROTO/elm_quickpanel/data/desktop/elm_quickpanel.desktop trunk/PROTO/elm_softkey/data/desktop/elm_softkey.desktop trunk/PROTO/enna-explorer/data/other/enna-explorer.desktop trunk/PROTO/ev/ev.desktop trunk/PROTO/keys/data/applications/keys.desktop trunk/editje/data/editje.desktop trunk/edje_viewer/data/edje_viewer.desktop trunk/elmdentica/data/elmdentica.desktop.in trunk/enki/enki.desktop trunk/envision/data/desktop/envision.desktop trunk/espionnage/espionnage.desktop.in trunk/eve/data/desktop/eve.desktop trunk/excessive/excessive.desktop.in Modified: trunk/E-MODULES-EXTRA/deskshow/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/deskshow/module.desktop.in 2013-06-25 16:10:56 UTC (rev 84566) +++ trunk/E-MODULES-EXTRA/deskshow/module.desktop.in 2013-07-02 16:08:07 UTC (rev 84567) @@ -1,7 +1,20 @@ [Desktop Entry] -Type=Link +Comment=Gadget to allow you to quickly uncover your desktop. +Comment[cs]=Umožňuje rychle odkrýt plochu. +Comment[de]=Helfer zum schnellen Freilegen der Arbeitsfläche. +Comment[el]=Ένα συστατικό για την γρήγορη αποκάλυψη της επιφάνειας εργασίας. +Comment[eo]=Rapide malkovri sian labortablon. +Comment[es]=Un módulo que le permite mostrar rápidamente su escritorio. +Comment[fr]=Un gadget permettant de découvrir rapidement votre bureau. +Comment[gl]=Un módulo que lle permite amosar rapidamente o seu escritorio. +Comment[hu]=A modul segítségével egy kattintásra az összes megnyitott ablak minimalizálódik. +Comment[it]=Modulo che consente di scoprire rapidamente il desktop. +Comment[pt]=Módulo para mostrar a área de trabalho +Comment[ru]=Позволяет быстро добраться до рабочего стола методом сворачивания всех окон. +Comment[zh_CN]=允许快速显示桌面的小程序。 +Encoding=UTF-8 +Icon=e-module-deskshow Name=Deskshow -Name[ru]=Показать рабочий стол Name[cs]=Zobrazit plochu Name[de]=Arbeitsflächenzeiger Name[el]=Εμφάνιση Επιφάνειας @@ -11,18 +24,6 @@ Name[gl]=Mostrar escritorio Name[hu]=Munkaasztal megjelenítése Name[pt]=Mostrar área de trabalho -Icon=e-module-deskshow +Name[ru]=Показать рабочий стол +Type=Link X-Enlightenment-ModuleType=utils -Comment=Gadget to allow you to quickly uncover your desktop. -Comment[ru]=Позволяет быстро добраться до рабочего стола методом сворачивания всех окон. -Comment[cs]=Umožňuje rychle odkrýt plochu. -Comment[de]=Helfer zum schnellen Freilegen der Arbeitsfläche. -Comment[el]=Ένα συστατικό για την γρήγορη αποκάλυψη της επιφάνειας εργασίας. -Comment[eo]=Rapide malkovri sian labortablon. -Comment[es]=Un módulo que le permite mostrar rápidamente su escritorio. -Comment[fr]=Un gadget permettant de découvrir rapidement votre bureau. -Comment[gl]=Un módulo que lle permite amosar rapidamente o seu escritorio. -Comment[hu]=A modul segítségével egy kattintásra az összes megnyitott ablak minimalizálódik. -Comment[it]=Modulo che consente di scoprire rapidamente il desktop. -Comment[zh_CN]=允许快速显示桌面的小程序。 -Comment[pt]=Módulo para mostrar a área de trabalho Modified: trunk/E-MODULES-EXTRA/diskio/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/diskio/module.desktop.in 2013-06-25 16:10:56 UTC (rev 84566) +++ trunk/E-MODULES-EXTRA/diskio/module.desktop.in 2013-07-02 16:08:07 UTC (rev 84567) @@ -1,23 +1,24 @@ [Desktop Entry] -Type=Link +Comment=Visualize disk i/o. +Comment[cs]=Zviditelní I/O disku. +Comment[de]=Festplatten-Zugriffe visualisieren. +Comment[el]=Οπτικοποίηση του Ι/Ο του δίσκου. +Comment[eo]=Bildigas la eneligojn de la disko. +Comment[es]=Visualiza las entradas/salidas del disco. +Comment[fr]=Visualise les entrées/sorties du disque. +Comment[gl]=Visualiza as entradas/saídas do disco. +Comment[it]=Visualizza l'input/output del disco. +Comment[pt]=Ver as e/s do disco +Comment[ru]=Показывает ввод/вывод диска. +Encoding=UTF-8 +Icon=e-module-diskio Name=DiskIO -Name[ru]=ДискВВ Name[de]=Festplatten-Ein-/Ausgabe -Name[fr]=DisquES Name[el]=DiskIO Name[eo]=DiskEE Name[es]=DiscoES +Name[fr]=DisquES Name[gl]=DiscoES Name[pt]=DiscoES -Icon=e-module-diskio -Comment=Visualize disk i/o. -Comment[ru]=Показывает ввод/вывод диска. -Comment[cs]=Zviditelní I/O disku. -Comment[de]=Festplatten-Zugriffe visualisieren. -Comment[es]=Visualiza las entradas/salidas del disco. -Comment[gl]=Visualiza as entradas/saídas do disco. -Comment[it]=Visualizza l'input/output del disco. -Comment[fr]=Visualise les entrées/sorties du disque. -Comment[el]=Οπτικοποίηση του Ι/Ο του δίσκου. -Comment[eo]=Bildigas la eneligojn de la disko. -Comment[pt]=Ver as e/s do disco +Name[ru]=ДискВВ +Type=Link Modified: trunk/E-MODULES-EXTRA/eektool/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/eektool/module.desktop.in 2013-06-25 16:10:56 UTC (rev 84566) +++ trunk/E-MODULES-EXTRA/eektool/module.desktop.in 2013-07-02 16:08:07 UTC (rev 84567) @@ -1,12 +1,14 @@ [Desktop Entry] -Type=Link -Name=Eektool -Icon=e-module-eektool -X-Enlightenment-ModuleType=utils Comment=Redirects the output of a cmd to an edje textblock Comment[de]=Stellt die Ausgabe eines Kommandos als Edje Textblock da +Comment[eo]=Alidirekti eligon de komando en Edje-tekstblokon +Comment[es]=Redirige la salida de un comando hacia un bloque de texto edje. Comment[fr]=Affiche la sortie d'une commande dans un bloc de texte Edje. -Comment[es]=Redirige la salida de un comando hacia un bloque de texto edje. Comment[gl]=Redirixe a saída dun comando cara a un bloque de texto edje. Comment[it]=Redirige l'output di un comando verso un textblock di edje Comment[pt]=Envia o resultado da linha de comandos para um bloco de texto edje +Encoding=UTF-8 +Icon=e-module-eektool +Name=Eektool +Type=Link +X-Enlightenment-ModuleType=utils Modified: trunk/E-MODULES-EXTRA/eooorg/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/eooorg/module.desktop.in 2013-06-25 16:10:56 UTC (rev 84566) +++ trunk/E-MODULES-EXTRA/eooorg/module.desktop.in 2013-07-02 16:08:07 UTC (rev 84567) @@ -1,19 +1,21 @@ [Desktop Entry] -Type=Link +Comment=This module preloads the openoffice process to save start time with the costs of some memory. +Comment[eo]=Tiu modulo antaŭŝargas la procezon de OpenOffice.org por ŝpari starto-daŭron kontraŭ iom da memoro. +Comment[es]=Este módulo 'precarga' el proceso de OpenOffice.org para minimizar el tiempo de arranque,<br>a costas de una poca memoria. +Comment[fr]=Préchargement de OpenOffice.org pour accélérer son lancement, au prix d'un peu de mémoire vive. +Comment[gl]=Este módulo 'precarga' o proceso de OpenOffice.org para minimizar o tempo de arranque,<br>co custo dunha pouca memoria. +Comment[it]=Questo modulo precarica il processo di OpenOffice.org per risparmiare tempo<br>nell'avvio al costo di un po' di memoria. +Comment[pt]=Este módulo faz o carregamento automático do openoffice para minimizar o tempo de arranque. +Comment[ru]=Этот модуль подгружает процесс OpenOffice.org для убыстрения запуска, ценой некоторого объема памяти. +Encoding=UTF-8 +Icon=e-module-eooorg Name=OpenOffice.org Quickstart -Name[ru]=Быстрый запуск OpenOffice.org +Name[eo]=Rapida startigo de OpenOffice.org Name[es]=Arranque rápido de OpenOffice.org Name[fr]=Démarrage rapide OpenOffice.org Name[gl]=Inicio rápido de OpenOffice.org Name[it]=Avvio rapido OpenOffice.org Name[pt]=Início rápido do OpenOffice.org -Icon=e-module-eooorg -Comment=This module preloads the openoffice process to save start time with the costs of some memory. -Comment[ru]=Этот модуль подгружает процесс OpenOffice.org для убыстрения запуска, ценой некоторого объема памяти. -Comment[es]=Este módulo 'precarga' el proceso de OpenOffice.org para minimizar el tiempo de arranque,<br>a costas de una poca memoria. -Comment[fr]=Préchargement de OpenOffice.org pour accélérer son lancement, au prix d'un peu de mémoire vive. -Comment[gl]=Este módulo 'precarga' o proceso de OpenOffice.org para minimizar o tempo de arranque,<br>co custo dunha pouca memoria. -Comment[it]=Questo modulo precarica il processo di OpenOffice.org per risparmiare tempo<br>nell'avvio al costo di un po' di memoria. -Comment[pt]=Este módulo faz o carregamento automático do openoffice para minimizar o tempo de arranque. -#Several different types available here. NEED TO DOC THESE. +Name[ru]=Быстрый запуск OpenOffice.org +Type=Link X-Enlightenment-ModuleType=utils Modified: trunk/E-MODULES-EXTRA/everything-aspell/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/everything-aspell/module.desktop.in 2013-06-25 16:10:56 UTC (rev 84566) +++ trunk/E-MODULES-EXTRA/everything-aspell/module.desktop.in 2013-07-02 16:08:07 UTC (rev 84567) @@ -1,19 +1,22 @@ [Desktop Entry] -Type=Link -Name=Everything Aspell -Name[ru]=Всё - Aspell -Name[de]=Everything - Aspell -Name[fr]=Omni - Aspell -Name[it]=Everything - Aspell -Name[tr]=Everything - Aspell -Icon=accessories-dictionary Comment=Aspell Frontend, use 'aspell ' as trigger. -Comment[ru]=Графический интерфейс к утилите Aspell, используйте 'aspell ' для запуска. Comment[de]=Bedienung von Aspell. Verwenden Sie 'aspell ' als Auslöser. +Comment[eo]=Fasado de Aspell, uzu "aspell" kiel ekagilon. Comment[es]=Interfaz gráfica para Aspell, utiliza 'aspell' como activador. Comment[fr]=Frontal pour Aspell, utilise « aspell » comme déclencheur. Comment[gl]=Interface gráfica para Aspell, usa 'aspell' como disparador. Comment[it]=Frontend, usa 'aspell' come richiamo. Comment[pt]=Interface gráfica para o Aspell. Utiliza "aspell" como lançador +Comment[ru]=Графический интерфейс к утилите Aspell, используйте 'aspell ' для запуска. Comment[tr]=Aspell önyüzü, tetikleyici olarak 'aspell' yazın. +Encoding=UTF-8 +Icon=accessories-dictionary +Name=Everything Aspell +Name[de]=Everything - Aspell +Name[eo]=Ĉiuilo por Aspell +Name[fr]=Omni - Aspell +Name[it]=Everything - Aspell +Name[ru]=Всё - Aspell +Name[tr]=Everything - Aspell +Type=Link X-Enlightenment-ModuleType=launcher Modified: trunk/E-MODULES-EXTRA/everything-aspell/po/LINGUAS =================================================================== --- trunk/E-MODULES-EXTRA/everything-aspell/po/LINGUAS 2013-06-25 16:10:56 UTC (rev 84566) +++ trunk/E-MODULES-EXTRA/everything-aspell/po/LINGUAS 2013-07-02 16:08:07 UTC (rev 84567) @@ -1,2 +1,2 @@ -ca eo es gl it pt sr zh_CN +ca eo es fr gl it pt sr zh_CN Added: trunk/E-MODULES-EXTRA/everything-aspell/po/fr.po =================================================================== --- trunk/E-MODULES-EXTRA/everything-aspell/po/fr.po (rev 0) +++ trunk/E-MODULES-EXTRA/everything-aspell/po/fr.po 2013-07-02 16:08:07 UTC (rev 84567) @@ -0,0 +1,62 @@ +# French translation for enlightenment +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the enlightenment package. +# FIRST AUTHOR <EMAIL@ADDRESS>, 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: enlightenment\n" +"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-12-04 13:32+0100\n" +"PO-Revision-Date: 2013-06-20 07:24+0000\n" +"Last-Translator: Eliovir <Unknown>\n" +"Language-Team: French <fr...@li...>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-06-21 05:36+0000\n" +"X-Generator: Launchpad (build 16677)\n" + +#: src/e_mod_main.c:391 +msgid "Spell Checker" +msgstr "Correcteur orthographique" + +#: src/e_mod_main.c:449 src/e_mod_main.c:606 +msgid "Everything Aspell" +msgstr "Aspell pour Omni" + +#: src/e_mod_main.c:463 +msgid "General" +msgstr "Paramètres généraux" + +#: src/e_mod_main.c:468 +msgid "Spell checker" +msgstr "Correcteur orthographique" + +#: src/e_mod_main.c:471 src/e_mod_main.c:587 +msgid "Aspell" +msgstr "Aspell" + +#: src/e_mod_main.c:474 +msgid "Hunspell" +msgstr "Hunspell" + +#: src/e_mod_main.c:477 +msgid "Custom" +msgstr "Personnalisé" + +#: src/e_mod_main.c:481 +msgid "Custom Command" +msgstr "Commande personnalisée" + +#: src/e_mod_main.c:487 +msgid "Language" +msgstr "Langue" + +#: src/e_mod_main.c:585 +msgid "Launcher" +msgstr "Le lanceur" + +#: src/e_mod_main.c:587 +msgid "Everything Plugin" +msgstr "Greffon Omni" Modified: trunk/E-MODULES-EXTRA/everything-mpris/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/everything-mpris/module.desktop.in 2013-06-25 16:10:56 UTC (rev 84566) +++ trunk/E-MODULES-EXTRA/everything-mpris/module.desktop.in 2013-07-02 16:08:07 UTC (rev 84567) @@ -1,18 +1,20 @@ [Desktop Entry] -Type=Link -Name=Everything MPRIS -Name[ru]=Всё - MPRIS -Name[fr]=Omni - MPRIS -Name[it]=Everything - MPRIS -Name[de]=Everything MPRIS -Icon=e-module Comment=Control MPRIS compatible media player from Everything. -Comment[ru]=Контроль над MPRIS совместимыми медиа проигрывателями из Everything. Comment[de]=MPRIS-kompatible Mediaplayer mit Everything steuern. +Comment[eo]=Kontroli MPRIS-kongrua ludilo el Ĉio Comment[es]=Controla los reproductores multimedia compatibles con MPRIS de Everything. Comment[fr]=Contrôle des lecteurs multimédias compatibles MPRIS depuis Omni. -Comment[gl]=Controla os reprodutores multimedia compatíbeis con MPRIS de Everything. +Comment[gl]=Controla os reprodutores multimedia compatíbeis con MPRIS de Everything. Comment[it]=Controlla i lettori multimediali compatibili con MPRIS da Everything. Comment[pt]=Controlar reprodutores multimédia compatíveis com MPRIS através do Everything -#Several different types available here. NEED TO DOC THESE. +Comment[ru]=Контроль над MPRIS совместимыми медиа проигрывателями из Everything. +Encoding=UTF-8 +Icon=e-module +Name=Everything MPRIS +Name[de]=Everything MPRIS +Name[eo]=Ĉio-MPRIS +Name[fr]=Omni - MPRIS +Name[it]=Everything - MPRIS +Name[ru]=Всё - MPRIS +Type=Link X-Enlightenment-ModuleType=launcher Modified: trunk/E-MODULES-EXTRA/everything-mpris/mpris-remote/Add_Tracks.desktop =================================================================== --- trunk/E-MODULES-EXTRA/everything-mpris/mpris-remote/Add_Tracks.desktop 2013-06-25 16:10:56 UTC (rev 84566) +++ trunk/E-MODULES-EXTRA/everything-mpris/mpris-remote/Add_Tracks.desktop 2013-07-02 16:08:07 UTC (rev 84567) @@ -1,18 +1,20 @@ [Desktop Entry] +Encoding=UTF-8 +Exec=mpris-remote addtrack %f false Hidden=false -Exec=mpris-remote addtrack %f false -Type=Application -NoDisplay=false -Version=1.0 -StartupNotify=false -Terminal=false +Icon=emblem-sound +MimeType=application/x-ogg;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mp3;audio/x-mpeg;audio/mpeg;audio/x-mpegurl;audio/x-flac;x-directory/gnome-default-handler;x-directory/normal;inode/directory; Name=Add Tracks -Name[ru]=Добавить треки Name[en_US]=Add Tracks Name[eo]=Aldoni muzikpecojn Name[es]=Añadir pistas +Name[fr]=Ajouter des pistes Name[gl]=Engadir pistas Name[it]=Aggiungi tracce Name[pt]=Adicionar faixas -Icon=emblem-sound -MimeType=application/x-ogg;application/ogg;audio/x-vorbis+ogg;audio/x-scpls;audio/x-mp3;audio/x-mpeg;audio/mpeg;audio/x-mpegurl;audio/x-flac;x-directory/gnome-default-handler;x-directory/normal;inode/directory; +Name[ru]=Добавить треки +NoDisplay=false +StartupNotify=false +Terminal=false +Type=Application +Version=1.0 Modified: trunk/E-MODULES-EXTRA/everything-mpris/po/eo.po =================================================================== --- trunk/E-MODULES-EXTRA/everything-mpris/po/eo.po 2013-06-25 16:10:56 UTC (rev 84566) +++ trunk/E-MODULES-EXTRA/everything-mpris/po/eo.po 2013-07-02 16:08:07 UTC (rev 84567) @@ -6,85 +6,51 @@ msgid "" msgstr "" "Project-Id-Version: enlightenment\n" -"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" -"POT-Creation-Date: 2012-12-04 13:32+0100\n" -"PO-Revision-Date: 2012-12-05 11:11+0000\n" -"Last-Translator: Michael Moroni <mic...@ma...>\n" +"Report-Msgid-Bugs-To: $MSGID_BUGS_ADDRESS\n" +"POT-Creation-Date: 2013-06-21 01:05+0200\n" +"PO-Revision-Date: 2013-06-21 07:14+0000\n" +"Last-Translator: Eliovir <Unknown>\n" "Language-Team: Esperanto <eo...@li...>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-06 04:41+0000\n" -"X-Generator: Launchpad (build 16341)\n" +"X-Launchpad-Export-Date: 2013-06-22 05:38+0000\n" +"X-Generator: Launchpad (build 16677)\n" +"Language: eo\n" -#: src/e_mod_main.c:271 -msgid "No Title" -msgstr "Sen titolo" +#: src/e_mod_config.c:37 +msgid "Empris Configuration" +msgstr "Agordoj de Empris" -#: src/e_mod_main.c:467 src/e_mod_main.c:623 -msgid "Loading Playlist" -msgstr "Ŝargado de ludlisto" +#: src/e_mod_config.c:82 src/e_mod_main.c:247 +msgid "Configuration" +msgstr "Agordoj" -#: src/e_mod_main.c:480 -msgid "Empty Playlist" -msgstr "Malplena ludlisto" +#: src/e_mod_config.c:84 +msgid "Player:" +msgstr "Ludilo:" -#: src/e_mod_main.c:1380 -msgid "Playlist" -msgstr "Ludlisto" +#: src/e_mod_config.c:91 +msgid "Show Popup:" +msgstr "Montri spruĉfenestron:" -#: src/e_mod_main.c:1413 -msgid "Play Track" -msgstr "Ludi kanton" +#: src/e_mod_main.c:200 +msgid "Empris" +msgstr "Empris" -#: src/e_mod_main.c:1418 -msgid "Play" -msgstr "Ludi" +#: src/e_mod_main.c:827 src/e_mod_main.c:829 src/e_mod_main.c:869 +#: src/e_mod_main.c:871 +msgid "Unknown" +msgstr "Nekonata" -#: src/e_mod_main.c:1422 -msgid "Pause" -msgstr "Paŭzigi" +#: src/e_mod_main.c:848 src/e_mod_main.c:850 +msgid "Stopped" +msgstr "Haltigite" -#: src/e_mod_main.c:1426 -msgid "Stop" -msgstr "Haltigi" +#: src/e_mod_main.c:855 src/e_mod_main.c:857 +msgid "Playing" +msgstr "Ludante" -#: src/e_mod_main.c:1430 -msgid "Forward" -msgstr "Antaŭen" - -#: src/e_mod_main.c:1434 -msgid "Rewind" -msgstr "Malantaŭen" - -#: src/e_mod_main.c:1438 -msgid "Remove Track" -msgstr "Forigi kanton" - -#: src/e_mod_main.c:1443 -msgid "Clear Playlist" -msgstr "Vakigi ludliston" - -#: src/e_mod_main.c:1447 -msgid "Play File" -msgstr "Ludi dosieron" - -#: src/e_mod_main.c:1452 -msgid "Add Files..." -msgstr "Aldoni dosierojn..." - -#: src/e_mod_main.c:1456 -msgid "Enqueue in Playlist" -msgstr "Envicigi en ludlisto" - -#: src/e_mod_main.c:1461 -msgid "Add Music..." -msgstr "Aldoni muzikon..." - -#: src/e_mod_main.c:1465 -msgid "Remove Duplicates" -msgstr "Forigi duoblojn" - -#: src/e_mod_main.c:1469 -msgid "Remove Missing Files" -msgstr "Forigi mankantajn dosierojn" +#: src/e_mod_main.c:862 src/e_mod_main.c:864 +msgid "Paused" +msgstr "Paŭzigite" Modified: trunk/E-MODULES-EXTRA/everything-mpris/po/fr.po =================================================================== --- trunk/E-MODULES-EXTRA/everything-mpris/po/fr.po 2013-06-25 16:10:56 UTC (rev 84566) +++ trunk/E-MODULES-EXTRA/everything-mpris/po/fr.po 2013-07-02 16:08:07 UTC (rev 84567) @@ -6,88 +6,53 @@ msgstr "" "Project-Id-Version: Everything-mpris module\n" "Report-Msgid-Bugs-To: $MSGID_BUGS_ADDRESS\n" -"POT-Creation-Date: 2012-12-04 13:32+0100\n" -"PO-Revision-Date: 2012-12-07 09:42+0000\n" -"Last-Translator: batden <Unknown>\n" +"POT-Creation-Date: 2013-06-21 01:05+0200\n" +"PO-Revision-Date: 2013-06-26 18:21+0000\n" +"Last-Translator: Eliovir <Unknown>\n" "Language-Team: French <pou...@gm...>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-08 05:09+0000\n" -"X-Generator: Launchpad (build 16341)\n" +"X-Launchpad-Export-Date: 2013-06-27 05:36+0000\n" +"X-Generator: Launchpad (build 16681)\n" "X-Poedit-Country: FRANCE\n" "Language: fr\n" "X-Poedit-Language: French\n" "X-Poedit-SourceCharset: utf-8\n" -#: src/e_mod_main.c:271 -msgid "No Title" -msgstr "Sans Titre" +#: src/e_mod_config.c:37 +msgid "Empris Configuration" +msgstr "Configuration de Empris" -#: src/e_mod_main.c:467 src/e_mod_main.c:623 -msgid "Loading Playlist" -msgstr "Chargement de la liste de lecture" +#: src/e_mod_config.c:82 src/e_mod_main.c:247 +msgid "Configuration" +msgstr "Configuration" -#: src/e_mod_main.c:480 -msgid "Empty Playlist" -msgstr "Liste de lecture vide" +#: src/e_mod_config.c:84 +msgid "Player:" +msgstr "Lecteur :" -#: src/e_mod_main.c:1380 -msgid "Playlist" -msgstr "Liste de lecture" +#: src/e_mod_config.c:91 +msgid "Show Popup:" +msgstr "Afficher le popup :" -#: src/e_mod_main.c:1413 -msgid "Play Track" -msgstr "Lire la piste" +#: src/e_mod_main.c:200 +msgid "Empris" +msgstr "Empris" -#: src/e_mod_main.c:1418 -msgid "Play" -msgstr "Lecture" +#: src/e_mod_main.c:827 src/e_mod_main.c:829 src/e_mod_main.c:869 +#: src/e_mod_main.c:871 +msgid "Unknown" +msgstr "Inconnu" -#: src/e_mod_main.c:1422 -msgid "Pause" -msgstr "Pause" +#: src/e_mod_main.c:848 src/e_mod_main.c:850 +msgid "Stopped" +msgstr "Arrêté" -#: src/e_mod_main.c:1426 -msgid "Stop" -msgstr "Arrêt" +#: src/e_mod_main.c:855 src/e_mod_main.c:857 +msgid "Playing" +msgstr "En cours de lecture" -#: src/e_mod_main.c:1430 -msgid "Forward" -msgstr "Avancer" - -#: src/e_mod_main.c:1434 -msgid "Rewind" -msgstr "Reculer" - -#: src/e_mod_main.c:1438 -msgid "Remove Track" -msgstr "Supprimer la piste" - -#: src/e_mod_main.c:1443 -msgid "Clear Playlist" -msgstr "Vider la liste de lecture" - -#: src/e_mod_main.c:1447 -msgid "Play File" -msgstr "Lire un fichier" - -#: src/e_mod_main.c:1452 -msgid "Add Files..." -msgstr "Ajouter des fichiers..." - -#: src/e_mod_main.c:1456 -msgid "Enqueue in Playlist" -msgstr "Mettre dans la file d'attente" - -#: src/e_mod_main.c:1461 -msgid "Add Music..." -msgstr "Ajouter de la musique..." - -#: src/e_mod_main.c:1465 -msgid "Remove Duplicates" -msgstr "Supprimer les doublons" - -#: src/e_mod_main.c:1469 -msgid "Remove Missing Files" -msgstr "Supprimer les fichiers manquants" +#: src/e_mod_main.c:862 src/e_mod_main.c:864 +msgid "Paused" +msgstr "En pause" Modified: trunk/E-MODULES-EXTRA/everything-mpris/po/sr.po =================================================================== --- trunk/E-MODULES-EXTRA/everything-mpris/po/sr.po 2013-06-25 16:10:56 UTC (rev 84566) +++ trunk/E-MODULES-EXTRA/everything-mpris/po/sr.po 2013-07-02 16:08:07 UTC (rev 84567) @@ -5,85 +5,50 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: $MSGID_BUGS_ADDRESS\n" -"POT-Creation-Date: 2012-12-04 13:32+0100\n" -"PO-Revision-Date: 2012-12-21 01:04+0000\n" +"POT-Creation-Date: 2013-06-21 01:05+0200\n" +"PO-Revision-Date: 2013-06-23 19:38+0000\n" "Last-Translator: Саша Петровић <sal...@gm...>\n" "Language-Team: српски <xfc...@xf...>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-22 06:15+0000\n" -"X-Generator: Launchpad (build 16378)\n" +"X-Launchpad-Export-Date: 2013-06-24 04:43+0000\n" +"X-Generator: Launchpad (build 16677)\n" "Language: \n" -#: src/e_mod_main.c:271 -msgid "No Title" -msgstr "Без наслова" +#: src/e_mod_config.c:37 +msgid "Empris Configuration" +msgstr "Поставке Емприса" -#: src/e_mod_main.c:467 src/e_mod_main.c:623 -msgid "Loading Playlist" -msgstr "Учитавам списак за извођење" +#: src/e_mod_config.c:82 src/e_mod_main.c:247 +msgid "Configuration" +msgstr "Поставке" -#: src/e_mod_main.c:480 -msgid "Empty Playlist" -msgstr "Празан списак за извођење" +#: src/e_mod_config.c:84 +msgid "Player:" +msgstr "Извођач:" -#: src/e_mod_main.c:1380 -msgid "Playlist" -msgstr "Списак за извођење" +#: src/e_mod_config.c:91 +msgid "Show Popup:" +msgstr "Прикажи искакајуће прозорче:" -#: src/e_mod_main.c:1413 -msgid "Play Track" -msgstr "Изведи нумеру" +#: src/e_mod_main.c:200 +msgid "Empris" +msgstr "Емприс" -#: src/e_mod_main.c:1418 -msgid "Play" -msgstr "Пусти" +#: src/e_mod_main.c:827 src/e_mod_main.c:829 src/e_mod_main.c:869 +#: src/e_mod_main.c:871 +msgid "Unknown" +msgstr "Непознато" -#: src/e_mod_main.c:1422 -msgid "Pause" -msgstr "Застој" +#: src/e_mod_main.c:848 src/e_mod_main.c:850 +msgid "Stopped" +msgstr "Заустављено" -#: src/e_mod_main.c:1426 -msgid "Stop" -msgstr "Заустави" +#: src/e_mod_main.c:855 src/e_mod_main.c:857 +msgid "Playing" +msgstr "Изводим" -#: src/e_mod_main.c:1430 -msgid "Forward" -msgstr "Напред" - -#: src/e_mod_main.c:1434 -msgid "Rewind" -msgstr "Премотај уназад" - -#: src/e_mod_main.c:1438 -msgid "Remove Track" -msgstr "Уклони нумеру" - -#: src/e_mod_main.c:1443 -msgid "Clear Playlist" -msgstr "Очисти списак нумера" - -#: src/e_mod_main.c:1447 -msgid "Play File" -msgstr "Изведи датотеку" - -#: src/e_mod_main.c:1452 -msgid "Add Files..." -msgstr "Додај датотеке..." - -#: src/e_mod_main.c:1456 -msgid "Enqueue in Playlist" -msgstr "Закажи у списак за извођење" - -#: src/e_mod_main.c:1461 -msgid "Add Music..." -msgstr "Додаје музику..." - -#: src/e_mod_main.c:1465 -msgid "Remove Duplicates" -msgstr "Уклони удвојене" - -#: src/e_mod_main.c:1469 -msgid "Remove Missing Files" -msgstr "Уклони непостојеће датотеке" +#: src/e_mod_main.c:862 src/e_mod_main.c:864 +msgid "Paused" +msgstr "Застанак" Modified: trunk/E-MODULES-EXTRA/everything-pidgin/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/everything-pidgin/module.desktop.in 2013-06-25 16:10:56 UTC (rev 84566) +++ trunk/E-MODULES-EXTRA/everything-pidgin/module.desktop.in 2013-07-02 16:08:07 UTC (rev 84567) @@ -1,20 +1,22 @@ [Desktop Entry] -Type=Link -Name=Everything Pidgin -Name[ru]=Всё - Pidgin -Name[fr]=Omni - Pidgin -Name[it]=Everything - Pidgin -Name[el]=ΤαΠάνταΌλα - Pidgin -Name[de]=Everything Pidgin -Icon=e-module Comment=Open chat windows and send files to buddies. -Comment[ru]=Чат и передача файлов между друзьями. +Comment[de]=Chat-Fenster öffnen und Dateien an Kontakte senden. +Comment[el]=Ανοίγει παράθυρα συνομιλιών και αποστολής αρχείων στους φίλους. +Comment[eo]=Malfermi babilejajn fenestrojn kaj sendi dosierojn al amikoj. Comment[es]=Abre la ventana del chat y envía archivos a los amigos. Comment[fr]=Pour chatter avec les potes et leur envoyer des fichiers. Comment[gl]=Abrea a xanela de conversación e envía ficheiros ós amigos. Comment[it]=Apre finestre di chat e invia file ai contatti. -Comment[el]= Ανοίγει παράθυρα συνομιλιών και αποστολής αρχείων στους φίλους. Comment[pt]=Abrir janela de conversação e enviar ficheiros aos amigos -Comment[de]=Chat-Fenster öffnen und Dateien an Kontakte senden. -#Several different types available here. NEED TO DOC THESE. +Comment[ru]=Чат и передача файлов между друзьями. +Encoding=UTF-8 +Icon=e-module +Name=Everything Pidgin +Name[de]=Everything Pidgin +Name[el]=ΤαΠάνταΌλα - Pidgin +Name[eo]=Ĉio-piĝin +Name[fr]=Omni - Pidgin +Name[it]=Everything - Pidgin +Name[ru]=Всё - Pidgin +Type=Link X-Enlightenment-ModuleType=launcher Modified: trunk/E-MODULES-EXTRA/everything-shotgun/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/everything-shotgun/module.desktop.in 2013-06-25 16:10:56 UTC (rev 84566) +++ trunk/E-MODULES-EXTRA/everything-shotgun/module.desktop.in 2013-07-02 16:08:07 UTC (rev 84567) @@ -1,13 +1,16 @@ [Desktop Entry] -Type=Link -Name=Everything Shotgun -Name[it]=Everything - Shotgun -Name[pt]=Everything - Shotgun -Icon=e-module Comment=Interface for Shotgun Instant Messanger +Comment[eo]=Interfaco por la tujmesaĝilo Shotgun Comment[es]=Interfaz para el cliente de mensajes instantáneas Shotgun +Comment[gl]=Interface para o cliente de mensaxes instantáneas Shotgun Comment[it]=Interfaccia per il client di instant messaging Shotgun -Comment[gl]=Interface para o cliente de mensaxes instantáneas Shotgun Comment[pt]=Interface para o cliente de mensagens instantâneas Shotgun -#Several different types available here. NEED TO DOC THESE. +Encoding=UTF-8 +Icon=e-module +Name=Everything Shotgun +Name[eo]=Ĉio-Shotgun +Name[fr]=Omni Shotgun +Name[it]=Everything - Shotgun +Name[pt]=Everything - Shotgun +Type=Link X-Enlightenment-ModuleType=launcher Modified: trunk/E-MODULES-EXTRA/everything-skeleton/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/everything-skeleton/module.desktop.in 2013-06-25 16:10:56 UTC (rev 84566) +++ trunk/E-MODULES-EXTRA/everything-skeleton/module.desktop.in 2013-07-02 16:08:07 UTC (rev 84567) @@ -1,6 +1,10 @@ [Desktop Entry] +Comment=Example Plugin for Everything +Comment[eo]=Ekzempla kromaĵo por Ĉio +Encoding=UTF-8 +Icon=accessories-dictionary +Name=Everything SKEL +Name[eo]=Ĉio-skeleto +Name[fr]=Squelette Omni Type=Link -Name=Everything SKEL -Icon=accessories-dictionary -Comment=Example Plugin for Everything X-Enlightenment-ModuleType=launcher Modified: trunk/E-MODULES-EXTRA/everything-tracker/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/everything-tracker/module.desktop.in 2013-06-25 16:10:56 UTC (rev 84566) +++ trunk/E-MODULES-EXTRA/everything-tracker/module.desktop.in 2013-07-02 16:08:07 UTC (rev 84567) @@ -1,21 +1,23 @@ [Desktop Entry] -Type=Link -Name=Everything Tracker -Name[ru]=Всё - Трекер -Name[fr]=Omni - Tracker -Name[it]=Everything - Tracker -Name[el]=ΤαΠάνταΌλα - Tracker -Name[pt]=Everything - Tracker -Name[de]=Everything Tracker -Icon=e-module Comment=Find Files with Tracker (requires version 0.8) -Comment[ru]=Искать файлы через трекер (требуется версия 0.8). +Comment[de]=Dateien mit Tracker finden (benötigt Version 0.8) +Comment[el]=Βρίσκει Αρχεία με τον Tracker (απαιτεί την έκδοση 0,8). +Comment[eo]=Trovi dosierojn per ŝanĝospurilo (bezonas version 0.8) Comment[es]=Encuentre archivos con Tracker (requiere la versión 0.8). Comment[fr]=Trouver des fichiers avec Tracker (version 0.8 requise). Comment[gl]=Encontre ficheiros con Tracker (require a versión 0.8). Comment[it]=Trova i file con Tracker (versione richiesta 0.8). -Comment[el]= Βρίσκει Αρχεία με τον Tracker (απαιτεί την έκδοση 0,8). Comment[pt]=Encontre ficheiros com o "Tracker"(requer a versão 0.8) -Comment[de]=Dateien mit Tracker finden (benötigt Version 0.8) -#Several different types available here. NEED TO DOC THESE. +Comment[ru]=Искать файлы через трекер (требуется версия 0.8). +Encoding=UTF-8 +Icon=e-module +Name=Everything Tracker +Name[de]=Everything Tracker +Name[el]=ΤαΠάνταΌλα - Tracker +Name[eo]=Ĉio-ŝanĝospurilo +Name[fr]=Omni - Tracker +Name[it]=Everything - Tracker +Name[pt]=Everything - Tracker +Name[ru]=Всё - Трекер +Type=Link X-Enlightenment-ModuleType=launcher Modified: trunk/E-MODULES-EXTRA/everything-wallpaper/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/everything-wallpaper/module.desktop.in 2013-06-25 16:10:56 UTC (rev 84566) +++ trunk/E-MODULES-EXTRA/everything-wallpaper/module.desktop.in 2013-07-02 16:08:07 UTC (rev 84567) @@ -1,20 +1,23 @@ [Desktop Entry] -Type=Link +Comment=Select wallpaper or create new ones from images +Comment[de]=Hintergrundbild auswählen oder neue aus vorhandenen Bildern erstellen. +Comment[eo]=Elekti ekranfonon aŭ krei novajn el bildoj +Comment[es]=Seleccione o cree un fondo de escritorio a partir de imágenes. +Comment[fr]=Choisir un fond d'écran ou en créer de nouveaux à partir d'images. +Comment[gl]=Seleccione ou cree un fondo de escritorio a partir de imaxes. +Comment[it]=Fornisce un'azione per impostare un'immagine come sfondo. +Comment[pt]=Selecione ou crie o papel de parede a partir de imagens +Comment[ru]=Выбирайте обои или создавайте новые из изображений. +Encoding=UTF-8 +Icon=preferences-desktop-wallpaper Name=Everything Wallpaper -Name[ru]=Всё - Обои +Name[de]=Everything Hintergrundbild +Name[eo]=Ĉio-ekranfono Name[es]=Everything Fondo de escritorio Name[fr]=Omni - Fond Name[gl]=Everything Fondo de escritorio Name[it]=Everything - Sfondo Name[pt]=Everything - Papel de parede -Name[de]=Everything Hintergrundbild -Icon=preferences-desktop-wallpaper -Comment=Select wallpaper or create new ones from images -Comment[ru]=Выбирайте обои или создавайте новые из изображений. -Comment[es]=Seleccione o cree un fondo de escritorio a partir de imágenes. -Comment[fr]=Choisir un fond d'écran ou en créer de nouveaux à partir d'images. -Comment[gl]=Seleccione ou cree un fondo de escritorio a partir de imaxes. -Comment[it]=Fornisce un'azione per impostare un'immagine come sfondo. -Comment[pt]=Selecione ou crie o papel de parede a partir de imagens -Comment[de]=Hintergrundbild auswählen oder neue aus vorhandenen Bildern erstellen. +Name[ru]=Всё - Обои +Type=Link X-Enlightenment-ModuleType=launcher Modified: trunk/E-MODULES-EXTRA/exalt-client/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/exalt-client/module.desktop.in 2013-06-25 16:10:56 UTC (rev 84566) +++ trunk/E-MODULES-EXTRA/exalt-client/module.desktop.in 2013-07-02 16:08:07 UTC (rev 84567) @@ -1,21 +1,22 @@ [Desktop Entry] -Type=Link -Name=Exalt -Name[ru]=Exalt -Name[eo]=Exalt -Name[el]=Exalt -Name[de]=Exalt -Icon=e-module-exalt Comment=A user-friendly tool to setup and manage network interfaces. -Comment[ru]=Дружественный к пользователю интерфейс настройки сетевых соединений. Comment[cs]=Uživatelsky přívětivé rozhraní k nastavení a správě sítových zařízení. -Comment[it]=Una utilità per configurare e gestire le interfacce di rete. +Comment[de]=Ein nutzerfreundliches Werkzeug zum Einrichten von Netzwerkschnittstellen Comment[el]=Ένα φιίκό στο χρήστη εργαλείο για οργάνωση και διαχείρηση των διεπαφών δικτύου. -Comment[eo]= +Comment[eo]=Afabla ilo por agordi kaj administri retajn interfacojn. Comment[es]=Una herramienta fácil de usar para configurar y administrar las interfaces de red. Comment[fr]=Un outil pour configurer simplement vos interfaces réseau. Comment[gl]=Unha ferramenta fácil de usar para configurar e xestionar as interfaces de rede. +Comment[it]=Una utilità per configurare e gestire le interfacce di rete. Comment[pt]=Uma ferramenta para configurar e gerir interfaces de rede. -Comment[de]=Ein nutzerfreundliches Werkzeug zum Einrichten von Netzwerkschnittstellen -#Several different types available here. NEED TO DOC THESE. +Comment[ru]=Дружественный к пользователю интерфейс настройки сетевых соединений. +Encoding=UTF-8 +Icon=e-module-exalt +Name=Exalt +Name[de]=Exalt +Name[el]=Exalt +Name[eo]=Exalt +Name[fr]=Exalt +Name[ru]=Exalt +Type=Link X-Enlightenment-ModuleType=system Modified: trunk/E-MODULES-EXTRA/exebuf/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/exebuf/module.desktop.in 2013-06-25 16:10:56 UTC (rev 84566) +++ trunk/E-MODULES-EXTRA/exebuf/module.desktop.in 2013-07-02 16:08:07 UTC (rev 84567) @@ -1,9 +1,27 @@ [Desktop Entry] -Type=Link +Comment=The run command module provides an application launcher dialog. +Comment[cs]=Poskytuje dialog pro spuštění aplikací. +Comment[de]=Der Ausführen-Befehl stellt einen Anwendungsstarter zur Verfügung. +Comment[el]=Το άρθρωμα της εκτέλεση εντολής παρέχει ένα παράθυρο διαλόγου εκτέλεσης εφαρμογής. +Comment[eo]=La modulo de lanĉo de komandoj provizas dialogon de lanĉilo de aplikaĵoj. +Comment[es]=El módulo de ejecutar comandos provee un diálogo para ejecutar aplicaciones. +Comment[fr]=Fournit une fenêtre de commande pour lancer des applications. +Comment[gl]=Este módulo ofrece un diálogo para iniciar aplicativos. +Comment[hu]=A parancs futtató modul egy alkalmazásindítót biztosít a számunkra. +Comment[it]=Questo modulo fornisce una finestra di dialogo per l'esecuzione di comandi. +Comment[ja]= +Comment[pt]=Módulo que disponibiliza um diálogo para iniciar aplicações +Comment[pt_BR]= +Comment[ru]=Модуль предоставляет диалог запуска приложения. +Comment[tr]=Komut çalıştır modülü program çalıştırma penceresi açar. +Comment[zh_CN]= +Comment[zh_TW]= +Encoding=UTF-8 +Icon=e-module-exebuf Name=Run Command -Name[ru]=Запустить комманду Name[cs]=Dialog Spustit Name[de]=Befehl ausführen +Name[el]=Εκτέλεση εντολής Name[eo]=Lanĉi komandojn Name[es]=Ejecutar comando Name[fr]=Ligne de commande @@ -13,26 +31,9 @@ Name[ja]= Name[pt]=Executar comando Name[pt_BR]= +Name[ru]=Запустить комманду Name[tr]=Komut Çalıştır Name[zh_CN]= Name[zh_TW]= -Name[el]=Εκτέλεση εντολής -Icon=e-module-exebuf -Comment=The run command module provides an application launcher dialog. -Comment[ru]=Модуль предоставляет диалог запуска приложения. -Comment[cs]=Poskytuje dialog pro spuštění aplikací. -Comment[de]=Der Ausführen-Befehl stellt einen Anwendungsstarter zur Verfügung. -Comment[eo]=La modulo de lanĉo de komandoj provizas dialogon de lanĉilo de aplikaĵoj. -Comment[es]=El módulo de ejecutar comandos provee un diálogo para ejecutar aplicaciones. -Comment[fr]=Fournit une fenêtre de commande pour lancer des applications. -Comment[gl]=Este módulo ofrece un diálogo para iniciar aplicativos. -Comment[hu]=A parancs futtató modul egy alkalmazásindítót biztosít a számunkra. -Comment[it]=Questo modulo fornisce una finestra di dialogo per l'esecuzione di comandi. -Comment[ja]= -Comment[pt]=Módulo que disponibiliza um diálogo para iniciar aplicações -Comment[pt_BR]= -Comment[tr]=Komut çalıştır modülü program çalıştırma penceresi açar. -Comment[zh_CN]= -Comment[zh_TW]= -Comment[el]=Το άρθρωμα της εκτέλεση εντολής παρέχει ένα παράθυρο διαλόγου εκτέλεσης εφαρμογής. +Type=Link X-Enlightenment-ModuleType=launcher Modified: trunk/E-MODULES-EXTRA/exebuf/po/LINGUAS =================================================================== --- trunk/E-MODULES-EXTRA/exebuf/po/LINGUAS 2013-06-25 16:10:56 UTC (rev 84566) +++ trunk/E-MODULES-EXTRA/exebuf/po/LINGUAS 2013-07-02 16:08:07 UTC (rev 84567) @@ -1 +1 @@ -ar de eo es gl it pt sr zh_CN +ar de eo es fr gl it pt sr zh_CN Added: trunk/E-MODULES-EXTRA/exebuf/po/fr.po =================================================================== --- trunk/E-MODULES-EXTRA/exebuf/po/fr.po (rev 0) +++ trunk/E-MODULES-EXTRA/exebuf/po/fr.po 2013-07-02 16:08:07 UTC (rev 84567) @@ -0,0 +1,143 @@ +# French translation for enlightenment +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the enlightenment package. +# FIRST AUTHOR <EMAIL@ADDRESS>, 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: enlightenment\n" +"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2012-12-04 13:32+0100\n" +"PO-Revision-Date: 2013-06-20 07:18+0000\n" +"Last-Translator: Eliovir <Unknown>\n" +"Language-Team: French <fr...@li...>\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-06-21 05:36+0000\n" +"X-Generator: Launchpad (build 16677)\n" + +#: src/exebuf_config.c:50 +msgid "Run Command Settings" +msgstr "Paramètre de la commande de lancement" + +#: src/exebuf_config.c:111 src/exebuf_config.c:196 +msgid "General" +msgstr "Paramètres généraux" + +#: src/exebuf_config.c:112 src/exebuf_config.c:181 +msgid "Maximum Apps to List" +msgstr "Nombre maximal d'applications listées" + +#: src/exebuf_config.c:114 src/exebuf_config.c:119 src/exebuf_config.c:124 +#: src/exebuf_config.c:183 src/exebuf_config.c:188 src/exebuf_config.c:193 +#, c-format +msgid "%1.0f" +msgstr "%1.0f" + +#: src/exebuf_config.c:117 src/exebuf_config.c:186 +msgid "Maximum Exes to List" +msgstr "Nombre maximal d'exécutables listés" + +#: src/exebuf_config.c:122 src/exebuf_config.c:191 +msgid "Maximum History to List" +msgstr "Taille maximale de l'historique affiché" + +#: src/exebuf_config.c:129 src/exebuf_config.c:211 +msgid "Animations" +msgstr "Animations" + +#: src/exebuf_config.c:130 src/exebuf_config.c:201 +msgid "Animate" +msgstr "Animer" + +#: src/exebuf_config.c:204 +msgid "Speed" +msgstr "Vitesse" + +#: src/exebuf_config.c:207 src/exebuf_config.c:238 src/exebuf_config.c:243 +#, c-format +msgid "%1.2f" +msgstr "%1.2f" + +#: src/exebuf_config.c:216 +msgid "Minimum Width" +msgstr "Largeur minimale" + +#: src/exebuf_config.c:218 src/exebuf_config.c:223 src/exebuf_config.c:228 +#: src/exebuf_config.c:233 +#, c-format +msgid "%4.0f" +msgstr "%4.0f" + +#: src/exebuf_config.c:221 +msgid "Minimum Height" +msgstr "Hauteur minimale" + +#: src/exebuf_config.c:226 +msgid "Maximum Width" +msgstr "Largeur maximale" + +#: src/exebuf_config.c:231 +msgid "Maximum Height" +msgstr "Hauteur maximale" + +#: src/exebuf_config.c:236 +msgid "X-Axis Alignment" +msgstr "Alignement horizontal" + +#: src/exebuf_config.c:241 +msgid "Y-Axis Alignment" +msgstr "Alignement vertical" + +#: src/exebuf_config.c:246 +msgid "Geometry" +msgstr "Géométrie" + +#: src/exebuf_config.c:251 +msgid "Command (CTRL+RETURN to utilize)" +msgstr "Commande (CTRL+ENTRÉE pour utiliser)" + +#: src/exebuf_config.c:255 +msgid "Terminal" +msgstr "Console" + +#: src/e_mod_main.c:85 +msgid "" +"Exebuf Module Configuration data needed upgrading. Your old " +"configuration<br> has been wiped and a new set of defaults initialized. " +"This<br>will happen regularly during development, so don't report a<br>bug. " +"This simply means the module needs new configuration<br>data by default for " +"usable functionality that your old<br>configuration simply lacks. This new " +"set of defaults will fix<br>that by adding it in. You can re-configure " +"things now to your<br>liking. Sorry for the inconvenience.<br>" +msgstr "" + +#: src/e_mod_main.c:105 +msgid "" +"Your Exebuf Module configuration is NEWER than the module version. This is " +"very<br>strange. This should not happen unless you downgraded<br>the module " +"or copied the configuration from a place where<br>a newer version of the " +"module was running. This is bad and<br>as a precaution your configuration " +"has been now restored to<br>defaults. Sorry for the inconvenience.<br>" +msgstr "" + +#: src/e_mod_main.c:132 src/e_mod_main.c:160 +msgid "Launch" +msgstr "Lancer" + +#: src/e_mod_main.c:132 src/e_mod_main.c:160 +msgid "Run Command Dialog" +msgstr "Fenêtre de lancement de commande" + +#: src/e_mod_main.c:136 src/e_mod_main.c:139 src/e_mod_main.c:299 +msgid "Run Command" +msgstr "Exécuter une commande" + +#: src/e_mod_main.c:138 +msgid "Advanced" +msgstr "Avancé" + +#: src/e_mod_main.c:249 +msgid "Exebuf Configuration Updated" +msgstr "" Modified: trunk/E-MODULES-EXTRA/execwatch/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/execwatch/module.desktop.in 2013-06-25 16:10:56 UTC (rev 84566) +++ trunk/E-MODULES-EXTRA/execwatch/module.desktop.in 2013-07-02 16:08:07 UTC (rev 84567) @@ -1,13 +1,7 @@ [Desktop Entry] -Type=Link -Name=Execwatch -Name[eo]=KomandAtentilo -Name[de]=Befehlsbeobachtung -Icon=e-module-execwatch -X-Enlightenment-ModuleType=utils Comment=Shows the last state of a periodic executed cmd. Useful as an update checker or for checking if a remote host is available (through ping). -Comment[ru]=Показывает последний результат периодической комманды. Полезен для циклических проверок или проверок доступности другого хоста (через пинг). Comment[cs]=Zobrazuje poslední stav periodicky spouštěného příkazu. Užitečný jako kontrola aktualizací nebo jestli je dostupný vzdálený PC(přes ping). +Comment[de]=Zeigt den letzten Zustand eines periodisch ausgeführten Befehls. Sinnvoll zum Überprüfen auf Aktualisierungen oder auf Verfügbarkeit eines Hosts (mittels Ping). Comment[el]=Εμφανίζει την τελευταία κατάσταση μιας περιοδικά εκτελεσμένης εντολής. Χρήσιμο για τον έλεγχο αν ένας απομακρυσμένος Η/Υ είναι διαθέσιμος (μέσω ping). Comment[eo]=<br>Vidigi la lastan staton de ofte plenumita komando. Utila kiel kontrolilo de ĝisdatigo aŭ por kontroli ĉu fora servilo disponeblas (pere de ping). Comment[es]=Muestra el último estado de un comando ejecutado periódicamente. Útil como comprobador de actualizaciones o para verificar la disponibilidad de un servidor remoto (a través de ping). @@ -16,4 +10,11 @@ Comment[hu]=Egy időszakonként lefuttatott parancs legutóbbi állapotát mutatja meg. Ideális egy frissítéskezelőhöz, vagy mondjuk egy távoli kiszolgáló ellenőrzéséhez. Comment[it]=Mostra l'ultimo stato di un comando eseguito periodicamente. Utile per il controlo di aggiornamenti o per il controllo della disponibilità di un host remoto (tramite ping). Comment[pt]=Mostra o último estado de um comando periódico. Útil como um verificador de atualizações ou para verificar a disponibilidade de um servidor remoto -Comment[de]=Zeigt den letzten Zustand eines periodisch ausgeführten Befehls. Sinnvoll zum Überprüfen auf Aktualisierungen oder auf Verfügbarkeit eines Hosts (mittels Ping). +Comment[ru]=Показывает последний результат периодической комманды. Полезен для циклических проверок или проверок доступности другого хоста (через пинг). +Encoding=UTF-8 +Icon=e-module-execwatch +Name=Execwatch +Name[de]=Befehlsbeobachtung +Name[eo]=KomandAtentilo +Type=Link +X-Enlightenment-ModuleType=utils Modified: trunk/E-MODULES-EXTRA/flame/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/flame/module.desktop.in 2013-06-25 16:10:56 UTC (rev 84566) +++ trunk/E-MODULES-EXTRA/flame/module.desktop.in 2013-07-02 16:08:07 UTC (rev 84567) @@ -1,23 +1,24 @@ [Desktop Entry] -Type=Link +Comment=A module to display flames on the desktop. +Comment[cs]=Modul zobrazujcí plameny na ploše. +Comment[eo]=Vidigi flamojn sur la labortablo. +Comment[es]=Un módulo para visualizar llamas en el escritorio. +Comment[fr]=Un module montrant des flammes sur le bureau. +Comment[gl]=Un módulo para mostrar chamas no escritorio. +Comment[hu]=Egy modul, amellyel lángra tudjuk lobbantani az asztalt. +Comment[it]=Un modulo per visualizzare fiamme sul desktop. +Comment[pt]=Um módulo que exibe chamas na área de trabalho. +Comment[ru]=Модуль показа огня на рабочем столе. +Encoding=UTF-8 +Icon=e-module-flame Name=Flame -Name[ru]=Пламя Name[cs]=Plamen Name[eo]=Flamoj Name[es]=Llama +Name[fr]=Flamme Name[gl]=Chama Name[hu]=Lángoló asztal -Name[fr]=Flamme Name[pt]=Chama -Icon=e-module-flame +Name[ru]=Пламя +Type=Link X-Enlightenment-ModuleType=look -Comment=A module to display flames on the desktop. -Comment[ru]=Модуль показа огня на рабочем столе. -Comment[cs]=Modul zobrazujcí plameny na ploše. -Comment[eo]=Vidigi flamojn sur la labortablo. -Comment[es]=Un módulo para visualizar llamas en el escritorio. -Comment[gl]=Un módulo para mostrar chamas no escritorio. -Comment[hu]=Egy modul, amellyel lángra tudjuk lobbantani az asztalt. -Comment[it]=Un modulo per visualizzare fiamme sul desktop. -Comment[fr]=Un module montrant des flammes sur le bureau. -Comment[pt]=Um módulo que exibe chamas na área de trabalho. Modified: trunk/E-MODULES-EXTRA/flame/po/fr.po =================================================================== --- trunk/E-MODULES-EXTRA/flame/po/fr.po 2013-06-25 16:10:56 UTC (rev 84566) +++ trunk/E-MODULES-EXTRA/flame/po/fr.po 2013-07-02 16:08:07 UTC (rev 84567) @@ -7,14 +7,14 @@ "Project-Id-Version: Flame module\n" "Report-Msgid-Bugs-To: $MSGID_BUGS_ADDRESS\n" "POT-Creation-Date: 2012-12-04 13:32+0100\n" -"PO-Revision-Date: 2012-12-07 09:42+0000\n" -"Last-Translator: batden <Unknown>\n" +"PO-Revision-Date: 2013-06-20 07:27+0000\n" +"Last-Translator: Eliovir <Unknown>\n" "Language-Team: French <pou...@gm...>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-08 05:07+0000\n" -"X-Generator: Launchpad (build 16341)\n" +"X-Launchpad-Export-Date: 2013-06-21 05:36+0000\n" +"X-Generator: Launchpad (build 16677)\n" "X-Poedit-Country: FRANCE\n" "Language: fr\n" "X-Poedit-Language: French\n" @@ -34,7 +34,7 @@ #: src/e_mod_config.c:94 src/e_mod_config.c:177 msgid "Flame Color" -msgstr "Couleur de flamme" +msgstr "Couleur des flammes" #: src/e_mod_config.c:96 msgid "Gold" Modified: trunk/E-MODULES-EXTRA/iiirk/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/iiirk/module.desktop.in 2013-06-25 16:10:56 UTC (rev 84566) +++ trunk/E-MODULES-EXTRA/iiirk/module.desktop.in 2013-07-02 16:08:07 UTC (rev 84567) @@ -1,19 +1,21 @@ [Desktop Entry] -Type=Link -Name=Iiirk -Name[de]=Iiirk-Leiste -Name[eo]=Iiirk -Icon=e-module-iiirk -X-Enlightenment-ModuleType=utils Comment=Act like a taskbar but only for selected applications. -Comment[ru]=Предоставляет функции аналогичные панели задач, только для выбранных приложений. Comment[cs]=Jako taskbar, ale jen pro vybrané aplikace. Comment[de]=Ähnlich zu einer Taskleiste, allerdings nur für ausgewählte Anwendungen +Comment[el]=Λειτουργεί ως taskbar αλλά μόνο για επιλεγμένες εφαρμογές. +Comment[eo]=Simila al taskobreto sed nur por elektitaj aplikaĵoj. Comment[es]=Similar a una barra de tareas pero sólo para las aplicaciones seleccionadas. +Comment[fr]=Similaire à une barre des tâches mais uniquement pour des applications sélectionnées. Comment[gl]=Similar a unha barra de tarefas pero só para os aplicativos seleccionados. Comment[hu]=Olyan mint egy feladatablak, de csak a kijelölt alkalmazásoknak. Comment[it]=Si comporta come una taskbar, ma solo per applicazioni selezionate. -Comment[fr]=Similaire à une barre des tâches mais uniquement pour des applications sélectionnées. -Comment[el]=Λειτουργεί ως taskbar αλλά μόνο για επιλεγμένες εφαρμογές. -Comment[eo]=Simila al taskobreto sed nur por elektitaj aplikaĵoj. Comment[pt]=Atua como uma barra de tarefas mas apenas para as aplicações escolhidas +Comment[ru]=Предоставляет функции аналогичные панели задач, только для выбранных приложений. +Encoding=UTF-8 +Icon=e-module-iiirk +Name=Iiirk +Name[de]=Iiirk-Leiste +Name[eo]=Iiirk +Name[fr]=Iiirk +Type=Link +X-Enlightenment-ModuleType=utils Modified: trunk/E-MODULES-EXTRA/iiirk/po/fr.po =================================================================== --- trunk/E-MODULES-EXTRA/iiirk/po/fr.po 2013-06-25 16:10:56 UTC (rev 84566) +++ trunk/E-MODULES-EXTRA/iiirk/po/fr.po 2013-07-02 16:08:07 UTC (rev 84567) @@ -7,14 +7,14 @@ "Project-Id-Version: Iiirk module\n" "Report-Msgid-Bugs-To: $MSGID_BUGS_ADDRESS\n" "POT-Creation-Date: 2012-12-04 13:32+0100\n" -"PO-Revision-Date: 2012-12-07 13:26+0000\n" -"Last-Translator: batden <Unknown>\n" +"PO-Revision-Date: 2013-06-20 07:19+0000\n" +"Last-Translator: Eliovir <Unknown>\n" "Language-Team: French <pou...@gm...>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-08 05:08+0000\n" -"X-Generator: Launchpad (build 16341)\n" +"X-Launchpad-Export-Date: 2013-06-21 05:36+0000\n" +"X-Generator: Launchpad (build 16677)\n" "X-Poedit-Country: FRANCE\n" "Language: \n" "X-Poedit-Language: French\n" @@ -75,7 +75,7 @@ #: src/e_mod_config.c:131 msgid "Show Icon Label" -msgstr "Montrer l'étiquette de l'icone" +msgstr "Afficher l'étiquette de l'icône" #: src/e_mod_config.c:134 msgid "Display Name" @@ -91,7 +91,7 @@ #: src/e_mod_config.c:140 msgid "Display Icon Name" -msgstr "Afficher le nom de l'icone" +msgstr "Afficher le nom de l'icône" #: src/e_mod_config.c:142 msgid "Display Border Caption" @@ -103,7 +103,7 @@ #: src/e_mod_config.c:167 msgid "Show windows from all screens" -msgstr "Afficher les fenêtres des autres écrans" +msgstr "Afficher les fenêtres de tous les écrans" #: src/e_mod_config.c:172 msgid "Show windows from current screen" @@ -135,12 +135,12 @@ "You requested to delete \"%s\".<br><br>Are you sure you want to delete this " "iiirk source?" msgstr "" -"Vous avez demandé à supprimer « %s ».<br><br>Voulez-vous vraiment supprimer " +"Vous avez demandé de supprimer « %s ».<br><br>Voulez-vous vraiment supprimer " "cette source ?" #: src/e_mod_config.c:245 msgid "Are you sure you want to delete this iiirk source?" -msgstr "Voulez-vous vraiment supprimer cette source ?" +msgstr "Voulez-vous vraiment supprimer cette source ?" #: src/e_int_config_iiirk.c:152 msgid "All Applications" Modified: trunk/E-MODULES-EXTRA/itask/module.desktop.in =================================================================== --- trunk/E-MODULES-EXTRA/itask/module.desktop.in 2013-06-25 16:10:56 UTC (rev 84566) +++ trunk/E-MODULES-EXTRA/itask/module.desktop.in 2013-07-02 16:08:07 UTC (rev 84567) @@ -1,15 +1,16 @@ [Desktop Entry] -Type=Link -Name=ITask -Name[ru]=ITask -Name[de]=ITask -Icon=e-module-itask -X-Enlightenment-ModuleType=utils Comment=<hilight>Itask Module</hilight><br>It will hold all of your open applications for fast switching<br><br>it has three basic functionalities that you dont wanna miss:<br>1. If you click on an icon the corresponding window will be shown, yeah;<br>and if its on another desk, then you will be switched right to it.<br>2. If you drag an icon out of Itask the Window will be shown on the<br>current desktop.<br>3. Drag an icon to a pagers desk to send it there.<br> -Comment[ru]=<hilight>Модуль Itask</hilight>Будет содержать все ваши открытые приложения для быстрого переключения<br><br>Он имеет три основные функции, которые вы не хотите упустить:<br>1. Если Вы кликните на иконку - соответствующее окно будет показано, а если оно находится на другом столе, то Вы будете переключены на тот рабочий стол.<br>2. Если вы перетащите иконку из ITask - окно будет показано на текущем рабочем столе.<br>3. Перетащите иконку на пейджер стола, чтобы отправить ее туда.<br> Comment[de]=<hilight>Modul ITask</hilight><br>Entält alle offenen Anwendungen, damit man schnell zwischen diesen wechseln kann.<br><br>Es enthält drei grundlegende Funktionalitäten, die man unbedingt haben möchte:<br>1. Beim Anklicken eines Icons wird das entsprechende Fenster gezeigt,<br> und. wenn das Fenster auf einem anderen Desktop ist, wird man zum anderen Desktop gebracht.<br>2. Wenn man ein Icon aus ITask heraus zieht, wird das Fenster auf dem aktuellen Desktop gezeigt.<br>3. Zieht man ein Icon auf den Arbeitsflächenumschalter, wird das Fenster auf den entsprechenden Desktop verschoben.<br> Comment[es]=<hilight>Módulo Itask</hilight><br>Este módulo memoriza todas las aplicaciones abiertos para cambiar rápidamente entre ellos.<br><br>Tiene tres funcionalidades básicas:<br>1. Al clicar en un icono, se mostrará la ventana correspondiente;<br>y si está en otro escritorio, entonces se cambiará a él.<br>2. Si arrastra un icono fuera de Itask, la ventana se mostrará en el escritorio actual.<br>3. Arrastre un icono al paginador y se enviará al escritorio que desee.<br> +Comment[fr]=Ce module reçoit les applications ouvertes pour passer rapidement de l'une à l'autre.<br><br>Il offre aussi trois fonctionnalités intéressantes :<br>1) Cliquer sur un icone montre la fenêtre en rapport;<br>si elle est sur un autre bureau vous basculez vers lui.<br>2) Si vous glissez un icone hors de Itask, la fenêtre<br>correspondante s'affiche sur le bureau actuel.<br>3) Glisser un icone sur un bureau du Pager envoie<br>l'application sur ce bureau.<br> Comment[gl]=<hilight>Módulo Itask</hilight><br>Este módulo memoriza tódolos aplicativos abertos para cambiar rapidamente entre eles.<br><br>Ten tres funcionalidades básicas:<br>1. Ó premer nunha icona, amosarase a xanela correspondente;<br>e se está noutro escritorio, entón cambiarase a el.<br>2. Se arrastra unha icona fóra de Itask, a xanela amosarase no escritorio actual.<br>3. Arrastre unha icona ó paxinador e enviarase ó escritorio que desexe.<br> Comment[it]=<hilight>Modulo Itask</hilight><br>Gestirà tutte le applicazioni aperte per scorrerle rapidamente<br><br>Ha tre funzionalità di base imperdibili:<br>1. cliccando su un'icona verrà mostrata la finestra corrispondente,<br> cambiando desktop se la finestra sta su un altro.<br>2. trascinando un'icona fuori da Itask la finestra verrà mostrata<br> sul desktop corrente.<br>3. trascinando un'icona su un pager la si invia ad un altro desktop.<br> -Comment[fr]=Ce module reçoit les applications ouvertes pour passer rapidement de l'une à l'autre.<br><br>Il offre aussi trois fonctionnalités intéressantes :<br>1) Cliquer sur un icone montre la fenêtre en rapport;<br>si elle est sur un autre bureau vous basculez vers lui.<br>2) Si vous glissez un icone hors de Itask, la fenêtre<br>correspondante s'affiche sur le bureau actuel.<br>3) Glisser un icone sur un bureau du Pager envoie<br>l'application sur ce bureau.<br> Comment[pt]=<hilight>Módulo Itask</hilight><br>Este módulo memoriza todas as aplicações ativas para uma troca de aplicações mais rápida.<br><br>Possui três funções:<br>1. Ao clicar num ícone, a janela correspondente será exibida e<br>caso esteja noutro ecrã virtual, a área de trabalho será automaticamente trocada.<br>2. Se arrastar um ícone para fora do Itask, a janela será exibida no ecrã atual.<br>3. Se arrastar um ícone para algum dos ecrã dos paginadores o ícone srá enviado para a área de trabalho correspondente.<br> +Comment[ru]=<hilight>Модуль Itask</hilight>Будет содержать все ваши открытые приложения для быстрого переключения<br><br>Он имеет три основные функции, которые вы не хотите упустить:<br>1. Если Вы кликните на иконку - соответствующее окно будет показано, а если оно находится на другом столе, то Вы будете переключены на тот рабочий стол.<br>2. Если вы перетащите иконку из ITask - окно будет показано на текущ... [truncated message content] |
From: Enlightenment S. <no-...@en...> - 2013-06-25 16:11:07
|
Log: Migrated all the themes but dark to git. Author: tasn Date: 2013-06-25 09:10:56 -0700 (Tue, 25 Jun 2013) New Revision: 84566 Trac: http://trac.enlightenment.org/e/changeset/84566 Removed: trunk/THEMES/23oz/ trunk/THEMES/b_and_w/ trunk/THEMES/blingbling/ trunk/THEMES/darkness/ trunk/THEMES/detour-elm/ trunk/THEMES/detourious/ trunk/THEMES/efenniht/ trunk/THEMES/ewl_b_and_w/ trunk/THEMES/klok/ |
From: Enlightenment S. <no-...@en...> - 2013-06-22 03:16:18
|
Log: bia -> via spelling Author: raster Date: 2013-06-21 20:16:06 -0700 (Fri, 21 Jun 2013) New Revision: 84565 Trac: http://trac.enlightenment.org/e/changeset/84565 Modified: trunk/web/www/p/download/en-body Modified: trunk/web/www/p/download/en-body =================================================================== --- trunk/web/www/p/download/en-body 2013-06-21 01:10:59 UTC (rev 84564) +++ trunk/web/www/p/download/en-body 2013-06-22 03:16:06 UTC (rev 84565) @@ -141,7 +141,7 @@ "http://trac.enlightenment.org/e/wiki/Exquisite">Exquisite</a> </b><em> 1.0.0</em></p><p> Bootsplash program able to render in Framebuffer, or X11 that is - easy to integrate with existing boot setups (sysvinit or systemd) bia + easy to integrate with existing boot setups (sysvinit or systemd) via messaging (pipe or socket) as well as customise look and feel via Edje. </p><p align=right><?php blinkdl("i/dl.png", "DOWNLOAD", |
From: Enlightenment S. <no-...@en...> - 2013-06-21 01:11:09
|
Log: removed GAMES/etypes Author: hermet Date: 2013-06-20 18:10:59 -0700 (Thu, 20 Jun 2013) New Revision: 84564 Trac: http://trac.enlightenment.org/e/changeset/84564 Removed: trunk/GAMES/etypers/ |
From: Enlightenment S. <no-...@en...> - 2013-06-20 19:20:31
|
Log: updating esperanto translations Author: maxerba Date: 2013-06-20 12:20:23 -0700 (Thu, 20 Jun 2013) New Revision: 84563 Trac: http://trac.enlightenment.org/e/changeset/84563 Modified: trunk/E-MODULES-EXTRA/mem/po/eo.po trunk/E-MODULES-EXTRA/screenshot/po/eo.po Modified: trunk/E-MODULES-EXTRA/mem/po/eo.po =================================================================== --- trunk/E-MODULES-EXTRA/mem/po/eo.po 2013-06-18 12:52:49 UTC (rev 84562) +++ trunk/E-MODULES-EXTRA/mem/po/eo.po 2013-06-20 19:20:23 UTC (rev 84563) @@ -5,20 +5,21 @@ msgid "" msgstr "" "Project-Id-Version: eo\n" -"Report-Msgid-Bugs-To: enl...@li...\n" +"Report-Msgid-Bugs-To: $MSGID_BUGS_ADDRESS\n" "POT-Creation-Date: 2012-12-04 13:32+0100\n" -"PO-Revision-Date: 2012-11-26 09:49+0000\n" +"PO-Revision-Date: 2013-06-19 20:04+0000\n" "Last-Translator: Eliovir <Unknown>\n" "Language-Team: Esperanto <tra...@li...>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2012-12-05 05:27+0000\n" -"X-Generator: Launchpad (build 16335)\n" +"X-Launchpad-Export-Date: 2013-06-20 05:26+0000\n" +"X-Generator: Launchpad (build 16673)\n" +"Language: eo\n" #: src/e_mod_config.c:43 msgid "Mem Settings" -msgstr "Agordoj de Memoro" +msgstr "Agordoj de memoro" #: src/e_mod_config.c:92 msgid "General Settings" @@ -26,7 +27,7 @@ #: src/e_mod_config.c:94 msgid "Always Show Text" -msgstr "Ĉiam montri tekson" +msgstr "Ĉiam montri tekston" #: src/e_mod_config.c:96 msgid "Show Text On Mouse Over" Modified: trunk/E-MODULES-EXTRA/screenshot/po/eo.po =================================================================== --- trunk/E-MODULES-EXTRA/screenshot/po/eo.po 2013-06-18 12:52:49 UTC (rev 84562) +++ trunk/E-MODULES-EXTRA/screenshot/po/eo.po 2013-06-20 19:20:23 UTC (rev 84563) @@ -8,13 +8,13 @@ "Project-Id-Version: enlightenment\n" "Report-Msgid-Bugs-To: $MSGID_BUGS_ADDRESS\n" "POT-Creation-Date: 2013-05-22 20:28+0200\n" -"PO-Revision-Date: 2013-01-05 14:04+0000\n" +"PO-Revision-Date: 2013-05-25 15:00+0000\n" "Last-Translator: Eliovir <Unknown>\n" "Language-Team: Esperanto <eo...@li...>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-05-23 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-05-26 04:52+0000\n" "X-Generator: Launchpad (build 16640)\n" "Language: eo\n" @@ -37,7 +37,7 @@ #: src/e_mod_config.c:104 src/e_mod_config.c:185 #, c-format msgid "%1.0f seconds" -msgstr "" +msgstr "%1.0f sekundoj" #: src/e_mod_config.c:109 src/e_mod_config.c:196 src/e_mod_main.c:389 msgid "Capture Mode" |
From: Enlightenment S. <no-...@en...> - 2013-06-18 12:52:59
|
Log: Migrated alarm and cpu modules to git. Author: tasn Date: 2013-06-18 05:52:49 -0700 (Tue, 18 Jun 2013) New Revision: 84562 Trac: http://trac.enlightenment.org/e/changeset/84562 Removed: trunk/E-MODULES-EXTRA/alarm/ trunk/E-MODULES-EXTRA/cpu/ |
From: Enlightenment S. <no-...@en...> - 2013-06-18 09:33:44
|
Log: Migrated equate to git. Author: tasn Date: 2013-06-18 02:33:33 -0700 (Tue, 18 Jun 2013) New Revision: 84561 Trac: http://trac.enlightenment.org/e/changeset/84561 Removed: trunk/PROTO/equate/ |
From: Enlightenment S. <no-...@en...> - 2013-06-18 09:26:34
|
Log: Migrated libeweather to git. Author: tasn Date: 2013-06-18 02:26:25 -0700 (Tue, 18 Jun 2013) New Revision: 84560 Trac: http://trac.enlightenment.org/e/changeset/84560 Removed: trunk/PROTO/libeweather/ |