[Xfce4-commits] [apps/xfdashboard] 01/06: Change IDs of builtin "plugins" to be prefixed with "builtin."

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

nomad pushed a commit to branch master
in repository apps/xfdashboard.

commit 8539ae3b7172e9f1ff8ff20396d3906b7a06da06
Author: Stephan Haller 
Date:   Mon Feb 8 20:40:01 2016 +0100

Change IDs of builtin "plugins" to be prefixed with "builtin."
---
 xfdashboard/application.c |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/xfdashboard/application.c b/xfdashboard/application.c
index ec2e529..7445c56 100644
--- a/xfdashboard/application.c
+++ b/xfdashboard/application.c
@@ -433,14 +433,14 @@ static gboolean 
_xfdashboard_application_initialize_full(XfdashboardApplication
/* Register built-in views (order of registration is important) */
priv->viewManager=xfdashboard_view_manager_get_default();
 
-   xfdashboard_view_manager_register(priv->viewManager, "windows", 
XFDASHBOARD_TYPE_WINDOWS_VIEW);
-   xfdashboard_view_manager_register(priv->viewManager, "applications", 
XFDASHBOARD_TYPE_APPLICATIONS_VIEW);
-   xfdashboard_view_manager_register(priv->viewManager, "search", 
XFDASHBOARD_TYPE_SEARCH_VIEW);
+   xfdashboard_view_manager_register(priv->viewManager, "builtin.windows", 
XFDASHBOARD_TYPE_WINDOWS_VIEW);
+   xfdashboard_view_manager_register(priv->viewManager, 
"builtin.applications", XFDASHBOARD_TYPE_APPLICATIONS_VIEW);
+   xfdashboard_view_manager_register(priv->viewManager, "builtin.search", 
XFDASHBOARD_TYPE_SEARCH_VIEW);
 
/* Register built-in search providers */
priv->searchManager=xfdashboard_search_manager_get_default();
 
-   xfdashboard_search_manager_register(priv->searchManager, 
"applications", XFDASHBOARD_TYPE_APPLICATIONS_SEARCH_PROVIDER);
+   xfdashboard_search_manager_register(priv->searchManager, 
"builtin.applications", XFDASHBOARD_TYPE_APPLICATIONS_SEARCH_PROVIDER);
 
/* Create single-instance of plugin manager to keep it alive while
 * application is running.

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/xfdashboard] branch master updated (cf492bb -> 69890b5)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

nomad pushed a change to branch master
in repository apps/xfdashboard.

  from  cf492bb   Merge commits
   new  8539ae3   Change IDs of builtin "plugins" to be prefixed with 
"builtin."
   new  f1a6c0c   Chnage IDs of plugins to be prefixed with 
"de.froevel.xfdashboard."
   new  ac8d1f0   Fix actors of applications view filling whole horizontal 
space
   new  8b39782   Keep search providers at search view listed in order as 
they were registered
   new  40c8a2f   Use a macro for plugin ID in clock view to ensure to use 
always the same ID at all places
   new  69890b5   Use a macro for plugin ID in Gnome-Shell search provider 
plugin to ensure to use always the same ID at all places

The 6 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 plugins/clock-view/plugin.c|8 +---
 .../gnome-shell-search-provider/gnome-shell-search-provider.c  |2 +-
 .../gnome-shell-search-provider/gnome-shell-search-provider.h  |2 +-
 plugins/gnome-shell-search-provider/plugin.c   |4 ++--
 xfdashboard/application.c  |8 
 xfdashboard/applications-view.c|4 ++--
 xfdashboard/search-view.c  |2 +-
 7 files changed, 16 insertions(+), 14 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/xfdashboard] 03/06: Fix actors of applications view filling whole horizontal space

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

nomad pushed a commit to branch master
in repository apps/xfdashboard.

commit ac8d1f0875edf24ff06c7c2d6e9e73a7695e6217
Author: Stephan Haller 
Date:   Mon Feb 8 20:47:55 2016 +0100

Fix actors of applications view filling whole horizontal space
---
 xfdashboard/applications-view.c |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/xfdashboard/applications-view.c b/xfdashboard/applications-view.c
index 3863df7..af85501 100644
--- a/xfdashboard/applications-view.c
+++ b/xfdashboard/applications-view.c
@@ -119,8 +119,8 @@ static void 
_xfdashboard_applications_view_setup_actor_for_view_mode(Xfdashboard
{
clutter_actor_set_x_expand(inActor, TRUE);
clutter_actor_set_y_expand(inActor, TRUE);
-   clutter_actor_set_x_align(inActor, CLUTTER_ACTOR_ALIGN_START);
-   clutter_actor_set_y_align(inActor, CLUTTER_ACTOR_ALIGN_START);
+   clutter_actor_set_x_align(inActor, CLUTTER_ACTOR_ALIGN_FILL);
+   clutter_actor_set_y_align(inActor, CLUTTER_ACTOR_ALIGN_FILL);
 
if(XFDASHBOARD_IS_STYLABLE(inActor)) 
xfdashboard_stylable_add_class(XFDASHBOARD_STYLABLE(inActor), "view-mode-list");
}

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/xfdashboard] 02/06: Chnage IDs of plugins to be prefixed with "de.froevel.xfdashboard."

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

nomad pushed a commit to branch master
in repository apps/xfdashboard.

commit f1a6c0c5156289b761b23aec109a4211d61cff6c
Author: Stephan Haller 
Date:   Mon Feb 8 20:42:09 2016 +0100

Chnage IDs of plugins to be prefixed with "de.froevel.xfdashboard."
---
 plugins/clock-view/plugin.c   |2 +-
 plugins/gnome-shell-search-provider/gnome-shell-search-provider.h |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/plugins/clock-view/plugin.c b/plugins/clock-view/plugin.c
index bd3f8f6..229aba1 100644
--- a/plugins/clock-view/plugin.c
+++ b/plugins/clock-view/plugin.c
@@ -46,7 +46,7 @@ static gboolean plugin_enable(XfdashboardPlugin *self, 
gpointer inUserData)
/* Register view */
viewManager=xfdashboard_view_manager_get_default();
 
-   xfdashboard_view_manager_register(viewManager, "clock", 
XFDASHBOARD_TYPE_CLOCK_VIEW);
+   xfdashboard_view_manager_register(viewManager, 
"de.froevel.xfdashboard.clock", XFDASHBOARD_TYPE_CLOCK_VIEW);
 
g_object_unref(viewManager);
 
diff --git a/plugins/gnome-shell-search-provider/gnome-shell-search-provider.h 
b/plugins/gnome-shell-search-provider/gnome-shell-search-provider.h
index 6763ed7..cdaec0b 100644
--- a/plugins/gnome-shell-search-provider/gnome-shell-search-provider.h
+++ b/plugins/gnome-shell-search-provider/gnome-shell-search-provider.h
@@ -58,7 +58,7 @@ struct _XfdashboardGnomeShellSearchProviderClass
 };
 
 /* Public API */
-#define XFDASHBOARD_GNOME_SHELL_SEARCH_PROVIDER_PREFIX 
"gnome-shell-search-provider_"
+#define XFDASHBOARD_GNOME_SHELL_SEARCH_PROVIDER_PREFIX 
"de.froevel.xfdashboard.gnome-shell-search-provider."
 
 GType xfdashboard_gnome_shell_search_provider_get_type(void) G_GNUC_CONST;
 void xfdashboard_gnome_shell_search_provider_type_register(GTypeModule 
*inModule);

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/xfdashboard] 06/06: Use a macro for plugin ID in Gnome-Shell search provider plugin to ensure to use always the same ID at all places

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

nomad pushed a commit to branch master
in repository apps/xfdashboard.

commit 69890b54838f782ee9c2d2307ae2979e40b10a4d
Author: Stephan Haller 
Date:   Tue Feb 9 07:46:22 2016 +0100

Use a macro for plugin ID in Gnome-Shell search provider plugin to ensure 
to use always the same ID at all places
---
 plugins/gnome-shell-search-provider/gnome-shell-search-provider.c |2 +-
 plugins/gnome-shell-search-provider/gnome-shell-search-provider.h |2 +-
 plugins/gnome-shell-search-provider/plugin.c  |4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/plugins/gnome-shell-search-provider/gnome-shell-search-provider.c 
b/plugins/gnome-shell-search-provider/gnome-shell-search-provider.c
index 12a2d8b..ec0a303 100644
--- a/plugins/gnome-shell-search-provider/gnome-shell-search-provider.c
+++ b/plugins/gnome-shell-search-provider/gnome-shell-search-provider.c
@@ -89,7 +89,7 @@ static void 
_xfdashboard_gnome_shell_search_provider_initialize(XfdashboardSearc
const gchar 
*providerID;
 
providerID=xfdashboard_search_provider_get_id(inProvider);
-   
priv->gnomeShellID=g_strdup(providerID+strlen(XFDASHBOARD_GNOME_SHELL_SEARCH_PROVIDER_PREFIX));
+   
priv->gnomeShellID=g_strdup(providerID+strlen(XFDASHBOARD_GNOME_SHELL_SEARCH_PROVIDER_PREFIX)+1);
}
g_debug("Initializing search provider '%s' of type %s for Gnome-Shell 
search provider ID '%s'",
xfdashboard_search_provider_get_id(inProvider),
diff --git a/plugins/gnome-shell-search-provider/gnome-shell-search-provider.h 
b/plugins/gnome-shell-search-provider/gnome-shell-search-provider.h
index cdaec0b..3818171 100644
--- a/plugins/gnome-shell-search-provider/gnome-shell-search-provider.h
+++ b/plugins/gnome-shell-search-provider/gnome-shell-search-provider.h
@@ -58,7 +58,7 @@ struct _XfdashboardGnomeShellSearchProviderClass
 };
 
 /* Public API */
-#define XFDASHBOARD_GNOME_SHELL_SEARCH_PROVIDER_PREFIX 
"de.froevel.xfdashboard.gnome-shell-search-provider."
+#define XFDASHBOARD_GNOME_SHELL_SEARCH_PROVIDER_PREFIX 
"de.froevel.xfdashboard.gnome-shell-search-provider"
 
 GType xfdashboard_gnome_shell_search_provider_get_type(void) G_GNUC_CONST;
 void xfdashboard_gnome_shell_search_provider_type_register(GTypeModule 
*inModule);
diff --git a/plugins/gnome-shell-search-provider/plugin.c 
b/plugins/gnome-shell-search-provider/plugin.c
index f7d0cf4..77f81a0 100644
--- a/plugins/gnome-shell-search-provider/plugin.c
+++ b/plugins/gnome-shell-search-provider/plugin.c
@@ -113,7 +113,7 @@ static gboolean plugin_enable(XfdashboardPlugin *self, 
gpointer inUserData)
/* Build unique provider name for Gnome-Shell 
search provider
 * using this plugin.
 */
