[EGIT] [core/efl] master 01/01: evas vg: check object changed as well 2

2020-09-16 Thread Shinwoo Kim
hermet pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=e5958965e80724b335fc8b0470d46586e7f29051

commit e5958965e80724b335fc8b0470d46586e7f29051
Author: Shinwoo Kim 
Date:   Thu Sep 17 10:40:24 2020 +0900

evas vg: check object changed as well 2

Summary:
evas cannot render vg object if Efl_Canvas_Vg_Node_Data flag is not
EFL_GFX_CHANGE_FLAG_NONE and Evas_Object_Protected_Data.changed is FALSE,
when vg object marks its node as changed.

Above case could be possible if vg object render_pre is not called, and
only nd->vd->obj->changed is set to false by evas_object_change_reset.

Reviewers: Hermet, jsuya, herb

Reviewed By: Hermet

Subscribers: cedric, #reviewers, #committers

Tags: #efl

Differential Revision: https://phab.enlightenment.org/D12142
---
 src/lib/evas/canvas/efl_canvas_vg_node.c | 10 +-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/src/lib/evas/canvas/efl_canvas_vg_node.c 
b/src/lib/evas/canvas/efl_canvas_vg_node.c
index a076136815..f2bead512f 100644
--- a/src/lib/evas/canvas/efl_canvas_vg_node.c
+++ b/src/lib/evas/canvas/efl_canvas_vg_node.c
@@ -19,7 +19,15 @@ static const Efl_Canvas_Vg_Interpolation 
interpolation_identity = {
 static void
 _node_change(Efl_VG *obj, Efl_Canvas_Vg_Node_Data *nd)
 {
-   if (!nd || nd->flags != EFL_GFX_CHANGE_FLAG_NONE) return;
+   if (!nd) return;
+   if (nd->flags != EFL_GFX_CHANGE_FLAG_NONE)
+ {
+   if ((nd->vd && nd->vd->obj) &&
+   (!nd->vd->obj || !nd->vd->obj->changed))
+ efl_canvas_vg_object_change(nd->vd);
+
+   return;
+ }
nd->flags = EFL_GFX_CHANGE_FLAG_ALL;
 
Eo *p = obj;

-- 




[EGIT] [apps/terminology] master 01/07: Update translation files

2020-09-16 Thread Hosted Weblate
billiob pushed a commit to branch master.

http://git.enlightenment.org/apps/terminology.git/commit/?id=9dfb136c8163c59181932ad14c498767e2181781

commit 9dfb136c8163c59181932ad14c498767e2181781
Author: Hosted Weblate 
Date:   Wed Sep 16 23:34:03 2020 +0200

Update translation files

Updated by "Update LINGUAS file" hook in Weblate.

Co-authored-by: Hosted Weblate 
Translate-URL: https://hosted.weblate.org/projects/terminology/terminology/
Translation: Terminology/Terminology
---
 po/LINGUAS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/po/LINGUAS b/po/LINGUAS
index b74eaa1..a811a25 100644
--- a/po/LINGUAS
+++ b/po/LINGUAS
@@ -1 +1 @@
-ca da de el eo es fi fr hi hr it ko ms nb_NO nl pl sl sr ru tr vi
+ca da de el eo es fi fr hi hr it ko ms nb_NO nl pl ru sl sr tr vi

-- 




[EGIT] [core/enlightenment] master 01/01: tasks: Icon Size / Config Dialogue.

2020-09-16 Thread Alastair Poole
netstar pushed a commit to branch master.

http://git.enlightenment.org/core/enlightenment.git/commit/?id=4ac98d41d47b24f3fda1c22a50d3c43e89250eb5

commit 4ac98d41d47b24f3fda1c22a50d3c43e89250eb5
Author: Alastair Poole 
Date:   Thu Sep 17 00:17:02 2020 +0100

tasks: Icon Size / Config Dialogue.

If "icon only" use the container's dimensions.
Fix config dialogue anomaly.
---
 src/modules/tasks/e_mod_config.c | 2 +-
 src/modules/tasks/e_mod_main.c   | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/modules/tasks/e_mod_config.c b/src/modules/tasks/e_mod_config.c
index 7a32d301f..a0e1c2fc5 100644
--- a/src/modules/tasks/e_mod_config.c
+++ b/src/modules/tasks/e_mod_config.c
@@ -113,7 +113,7 @@ _basic_create_widgets(E_Config_Dialog *cfd EINA_UNUSED, 
Evas *evas, E_Config_Dia
 
e_widget_framelist_object_append(of, ob);
of = e_widget_framelist_add(evas, _("Preview"), 0);
-   cfdata->icon = ob = e_widget_check_add(evas, _("Show"),
+   ob = e_widget_check_add(evas, _("Show"),
&(cfdata->preview));
e_widget_framelist_object_append(of, ob);
ow = e_widget_label_add(evas, _("Preview Size"));
diff --git a/src/modules/tasks/e_mod_main.c b/src/modules/tasks/e_mod_main.c
index 5657ac9e9..9eb5ba9d1 100644
--- a/src/modules/tasks/e_mod_main.c
+++ b/src/modules/tasks/e_mod_main.c
@@ -439,10 +439,12 @@ _tasks_refill(Tasks *tasks)
 if (tasks->horizontal)
   {
  if (w < tasks->config->minw) w = tasks->config->minw;
+ if (tasks->config->icon_only) w = h;
   }
 else
   {
  if (h < tasks->config->minh) h = tasks->config->minh;
+ if (tasks->config->icon_only) h = w;
   }
 if (!tasks->gcc->resizable)
   {

-- 




[EGIT] [apps/terminology] master 01/02: options_behavior: improve translation

2020-09-16 Thread Boris Faure
billiob pushed a commit to branch master.

http://git.enlightenment.org/apps/terminology.git/commit/?id=e3bc37ec375a80ee7ff51375acc41bf665aa921b

commit e3bc37ec375a80ee7ff51375acc41bf665aa921b
Author: Boris Faure 
Date:   Wed Sep 16 23:38:43 2020 +0200

options_behavior: improve translation
---
 src/bin/options_behavior.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/bin/options_behavior.c b/src/bin/options_behavior.c
index 8d91f65..48e86bf 100644
--- a/src/bin/options_behavior.c
+++ b/src/bin/options_behavior.c
@@ -519,9 +519,9 @@ options_behavior(Evas_Object *opbox, Evas_Object *term)
evas_object_size_hint_weight_set(o, 0.0, 0.0);
evas_object_size_hint_align_set(o, 0.0, 0.5);
tooltip = _("Set the time of the animation that"
-   "takes places on tab switches,"
-   "be them by key binding, mouse"
-   "wheel or tabs panel mouse move");
+   "takes places during tab switches,"
+   "be those done due to key bindings or "
+   "mouse wheel over the tabs panel");
elm_object_tooltip_text_set(o, tooltip);
elm_object_text_set(o, _("Tab zoom/switch animation time:"));
elm_box_pack_end(bx, o);

-- 




[EGIT] [apps/terminology] master 07/07: Translated using Weblate (Norwegian Bokmål)

2020-09-16 Thread Allan Nordhøy
billiob pushed a commit to branch master.

http://git.enlightenment.org/apps/terminology.git/commit/?id=7435052c10748d9aca1b38ab116ad55d341edf8b

commit 7435052c10748d9aca1b38ab116ad55d341edf8b
Author: Allan Nordhøy 
Date:   Wed Sep 16 23:34:07 2020 +0200

Translated using Weblate (Norwegian Bokmål)

Currently translated at 69.7% (171 of 245 strings)

Translated using Weblate (Norwegian Bokmål)

Currently translated at 53.8% (132 of 245 strings)

Co-authored-by: Allan Nordhøy 
Translate-URL: 
https://hosted.weblate.org/projects/terminology/terminology/nb_NO/
Translation: Terminology/Terminology
---
 po/nb_NO.po | 172 ++--
 1 file changed, 98 insertions(+), 74 deletions(-)

diff --git a/po/nb_NO.po b/po/nb_NO.po
index a52218e..960f805 100644
--- a/po/nb_NO.po
+++ b/po/nb_NO.po
@@ -7,7 +7,7 @@ msgstr ""
 "Project-Id-Version: terminology\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-04-12 00:15+0200\n"
-"PO-Revision-Date: 2020-09-15 19:51+\n"
+"PO-Revision-Date: 2020-09-16 21:34+\n"
 "Last-Translator: Allan Nordhøy \n"
 "Language-Team: Norwegian Bokmål \n"
@@ -44,20 +44,20 @@ msgstr "Nettadresse (alle):"
 
 #: src/bin/options_helpers.c:352
 msgid "Local (Images):"
-msgstr ""
+msgstr "Lokale (bilder):"
 
 #: src/bin/options_helpers.c:377
 msgid "Local (Video):"
-msgstr ""
+msgstr "Lokal (video):"
 
 #: src/bin/options_helpers.c:402
 msgid "Local (All):"
-msgstr ""
+msgstr "Lokalt (alt):"
 
 #: src/bin/termio.c:350
-#, c-format
+#, c-format, fuzzy
 msgid "Could not get working directory of pid %i: %s"
-msgstr ""
+msgstr "Kunne ikke hente arbeidsområde for PID %i: %s"
 
 #: src/bin/termio.c:365
 #, c-format
@@ -94,8 +94,9 @@ msgid "Open as URL"
 msgstr "Åpne som nettadresse"
 
 #: src/bin/termio.c:3975
+#, fuzzy
 msgid "Could not allocate termpty"
-msgstr ""
+msgstr "Kunne ikke tildele «termpty»"
 
 #: src/bin/options_keys.c:66
 msgid "Ctrl+"
@@ -131,11 +132,11 @@ msgstr "Tast inn sekvens"
 
 #: src/bin/options_keys.c:385
 msgid "Key Bindings"
-msgstr ""
+msgstr "Hurtigtaster"
 
 #: src/bin/options_keys.c:457
 msgid "Reset bindings"
-msgstr ""
+msgstr "Tilbakestill hurtigtaster"
 
 #: src/bin/options_background.c:163
 msgid "None"
@@ -158,12 +159,14 @@ msgid "Background"
 msgstr "Bakgrunn"
 
 #: src/bin/options_background.c:584
+#, fuzzy
 msgid "Shine:"
-msgstr ""
+msgstr "Gjenskinn:"
 
 #: src/bin/options_background.c:608 src/bin/options_behavior.c:656
+#, fuzzy
 msgid "Translucent"
-msgstr ""
+msgstr "Gjennomsiktig"
 
 #: src/bin/options_background.c:619 src/bin/options_background.c:620
 #, c-format
@@ -187,8 +190,9 @@ msgid "Other"
 msgstr "Annet"
 
 #: src/bin/options_background.c:693
+#, fuzzy
 msgid "Click on a picture to use it as background"
-msgstr ""
+msgstr "Klikk for å bruke som bakgrunnsbilde"
 
 #: src/bin/options_elm.c:109 src/bin/options.c:228
 msgid "Toolkit"
@@ -201,6 +205,9 @@ msgid ""
 "toolkit configuration settings can be accessed by running %s."
 msgstr ""
+"Terminology bruker elementary-"
+"verktøysettet.Oppsett av verktøyssettsinnstillinger får du ved å kjøre "
+"%s."
 
 #: src/bin/options_elm.c:134
 #, c-format
@@ -214,13 +221,15 @@ msgstr "Størrelse"
 
 #: src/bin/options_elm.c:172 src/bin/win.c:410
 msgid "Select preferred size so that this text is readable."
-msgstr ""
+msgstr "Velg foretrukken størrelse som gjør teksten lesbar."
 
 #: src/bin/options_elm.c:179
 msgid ""
 "The scale configuration can also be changed through elementary's configuration panel."
 msgstr ""
+"Størrelsesoppsett kan også endres gjennom elementary sitt "
+"oppsettspanel."
 
 #: src/bin/options_theme.c:154 src/bin/options.c:222
 msgid "Theme"
@@ -239,7 +248,7 @@ msgstr "%'d linjer"
 #: src/bin/options_behavior.c:105
 #, c-format
 msgid "Scrollback (current memory usage: %'.2f%cB):"
-msgstr ""
+msgstr "Tilbakerullingsminne (nåværende minnebruk: %'.2f%cB):"
 
 #: src/bin/options_behavior.c:281
 msgid "Default cursor:"
@@ -247,27 +256,27 @@ msgstr "Forvalgt peker:"
 
 #: src/bin/options_behavior.c:290
 msgid "Blinking Block"
-msgstr ""
+msgstr "Blinkende tekstblokk"
 
 #: src/bin/options_behavior.c:308
 msgid "Steady Block"
-msgstr ""
+msgstr "Fast tekstblokk"
 
 #: src/bin/options_behavior.c:327
 msgid "Blinking Underline"
-msgstr ""
+msgstr "Blinkende understrek"
 
 #: src/bin/options_behavior.c:346
 msgid "Steady Underline"
-msgstr ""
+msgstr "Fast underlinje"
 
 #: src/bin/options_behavior.c:365
 msgid "Blinking Bar"
-msgstr ""
+msgstr "Blinkende felt"
 
 #: src/bin/options_behavior.c:384
 msgid "Steady Bar"
-msgstr ""
+msgstr "Fast felt"
 
 #: src/bin/options_behavior.c:423 src/bin/options.c:220
 msgid "Behavior"
@@ -279,7 +288,7 @@ msgstr "Rull til bunnen av nytt innhold"
 
 #: src/bin/options_behavior.c:467
 msgid "Scroll to bottom when a key is pressed"
-msgstr ""
+msgstr "Rull til bunnen når en tast trykkes"
 
 #: 

[EGIT] [apps/terminology] master 03/07: Translated using Weblate (Spanish)

2020-09-16 Thread Adolfo Jayme Barrientos
billiob pushed a commit to branch master.

http://git.enlightenment.org/apps/terminology.git/commit/?id=5dfbe51d147cfd667bce7fe7505ec4e024fdc8e8

commit 5dfbe51d147cfd667bce7fe7505ec4e024fdc8e8
Author: Adolfo Jayme Barrientos 
Date:   Wed Sep 16 23:34:04 2020 +0200

Translated using Weblate (Spanish)

Currently translated at 64.6% (148 of 229 strings)

Co-authored-by: Adolfo Jayme Barrientos 
Translate-URL: 
https://hosted.weblate.org/projects/terminology/terminology/es/
Translation: Terminology/Terminology
---
 po/es.po | 20 ++--
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/po/es.po b/po/es.po
index 272e083..718b2ae 100644
--- a/po/es.po
+++ b/po/es.po
@@ -9,7 +9,7 @@ msgstr ""
 "Project-Id-Version: terminology 0.8.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-04-12 00:15+0200\n"
-"PO-Revision-Date: 2020-09-15 19:51+\n"
+"PO-Revision-Date: 2020-09-16 20:34+\n"
 "Last-Translator: Adolfo Jayme Barrientos \n"
 "Language-Team: Spanish \n"
@@ -56,7 +56,7 @@ msgstr "Acerca de"
 
 #: src/bin/controls.c:455
 msgid "Grouped input"
-msgstr ""
+msgstr "Entrada agrupada"
 
 #: src/bin/controls.c:467
 msgid "Close Terminal"
@@ -84,15 +84,15 @@ msgstr "Desplazar una línea hacia abajo"
 
 #: src/bin/keyin.c:660
 msgid "Go to the top of the backlog"
-msgstr ""
+msgstr "Ir al principio del historial de desplazamiento"
 
 #: src/bin/keyin.c:661
 msgid "Reset scroll"
-msgstr ""
+msgstr "Restablecer desplazamiento"
 
 #: src/bin/keyin.c:663
 msgid "Copy/Paste"
-msgstr "Copiar/Pegar"
+msgstr "Copiar/pegar"
 
 #: src/bin/keyin.c:664
 msgid "Copy selection to Primary buffer"
@@ -206,7 +206,7 @@ msgstr "Cambiar a la pestaña 10"
 
 #: src/bin/keyin.c:691
 msgid "Change title"
-msgstr ""
+msgstr "Cambiar título"
 
 #: src/bin/termio.c:3975
 msgid "Could not allocate termpty"
@@ -394,7 +394,7 @@ msgstr "TERM= 'xterm-256 colores' en lugar de 'xterm'"
 
 #: src/bin/main.c:498
 msgid "Set scaling factor"
-msgstr ""
+msgstr "Establecer factor de escala"
 
 #: src/bin/main.c:500
 #, fuzzy
@@ -403,7 +403,7 @@ msgstr "Resaltar enlaces"
 
 #: src/bin/main.c:502
 msgid "Do not display wizard on start up"
-msgstr ""
+msgstr "No mostrar el asistente al iniciar"
 
 #: src/bin/main.c:528
 #, fuzzy
@@ -482,7 +482,7 @@ msgstr "Fondo"
 
 #: src/bin/options_background.c:584
 msgid "Shine:"
-msgstr ""
+msgstr "Lustre:"
 
 #: src/bin/options_background.c:608
 msgid "Translucent"
@@ -612,7 +612,7 @@ msgstr "Desplazar abajo al pulsar una tecla"
 
 #: src/bin/options_behavior.c:389
 msgid "React to key presses"
-msgstr "Reaccionar al pulsar una tecla"
+msgstr "Reaccionar al presionar teclas"
 
 #: src/bin/options_behavior.c:396
 msgid "Audio Support for key presses DISABLED!"

-- 




[EGIT] [apps/terminology] master 06/07: Translated using Weblate (Russian)

2020-09-16 Thread Arthur Nikitenko
billiob pushed a commit to branch master.

http://git.enlightenment.org/apps/terminology.git/commit/?id=c57757c5f8d560d2decf8171da47f753199cbc0a

commit c57757c5f8d560d2decf8171da47f753199cbc0a
Author: Arthur Nikitenko 
Date:   Wed Sep 16 23:34:06 2020 +0200

Translated using Weblate (Russian)

Currently translated at 87.7% (215 of 245 strings)

Co-authored-by: Arthur Nikitenko 
Translate-URL: 
https://hosted.weblate.org/projects/terminology/terminology/ru/
Translation: Terminology/Terminology
---
 po/ru.po | 444 +--
 1 file changed, 234 insertions(+), 210 deletions(-)

diff --git a/po/ru.po b/po/ru.po
index cfb459b..5e229e0 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -7,13 +7,17 @@ msgstr ""
 "Project-Id-Version: terminology\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-04-12 00:15+0200\n"
-"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
-"Last-Translator: Automatically generated\n"
-"Language-Team: none\n"
+"PO-Revision-Date: 2020-09-16 20:34+\n"
+"Last-Translator: Arthur Nikitenko \n"
+"Language-Team: Russian \n"
 "Language: ru\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"X-Generator: Weblate 4.3-dev\n"
 
 #: src/bin/options_helpers.c:193 src/bin/options.c:227
 msgid "Helpers"
@@ -21,7 +25,7 @@ msgstr ""
 
 #: src/bin/options_helpers.c:206
 msgid "Inline if possible"
-msgstr ""
+msgstr "Встроить при возможности"
 
 #: src/bin/options_helpers.c:236
 msgid "E-mail:"
@@ -29,66 +33,66 @@ msgstr ""
 
 #: src/bin/options_helpers.c:269
 msgid "URL (Images):"
-msgstr ""
+msgstr "URL (Изображения):"
 
 #: src/bin/options_helpers.c:294
 msgid "URL (Video):"
-msgstr ""
+msgstr "URL (Видео):"
 
 #: src/bin/options_helpers.c:319
 msgid "URL (All):"
-msgstr ""
+msgstr "URL (Все):"
 
 #: src/bin/options_helpers.c:352
 msgid "Local (Images):"
-msgstr ""
+msgstr "Локальные (Изображения):"
 
 #: src/bin/options_helpers.c:377
 msgid "Local (Video):"
-msgstr ""
+msgstr "Локальные (Видео):"
 
 #: src/bin/options_helpers.c:402
 msgid "Local (All):"
-msgstr ""
+msgstr "Локальные (Все):"
 
 #: src/bin/termio.c:350
 #, c-format
 msgid "Could not get working directory of pid %i: %s"
-msgstr ""
+msgstr "Невозможно получить рабочий каталог процесса %i: %s"
 
 #: src/bin/termio.c:365
 #, c-format
 msgid "Could not load working directory %s: %s"
-msgstr ""
+msgstr "Невозможно загрузить рабочий каталог %s: %s"
 
 #: src/bin/termio.c:1079
 #, c-format
 msgid "unsupported selection format '%s'"
-msgstr ""
+msgstr "неподдерживаемый формат выделения '%s'"
 
 #: src/bin/termio.c:1172
 msgid "Preview"
-msgstr ""
+msgstr "Предпросмотр"
 
 #: src/bin/termio.c:1175
 msgid "Open"
-msgstr ""
+msgstr "Открыть"
 
 #: src/bin/termio.c:1182
 msgid "Copy relative path"
-msgstr ""
+msgstr "Копировать относительный путь"
 
 #: src/bin/termio.c:1184
 msgid "Copy full path"
-msgstr ""
+msgstr "Копировать абсолютный путь"
 
 #: src/bin/termio.c:1189 src/bin/termio.c:2554 src/bin/controls.c:424
 msgid "Copy"
-msgstr ""
+msgstr "Копировать"
 
 #: src/bin/termio.c:2556
 msgid "Open as URL"
-msgstr ""
+msgstr "Открыть как URL"
 
 #: src/bin/termio.c:3975
 msgid "Could not allocate termpty"
@@ -120,23 +124,23 @@ msgstr ""
 
 #: src/bin/options_keys.c:82
 msgid "Delete"
-msgstr ""
+msgstr "Удалить"
 
 #: src/bin/options_keys.c:269
 msgid "Please press key sequence"
-msgstr ""
+msgstr "Пожалуйста, нажмите комбинацию клавиш"
 
 #: src/bin/options_keys.c:385
 msgid "Key Bindings"
-msgstr ""
+msgstr "Привязки клавиш"
 
 #: src/bin/options_keys.c:457
 msgid "Reset bindings"
-msgstr ""
+msgstr "Сбросить привязку клавиш"
 
 #: src/bin/options_background.c:163
 msgid "None"
-msgstr ""
+msgstr "Нет"
 
 #: src/bin/options_background.c:498
 msgid "Source file is target file"
@@ -144,23 +148,23 @@ msgstr ""
 
 #: src/bin/options_background.c:511
 msgid "Picture imported"
-msgstr ""
+msgstr "Изображение импортировано"
 
 #: src/bin/options_background.c:516
 msgid "Failed"
-msgstr ""
+msgstr "Ошибка"
 
 #: src/bin/options_background.c:568 src/bin/options.c:223
 msgid "Background"
-msgstr ""
+msgstr "Фон"
 
 #: src/bin/options_background.c:584
 msgid "Shine:"
-msgstr ""
+msgstr "Свечение:"
 
 #: src/bin/options_background.c:608 src/bin/options_behavior.c:656
 msgid "Translucent"
-msgstr ""
+msgstr "Прозрачность"
 
 #: src/bin/options_background.c:619 src/bin/options_background.c:620
 #, c-format
@@ -169,23 +173,23 @@ msgstr ""
 
 #: src/bin/options_background.c:639
 msgid "Select Path"
-msgstr ""
+msgstr "Выбрать путь"
 
 #: src/bin/options_background.c:645
 msgid "System"
-msgstr ""
+msgstr "Системный"
 
 #: src/bin/options_background.c:648
 msgid "User"
-msgstr ""
+msgstr "Пользовательский"
 
 #: 

[EGIT] [apps/terminology] master 05/07: Translated using Weblate (Croatian)

2020-09-16 Thread Boris Faure
billiob pushed a commit to branch master.

http://git.enlightenment.org/apps/terminology.git/commit/?id=41c528a6188e212cb519866fff55c7a04a71ca39

commit 41c528a6188e212cb519866fff55c7a04a71ca39
Author: Boris Faure 
Date:   Wed Sep 16 23:34:06 2020 +0200

Translated using Weblate (Croatian)

Currently translated at 80.3% (196 of 244 strings)

Translated using Weblate (French)

Currently translated at 100.0% (244 of 244 strings)

Translated using Weblate (Spanish)

Currently translated at 64.6% (148 of 229 strings)

Translated using Weblate (Catalan)

Currently translated at 91.0% (182 of 200 strings)

Translated using Weblate (French)

Currently translated at 100.0% (244 of 244 strings)

Co-authored-by: Boris Faure 
Translate-URL: 
https://hosted.weblate.org/projects/terminology/terminology/ca/
Translate-URL: 
https://hosted.weblate.org/projects/terminology/terminology/es/
Translate-URL: 
https://hosted.weblate.org/projects/terminology/terminology/fr/
Translate-URL: 
https://hosted.weblate.org/projects/terminology/terminology/hr/
Translation: Terminology/Terminology
---
 po/ca.po | 17 -
 po/es.po |  8 
 po/fr.po | 17 +++--
 po/hr.po | 17 +
 4 files changed, 28 insertions(+), 31 deletions(-)

diff --git a/po/ca.po b/po/ca.po
index 975768c..b910cc2 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -8,8 +8,8 @@ msgstr ""
 "Project-Id-Version: enlightenment\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-04-12 00:15+0200\n"
-"PO-Revision-Date: 2020-09-15 19:51+\n"
-"Last-Translator: Xavi Artigas \n"
+"PO-Revision-Date: 2020-09-16 21:34+\n"
+"Last-Translator: Boris Faure \n"
 "Language-Team: Catalan \n"
 "Language: ca\n"
@@ -24,7 +24,7 @@ msgstr ""
 #: src/bin/termio.c:1224
 #, fuzzy, c-format
 msgid "Copy '%s'"
-msgstr "Còpia"
+msgstr "Còpia '%s'"
 
 #: src/bin/about.c:134 src/bin/about.c:209 src/bin/termio.c:1286
 msgid "Open"
@@ -407,10 +407,11 @@ msgid "(C) 2012-%d Carsten Haitzler and others"
 msgstr "(C) 2012-%d Carsten Haitzler i altres"
 
 #: src/bin/main.c:448
+#, fuzzy
 msgid "Terminal emulator written with Enlightenment Foundation Libraries"
 msgstr ""
-"L'emulador de terminal ha estat escrit amb les les biblioteques "
-"d'Enlightenment Foundation"
+"L'emulador de terminal ha estat escrit amb les biblioteques d'Enlightenment "
+"Foundation"
 
 #: src/bin/main.c:452
 msgid "Command to execute. Defaults to $SHELL (or passwd shell or /bin/sh)"
@@ -710,9 +711,8 @@ msgid "Focus split under the Mouse"
 msgstr "Divisió de focus sota el ratolí"
 
 #: src/bin/options_mouse.c:204
-#, fuzzy
 msgid "Active Links:"
-msgstr "Enllaços actius"
+msgstr "Enllaços Actius:"
 
 #: src/bin/keyin.c:689
 msgid "Change title"
@@ -850,8 +850,6 @@ msgstr "No s'ha pogut canviar el directori actual a '%s': 
%s"
 #, c-format
 msgid "Could not find theme: file=%s group=%s error='%s', trying default theme"
 msgstr ""
-"La escala pot ser canviada en el menú de Configuració (botó dret al terminal)"
-" →  Eines, or executant la comanda elementary_config"
 
 #: src/bin/theme.c:82 src/bin/theme.c:117
 #, c-format
@@ -887,6 +885,7 @@ msgid "Cancel"
 msgstr "Cancel·la"
 
 #: src/bin/win.c:7386
+#, fuzzy
 msgid "Couldn't find terminology theme! Forgot 'ninja install'?"
 msgstr ""
 "No es pot trobar el tema de terminology! Potser heu oblidat fer un 'ninja "
diff --git a/po/es.po b/po/es.po
index 718b2ae..1dccb75 100644
--- a/po/es.po
+++ b/po/es.po
@@ -9,8 +9,8 @@ msgstr ""
 "Project-Id-Version: terminology 0.8.0\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-04-12 00:15+0200\n"
-"PO-Revision-Date: 2020-09-16 20:34+\n"
-"Last-Translator: Adolfo Jayme Barrientos \n"
+"PO-Revision-Date: 2020-09-16 21:34+\n"
+"Last-Translator: Boris Faure \n"
 "Language-Team: Spanish \n"
 "Language: es\n"
@@ -552,7 +552,7 @@ msgstr ""
 #: src/bin/options_behavior.c:217
 #, fuzzy
 msgid "Default cursor:"
-msgstr "Predeterminado"
+msgstr "Predeterminado:"
 
 #: src/bin/options_behavior.c:226
 msgid "Blinking Block"
@@ -870,7 +870,7 @@ msgstr ""
 #: src/bin/options_mouse.c:204
 #, fuzzy
 msgid "Active Links:"
-msgstr "Enlaces activos"
+msgstr "Enlaces activos:"
 
 #: src/bin/options_mouse.c:211
 #, fuzzy
diff --git a/po/fr.po b/po/fr.po
index 404533e..ce69a36 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -9,8 +9,8 @@ msgstr ""
 "Project-Id-Version: terminology 0.6.99\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-09-15 20:44+0200\n"
-"PO-Revision-Date: 2020-09-16 20:34+\n"
-"Last-Translator: Philippe Jean Guillaumie \n"
+"PO-Revision-Date: 2020-09-16 21:34+\n"
+"Last-Translator: Boris Faure \n"
 "Language-Team: French \n"
 "Language: fr\n"
@@ -23,9 +23,9 @@ msgstr ""
 
 

[EGIT] [apps/terminology] master 04/07: Translated using Weblate (French)

2020-09-16 Thread Philippe Jean Guillaumie
billiob pushed a commit to branch master.

http://git.enlightenment.org/apps/terminology.git/commit/?id=43fbbfd7c9d4844080a46251901928891fa6c735

commit 43fbbfd7c9d4844080a46251901928891fa6c735
Author: Philippe Jean Guillaumie 
Date:   Wed Sep 16 23:34:05 2020 +0200

Translated using Weblate (French)

Currently translated at 100.0% (244 of 244 strings)

Co-authored-by: Philippe Jean Guillaumie 
Translate-URL: 
https://hosted.weblate.org/projects/terminology/terminology/fr/
Translation: Terminology/Terminology
---
 po/fr.po | 71 
 1 file changed, 18 insertions(+), 53 deletions(-)

diff --git a/po/fr.po b/po/fr.po
index eaee1e3..404533e 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -10,7 +10,7 @@ msgstr ""
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-09-15 20:44+0200\n"
 "PO-Revision-Date: 2020-09-16 20:34+\n"
-"Last-Translator: J. Lavoie \n"
+"Last-Translator: Philippe Jean Guillaumie \n"
 "Language-Team: French \n"
 "Language: fr\n"
@@ -33,11 +33,11 @@ msgstr "Ouvrir"
 
 #: src/bin/about.c:273
 msgid "Twitter: @_Terminology_"
-msgstr ""
+msgstr "Twitter : @_Terminology_"
 
 #: src/bin/about.c:275
 msgid "Youtube channel"
-msgstr ""
+msgstr "Chaîne Youtube"
 
 #: src/bin/about.c:289
 #, c-format
@@ -104,9 +104,9 @@ msgid "Close Terminal"
 msgstr "Fermer le terminal"
 
 #: src/bin/gravatar.c:121 src/bin/main.c:876 src/bin/miniview.c:41
-#, fuzzy, c-format
+#, c-format
 msgid "Could not create logging domain '%s'"
-msgstr "Impossible de créer le domaine de journalisation « %s »"
+msgstr "IImpossible de créer le domaine de connexion « %s »"
 
 #: src/bin/keyin.c:655
 msgid "Scrolling"
@@ -286,19 +286,17 @@ msgstr "(Dés)Activer le mode plein écran"
 
 #: src/bin/keyin.c:705
 msgid "Display the history miniview"
-msgstr "Afficher la mini-vue"
+msgstr "Afficher la mini-vue de l'historique"
 
 #: src/bin/keyin.c:706
 msgid "Display the command box"
 msgstr "Afficher la boîte de commande"
 
 #: src/bin/main.c:387 src/bin/main.c:581
-#, fuzzy
 msgid "Could not create window"
 msgstr "Impossible de créer une fenêtre"
 
 #: src/bin/main.c:406 src/bin/main.c:592
-#, fuzzy
 msgid "Could not create terminal widget"
 msgstr "Impossible de créer le widget du terminal"
 
@@ -318,52 +316,42 @@ msgid "Command to execute. Defaults to $SHELL (or passwd 
shell or /bin/sh)"
 msgstr "Commande à exécuter. $SHELL par défaut (ou passwd shell ou /bin/sh)"
 
 #: src/bin/main.c:449
-#, fuzzy
 msgid "Change to directory for execution of terminal command"
 msgstr "Déplacement vers le répertoire pour exécuter la commande du terminal"
 
 #: src/bin/main.c:451
-#, fuzzy
 msgid "Use the named edje theme or path to theme file"
 msgstr "Utiliser le thème Edje fourni ou le chemin vers le fichier de thème"
 
 #: src/bin/main.c:453
-#, fuzzy
 msgid "Use the named file as a background wallpaper"
 msgstr "Utiliser le fichier fourni comme fond d'écran"
 
 #: src/bin/main.c:455
-#, fuzzy
 msgid "Terminal geometry to use (eg 80x24 or 80x24+50+20 etc.)"
 msgstr "Dimensions du terminal à utiliser (p. ex. 80x24 ou 80x24+50+20, etc.)"
 
 #: src/bin/main.c:457
-#, fuzzy
 msgid "Set window name"
 msgstr "Définir le nom de la fenêtre"
 
 #: src/bin/main.c:459
-#, fuzzy
 msgid "Set window role"
 msgstr "Définir le rôle de la fenêtre"
 
 #: src/bin/main.c:461
-#, fuzzy
 msgid "Set window title"
 msgstr "Définir le titre de la fenêtre"
 
 #: src/bin/main.c:463
-#, fuzzy
 msgid "Set icon name"
 msgstr "Définir le nom de l'icône"
 
 #: src/bin/main.c:465
-#, fuzzy
 msgid "Set font (NAME/SIZE for scalable, NAME for bitmap"
 msgstr "Définir la police (NOM / TAILLE si variable, NOM pour bitmap)"
 
 #: src/bin/main.c:467
-#, fuzzy
 msgid ""
 "Split the terminal window. 'v' for vertical and 'h' for horizontal. Can be "
 "used multiple times. eg -S vhvv or --split hv More description available on "
@@ -374,32 +362,26 @@ msgstr ""
 "hv. Voir la page de manuel"
 
 #: src/bin/main.c:472
-#, fuzzy
 msgid "Run the shell as a login shell"
 msgstr "Exécuter le shell en tant que shell de connexion"
 
 #: src/bin/main.c:474
-#, fuzzy
 msgid "Set mute mode for video playback"
 msgstr "Mode muet pour la lecture vidéo"
 
 #: src/bin/main.c:476
-#, fuzzy
 msgid "Set cursor blink mode"
 msgstr "Mode de curseur clignotant"
 
 #: src/bin/main.c:478
-#, fuzzy
 msgid "Set visual bell mode"
 msgstr "Mode de sonnette visuelle"
 
 #: src/bin/main.c:480
-#, fuzzy
 msgid "Go into the fullscreen mode from the start"
 msgstr "Lancer en mode plein écran"
 
 #: src/bin/main.c:482
-#, fuzzy
 msgid "Go into an iconic state from the start"
 msgstr "Lancer en mode iconifié"
 
@@ -419,72 +401,58 @@ msgid "Become maximized from the start"
 msgstr "Transformer en fenêtre maximisée au lancement"
 
 #: src/bin/main.c:490
-#, fuzzy
 msgid "Terminology is run without a window manager"
 msgstr "Terminology s'exécute sans gestionnaire de 

[EGIT] [apps/terminology] master 02/07: Translated using Weblate (Italian)

2020-09-16 Thread J. Lavoie
billiob pushed a commit to branch master.

http://git.enlightenment.org/apps/terminology.git/commit/?id=4f88b06e4d0c030b1347844cda8b61cf6ca51d6f

commit 4f88b06e4d0c030b1347844cda8b61cf6ca51d6f
Author: J. Lavoie 
Date:   Wed Sep 16 23:34:04 2020 +0200

Translated using Weblate (Italian)

Currently translated at 82.6% (205 of 248 strings)

Translated using Weblate (French)

Currently translated at 100.0% (244 of 244 strings)

Translated using Weblate (German)

Currently translated at 82.3% (201 of 244 strings)

Co-authored-by: J. Lavoie 
Translate-URL: 
https://hosted.weblate.org/projects/terminology/terminology/de/
Translate-URL: 
https://hosted.weblate.org/projects/terminology/terminology/fr/
Translate-URL: 
https://hosted.weblate.org/projects/terminology/terminology/it/
Translation: Terminology/Terminology
---
 po/de.po | 18 --
 po/fr.po |  6 +++---
 po/it.po | 22 ++
 3 files changed, 21 insertions(+), 25 deletions(-)

diff --git a/po/de.po b/po/de.po
index 6ebe3c9..7239a85 100644
--- a/po/de.po
+++ b/po/de.po
@@ -10,8 +10,8 @@ msgstr ""
 "Project-Id-Version: terminology\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-04-12 00:15+0200\n"
-"PO-Revision-Date: 2020-09-15 19:51+\n"
-"Last-Translator: Marcel Hollerbach \n"
+"PO-Revision-Date: 2020-09-16 20:34+\n"
+"Last-Translator: J. Lavoie \n"
 "Language-Team: German \n"
 "Language: de\n"
@@ -24,9 +24,9 @@ msgstr ""
 
 #: src/bin/about.c:129 src/bin/about.c:204 src/bin/termio.c:1215
 #: src/bin/termio.c:1224
-#, fuzzy, c-format
+#, c-format
 msgid "Copy '%s'"
-msgstr "Kopieren"
+msgstr "Copia «%s»"
 
 #: src/bin/about.c:134 src/bin/about.c:209 src/bin/termio.c:1286
 msgid "Open"
@@ -34,11 +34,11 @@ msgstr "Öffnen"
 
 #: src/bin/about.c:273
 msgid "Twitter: @_Terminology_"
-msgstr ""
+msgstr "Twitter: @_Terminology_"
 
 #: src/bin/about.c:275
 msgid "Youtube channel"
-msgstr ""
+msgstr "YouTube-Kanal"
 
 #: src/bin/about.c:289
 #, c-format
@@ -105,7 +105,7 @@ msgid "Close Terminal"
 msgstr "Terminal schließen"
 
 #: src/bin/gravatar.c:121 src/bin/main.c:876 src/bin/miniview.c:41
-#, fuzzy, c-format
+#, c-format
 msgid "Could not create logging domain '%s'"
 msgstr "Protokollierungsdomäne „%s“ konnte nicht erstellt werden"
 
@@ -294,12 +294,10 @@ msgid "Display the command box"
 msgstr "Befehlsfenster anzeigen"
 
 #: src/bin/main.c:387 src/bin/main.c:581
-#, fuzzy
 msgid "Could not create window"
 msgstr "Fenster konnte nicht erstellt werden"
 
 #: src/bin/main.c:406 src/bin/main.c:592
-#, fuzzy
 msgid "Could not create terminal widget"
 msgstr "Terminal-Widget konnte nicht erstellt werden"
 
@@ -948,7 +946,7 @@ msgstr "Im Terminal, wenn möglich"
 
 #: src/bin/options_mouse.c:265
 msgid "E-mail:"
-msgstr "E-mail:"
+msgstr "E-Mail:"
 
 #: src/bin/options_mouse.c:269
 msgid "URL (Images):"
diff --git a/po/fr.po b/po/fr.po
index aa9d5d8..eaee1e3 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -9,8 +9,8 @@ msgstr ""
 "Project-Id-Version: terminology 0.6.99\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-09-15 20:44+0200\n"
-"PO-Revision-Date: 2020-09-14 21:03+\n"
-"Last-Translator: Boris Faure \n"
+"PO-Revision-Date: 2020-09-16 20:34+\n"
+"Last-Translator: J. Lavoie \n"
 "Language-Team: French \n"
 "Language: fr\n"
@@ -701,7 +701,7 @@ msgstr ""
 
 #: src/bin/options_behavior.c:526
 msgid "Tab zoom/switch animation time:"
-msgstr "Durée de l'animation du zoom / basculement :"
+msgstr "Durée de l'animation du zoom / basculement :"
 
 #: src/bin/options_behavior.c:534 src/bin/options_behavior.c:535
 #: src/bin/options_mouse.c:186 src/bin/options_mouse.c:187
diff --git a/po/it.po b/po/it.po
index 7c5f263..40c2010 100644
--- a/po/it.po
+++ b/po/it.po
@@ -8,8 +8,8 @@ msgstr ""
 "Project-Id-Version: terminology 0.6.99\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2020-04-12 00:15+0200\n"
-"PO-Revision-Date: 2020-09-15 19:51+\n"
-"Last-Translator: Boris Faure \n"
+"PO-Revision-Date: 2020-09-16 20:34+\n"
+"Last-Translator: J. Lavoie \n"
 "Language-Team: Italian \n"
 "Language: it\n"
@@ -21,9 +21,9 @@ msgstr ""
 
 #: src/bin/about.c:129 src/bin/about.c:204 src/bin/termio.c:1215
 #: src/bin/termio.c:1224
-#, fuzzy, c-format
+#, c-format
 msgid "Copy '%s'"
-msgstr "Copia"
+msgstr "Copia «%s»"
 
 #: src/bin/about.c:134 src/bin/about.c:209 src/bin/termio.c:1286
 msgid "Open"
@@ -31,11 +31,11 @@ msgstr "Apri"
 
 #: src/bin/about.c:273
 msgid "Twitter: @_Terminology_"
-msgstr ""
+msgstr "Twitter: @_Terminology_"
 
 #: src/bin/about.c:275
 msgid "Youtube channel"
-msgstr ""
+msgstr "Canale YouTube"
 
 #: src/bin/about.c:289
 #, c-format
@@ -102,13 +102,13 @@ msgid "Close Terminal"
 msgstr "Chiudi terminale"
 
 #: 

[EGIT] [core/efl] master 01/01: evas_textblock: prevent textnodes with / without format node

2020-09-16 Thread Ali Alzyod
stefan pushed a commit to branch master.

http://git.enlightenment.org/core/efl.git/commit/?id=3bd066c7dbffc2655501dea0b8d44d567ac1113b

commit 3bd066c7dbffc2655501dea0b8d44d567ac1113b
Author: Ali Alzyod 
Date:   Mon Sep 14 16:30:06 2020 +

evas_textblock: prevent textnodes with / without format node

this will prevent textnodes content with  or  without format node

Reviewed-by: Stefan Schmidt 
Differential Revision: https://phab.enlightenment.org/D12145
---
 src/lib/evas/canvas/evas_object_textblock.c |  3 +++
 src/tests/elementary/elm_test_entry.c   | 23 +++
 2 files changed, 26 insertions(+)

diff --git a/src/lib/evas/canvas/evas_object_textblock.c 
b/src/lib/evas/canvas/evas_object_textblock.c
index 5d1c476466..501e12ba78 100644
--- a/src/lib/evas/canvas/evas_object_textblock.c
+++ b/src/lib/evas/canvas/evas_object_textblock.c
@@ -11055,6 +11055,9 @@ 
_evas_textblock_node_text_adjust_offsets_to_start(Efl_Canvas_Textblock_Data *o,
size_t pos = 0;
int orig_end;
 
+   if ((start == 0) && (end == 0))
+ return EINA_FALSE;
+
itr = n->format_node;
if (!itr || (itr->text_node != n)) return EINA_FALSE;
 
diff --git a/src/tests/elementary/elm_test_entry.c 
b/src/tests/elementary/elm_test_entry.c
index 5df40b19ec..85ada68a49 100644
--- a/src/tests/elementary/elm_test_entry.c
+++ b/src/tests/elementary/elm_test_entry.c
@@ -653,6 +653,28 @@ EFL_START_TEST(elm_entry_keycode)
 }
 EFL_END_TEST
 
+EFL_START_TEST(elm_entry_textnodes_with_no_format)
+{
+   Evas_Object *win, *entry;
+
+   win = win_add(NULL, "entry", ELM_WIN_BASIC);
+   entry = elm_entry_add(win);
+   evas_object_show(entry);
+
+   elm_entry_entry_set(entry, "");
+   Evas_Object *tb = elm_entry_textblock_get(entry);
+   Evas_Textblock_Cursor *c1 = evas_object_textblock_cursor_new(tb);
+   Evas_Textblock_Cursor *c2 = evas_object_textblock_cursor_new(tb);
+   evas_textblock_cursor_char_next(c2);
+   evas_textblock_cursor_range_delete(c1, c2);
+   elm_entry_cursor_pos_set(entry, 0);
+   ck_assert(elm_entry_cursor_down(entry));
+
+   evas_object_del(entry);
+   evas_object_del(win);
+}
+EFL_END_TEST
+
 void elm_test_entry(TCase *tc)
 {
tcase_add_test(tc, elm_entry_legacy_type_check);
@@ -674,4 +696,5 @@ void elm_test_entry(TCase *tc)
tcase_add_test(tc, elm_entry_test_text_class);
tcase_add_test(tc, elm_entry_test_burmese);
tcase_add_test(tc, elm_entry_keycode);
+   tcase_add_test(tc, elm_entry_textnodes_with_no_format);
 }

-- 




[EGIT] [apps/terminology] master 01/01: po - fix duplicate xlate string in it.po

2020-09-16 Thread Carsten Haitzler
raster pushed a commit to branch master.

http://git.enlightenment.org/apps/terminology.git/commit/?id=ba422c68bef0101b1ecec8b650d1f84ec0d48808

commit ba422c68bef0101b1ecec8b650d1f84ec0d48808
Author: Carsten Haitzler (Rasterman) 
Date:   Wed Sep 16 11:52:33 2020 +0100

po - fix duplicate xlate string in it.po
---
 po/it.po | 4 
 1 file changed, 4 deletions(-)

diff --git a/po/it.po b/po/it.po
index 69b0d4e..7c5f263 100644
--- a/po/it.po
+++ b/po/it.po
@@ -1136,10 +1136,6 @@ msgid "Couldn't find terminology theme! Forgot 'ninja 
install'?"
 msgstr ""
 "Non trovo il tema di terminology! Avete dato il comando 'ninja install'?"
 
-#~ msgid "Select preferred size so that this text is readable."
-#~ msgstr ""
-#~ "Selezionare la dimensione preferita così che questo testo sia leggibile."
-
 #~ msgid "Helpers"
 #~ msgstr "Aiutanti"
 

--