-   providerName=g_strdup_printf("%s%s", 
XFDASHBOARD_GNOME_SHELL_SEARCH_PROVIDER_PREFIX, gnomeShellSearchProviderName);
+   providerName=g_strdup_printf("%s.%s", 
XFDASHBOARD_GNOME_SHELL_SEARCH_PROVIDER_PREFIX, gnomeShellSearchProviderName);
g_debug("Register gnome shell search provider 
'%s' from file %s", providerName, filename);
 
/* Register search provider */
@@ -232,7 +232,7 @@ G_MODULE_EXPORT void plugin_init(XfdashboardPlugin *self)
 
/* Set plugin info */
xfdashboard_plugin_set_info(self,
-   "id", 
"gnome-shell-search-provider",
+   "id", 
XFDASHBOARD_GNOME_SHELL_SEARCH_PROVIDER_PREFIX,
"name", 
_("Gnome-Shell search provider"),
"description", 
_("Uses Gnome-Shell search providers as source for searches"),
"author", 
"Stephan Haller ",

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/xfdashboard] 05/06: Use a macro for plugin ID in clock view to ensure to use always the same ID at all places

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

nomad pushed a commit to branch master
in repository apps/xfdashboard.

commit 40c8a2f4340d17e1f0b691042c8dd67a45c6fdf6
Author: Stephan Haller 
Date:   Tue Feb 9 07:41:05 2016 +0100

Use a macro for plugin ID in clock view to ensure to use always the same ID 
at all places
---
 plugins/clock-view/plugin.c |8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/plugins/clock-view/plugin.c b/plugins/clock-view/plugin.c
index 229aba1..2419ec5 100644
--- a/plugins/clock-view/plugin.c
+++ b/plugins/clock-view/plugin.c
@@ -34,6 +34,8 @@
 
 
 /* IMPLEMENTATION: XfdashboardPlugin */
+#define PLUGIN_ID  "de.froevel.xfdashboard.clock"
+
 
 /* Forward declarations */
 G_MODULE_EXPORT void plugin_init(XfdashboardPlugin *self);
@@ -46,7 +48,7 @@ static gboolean plugin_enable(XfdashboardPlugin *self, 
gpointer inUserData)
/* Register view */
viewManager=xfdashboard_view_manager_get_default();
 
-   xfdashboard_view_manager_register(viewManager, 
"de.froevel.xfdashboard.clock", XFDASHBOARD_TYPE_CLOCK_VIEW);
+   xfdashboard_view_manager_register(viewManager, PLUGIN_ID, 
XFDASHBOARD_TYPE_CLOCK_VIEW);
 
g_object_unref(viewManager);
 
@@ -61,7 +63,7 @@ static gboolean plugin_disable(XfdashboardPlugin *self, 
gpointer inUserData)
/* Unregister view */
viewManager=xfdashboard_view_manager_get_default();
 
-   xfdashboard_view_manager_unregister(viewManager, "clock");
+   xfdashboard_view_manager_unregister(viewManager, PLUGIN_ID);
 
g_object_unref(viewManager);
 
@@ -76,7 +78,7 @@ G_MODULE_EXPORT void plugin_init(XfdashboardPlugin *self)
 
/* Set plugin info */
xfdashboard_plugin_set_info(self,
-   "id", 
"clock-view",
+   "id", PLUGIN_ID,
"name", 
_("Clock"),
"description", 
_("Adds new a view showing a clock"),
"author", 
"Stephan Haller ",

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/xfdashboard] 04/06: Keep search providers at search view listed in order as they were registered

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

nomad pushed a commit to branch master
in repository apps/xfdashboard.

commit 8b39782007575570917035d9aa478dd946e67c59
Author: Stephan Haller 
Date:   Tue Feb 9 07:39:20 2016 +0100

Keep search providers at search view listed in order as they were registered
---
 xfdashboard/search-view.c |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfdashboard/search-view.c b/xfdashboard/search-view.c
index 0579bf6..fdc3de9 100644
--- a/xfdashboard/search-view.c
+++ b/xfdashboard/search-view.c
@@ -366,7 +366,7 @@ static void 
_xfdashboard_search_view_on_search_provider_registered(XfdashboardSe
 * and add to list of active search providers.
 */
data=_xfdashboard_search_view_provider_data_new(self, 
inProviderID);
-   priv->providers=g_list_prepend(priv->providers, data);
+   priv->providers=g_list_append(priv->providers, data);
 
g_debug("Created search provider %s of type %s in %s",

xfdashboard_search_provider_get_name(data->provider),

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfce4-panel] 01/02: I18n: Update translation el (100%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository xfce/xfce4-panel.

commit 90fd19a1010daf9cf1ac44d6c2984731597f456b
Author: Apostolos Papadimitriu 
Date:   Mon Feb 8 18:30:41 2016 +0100

I18n: Update translation el (100%).

395 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/el.po |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/po/el.po b/po/el.po
index 6c825f4..04a1a89 100644
--- a/po/el.po
+++ b/po/el.po
@@ -15,7 +15,7 @@ msgstr ""
 "Project-Id-Version: Xfce4-panel\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-09-27 18:30+0200\n"
-"PO-Revision-Date: 2016-02-06 16:24+\n"
+"PO-Revision-Date: 2016-02-08 12:39+\n"
 "Last-Translator: Apostolos Papadimitriu \n"
 "Language-Team: Greek 
(http://www.transifex.com/xfce/xfce4-panel/language/el/)\n"
 "MIME-Version: 1.0\n"
@@ -1138,7 +1138,7 @@ msgstr "%0 και είκοσι"
 #: ../plugins/clock/clock-fuzzy.c:107
 #, no-c-format
 msgid "twenty five past %0"
-msgstr "είκοσι πέντε παρά %0"
+msgstr "%0 και είκοσι πέντε"
 
 #: ../plugins/clock/clock-fuzzy.c:108
 #, no-c-format
@@ -1211,7 +1211,7 @@ msgstr "%0 και είκοσι"
 #, no-c-format
 msgctxt "one"
 msgid "twenty five past %0"
-msgstr "είκοσι πέντε παρά %0"
+msgstr "%0 και είκοσι πέντε"
 
 #: ../plugins/clock/clock-fuzzy.c:127
 #, no-c-format
@@ -1257,7 +1257,7 @@ msgstr "%1 ακριβώς"
 
 #: ../plugins/clock/clock-fuzzy.c:138
 msgid "one"
-msgstr "ένα"
+msgstr "μία"
 
 #: ../plugins/clock/clock-fuzzy.c:139
 msgid "two"
@@ -1265,11 +1265,11 @@ msgstr "δύο"
 
 #: ../plugins/clock/clock-fuzzy.c:140
 msgid "three"
-msgstr "τρία"
+msgstr "τρεις"
 
 #: ../plugins/clock/clock-fuzzy.c:141
 msgid "four"
-msgstr "τέσσερα"
+msgstr "τέσσερις"
 
 #: ../plugins/clock/clock-fuzzy.c:142
 msgid "five"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfce4-panel] 02/02: I18n: Update translation eu (100%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch xfce-4.10
in repository xfce/xfce4-panel.

commit 3d1c3ec719bf4fac5009ea753391d7de9a4bcb75
Author: Nick Schermer 
Date:   Mon Feb 8 18:30:47 2016 +0100

I18n: Update translation eu (100%).

387 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/eu.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/po/eu.po b/po/eu.po
index 4317e50..9199499 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce4-panel\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-02 23:10+0200\n"
-"PO-Revision-Date: 2015-12-15 23:00+\n"
+"PO-Revision-Date: 2016-02-08 15:33+\n"
 "Last-Translator: Nick Schermer \n"
 "Language-Team: Basque 
(http://www.transifex.com/xfce/xfce4-panel/language/eu/)\n"
 "MIME-Version: 1.0\n"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfce4-panel] 01/02: I18n: Update translation el (96%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch xfce-4.10
in repository xfce/xfce4-panel.

commit 782b8fe40259ddbd4751159fb6661b121c0de02c
Author: Efstathios Iosifidis 
Date:   Mon Feb 8 18:30:47 2016 +0100

I18n: Update translation el (96%).

375 translated messages, 12 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/el.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/po/el.po b/po/el.po
index 181c285..e44cca5 100644
--- a/po/el.po
+++ b/po/el.po
@@ -14,7 +14,7 @@ msgstr ""
 "Project-Id-Version: Xfce4-panel\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-02 23:10+0200\n"
-"PO-Revision-Date: 2016-02-06 16:24+\n"
+"PO-Revision-Date: 2016-02-08 12:39+\n"
 "Last-Translator: Efstathios Iosifidis \n"
 "Language-Team: Greek 
(http://www.transifex.com/xfce/xfce4-panel/language/el/)\n"
 "MIME-Version: 1.0\n"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfce4-panel] branch xfce-4.10 updated (b22392d -> 3d1c3ec)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch xfce-4.10
in repository xfce/xfce4-panel.

  from  b22392d   I18n: Update translation el (96%).
   new  782b8fe   I18n: Update translation el (96%).
   new  3d1c3ec   I18n: Update translation eu (100%).

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/el.po |2 +-
 po/eu.po |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-xfapplet-plugin] 01/01: I18n: Update translation he (100%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository panel-plugins/xfce4-xfapplet-plugin.

commit 355397bdd3d635a272e48e0a7cd130489e713002
Author: Elishai Eliyahu 
Date:   Mon Feb 8 18:31:52 2016 +0100

I18n: Update translation he (100%).

14 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/he.po |   17 +
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/po/he.po b/po/he.po
index 1cc0218..a409fd0 100644
--- a/po/he.po
+++ b/po/he.po
@@ -3,13 +3,14 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Elishai Eliyahu , 2016
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2006-09-10 21:12+0200\n"
-"PO-Revision-Date: 2015-08-21 19:11+\n"
-"Last-Translator: GenghisKhan \n"
+"PO-Revision-Date: 2016-02-08 13:48+\n"
+"Last-Translator: Elishai Eliyahu \n"
 "Language-Team: Hebrew 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/he/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -30,7 +31,7 @@ msgstr "בחר יישומון"
 msgid ""
 "Choose an applet from the list. If you have already chosen an applet "
 "previously, it will be substituted by the one you choose."
-msgstr ""
+msgstr "בחר יישומון מהרשימה. אם כבר בחרת יישומון, הוא יוחלף ע\"י האחד שתבחר."
 
 #: ../panel-plugin/chooser.c:486
 msgid "Available applets"
@@ -39,13 +40,13 @@ msgstr "יישומונים זמינים"
 #: ../panel-plugin/xfapplet.c:148
 #, c-format
 msgid "'%s' has quit unexpectedly."
-msgstr ""
+msgstr "'%s' יצא במפתיע."
 
 #: ../panel-plugin/xfapplet.c:151
 msgid ""
 "If you don't reload the applet, XfApplet plugin will go back to its initial "
 "empty state."
-msgstr ""
+msgstr "אם לא תעלה מחדש את היישומון, תוסף XfApplet יחזור למצבו הריק הראשוני."
 
 #: ../panel-plugin/xfapplet.c:153
 msgid "Don't Reload"
@@ -71,12 +72,12 @@ msgstr "מתרגם (%s)"
 #: ../panel-plugin/xfapplet.c:574
 #, c-format
 msgid "'%s' could not be loaded."
-msgstr ""
+msgstr "'%s' לא ניתן להעלאה."
 
 #: ../panel-plugin/xfapplet.c:577
 msgid "An internal error occurred and the applet could not be loaded."
-msgstr ""
+msgstr "אירעה שגיאה פנימית ולא ניתן היה להעלות את היישומון."
 
 #: ../panel-plugin/xfapplet.desktop.in.in.h:1
 msgid "Display Gnome applets in the panel"
-msgstr ""
+msgstr "הצג יישומוני Gnome בלוח"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfconf] branch master updated (6f7d755 -> aee4c7a)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository xfce/xfconf.

  from  6f7d755   I18n: Update translation el (100%).
   new  aee4c7a   I18n: Update translation eu (98%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/eu.po |   89 +++---
 1 file changed, 45 insertions(+), 44 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-verve-plugin] 01/01: I18n: Update translation he (100%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository panel-plugins/xfce4-verve-plugin.

commit 3049f28b405d224f9001c9438e70e04c324474e5
Author: Elishai Eliyahu 
Date:   Mon Feb 8 18:31:37 2016 +0100

I18n: Update translation he (100%).

25 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/he.po |   21 +++--
 1 file changed, 11 insertions(+), 10 deletions(-)

diff --git a/po/he.po b/po/he.po
index d8f6e1c..13c763c 100644
--- a/po/he.po
+++ b/po/he.po
@@ -3,14 +3,15 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Elishai Eliyahu , 2016
 # GenghisKhan , 2015
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-04-17 06:31+0200\n"
-"PO-Revision-Date: 2016-02-07 19:29+\n"
-"Last-Translator: Xfce Bot \n"
+"PO-Revision-Date: 2016-02-08 12:33+\n"
+"Last-Translator: Elishai Eliyahu \n"
 "Language-Team: Hebrew 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/he/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -21,7 +22,7 @@ msgstr ""
 #: ../panel-plugin/verve.c:98
 #, c-format
 msgid "Could not execute command (exit status %d)"
-msgstr ""
+msgstr "לא יכול לבצע פקודה (סטטוס יציאה %d) "
 
 #. Generate error message
 #: ../panel-plugin/verve-plugin.c:409
@@ -31,7 +32,7 @@ msgstr "לא היתה אפשרות לבצע פקודה:"
 #. Create properties dialog
 #: ../panel-plugin/verve-plugin.c:1031
 msgid "Verve"
-msgstr ""
+msgstr "Verve"
 
 #: ../panel-plugin/verve-plugin.c:1054
 msgid "General"
@@ -89,7 +90,7 @@ msgstr "נתיבי ספרייה"
 
 #: ../panel-plugin/verve-plugin.c:1201
 msgid "Expand variables with wordexp"
-msgstr ""
+msgstr "הרחב משתנים עם wordexp "
 
 #. Command type: !bang
 #: ../panel-plugin/verve-plugin.c:1211
@@ -104,7 +105,7 @@ msgstr "שאילתות DuckDuckGo (מתחילות עם \\)"
 #. Fallback if the above don't match
 #: ../panel-plugin/verve-plugin.c:1227
 msgid "If the above patterns don't match:"
-msgstr ""
+msgstr "אם הדוגמאות מעלה לא תואמות:"
 
 #. Smart bookmark radio button
 #: ../panel-plugin/verve-plugin.c:1233
@@ -114,13 +115,13 @@ msgstr "השתמש בסימניית URL חכמה"
 #. Executable command radio button (smart bookmark off)
 #: ../panel-plugin/verve-plugin.c:1256
 msgid "Run as executable command"
-msgstr ""
+msgstr "הפעל כפקודה הניתנת לביצוע"
 
 #: ../panel-plugin/verve-plugin.c:1268
 msgid ""
 "Run command with $SHELL -i -c\n"
 "(enables alias and variable expansion)"
-msgstr ""
+msgstr "הפעל פקודה עם $SHELL -i -c \n(מאפשר כינוי והרחבת משתנים)"
 
 #. vim:set expandtab sts=2 ts=2 sw=2:
 #: ../panel-plugin/xfce4-verve-plugin.desktop.in.h:1
@@ -134,11 +135,11 @@ msgstr "ממשק שורת פקודה עם השלמה אוטומטית והיסט
 #. Print error message
 #: ../scripts/verve-focus.c:60
 msgid "Failed to connect to the D-BUS session bus."
-msgstr ""
+msgstr "נכשל להתחבר ל-bus סשן D-BUS. "
 
 #. Print error message
 #: ../scripts/verve-focus.c:83
 msgid ""
 "There seems to be no Verve D-BUS provider (e.g. the Verve panel plugin) "
 "running."
-msgstr ""
+msgstr "נראה שאין ספק Verver D-BUS פועל (למשל תוסף פאנל Verve)."

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfconf] 01/01: I18n: Update translation eu (98%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository xfce/xfconf.

commit aee4c7a5a9a57139a3d7e0b7be1364f86bcf70eb
Author: Piarres Beobide 
Date:   Mon Feb 8 18:32:00 2016 +0100

I18n: Update translation eu (98%).

66 translated messages, 1 untranslated message.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/eu.po |   89 +++---
 1 file changed, 45 insertions(+), 44 deletions(-)

diff --git a/po/eu.po b/po/eu.po
index d550cf2..f502047 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -3,16 +3,16 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Piarres Beobide , 2008-2009
+# Piarres Beobide , 2008-2009,2016
 # Piarres Beobide , 2009
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfconf\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-07-02 22:48+0200\n"
-"PO-Revision-Date: 2013-11-19 10:53+\n"
-"Last-Translator: Nick \n"
-"Language-Team: Basque 
(http://www.transifex.com/projects/p/xfce/language/eu/)\n"
+"POT-Creation-Date: 2014-07-27 18:32+0200\n"
+"PO-Revision-Date: 2016-02-08 15:49+\n"
+"Last-Translator: Piarres Beobide \n"
+"Language-Team: Basque (http://www.transifex.com/xfce/xfconf/language/eu/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -38,7 +38,7 @@ msgstr "Baimena  ukatua \"%s\" propietatea aldatzeko \"%s\" 
kanalean"
 #: ../xfconfd/xfconf-backend-perchannel-xml.c:387
 #: ../xfconfd/xfconf-backend-perchannel-xml.c:469
 #: ../xfconfd/xfconf-backend-perchannel-xml.c:634
-#: ../xfconfd/xfconf-backend-perchannel-xml.c:654 ../xfconf-query/main.c:341
+#: ../xfconfd/xfconf-backend-perchannel-xml.c:654 ../xfconf-query/main.c:344
 #, c-format
 msgid "Property \"%s\" does not exist on channel \"%s\""
 msgstr "\"%s\" propietatea ez dago \"%s\" kanalean"
@@ -95,36 +95,37 @@ msgstr "Propietate izenak 'karaktereaz' ikurraz hasi behar 
dira"
 msgid "The root element ('/') is not a valid property name"
 msgstr "Erro elementua ('/') ez da baliozko propietate izen bat"
 
-#: ../xfconfd/xfconf-backend.c:126
+#: ../xfconfd/xfconf-backend.c:127
 #, c-format
 msgid ""
 "Property names can only include the ASCII characters A-Z, a-z, 0-9, '_', "
-"'-', '<' and '>', as well as '/' as a separator"
-msgstr "Propietate izenek A-Z, a-z, 0-9, '_', '-', '<' eta '>' ASCII  
karaktereak eta '/' bereizle gisa bakarrik eduki dezakete."
+"'-', ':', '.', ',', '[', ']', '{', '}', '<' and '>', as well as '/' as a "
+"separator"
+msgstr ""
 
-#: ../xfconfd/xfconf-backend.c:135
+#: ../xfconfd/xfconf-backend.c:136
 #, c-format
 msgid "Property names cannot have two or more consecutive '/' characters"
 msgstr "Propietate izenak ezin dut bi '/' karaktere edo jarraian gehiago izan"
 
-#: ../xfconfd/xfconf-backend.c:146
+#: ../xfconfd/xfconf-backend.c:147
 #, c-format
 msgid "Property names cannot end with a '/' character"
 msgstr "Propietate izenak ezin dira '/'karaktereaz amaitu"
 
-#: ../xfconfd/xfconf-backend.c:163
+#: ../xfconfd/xfconf-backend.c:164
 #, c-format
 msgid "Channel name cannot be an empty string"
 msgstr "Kanal izena ezin da kate huts bat izan"
 
-#: ../xfconfd/xfconf-backend.c:176
+#: ../xfconfd/xfconf-backend.c:179
 #, c-format
 msgid ""
-"Channel names can only include the ASCII characters A-Z, a-z, 0-9, '_', and "
-"'-'"
-msgstr "Kanal izenek A-Z, a-z, 0-9, '_', eta '-' ASCII karaktereak bakarrik 
eduki ditzakete"
+"Channel names can only include the ASCII characters A-Z, a-z, 0-9, '{', '}',"
+" '|', ']', '[', ':', ',', '.', '_', and '-'"
+msgstr "Kanal izenek ASCII karakterea A-Z, a-z, 0-9, '{', '}', '|', ']', '[', 
':', ',', '.', '_', eta '-' bakarrik eduki ditzake"
 
-#: ../xfconfd/xfconf-backend.c:398
+#: ../xfconfd/xfconf-backend.c:401
 #, c-format
 msgid ""
 "The property name can only be empty or \"/\" if a recursive reset was "
@@ -149,15 +150,15 @@ msgstr "Banandu atzeko planoan abiarazi hondoren; 
probetarako bakarrik erabilgar
 msgid "Xfce Configuration Daemon"
 msgstr "Xfce konfigurazio deabrua"
 
-#: ../xfconfd/main.c:165
+#: ../xfconfd/main.c:168
 msgid "Xfce configuration daemon"
 msgstr "Xfce konfigurazio deabrua"
 
-#: ../xfconfd/main.c:167
+#: ../xfconfd/main.c:170
 msgid "Report bugs to http://bugs.xfce.org/\n;
 msgstr "Arazoen berri hemen: http://bugs.xfce.org/\n;
 
-#: ../xfconfd/main.c:170
+#: ../xfconfd/main.c:173
 #, c-format
 msgid "Error parsing options: %s\n"
 msgstr "Errorea aukerak analizatzean: %s\n"
@@ -232,107 +233,107 @@ msgstr "Alderanztu dagoen propietate boolearra"
 msgid "Monitor a channel for property changes"
 msgstr "Monitorizatu kanal bat propietate aldaketa bila"
 
-#: ../xfconf-query/main.c:246
+#: ../xfconf-query/main.c:249
 #, c-format
 msgid "Failed to init libxfconf: %s"
 msgstr "Huts 

[Xfce4-commits] [panel-plugins/xfce4-weather-plugin] 01/01: I18n: Update translation he (100%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository panel-plugins/xfce4-weather-plugin.

commit f8edf64709f397fadeb4807832f8acc8bcd8119b
Author: Elishai Eliyahu 
Date:   Mon Feb 8 18:31:42 2016 +0100

I18n: Update translation he (100%).

330 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/he.po |   75 +++---
 1 file changed, 38 insertions(+), 37 deletions(-)

diff --git a/po/he.po b/po/he.po
index b78a40c..3e5680e 100644
--- a/po/he.po
+++ b/po/he.po
@@ -3,6 +3,7 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Elishai Eliyahu , 2016
 # GenghisKhan , 2014
 # GenghisKhan , 2012-2013
 msgid ""
@@ -10,8 +11,8 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-10-24 18:31+0200\n"
-"PO-Revision-Date: 2016-01-20 20:20+\n"
-"Last-Translator: GenghisKhan \n"
+"PO-Revision-Date: 2016-02-08 13:24+\n"
+"Last-Translator: Elishai Eliyahu \n"
 "Language-Team: Hebrew 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/he/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -111,7 +112,7 @@ msgstr "כעת משיג %s"
 #: ../panel-plugin/weather.c:1157
 #, c-format
 msgid "Error writing cache file %s!"
-msgstr ""
+msgstr "שגיאה בכתיבת קובץ מטמון %s! "
 
 #: ../panel-plugin/weather.c:1609
 #, c-format
@@ -181,7 +182,7 @@ msgstr "לא ניתן לעדכן נתוני מזג אוויר"
 
 #: ../panel-plugin/weather.c:1884
 msgid "No default icon theme? This should not happen, plugin will crash!"
-msgstr ""
+msgstr "אין ערכת נושא אייקון ברירת מחדל? זה לא צריך לקרות, התוסף יקרוס!"
 
 #. add refresh button to right click menu, for people who missed
 #. the middle mouse click feature
@@ -342,13 +343,13 @@ msgstr "_אזור זמן:"
 msgid ""
 "If the chosen location is not in your current timezone, then it is necessary 
to put the plugin into that other timezone for the times to be shown 
correctly. The proper timezone will be auto-detected via the GeoNames web 
service, but you might want to correct it if necessary.\n"
 "Leave this field empty to use the timezone set by your system. Invalid 
entries will cause the use of UTC time, but that may also depend on your 
system."
-msgstr ""
+msgstr "אם המיקום הנבחר אינו באיזור הזמן הנוכחי שלך, אז נדרש ל-שים את 
התוסף לאותו איזור זמן על מנת שיוצגו הזמנים הנכונים. איזור הזמן הנדרש יתגלה 
אוטומטית דרך שירות רשת GeoNames, אבל יכול להיות שתרצה לתקן אותו אם נדרש.\nהשאר 
שדה זה ריק כדי להשתמש באיזור הזמן שנקבע ע\"י המערכת שלך. ערכים לא חוקיים יגרמו 
לשימוש זמן UTC, אבל זה גם תלוי במערכת שלך."
 
 #: ../panel-plugin/weather-config.c:620
 msgid ""
 "Please change location name to your liking and correct\n"
 "altitude and timezone if they are not auto-detected correctly."
-msgstr ""
+msgstr "אנא שנה שם מיקום לפי העדפתך ותקן\nגובה ואיזור זמן אם הם לא התגלו 
נכון באופן אוטומטי. "
 
 #: ../panel-plugin/weather-config.c:645
 msgid ""
@@ -432,7 +433,7 @@ msgstr "הקשר היא יחידה של מהירות שוות ערך למייל
 msgid ""
 "1 millimeter is one thousandth of a meter - the fundamental unit of length "
 "in the International System of Units -, or approximately 0.04 inches."
-msgstr ""
+msgstr "1 מילימטר הוא אלפית מטר - יחידת מידת האורך היסודית במערכת המידות 
הבינלאומית -, או בערך 0.04 אינטש."
 
 #: ../panel-plugin/weather-config.c:817
 msgid ""
@@ -647,7 +648,7 @@ msgstr "מוטיבי סמל זמינים נמנים כאן. ביכולתך לה
 msgid ""
 "Open the user icon themes directory in your file manager, creating it if "
 "necessary."
-msgstr ""
+msgstr "פתח את תיקיית ערכות נושא אייקון משתמש במנהל הקבצים שלך, צור אותה אם 
נדרש."
 
 #: ../panel-plugin/weather-config.c:1249
 msgid "Use only a single _panel row"
@@ -657,7 +658,7 @@ msgstr "השתמש בשורת _לוח בודדת בלבד"
 msgid ""
 "Check to always use only a single row on a multi-row panel and a small icon "
 "in deskbar mode."
-msgstr ""
+msgstr "בחר כדי להשתמש תמיד רק בשורה יחידה בפאנל מרובה שורות ואייקון קטן במצב 
סרגל שולחני."
 
 #: ../panel-plugin/weather-config.c:1266
 msgid "_Tooltip style:"
@@ -871,7 +872,7 @@ msgid ""
 "Hide the scrollbox to save valuable space on the panel. Most interesting "
 "information is also provided in the tooltip - provided you choose an "
 "appropriate tooltip style - that is shown when hovering over the icon."
-msgstr ""
+msgstr "הסתר את תיבת הגלילה כדי לשמור מרחב שימושי בפאנל. המידע המעניין ביותר 
מסופק גם בטיפ עזר - בהינתן שאתה בוחר סגנון טיפ עזר מתאים - זה מוצג כאשר סמן 
העכבר מעל האייקון."
 
 #. values to show at once (multiple lines)
 #: ../panel-plugin/weather-config.c:1823
@@ -1158,7 +1159,7 @@ msgstr "מקום ללא שם"
 #: ../panel-plugin/weather-summary.c:70
 #, c-format
 msgid "\t%s%s%s%s%s\n"
-msgstr ""
+msgstr "\t%s%s%s%s%s\n"
 
 #. TRANSLATORS: DO NOT 

[Xfce4-commits] [panel-plugins/xfce4-xfapplet-plugin] branch master updated (5100eb3 -> 355397b)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository panel-plugins/xfce4-xfapplet-plugin.

  from  5100eb3   I18n: Update translation lt (100%).
   new  355397b   I18n: Update translation he (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/he.po |   17 +
 1 file changed, 9 insertions(+), 8 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-wmdock-plugin] 01/01: I18n: Add new translation he (100%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository panel-plugins/xfce4-wmdock-plugin.

commit 5feff89814beaa65a828126dea822a9269c78de7
Author: Elishai Eliyahu 
Date:   Mon Feb 8 18:31:47 2016 +0100

I18n: Add new translation he (100%).

28 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/he.po |  137 ++
 1 file changed, 137 insertions(+)

diff --git a/po/he.po b/po/he.po
new file mode 100644
index 000..23c05e5
--- /dev/null
+++ b/po/he.po
@@ -0,0 +1,137 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# 
+# Translators:
+# Elishai Eliyahu , 2016
+msgid ""
+msgstr ""
+"Project-Id-Version: Xfce Panel Plugins\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2013-11-05 12:31+0100\n"
+"PO-Revision-Date: 2016-02-08 13:43+\n"
+"Last-Translator: Elishai Eliyahu \n"
+"Language-Team: Hebrew 
(http://www.transifex.com/xfce/xfce-panel-plugins/language/he/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: he\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: ../panel-plugin/wmdock.c:190
+#, c-format
+msgid "Only a single instance of `%s' can run."
+msgstr "'%s' יכול להופיע רק פעם אחת."
+
+#: ../panel-plugin/wmdock.c:193
+msgid "Only a single instance of `xfce4-wmdock-plugin' can run."
+msgstr "'xfce4-wmdock-plugin' יכול להופיע רק פעם אחת."
+
+#: ../panel-plugin/dnd.c:73
+#, c-format
+msgid "Do you want remove the dockapp \"%s\"?"
+msgstr "האם ברצונך להסיר את יישומון העוגן \"%s\"? "
+
+#: ../panel-plugin/props.c:93
+msgid "Changes maybe not work properly until you restart XFCE!"
+msgstr "יכול להיות שהשינויים לא יכנסו לתוקף עד שתאתחל את XFCE! "
+
+#: ../panel-plugin/props.c:170
+msgid "Changes will take effect when you restart XFCE!"
+msgstr "שינויים יכנסו לתוקף כאשר תאתחל את XFCE! "
+
+#: ../panel-plugin/props.c:386
+msgid "No dockapp is running!"
+msgstr "אף יישומון עוגן לא פועל!"
+
+#. Create the configure dialog.
+#: ../panel-plugin/props.c:415 ../panel-plugin/wmdock.desktop.in.in.h:1
+msgid "WMdock"
+msgstr "WMdock"
+
+#: ../panel-plugin/props.c:418
+msgid "Remove dockapp"
+msgstr "הסר dockapp"
+
+#: ../panel-plugin/props.c:434
+msgid "General settings"
+msgstr "הגדרות כלליות"
+
+#: ../panel-plugin/props.c:435
+msgid "Dockapp detection"
+msgstr "גילוי יישומון עוגן"
+
+#: ../panel-plugin/props.c:436
+msgid "Mode settings"
+msgstr "הגדרות מצב"
+
+#: ../panel-plugin/props.c:483
+msgid "Select dockapp to configure:"
+msgstr "בחר יישומון עוגן להגדרה:"
+
+#: ../panel-plugin/props.c:492
+msgid "Shell command:"
+msgstr "פקודת מעטפת:"
+
+#: ../panel-plugin/props.c:503
+msgid "Display tile in the background."
+msgstr "הצג אריח ברקע."
+
+#: ../panel-plugin/props.c:504
+msgid "Display a separate WMdock properties button in the panel."
+msgstr "הצג כפתור מאפייני WMdock נפרד בלוח."
+
+#: ../panel-plugin/props.c:505
+msgid "Add only dockapps which start with pattern in list. (e.g.: ^wm;^as)"
+msgstr "הוסף רק יישומוני עוגן המתחילים עם הדוגמה שברשימה. (למשל ^wm;^as) "
+
+#: ../panel-plugin/props.c:506
+msgid "Display dockapps in separate windows and not in the panel."
+msgstr "הצג יישומוני עוגן בחלונות נפרדים ולא בלוח."
+
+#: ../panel-plugin/props.c:507
+msgid "Don't use panel size as offset for the first dockapp."
+msgstr "אל תשתמש בגודל לוח כקיזוז ליישומון עוגן ראשון."
+
+#: ../panel-plugin/props.c:508
+msgid "Keep dockapp windows on top."
+msgstr "שמור חלונות יישומוני עוגן למעלה."
+
+#: ../panel-plugin/props.c:509
+msgid "Enable free positioning of the first dockapp on the screen."
+msgstr "אפשר מיקום חופשי של יישומון העוגן הראשון על המסך."
+
+#: ../panel-plugin/props.c:538
+msgid ""
+"Hint: Is the first dockapp covered by a XFCE panel, please try to move the 
plugin\n"
+"to this panel to correct this problem."
+msgstr "רמז: אם יישומון העוגן הראשון מכוסה ע\"י לוח XFCE, אנא נסה להזיז את 
התוסף\nללוח זה על מנת לתקן את הבעיה."
+
+#: ../panel-plugin/props.c:542
+msgid "Placement:"
+msgstr "מיקום:"
+
+#: ../panel-plugin/props.c:544
+msgid "Top left"
+msgstr "עליון שמאל"
+
+#: ../panel-plugin/props.c:545
+msgid "Top right"
+msgstr "עליון ימין"
+
+#: ../panel-plugin/props.c:546
+msgid "Bottom left"
+msgstr "תחתון שמאל"
+
+#: ../panel-plugin/props.c:547
+msgid "Bottom right"
+msgstr "תחתון ימין"
+
+#: ../panel-plugin/rcfile.c:93
+#, c-format
+msgid "Failed to start `%s'!"
+msgstr "נכשל להתחיל `%s'!"
+
+#: ../panel-plugin/wmdock.desktop.in.in.h:2
+msgid "Plugin for WindowMaker dockapps"
+msgstr "תוסף עבור dockapps של WindowMaker"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list

[Xfce4-commits] [panel-plugins/xfce4-wmdock-plugin] branch master updated (e360bb2 -> 5feff89)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository panel-plugins/xfce4-wmdock-plugin.

  from  e360bb2   I18n: Update translation el (75%).
   new  5feff89   I18n: Add new translation he (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/{da.po => he.po} |   65 +--
 1 file changed, 32 insertions(+), 33 deletions(-)
 copy po/{da.po => he.po} (58%)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-verve-plugin] branch master updated (5f0bad0 -> 3049f28)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository panel-plugins/xfce4-verve-plugin.

  from  5f0bad0   I18n: Update translation he (68%).
   new  3049f28   I18n: Update translation he (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/he.po |   21 +++--
 1 file changed, 11 insertions(+), 10 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [panel-plugins/xfce4-weather-plugin] branch master updated (297a0da -> f8edf64)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository panel-plugins/xfce4-weather-plugin.

  from  297a0da   I18n: Update translation el (100%).
   new  f8edf64   I18n: Update translation he (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/he.po |   75 +++---
 1 file changed, 38 insertions(+), 37 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfce4-panel] 02/02: I18n: Update translation eu (100%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository xfce/xfce4-panel.

commit d201ac05f974c975b5367432f7f92f288955a230
Author: Egoitz Rodriguez Obieta 
Date:   Mon Feb 8 18:30:41 2016 +0100

I18n: Update translation eu (100%).

395 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/eu.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/po/eu.po b/po/eu.po
index e2acfd7..39f60d5 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -13,7 +13,7 @@ msgstr ""
 "Project-Id-Version: Xfce4-panel\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-09-27 18:30+0200\n"
-"PO-Revision-Date: 2015-12-15 23:00+\n"
+"PO-Revision-Date: 2016-02-08 15:33+\n"
 "Last-Translator: Egoitz Rodriguez Obieta \n"
 "Language-Team: Basque 
(http://www.transifex.com/xfce/xfce4-panel/language/eu/)\n"
 "MIME-Version: 1.0\n"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/tumbler] 01/01: I18n: Update translation eu (100%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository xfce/tumbler.

commit 059d9cd6a6b0ec9c400ac82f75cd17aeaee27ea1
Author: Piarres Beobide 
Date:   Mon Feb 8 18:30:34 2016 +0100

I18n: Update translation eu (100%).

44 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/eu.po |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/po/eu.po b/po/eu.po
index 6b69265..865b28b 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -3,15 +3,15 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Piarres Beobide , 2010
+# Piarres Beobide , 2010,2016
 msgid ""
 msgstr ""
 "Project-Id-Version: Tumbler\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-02 22:38+0200\n"
-"PO-Revision-Date: 2013-07-04 08:07+\n"
+"PO-Revision-Date: 2016-02-08 15:46+\n"
 "Last-Translator: Piarres Beobide \n"
-"Language-Team: Basque 
(http://www.transifex.com/projects/p/xfce/language/eu/)\n"
+"Language-Team: Basque (http://www.transifex.com/xfce/tumbler/language/eu/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -178,7 +178,7 @@ msgstr "Huts \"%s\" poster irudia kargatzean"
 #: ../plugins/cover-thumbnailer/cover-thumbnailer.c:430
 #, c-format
 msgid "Failed to load the metadata from \"%s\""
-msgstr ""
+msgstr "Huts \"%s\"-tik metadata kargatzean"
 
 #: ../plugins/cover-thumbnailer/cover-thumbnailer.c:626
 msgid ""

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/thunar] branch master updated (ec5bd55 -> a32953b)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository xfce/thunar.

  from  ec5bd55   I18n: Update translation el (100%).
   new  a32953b   I18n: Update translation eu (98%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/eu.po |   18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/thunar] 01/01: I18n: Update translation eu (98%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository xfce/thunar.

commit a32953b297bfbfd9a67689a3b2f4035240eeaca8
Author: Piarres Beobide 
Date:   Mon Feb 8 18:30:20 2016 +0100

I18n: Update translation eu (98%).

729 translated messages, 9 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/eu.po |   18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/po/eu.po b/po/eu.po
index 8c248a1..ee5c16b 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -3,14 +3,14 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Piarres Beobide , 2006-2009,2013,2015
+# Piarres Beobide , 2006-2009,2013,2015-2016
 # Piarres Beobide , 2010
 msgid ""
 msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-02-19 18:30+0100\n"
-"PO-Revision-Date: 2015-12-15 22:57+\n"
+"PO-Revision-Date: 2016-02-08 15:38+\n"
 "Last-Translator: Piarres Beobide \n"
 "Language-Team: Basque (http://www.transifex.com/xfce/thunar/language/eu/)\n"
 "MIME-Version: 1.0\n"
@@ -943,7 +943,7 @@ msgstr "%s-ra lotura"
 #: ../thunar/thunar-io-jobs-util.c:123
 #, c-format
 msgid "link %u to %s"
-msgstr ""
+msgstr "lotu %u %s -ra"
 
 #: ../thunar/thunar-job.c:254
 #, c-format
@@ -1574,12 +1574,12 @@ msgstr "Aukera hau hautatu karpetak fitxategiak baino 
lehen zerrendatzeko karpet
 
 #: ../thunar/thunar-preferences-dialog.c:303
 msgid "Show file size in binary format"
-msgstr ""
+msgstr "Bistarazi fitxategi tamaina bitar formatuan"
 
 #: ../thunar/thunar-preferences-dialog.c:305
 msgid ""
 "Select this option to show file size in binary format instead of decimal."
-msgstr ""
+msgstr "Aukera hau hautatu fitxategi tamaina hamarren beharrean bitar 
formatuan bistaratzeko"
 
 #: ../thunar/thunar-preferences-dialog.c:325
 msgid "_Text beside icons"
@@ -1844,7 +1844,7 @@ msgstr "Bolumena:"
 
 #: ../thunar/thunar-properties-dialog.c:496
 msgid "Usage:"
-msgstr ""
+msgstr "Erabilera:"
 
 #. Emblem chooser
 #: ../thunar/thunar-properties-dialog.c:529
@@ -2365,7 +2365,7 @@ msgstr "Fitxategi _hutsa"
 msgid ""
 "Error while copying to \"%s\": %s more space is required to copy to the "
 "destination"
-msgstr ""
+msgstr "Errore \"%s\"-ra kopiatzean: %s leku gehiago behar da helburu 
horretara kopiatzeko"
 
 #: ../thunar/thunar-transfer-job.c:751
 #, c-format
@@ -3595,8 +3595,8 @@ msgstr ""
 #. to. This isn't a good idea, but is common on single user systems.
 #: ../org.xfce.thunar.policy.in.in.h:6
 msgid "Run Thunar as root"
-msgstr ""
+msgstr "Exekutatu Thunar root gisa"
 
 #: ../org.xfce.thunar.policy.in.in.h:7
 msgid "Authentication is required to run Thunar as root."
-msgstr ""
+msgstr "Autentifikazio beharrezkoa da Thunar root gisa exekutatzeko"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfce4-panel] branch master updated (16d774f -> d201ac0)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository xfce/xfce4-panel.

  from  16d774f   I18n: Update translation el (100%).
   new  90fd19a   I18n: Update translation el (100%).
   new  d201ac0   I18n: Update translation eu (100%).

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/el.po |   12 ++--
 po/eu.po |2 +-
 2 files changed, 7 insertions(+), 7 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/tumbler] branch master updated (22acd8b -> 059d9cd)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository xfce/tumbler.

  from  22acd8b   I18n: Update translation el (95%).
   new  059d9cd   I18n: Update translation eu (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/eu.po |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/exo] 01/01: I18n: Update translation eu (100%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository xfce/exo.

commit 4a23ef30625b435c56ccf1600db15554e94d948b
Author: Piarres Beobide 
Date:   Mon Feb 8 18:30:02 2016 +0100

I18n: Update translation eu (100%).

286 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/eu.po |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/po/eu.po b/po/eu.po
index 041b12b..339b3f3 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -11,8 +11,8 @@ msgstr ""
 "Project-Id-Version: Exo\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-02-17 06:30+0100\n"
-"PO-Revision-Date: 2015-12-29 20:29+\n"
-"Last-Translator: Asier Iturralde Sarasola \n"
+"PO-Revision-Date: 2016-02-08 15:29+\n"
+"Last-Translator: Piarres Beobide \n"
 "Language-Team: Basque (http://www.transifex.com/xfce/exo/language/eu/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/exo] branch master updated (91d3993 -> 4a23ef3)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository xfce/exo.

  from  91d3993   I18n: Update translation el (99%).
   new  4a23ef3   I18n: Update translation eu (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/eu.po |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/mousepad] 01/01: I18n: Update translation el (91%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository apps/mousepad.

commit e397372caa57b9332b2a59db8b15136b7e528e8d
Author: Apostolos Papadimitriu 
Date:   Tue Feb 9 00:31:13 2016 +0100

I18n: Update translation el (91%).

281 translated messages, 25 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/el.po |   38 +++---
 1 file changed, 19 insertions(+), 19 deletions(-)

diff --git a/po/el.po b/po/el.po
index fe2e4c0..42a7424 100644
--- a/po/el.po
+++ b/po/el.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-07-15 06:30+0200\n"
-"PO-Revision-Date: 2016-02-07 22:01+\n"
+"PO-Revision-Date: 2016-02-08 22:26+\n"
 "Last-Translator: Apostolos Papadimitriu \n"
 "Language-Team: Greek (http://www.transifex.com/xfce/xfce-apps/language/el/)\n"
 "MIME-Version: 1.0\n"
@@ -62,7 +62,7 @@ msgstr "Το mousepad είναι ένας γρήγορος επεξεργαστ
 
 #: ../mousepad/mousepad-dialogs.c:45
 msgid "translator-credits"
-msgstr "Γιώργος Στεφανάκης "
+msgstr "Γιώργος Στεφανάκης \nΑπόστολος Παπαδημητρίου 
"
 
 #. display an error message to the user
 #: ../mousepad/mousepad-dialogs.c:100
@@ -339,11 +339,11 @@ msgstr "Πάντα"
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:5
 msgid "Insert Tabs"
-msgstr "Εισαγωγή Tabs"
+msgstr "Εισαγωγή tabs"
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:6
 msgid "Insert Spaces"
-msgstr "Εισαγωγή Κενών"
+msgstr "Εισαγωγή κενών"
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:7
 msgid "none"
@@ -364,7 +364,7 @@ msgstr "Μικρή Εργαλειοθήκη"
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:11
 msgid "Large Toolbar"
-msgstr "Μεγάλη Εργαλειοθήκη"
+msgstr "Μεγάλη εργαλειοθήκη"
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:12
 msgid "Button"
@@ -401,7 +401,7 @@ msgstr "Εμφάνιση αριθμών γραμμής"
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:20
 msgid "Display whitespace"
-msgstr "Εμφάνιση συμβόλου κενού"
+msgstr "Προβολή συμβόλου κενού"
 
 #: ../mousepad/mousepad-prefs-dialog.glade.h:21
 msgid "Display line endings"
@@ -629,7 +629,7 @@ msgstr "Δ_ιάκριση πεζών/κεφαλαίων"
 #. match whole word
 #: ../mousepad/mousepad-replace-dialog.c:229
 msgid "_Match whole word"
-msgstr "Αναζήτηση _ολόκληρων λέξεων"
+msgstr "_Ταίριασμα ολόκληρων λέξεων"
 
 #: ../mousepad/mousepad-replace-dialog.c:240
 msgid "Replace _all in:"
@@ -874,7 +874,7 @@ msgstr "Επικόλληση από το ιστορικό του Πρόχειρ
 
 #: ../mousepad/mousepad-window.c:425
 msgid "Paste as _Column"
-msgstr "Επικόλληση ως _Στήλη"
+msgstr "Επικόλληση ως _στήλη"
 
 #: ../mousepad/mousepad-window.c:425
 msgid "Paste the clipboard text into a column"
@@ -898,11 +898,11 @@ msgstr "Αλλαγή μιας κανονικής επιλογής κειμένο
 
 #: ../mousepad/mousepad-window.c:429
 msgid "Conve_rt"
-msgstr "_Μετατροπή"
+msgstr "_μετατροπή"
 
 #: ../mousepad/mousepad-window.c:430
 msgid "To _Uppercase"
-msgstr "Σε _Κεφαλαία"
+msgstr "Σε _κεφαλαία"
 
 #: ../mousepad/mousepad-window.c:430
 msgid "Change the case of the selection to uppercase"
@@ -910,7 +910,7 @@ msgstr "Αλλαγή της επιλογής σε κεφαλαία"
 
 #: ../mousepad/mousepad-window.c:431
 msgid "To _Lowercase"
-msgstr "Σε _Πεζά"
+msgstr "Σε _πεζά"
 
 #: ../mousepad/mousepad-window.c:431
 msgid "Change the case of the selection to lowercase"
@@ -926,7 +926,7 @@ msgstr ""
 
 #: ../mousepad/mousepad-window.c:433
 msgid "To _Opposite Case"
-msgstr ""
+msgstr "Στην αντί_θετη μορφή"
 
 #: ../mousepad/mousepad-window.c:433
 msgid "Change the case of the selection opposite case"
@@ -967,11 +967,11 @@ msgstr ""
 
 #: ../mousepad/mousepad-window.c:438
 msgid "_Move Selection"
-msgstr "_Μετακίνηση Επιλογής"
+msgstr "_Μετακίνηση επιλογής"
 
 #: ../mousepad/mousepad-window.c:439
 msgid "Line _Up"
-msgstr "Γραμμή _Πάνω"
+msgstr "Γραμμή _πάνω"
 
 #: ../mousepad/mousepad-window.c:439
 msgid "Move the selection one line up"
@@ -979,7 +979,7 @@ msgstr "Μετακίνηση της επιλογής μια γραμμή πάν
 
 #: ../mousepad/mousepad-window.c:440
 msgid "Line _Down"
-msgstr "Γραμμή _Κάτω"
+msgstr "Γραμμή _κάτω"
 
 #: ../mousepad/mousepad-window.c:440
 msgid "Move the selection one line down"
@@ -987,7 +987,7 @@ msgstr "Μετακίνηση της επιλογής μια γραμμή κάτ
 
 #: ../mousepad/mousepad-window.c:441
 msgid "Dup_licate Line / Selection"
-msgstr "Διπ_λασιασμός Γραμμής / Επιλογής"
+msgstr "Διπ_λασιασμός γραμμής / επιλογής"
 
 #: ../mousepad/mousepad-window.c:441
 msgid "Duplicate the current line or selection"
@@ -1075,7 +1075,7 @@ msgstr "Έ_γγραφο"
 
 #: ../mousepad/mousepad-window.c:458
 msgid "Line E_nding"
-msgstr "_Τέλος Γραμμής"
+msgstr "_Τέλος γραμμής"
 
 #: ../mousepad/mousepad-window.c:459
 msgid "Tab _Size"
@@ -1139,7 +1139,7 @@ msgstr "Αλλαγή της ορατότητας της εργαλειοθήκη
 
 #: 

[Xfce4-commits] [xfce/xfce4-power-manager] 01/01: I18n: Update translation el (96%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository xfce/xfce4-power-manager.

commit 7b143a210a60f09fa85d10b79ba152b8c8f46d87
Author: Apostolos Papadimitriu 
Date:   Tue Feb 9 00:30:50 2016 +0100

I18n: Update translation el (96%).

193 translated messages, 8 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/el.po |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/po/el.po b/po/el.po
index 4753987..14c6c4a 100644
--- a/po/el.po
+++ b/po/el.po
@@ -12,7 +12,7 @@ msgstr ""
 "Project-Id-Version: Xfce4-power-manager\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-06-15 00:30+0200\n"
-"PO-Revision-Date: 2016-02-06 15:51+\n"
+"PO-Revision-Date: 2016-02-08 21:56+\n"
 "Last-Translator: Apostolos Papadimitriu \n"
 "Language-Team: Greek 
(http://www.transifex.com/xfce/xfce4-power-manager/language/el/)\n"
 "MIME-Version: 1.0\n"
@@ -430,7 +430,7 @@ msgstr "Αυτό είναι το %s έκδοση %s, που τρέχει στο
 #: ../settings/xfpm-settings-app.c:348
 #, c-format
 msgid "Built with GTK+ %d.%d.%d, linked with GTK+ %d.%d.%d."
-msgstr ""
+msgstr "Χτίστηκε με το GTK+ %d.%d.%d, συνδέθηκε με το GTK+ %d.%d.%d."
 
 #: ../settings/xfce4-power-manager-settings.desktop.in.h:1
 #: ../src/xfpm-power.c:365 ../src/xfpm-power.c:647 ../src/xfpm-power.c:690

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/gigolo] 01/01: I18n: Update translation el (100%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository apps/gigolo.

commit 520fafafbeee25a828331deffb2acd2af37b5201
Author: Nick Schermer 
Date:   Tue Feb 9 00:31:08 2016 +0100

I18n: Update translation el (100%).

142 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/el.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/po/el.po b/po/el.po
index 5b715e3..00e94b7 100644
--- a/po/el.po
+++ b/po/el.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-03 20:23+0200\n"
-"PO-Revision-Date: 2016-02-05 19:20+\n"
+"PO-Revision-Date: 2016-02-08 21:29+\n"
 "Last-Translator: Nick Schermer \n"
 "Language-Team: Greek (http://www.transifex.com/xfce/xfce-apps/language/el/)\n"
 "MIME-Version: 1.0\n"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfce4-settings] 01/01: I18n: Update translation el (97%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch xfce-4.10
in repository xfce/xfce4-settings.

commit 8efe80d47515d95033971dcb62a721ec9986609d
Author: Apostolos Papadimitriu 
Date:   Tue Feb 9 00:31:03 2016 +0100

I18n: Update translation el (97%).

321 translated messages, 9 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/el.po |   85 +++---
 1 file changed, 43 insertions(+), 42 deletions(-)

diff --git a/po/el.po b/po/el.po
index 126e549..1247723 100644
--- a/po/el.po
+++ b/po/el.po
@@ -3,6 +3,7 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Apostolos Papadimitriu , 2016
 # Efstathios Iosifidis , 2015
 # Efstathios Iosifidis , 2012
 # ebal , 2008-2009
@@ -11,8 +12,8 @@ msgstr ""
 "Project-Id-Version: Xfce4-settings\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-02 23:16+0200\n"
-"PO-Revision-Date: 2016-02-06 14:56+\n"
-"Last-Translator: Efstathios Iosifidis \n"
+"PO-Revision-Date: 2016-02-08 23:17+\n"
+"Last-Translator: Apostolos Papadimitriu \n"
 "Language-Team: Greek 
(http://www.transifex.com/xfce/xfce4-settings/language/el/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
@@ -47,11 +48,11 @@ msgstr "Οι βοηθητικές τεχνολογίες θα είναι δια
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:7
 msgid "No AT-SPI provider was found on your system"
-msgstr ""
+msgstr "Δεν βρέθηκε AT-SPI παροχός στο σύστημά σας "
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:8
 msgid "_Assistive Technologies"
-msgstr ""
+msgstr "_Βοηθητικές τεχνολογίες"
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:9
 msgid "Use _sticky keys"
@@ -448,11 +449,11 @@ msgstr "Ρυ_θμίσεις"
 #: ../dialogs/appearance-settings/main.c:733
 #, c-format
 msgid "File is larger than %d MB, installation aborted"
-msgstr ""
+msgstr "Το αρχείο είναι μεγαλύτερο από %d ΜΒ, ματαίωση εγκατάστασης"
 
 #: ../dialogs/appearance-settings/main.c:738
 msgid "Failed to create temporary directory"
-msgstr ""
+msgstr "Αποτυχία δημιουργίας προσωρινού καταλόγου"
 
 #: ../dialogs/appearance-settings/main.c:743
 msgid "Failed to extract archive"
@@ -460,7 +461,7 @@ msgstr "Αποτυχία αποσυμπίεσης αρχείου"
 
 #: ../dialogs/appearance-settings/main.c:748
 msgid "Unknown format, only archives and directories are supported"
-msgstr ""
+msgstr "Άγνωστη μορφή, υποστηρίζονται μόνο αρχεία και κατάλογοι"
 
 #: ../dialogs/appearance-settings/main.c:753
 #, c-format
@@ -731,7 +732,7 @@ msgstr "Επεξεργασία ρυθμίσεων πληκτρολογίου κ
 
 #: ../dialogs/keyboard-settings/keyboard-dialog.glade.h:5
 msgid "Restore num l_ock state on startup"
-msgstr ""
+msgstr "Επαναφορά της κατάστασης του num lock κατά την εκκίνηση"
 
 #: ../dialogs/keyboard-settings/keyboard-dialog.glade.h:6
 #: ../dialogs/mouse-settings/mouse-dialog.glade.h:21
@@ -806,7 +807,7 @@ msgstr "Επαναφορά στις _προεπιλογές"
 
 #: ../dialogs/keyboard-settings/keyboard-dialog.glade.h:23
 msgid "A_pplication Shortcuts"
-msgstr ""
+msgstr "Σ_υντομεύσεις εφαρμογών"
 
 #: ../dialogs/keyboard-settings/keyboard-dialog.glade.h:24
 msgid "_Use system defaults"
@@ -888,17 +889,17 @@ msgstr "Επιλογή εφαρμογής"
 
 #: ../dialogs/mime-settings/xfce-mime-chooser.c:204
 msgid "Use a c_ustom command:"
-msgstr ""
+msgstr "Χρήση _προσαρμοσμένης εντολής:"
 
 #: ../dialogs/mime-settings/xfce-mime-chooser.c:205
 msgid ""
 "Use a custom command for an application that is not available from the above"
 " application list."
-msgstr ""
+msgstr "Χρησιμοποιήστε μια προσαρμοσμένη εντολή για μια εφαρμογή που δεν είναι 
 διαθέσιμη στην παραπάνω λίστα των εφαρμογών."
 
 #: ../dialogs/mime-settings/xfce-mime-chooser.c:223
 msgid "_Browse..."
-msgstr ""
+msgstr "_Περιήγηση..."
 
 #: ../dialogs/mime-settings/xfce-mime-chooser.c:376
 msgid "Select an Application"
@@ -910,7 +911,7 @@ msgstr "Καμία διαθέσιμη"
 
 #: ../dialogs/mime-settings/xfce-mime-chooser.c:573
 msgid "Recommended Applications"
-msgstr ""
+msgstr "Συνιστώμενες Εφαρμογές"
 
 #: ../dialogs/mime-settings/xfce-mime-chooser.c:591
 msgid "Other Applications"
@@ -919,7 +920,7 @@ msgstr "Άλες εφαρμογές"
 #: ../dialogs/mime-settings/xfce-mime-chooser.c:611
 #, c-format
 msgid "Open %s and other files of type \"%s\" with:"
-msgstr ""
+msgstr "Άνοιγμα %s και άλλων αρχείων του τύπου \"%s\" με:"
 
 #: ../dialogs/mime-settings/xfce-mime-chooser.c:647
 #, c-format
@@ -929,20 +930,20 @@ msgstr "Αποτυχία προσθήκης νέας εφαρμογής \"%s\""
 #: ../dialogs/mime-settings/xfce-mime-window.c:174
 #: ../dialogs/mime-settings/xfce4-mime-settings.desktop.in.h:1
 msgid "MIME Type Editor"
-msgstr ""
+msgstr 

[Xfce4-commits] [xfce/tumbler] branch master updated (059d9cd -> 1fb6b0f)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository xfce/tumbler.

  from  059d9cd   I18n: Update translation eu (100%).
   new  1fb6b0f   I18n: Update translation el (97%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/el.po |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/thunar-volman] 01/01: I18n: Update translation el (100%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository xfce/thunar-volman.

commit 31dd4006f7a330f3ed4720f4ccc4dff6b9870836
Author: Apostolos Papadimitriu 
Date:   Tue Feb 9 00:30:23 2016 +0100

I18n: Update translation el (100%).

112 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/el.po |   15 ++-
 1 file changed, 6 insertions(+), 9 deletions(-)

diff --git a/po/el.po b/po/el.po
index c3e74ca..2b220f2 100644
--- a/po/el.po
+++ b/po/el.po
@@ -3,6 +3,7 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Apostolos Papadimitriu , 2016
 # Efstathios Iosifidis , 2014
 # ebal , 2009
 # George Vasilakos , 2011
@@ -11,10 +12,10 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Thunar-volman\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-09-21 00:30+0200\n"
-"PO-Revision-Date: 2014-12-26 20:09+\n"
-"Last-Translator: Efstathios Iosifidis \n"
-"Language-Team: Greek 
(http://www.transifex.com/projects/p/thunar-volman/language/el/)\n"
+"POT-Creation-Date: 2015-02-26 18:30+0100\n"
+"PO-Revision-Date: 2016-02-08 22:52+\n"
+"Last-Translator: Apostolos Papadimitriu \n"
+"Language-Team: Greek 
(http://www.transifex.com/xfce/thunar-volman/language/el/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -42,7 +43,7 @@ msgstr "Διαχειριστής αφαιρούμενων μονάδων του
 
 #: ../thunar-volman/main.c:121
 msgid "All rights reserved."
-msgstr "Όλα τα δικαιώματα διατηρούνται."
+msgstr "Με την επιφύλαξη παντός δικαιώματος."
 
 #: ../thunar-volman/main.c:122
 #, c-format
@@ -524,7 +525,3 @@ msgstr "Αυτόματη εκτέλεση ενός προγράμματος ότ
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:679
 msgid "Com_mand:"
 msgstr "Εντ_ολή:"
-
-#: ../thunar-volman-settings/tvm-preferences-dialog.c:755
-msgid "Failed to open the documentation browser"
-msgstr "Αποτυχία ανοίγματος του περιηγητή βοήθειας"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfce4-settings] branch xfce-4.10 updated (fcd38cb -> 8efe80d)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch xfce-4.10
in repository xfce/xfce4-settings.

  from  fcd38cb   I18n: Update translation el (85%).
   new  8efe80d   I18n: Update translation el (97%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/el.po |   85 +++---
 1 file changed, 43 insertions(+), 42 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/thunar] branch xfce-4.10 updated (7ac3e02 -> 79dd2be)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch xfce-4.10
in repository xfce/thunar.

  from  7ac3e02   I18n: Update translation el (100%).
   new  79dd2be   I18n: Update translation el (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/el.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/thunar-volman] branch master updated (b08e166 -> 31dd400)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository xfce/thunar-volman.

  from  b08e166   I18n: Update translation he (100%).
   new  31dd400   I18n: Update translation el (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/el.po |   15 ++-
 1 file changed, 6 insertions(+), 9 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfce4-settings] branch master updated (09ff281 -> e929d94)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository xfce/xfce4-settings.

  from  09ff281   I18n: Update translation el (93%).
   new  e929d94   I18n: Update translation el (96%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/el.po |   30 +++---
 1 file changed, 15 insertions(+), 15 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/tumbler] 01/01: I18n: Update translation el (97%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository xfce/tumbler.

commit 1fb6b0f583eaffd1adbae8ced5f58c1c8f63479b
Author: Apostolos Papadimitriu 
Date:   Tue Feb 9 00:30:38 2016 +0100

I18n: Update translation el (97%).

43 translated messages, 1 untranslated message.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/el.po |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/po/el.po b/po/el.po
index 8263a93..63ab04a 100644
--- a/po/el.po
+++ b/po/el.po
@@ -12,7 +12,7 @@ msgstr ""
 "Project-Id-Version: Tumbler\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-02 22:38+0200\n"
-"PO-Revision-Date: 2016-02-05 17:19+\n"
+"PO-Revision-Date: 2016-02-08 22:14+\n"
 "Last-Translator: Apostolos Papadimitriu \n"
 "Language-Team: Greek (http://www.transifex.com/xfce/tumbler/language/el/)\n"
 "MIME-Version: 1.0\n"
@@ -187,7 +187,7 @@ msgstr "Απέτυχε η φόρτωση των μεταδεδομένων απ
 msgid ""
 "Invalid API key, you must be granted a valid key. The Movie DB backend will "
 "be disabled."
-msgstr ""
+msgstr "Άκυρο κλειδί API. Θα πρέπει να λάβετε ένα έγκυρο κλειδί. Το σύστημα 
υποστήριξης «The Movie DB» θα απενεργοποιηθεί."
 
 #: ../plugins/cover-thumbnailer/cover-thumbnailer.c:634
 msgid "No poster key found in metadata"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/gigolo] branch master updated (f108d18 -> 520fafa)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository apps/gigolo.

  from  f108d18   I18n: Update translation el (100%).
   new  520fafa   I18n: Update translation el (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/el.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfce4-settings] 01/01: I18n: Update translation el (96%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository xfce/xfce4-settings.

commit e929d9492358fc9b11cb862d3dfcced6bb8ef24c
Author: Apostolos Papadimitriu 
Date:   Tue Feb 9 00:30:58 2016 +0100

I18n: Update translation el (96%).

341 translated messages, 13 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/el.po |   30 +++---
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/po/el.po b/po/el.po
index 3f14d49..1091923 100644
--- a/po/el.po
+++ b/po/el.po
@@ -13,7 +13,7 @@ msgstr ""
 "Project-Id-Version: Xfce4-settings\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-02-06 06:30+0100\n"
-"PO-Revision-Date: 2016-02-07 22:27+\n"
+"PO-Revision-Date: 2016-02-08 23:17+\n"
 "Last-Translator: Apostolos Papadimitriu \n"
 "Language-Team: Greek 
(http://www.transifex.com/xfce/xfce4-settings/language/el/)\n"
 "MIME-Version: 1.0\n"
@@ -315,7 +315,7 @@ msgstr "Σειρά υπό-_πίξελ:"
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:11
 msgid "Hintin_g:"
-msgstr "_Εξομάλυνση"
+msgstr "_Υπόδειξη"
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:12
 msgid "_Enable anti-aliasing"
@@ -568,7 +568,7 @@ msgstr "Ρύθμιση _νέων οθονών όταν συνδέονται"
 
 #: ../dialogs/display-settings/display-dialog.glade.h:12
 msgid "Identify Displays"
-msgstr "Εντοπισμός Οθονών"
+msgstr "Εντοπισμός oθονών"
 
 #: ../dialogs/display-settings/minimal-display-dialog.glade.h:1
 msgid "Displays"
@@ -674,7 +674,7 @@ msgstr "(%i, %i)"
 #. * translation could be "Pantallas en Espejo", *not* "Espejar Pantallas".
 #: ../dialogs/display-settings/main.c:2355
 msgid "Mirror Screens"
-msgstr "Καθρέφτισμα Οθονών"
+msgstr "Καθρέφτισμα oθονών"
 
 #: ../dialogs/display-settings/main.c:2553
 msgid "(Disabled)"
@@ -811,7 +811,7 @@ msgstr "Επεξεργασία ρυθμίσεων πληκτρολογίου κ
 
 #: ../dialogs/keyboard-settings/keyboard-dialog.glade.h:5
 msgid "Restore num l_ock state on startup"
-msgstr ""
+msgstr "Επαναφορά της κατάστασης του num lock κατά την εκκίνηση"
 
 #: ../dialogs/keyboard-settings/keyboard-dialog.glade.h:6
 #: ../dialogs/mouse-settings/mouse-dialog.glade.h:30
@@ -1091,7 +1091,7 @@ msgstr "Ερώτηση"
 msgid ""
 "This will remove your custom mime-association and restore the system-wide "
 "default."
-msgstr ""
+msgstr "Αυτό θα αφαιρέσει τον προσαρμοσμένο συσχετισμό τύπου mime και θα 
επαναφέρει την προεπιλογή συστήματος."
 
 #: ../dialogs/mime-settings/xfce-mime-window.c:922
 #: ../dialogs/mime-settings/xfce-mime-window.c:993
@@ -1188,7 +1188,7 @@ msgstr "Α_ριστερόχειρες"
 
 #: ../dialogs/mouse-settings/mouse-dialog.glade.h:15
 msgid "Reverse scroll d_irection"
-msgstr ""
+msgstr "Αντίστροφη _κατεύθυνση κύλισης"
 
 #: ../dialogs/mouse-settings/mouse-dialog.glade.h:16
 msgid "When selected, the scroll wheel will work in the opposite direction"
@@ -1225,7 +1225,7 @@ msgstr "Επανα_φορά στις προεπιλογές"
 msgid ""
 "Set the acceleration and sensitivity for the selected device to the default "
 "values"
-msgstr ""
+msgstr "Θέστε την επιτάχυνση και την ευαισθησία για την επιλεγμένη συσκευή 
στις προεπιλεγμένες τιμές"
 
 #: ../dialogs/mouse-settings/mouse-dialog.glade.h:24
 msgid "Pointer Speed"
@@ -1233,7 +1233,7 @@ msgstr "Ταχύτητα Δείκτη"
 
 #: ../dialogs/mouse-settings/mouse-dialog.glade.h:25
 msgid "B_uttons and Feedback"
-msgstr ""
+msgstr "Κουμπιά και ανατροφοδότηση"
 
 #: ../dialogs/mouse-settings/mouse-dialog.glade.h:26
 msgid "Disable touchpad _while typing"
@@ -1254,7 +1254,7 @@ msgstr ""
 
 #: ../dialogs/mouse-settings/mouse-dialog.glade.h:31
 msgid "Scrolling _mode:"
-msgstr ""
+msgstr "Μέθοδος _κύλισης"
 
 #: ../dialogs/mouse-settings/mouse-dialog.glade.h:32
 msgid "Enable hori_zontal scrolling"
@@ -1278,7 +1278,7 @@ msgstr "Περισ_τροφή:"
 
 #: ../dialogs/mouse-settings/mouse-dialog.glade.h:37
 msgid "Tab_let"
-msgstr ""
+msgstr "Τάμπε_λετ"
 
 #: ../dialogs/mouse-settings/mouse-dialog.glade.h:38
 msgid "_Devices"
@@ -1429,7 +1429,7 @@ msgstr "Διπλός"
 
 #: ../xfce4-settings-editor/xfce-settings-editor-dialog.c:804
 msgid "_Reset Channel"
-msgstr ""
+msgstr "__Επαναφορά καναλιού"
 
 #: ../xfce4-settings-editor/xfce-settings-editor-dialog.c:805
 msgid "Resetting a channel will permanently remove those custom settings."
@@ -1451,12 +1451,12 @@ msgstr "Oθόνη %s"
 
 #: ../xfce4-settings-editor/xfce-settings-editor-dialog.c:946
 msgid "Watch an Xfconf channel for property changes"
-msgstr ""
+msgstr "Παρακολούθηση καναλιού Xconf για αλλαγές ιδιοτήτων"
 
 #: ../xfce4-settings-editor/xfce-settings-editor-dialog.c:982
 #, c-format
 msgid "start monitoring channel \"%s\""
-msgstr ""
+msgstr "έναρξη παρακολούθησης καναλιού \"%s\":"
 
 #: ../xfce4-settings-editor/xfce-settings-editor-dialog.c:1036
 msgid "_Monitor"
@@ -1609,7 +1609,7 @@ msgstr "Ρυθμίσεις διαλόγου προς εμφάνιση"
 
 #: 

[Xfce4-commits] [apps/parole] branch master updated (15f87e5 -> ff89a07)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository apps/parole.

  from  15f87e5   I18n: Update translation el (96%).
   new  ff89a07   I18n: Update translation el (96%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/el.po |   58 +-
 1 file changed, 29 insertions(+), 29 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/orage] branch master updated (a917c30 -> 3c916d1)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository apps/orage.

  from  a917c30   I18n: Update translation el (75%).
   new  3c916d1   I18n: Update translation el (76%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/el.po |   18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/ristretto] branch master updated (e44df41 -> 78ebadf)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository apps/ristretto.

  from  e44df41   I18n: Update translation el (98%).
   new  78ebadf   I18n: Update translation el (98%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/el.po |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/mousepad] branch master updated (1d75a72 -> e397372)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository apps/mousepad.

  from  1d75a72   I18n: Update translation el (91%).
   new  e397372   I18n: Update translation el (91%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/el.po |   38 +++---
 1 file changed, 19 insertions(+), 19 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/squeeze] branch master updated (4cfa040 -> 33d17fd)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository apps/squeeze.

  from  4cfa040   I18n: Update translation el (100%).
   new  33d17fd   I18n: Update translation el (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/el.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/xfmpc] branch master updated (bef2f55 -> b9e7f7f)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository apps/xfmpc.

  from  bef2f55   I18n: Update translation el (100%).
   new  b9e7f7f   I18n: Update translation el (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/el.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/ristretto] 01/01: I18n: Update translation el (98%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository apps/ristretto.

commit 78ebadf282f6a3d0377ff345ec3f92511413f4c9
Author: Apostolos Papadimitriu 
Date:   Tue Feb 9 00:31:27 2016 +0100

I18n: Update translation el (98%).

186 translated messages, 2 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/el.po |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/po/el.po b/po/el.po
index b2069da..e57d77e 100644
--- a/po/el.po
+++ b/po/el.po
@@ -13,7 +13,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: xfce-i...@xfce.org\n"
 "POT-Creation-Date: 2015-03-02 18:31+0100\n"
-"PO-Revision-Date: 2016-02-07 21:35+\n"
+"PO-Revision-Date: 2016-02-08 22:26+\n"
 "Last-Translator: Apostolos Papadimitriu \n"
 "Language-Team: Greek (http://www.transifex.com/xfce/xfce-apps/language/el/)\n"
 "MIME-Version: 1.0\n"
@@ -827,7 +827,7 @@ msgstr "Περιστροφή:"
 
 #: ../src/xfce_wallpaper_manager.c:397
 msgid "Apply to all workspaces"
-msgstr "Εφαρμογή σε όλες τις επιφάνειες εργασίας"
+msgstr "Εφαρμογή σε όλους τους χώρους εργασίας"
 
 #: ../src/xfce_wallpaper_manager.c:404 ../src/gnome_wallpaper_manager.c:246
 msgid "Set as wallpaper"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/thunar-volman] branch xfce-4.10 updated (afca062 -> 9cb5728)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch xfce-4.10
in repository xfce/thunar-volman.

  from  afca062   I18n: Update translation he (100%).
   new  9cb5728   I18n: Update translation el (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/el.po |   12 +++-
 1 file changed, 3 insertions(+), 9 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/thunar] 01/01: I18n: Update translation el (100%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository xfce/thunar.

commit d50efc89cdf76adb6111b612043f4f31bd1953e8
Author: Apostolos Papadimitriu 
Date:   Tue Feb 9 00:30:14 2016 +0100

I18n: Update translation el (100%).

738 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/el.po |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/po/el.po b/po/el.po
index 9873df7..8fecb98 100644
--- a/po/el.po
+++ b/po/el.po
@@ -13,7 +13,7 @@ msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-02-19 18:30+0100\n"
-"PO-Revision-Date: 2016-02-06 14:49+\n"
+"PO-Revision-Date: 2016-02-08 22:58+\n"
 "Last-Translator: Apostolos Papadimitriu \n"
 "Language-Team: Greek (http://www.transifex.com/xfce/thunar/language/el/)\n"
 "MIME-Version: 1.0\n"
@@ -2519,7 +2519,7 @@ msgstr "Άνοιγμα ενός άλλου παράθυρου του Thunar γι
 
 #: ../thunar/thunar-window.c:352
 msgid "Detac_h Tab"
-msgstr "_Απόσπαση Καρτέλας"
+msgstr "_Απόσπαση καρτέλας"
 
 #: ../thunar/thunar-window.c:352
 msgid "Open current folder in a new window"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/thunar] 01/01: I18n: Update translation el (100%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch xfce-4.10
in repository xfce/thunar.

commit 79dd2be5df19eb96fc030ebaa703c11e8e5fec00
Author: Nick Schermer 
Date:   Tue Feb 9 00:30:32 2016 +0100

I18n: Update translation el (100%).

681 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/el.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/po/el.po b/po/el.po
index 9e5951d..e42c099 100644
--- a/po/el.po
+++ b/po/el.po
@@ -10,7 +10,7 @@ msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-02 23:03+0200\n"
-"PO-Revision-Date: 2016-02-06 14:49+\n"
+"PO-Revision-Date: 2016-02-08 22:58+\n"
 "Last-Translator: Nick Schermer \n"
 "Language-Team: Greek (http://www.transifex.com/xfce/thunar/language/el/)\n"
 "MIME-Version: 1.0\n"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/thunar-volman] 01/01: I18n: Update translation el (100%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch xfce-4.10
in repository xfce/thunar-volman.

commit 9cb5728ffec8a44d5546bae44839c70013e933f4
Author: Nick Schermer 
Date:   Tue Feb 9 00:30:27 2016 +0100

I18n: Update translation el (100%).

113 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/el.po |   12 +++-
 1 file changed, 3 insertions(+), 9 deletions(-)

diff --git a/po/el.po b/po/el.po
index 41d41af..e62976e 100644
--- a/po/el.po
+++ b/po/el.po
@@ -11,9 +11,9 @@ msgstr ""
 "Project-Id-Version: Thunar-volman\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-02 23:06+0200\n"
-"PO-Revision-Date: 2013-11-19 14:37+\n"
-"Last-Translator: Nick \n"
-"Language-Team: Greek 
(http://www.transifex.com/projects/p/xfce/language/el/)\n"
+"PO-Revision-Date: 2016-02-08 22:52+\n"
+"Last-Translator: Nick Schermer \n"
+"Language-Team: Greek 
(http://www.transifex.com/xfce/thunar-volman/language/el/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -359,7 +359,6 @@ msgid "Shell Scripts"
 msgstr "Δέσμες ενεργειών κέλυφους"
 
 #. Storage
-#. 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:130
 msgid "Storage"
 msgstr "Μέσο αποθήκευσης"
@@ -405,7 +404,6 @@ msgid "Command for A_udio CDs:"
 msgstr "Εντολή για CD ή_χου:"
 
 #. Multimedia
-#. 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:255
 msgid "Multimedia"
 msgstr "Πολυμέσα"
@@ -450,7 +448,6 @@ msgid "Play _music files when connected"
 msgstr "Αναπαραγωγή _μουσικών αρχείων όταν συνδεθούν"
 
 #. Cameras
-#. 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:379
 msgid "Cameras"
 msgstr "Φωτογραφικές μηχανές"
@@ -464,7 +461,6 @@ msgid "Import digital photographs when connected"
 msgstr "Εισαγωγή ψηφιακών φωτογραφιών όταν συνδεθούν "
 
 #. PDAs
-#. 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:427
 msgid "PDAs"
 msgstr "PDA"
@@ -486,7 +482,6 @@ msgid "Sync Pocket P_C devices when connected"
 msgstr "Συγχρονισμός _συσκευών Pocket PC όταν συνδεθεί"
 
 #. Printers
-#. 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:517
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:528
 msgid "Printers"
@@ -497,7 +492,6 @@ msgid "Automatically run a program when a _printer is 
connected"
 msgstr "Αυτόματη εκτέλεση προγράμματος όταν συνδεθεί ένας ε_κτυπωτής"
 
 #. Input Devices
-#. 
 #: ../thunar-volman-settings/tvm-preferences-dialog.c:565
 msgid "Input Devices"
 msgstr "Συσκευές εισόδου"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/thunar] branch master updated (a32953b -> d50efc8)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository xfce/thunar.

  from  a32953b   I18n: Update translation eu (98%).
   new  d50efc8   I18n: Update translation el (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/el.po |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfce4-power-manager] branch master updated (c21f726 -> 7b143a2)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository xfce/xfce4-power-manager.

  from  c21f726   I18n: Update translation el (95%).
   new  7b143a2   I18n: Update translation el (96%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/el.po |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfdesktop] branch xfce-4.10 updated (6b8c2a3 -> 2598867)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch xfce-4.10
in repository xfce/xfdesktop.

  from  6b8c2a3   I18n: Update translation el (100%).
   new  2598867   I18n: Update translation el (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/el.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfdesktop] branch master updated (2ab6ef0 -> f41fc40)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository xfce/xfdesktop.

  from  2ab6ef0   I18n: Update translation el (97%).
   new  f41fc40   I18n: Update translation el (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/el.po |   14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/xfce4-dict] branch master updated (c6c1154 -> 5aafbf1)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository apps/xfce4-dict.

  from  c6c1154   I18n: Update translation el (100%).
   new  5aafbf1   I18n: Update translation el (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/el.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/xfburn] branch master updated (7b03632 -> 0dfa7d1)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository apps/xfburn.

  from  7b03632   I18n: Update translation el (98%).
   new  0dfa7d1   I18n: Update translation el (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/el.po |   14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/xfce4-taskmanager] branch master updated (73b8869 -> a659f21)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository apps/xfce4-taskmanager.

  from  73b8869   I18n: Update translation el (97%).
   new  a659f21   I18n: Update translation el (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/el.po |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/xfmpc] 01/01: I18n: Update translation el (100%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository apps/xfmpc.

commit b9e7f7fafaf2f78dcf9da6f76a3b393f333ba181
Author: Nick Schermer 
Date:   Tue Feb 9 00:31:58 2016 +0100

I18n: Update translation el (100%).

70 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/el.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/po/el.po b/po/el.po
index 3bb7e5d..5198e17 100644
--- a/po/el.po
+++ b/po/el.po
@@ -9,7 +9,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2011-10-23 17:29+0200\n"
-"PO-Revision-Date: 2016-02-04 20:31+\n"
+"PO-Revision-Date: 2016-02-08 21:29+\n"
 "Last-Translator: Nick Schermer \n"
 "Language-Team: Greek (http://www.transifex.com/xfce/xfce-apps/language/el/)\n"
 "MIME-Version: 1.0\n"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfdesktop] 01/01: I18n: Update translation el (100%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository xfce/xfdesktop.

commit f41fc40c379cb79cfff4d85e0dbc972c78151bb6
Author: Apostolos Papadimitriu 
Date:   Tue Feb 9 00:32:35 2016 +0100

I18n: Update translation el (100%).

222 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/el.po |   14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/po/el.po b/po/el.po
index 18acce1..dbdbab4 100644
--- a/po/el.po
+++ b/po/el.po
@@ -13,7 +13,7 @@ msgstr ""
 "Project-Id-Version: Xfdesktop\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-03-03 18:32+0100\n"
-"PO-Revision-Date: 2016-02-06 16:30+\n"
+"PO-Revision-Date: 2016-02-08 21:56+\n"
 "Last-Translator: Apostolos Papadimitriu \n"
 "Language-Team: Greek (http://www.transifex.com/xfce/xfdesktop/language/el/)\n"
 "MIME-Version: 1.0\n"
@@ -41,7 +41,7 @@ msgstr "Αφαιρούμενα μέσα"
 
 #: ../settings/main.c:412
 msgid "Network Shares"
-msgstr ""
+msgstr "Κοινόχρηστα στοιχεία δικτύου"
 
 #: ../settings/main.c:414
 msgid "Disks and Drives"
@@ -112,7 +112,7 @@ msgstr "Η επιλογή εικόνας δεν είναι διαθέσιμη ό
 
 #: ../settings/main.c:1528
 msgid "Spanning screens"
-msgstr ""
+msgstr "Συνεχόμενες οθόνες"
 
 #: ../settings/main.c:1839
 msgid "Image files"
@@ -224,7 +224,7 @@ msgstr "Ζοομαρισμένο"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:15
 msgid "Spanning Screens"
-msgstr ""
+msgstr "Συνεχόμενες οθόνες"
 
 #: ../settings/xfdesktop-settings-appearance-frame-ui.glade.h:16
 msgid "C_olor:"
@@ -445,7 +445,7 @@ msgstr "Εμφάνιση επεξήγησης εικονιδίων. Μέγεθο
 
 #: ../settings/xfdesktop-settings-ui.glade.h:36
 msgid "Size of the tooltip preview image."
-msgstr ""
+msgstr "Μέγεθος ετικέτας προεπισκόπησης εικόνας."
 
 #: ../settings/xfdesktop-settings-ui.glade.h:37
 msgid "Use custom _font size:"
@@ -585,12 +585,12 @@ msgstr "Αυτό είναι το %s έκδοση %s, που τρέχει στο
 #: ../src/xfdesktop-application.c:875
 #, c-format
 msgid "Built with GTK+ %d.%d.%d, linked with GTK+ %d.%d.%d."
-msgstr ""
+msgstr "Χτίστηκε με το GTK+ %d.%d.%d, συνδέθηκε με το GTK+ %d.%d.%d."
 
 #: ../src/xfdesktop-application.c:879
 #, c-format
 msgid "Build options:\n"
-msgstr ""
+msgstr "Επιλογές build:\n"
 
 #: ../src/xfdesktop-application.c:880
 #, c-format

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/xfce4-terminal] 01/01: I18n: Update translation el (100%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository apps/xfce4-terminal.

commit 5cf19828d732512854eca97e0ad28f8219a7b37c
Author: Apostolos Papadimitriu 
Date:   Tue Feb 9 00:31:52 2016 +0100

I18n: Update translation el (100%).

283 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/el.po |   16 
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/po/el.po b/po/el.po
index 9b146a6..c0268eb 100644
--- a/po/el.po
+++ b/po/el.po
@@ -15,7 +15,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-12-27 00:31+0100\n"
-"PO-Revision-Date: 2016-02-07 22:03+\n"
+"PO-Revision-Date: 2016-02-08 22:33+\n"
 "Last-Translator: Apostolos Papadimitriu \n"
 "Language-Team: Greek (http://www.transifex.com/xfce/xfce-apps/language/el/)\n"
 "MIME-Version: 1.0\n"
@@ -379,7 +379,7 @@ msgstr "Με διάκριση πεζών-κεφαλαίων"
 
 #: ../terminal/terminal-search-dialog.c:134
 msgid "Match as _regular expression"
-msgstr ""
+msgstr "Ταίριασμα ως _κανονική παράσταση"
 
 #: ../terminal/terminal-search-dialog.c:140
 msgid "Match _entire word only"
@@ -451,11 +451,11 @@ msgstr "Διατήρηση του παραθύρου ανοιχτού όταν 
 
 #: ../terminal/terminal-window-dropdown.c:355
 msgid "Drop-down Terminal"
-msgstr "Αναπτυσσόμενο Τερματικό"
+msgstr "Πτυσσόμενο τερματικό"
 
 #: ../terminal/terminal-window-dropdown.c:356
 msgid "Toggle Drop-down Terminal"
-msgstr "Ενεργοποίηση πτυσσόμενου Τερματικού"
+msgstr "Ενεργοποίηση πτυσσόμενου τερματικού"
 
 #: ../terminal/terminal-window.c:196
 msgid "_File"
@@ -631,7 +631,7 @@ msgstr "Εμφάνιση/απόκρυψη των περιγραμμάτων πα
 
 #: ../terminal/terminal-window.c:232
 msgid "_Fullscreen"
-msgstr "_Πλήρης Οθόνη"
+msgstr "_Πλήρης οθόνη"
 
 #: ../terminal/terminal-window.c:232
 msgid "Toggle fullscreen mode"
@@ -675,7 +675,7 @@ msgstr "Εισάγετε τον τίτλο για την τρέχουσα καρ
 
 #: ../terminal/terminal-window.c:1668
 msgid "Failed to create the regular expression"
-msgstr ""
+msgstr "Αδυναμία δημιουργίας κανονικής παράστασης"
 
 #: ../terminal/terminal-preferences.glade.h:1
 msgid "Replaces initial title"
@@ -857,7 +857,7 @@ msgstr "Χρήση συντόμευσης για _εστίαση σε ορατό
 msgid ""
 "If enabled, the shortcut to open and retract the window will give focus, "
 "rather than closing it, if it has previously lost focus"
-msgstr ""
+msgstr "Αν ενεργοποιηθεί, η συντόμευση για το άνοιγμα και την ανάπτυξη του 
παραθύρου θα επιστρέφει την εστίαση και δεν θα το είχε κλείνει όταν χάνει την 
εστίαση."
 
 #: ../terminal/terminal-preferences.glade.h:43
 msgid "Show _status icon in notification area"
@@ -913,7 +913,7 @@ msgstr "Θέση"
 
 #: ../terminal/terminal-preferences.glade.h:56
 msgid "Drop-do_wn"
-msgstr "Αναπτυσσόμενο"
+msgstr "Πτυσσόμενο"
 
 #: ../terminal/terminal-preferences.glade.h:57
 msgid "Choose Terminal Font"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [xfce/xfdesktop] 01/01: I18n: Update translation el (100%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch xfce-4.10
in repository xfce/xfdesktop.

commit 2598867395c9c0a10ea9a809a9f66d99dc53d83f
Author: Nick Schermer 
Date:   Tue Feb 9 00:32:39 2016 +0100

I18n: Update translation el (100%).

213 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/el.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/po/el.po b/po/el.po
index e774c5c..92a6668 100644
--- a/po/el.po
+++ b/po/el.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfdesktop\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-02 23:19+0200\n"
-"PO-Revision-Date: 2016-02-06 16:24+\n"
+"PO-Revision-Date: 2016-02-08 21:56+\n"
 "Last-Translator: Nick Schermer \n"
 "Language-Team: Greek (http://www.transifex.com/xfce/xfdesktop/language/el/)\n"
 "MIME-Version: 1.0\n"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/xfce4-dict] 01/01: I18n: Update translation el (100%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository apps/xfce4-dict.

commit 5aafbf18acd68c50bf13d68dc4f3b3354ab4b95b
Author: Apostolos Papadimitriu 
Date:   Tue Feb 9 00:31:41 2016 +0100

I18n: Update translation el (100%).

111 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/el.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/po/el.po b/po/el.po
index b053324..3237d0f 100644
--- a/po/el.po
+++ b/po/el.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-03-12 00:31+0100\n"
-"PO-Revision-Date: 2016-02-04 20:31+\n"
+"PO-Revision-Date: 2016-02-08 21:29+\n"
 "Last-Translator: Apostolos Papadimitriu \n"
 "Language-Team: Greek (http://www.transifex.com/xfce/xfce-apps/language/el/)\n"
 "MIME-Version: 1.0\n"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/squeeze] 01/01: I18n: Update translation el (100%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository apps/squeeze.

commit 33d17fd0c4825504251b9bf979e7f2f7da7c4274
Author: Apostolos Papadimitriu 
Date:   Tue Feb 9 00:31:31 2016 +0100

I18n: Update translation el (100%).

93 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/el.po |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/po/el.po b/po/el.po
index 8576b6e..8728b11 100644
--- a/po/el.po
+++ b/po/el.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-10-31 18:30+0100\n"
-"PO-Revision-Date: 2016-02-04 20:52+\n"
+"PO-Revision-Date: 2016-02-08 21:29+\n"
 "Last-Translator: Apostolos Papadimitriu \n"
 "Language-Team: Greek (http://www.transifex.com/xfce/xfce-apps/language/el/)\n"
 "MIME-Version: 1.0\n"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/xfce4-taskmanager] 01/01: I18n: Update translation el (100%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository apps/xfce4-taskmanager.

commit a659f2199fa01aa7c9f96614742cd1ca83771bd8
Author: Apostolos Papadimitriu 
Date:   Tue Feb 9 00:31:48 2016 +0100

I18n: Update translation el (100%).

75 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/el.po |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/po/el.po b/po/el.po
index 6d018db..359bcf5 100644
--- a/po/el.po
+++ b/po/el.po
@@ -11,7 +11,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-12-20 00:31+0100\n"
-"PO-Revision-Date: 2016-02-04 20:20+\n"
+"PO-Revision-Date: 2016-02-08 22:20+\n"
 "Last-Translator: Apostolos Papadimitriu \n"
 "Language-Team: Greek (http://www.transifex.com/xfce/xfce-apps/language/el/)\n"
 "MIME-Version: 1.0\n"
@@ -218,11 +218,11 @@ msgid ""
 " Starting task\n"
 " Changing task\n"
 " Terminating task"
-msgstr ""
+msgstr " Έναρξη 
εργασίας\n Αλλαγή 
εργασίας\n 
Τερματισμός εργασίας"
 
 #: ../src/process-window.c:215
 msgid "Filter on process name"
-msgstr ""
+msgstr "Φίλτρο στο όνομα της διεργασίας"
 
 #: ../src/process-window.c:399
 msgid "translator-credits"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/xfce4-terminal] branch master updated (00242e5 -> 5cf1982)

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a change to branch master
in repository apps/xfce4-terminal.

  from  00242e5   I18n: Update translation el (98%).
   new  5cf1982   I18n: Update translation el (100%).

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 po/el.po |   16 
 1 file changed, 8 insertions(+), 8 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] [apps/xfburn] 01/01: I18n: Update translation el (100%).

2016-02-08 Thread noreply
This is an automated email from the git hooks/post-receive script.

transifex pushed a commit to branch master
in repository apps/xfburn.

commit 0dfa7d11e08f413c80e67277902f29918319a479
Author: Apostolos Papadimitriu 
Date:   Tue Feb 9 00:31:36 2016 +0100

I18n: Update translation el (100%).

302 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/el.po |   14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/po/el.po b/po/el.po
index cd75ec3..1f0b043 100644
--- a/po/el.po
+++ b/po/el.po
@@ -12,7 +12,7 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2015-07-20 06:30+0200\n"
-"PO-Revision-Date: 2016-02-07 21:35+\n"
+"PO-Revision-Date: 2016-02-08 21:43+\n"
 "Last-Translator: Apostolos Papadimitriu \n"
 "Language-Team: Greek (http://www.transifex.com/xfce/xfce-apps/language/el/)\n"
 "MIME-Version: 1.0\n"
@@ -27,7 +27,7 @@ msgstr "Χωρητικότητα:"
 
 #: ../xfburn/xfburn-global.h:29
 msgid "addr:"
-msgstr ""
+msgstr "διεύθυνση:"
 
 #: ../xfburn/xfburn-global.h:30
 msgid "Time total:"
@@ -221,7 +221,7 @@ msgstr "Προστασία εγγρα_φής"
 #: ../xfburn/xfburn-burn-data-composition-base-dialog.c:246
 #: ../xfburn/xfburn-burn-image-dialog.c:228
 msgid "Stream _Recording"
-msgstr ""
+msgstr "Ε_γγραφή Stream"
 
 #. create ISO ?
 #: ../xfburn/xfburn-burn-data-composition-base-dialog.c:252
@@ -535,22 +535,22 @@ msgstr "Υπάρχει ήδη ένα αρχείο με όνομα \"%s\" στο
 #: ../xfburn/xfburn-data-composition.c:1940
 #, c-format
 msgid "%s: null pointer"
-msgstr ""
+msgstr "%s: δείκτης null"
 
 #: ../xfburn/xfburn-data-composition.c:1942
 #, c-format
 msgid "%s: out of memory"
-msgstr ""
+msgstr "%s: η μνήμη δεν επαρκεί"
 
 #: ../xfburn/xfburn-data-composition.c:1944
 #, c-format
 msgid "%s: node name not unique"
-msgstr ""
+msgstr "%s: ο κόμβος (node) δεν είναι μοναδικός"
 
 #: ../xfburn/xfburn-data-composition.c:1946
 #, c-format
 msgid "%s: %s (code %X)"
-msgstr ""
+msgstr "%s: %s (κώδικας %X)"
 
 #. The first string is the renamed name, the second one the original name
 #: ../xfburn/xfburn-data-composition.c:1966

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits