[Xfce4-commits] [panel-plugins/xfce4-weather-plugin] 02/02: Build system: Bump libsoup requirements to 2.32.

2014-04-25 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit 986df1733eef355f2d8776c93caf80fe60ecb1b6
Author: Harald Judt 
Date:   Sat Apr 26 08:42:45 2014 +0200

Build system: Bump libsoup requirements to 2.32.

Proxy authentication functions need 2.32.
---
 configure.ac.in |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac.in b/configure.ac.in
index 9f9eec0..88579c6 100644
--- a/configure.ac.in
+++ b/configure.ac.in
@@ -65,7 +65,7 @@ XDT_CHECK_PACKAGE([LIBXFCE4UTIL], [libxfce4util-1.0], [4.7.0])
 XDT_CHECK_PACKAGE([LIBXFCE4UI], [libxfce4ui-1], [4.7.0])
 XDT_CHECK_PACKAGE([LIBXFCE4PANEL], [libxfce4panel-1.0], [4.7.0])
 XDT_CHECK_PACKAGE([LIBXML], [libxml-2.0], [2.4.0])
-XDT_CHECK_PACKAGE([SOUP], [libsoup-2.4], [2.26.0])
+XDT_CHECK_PACKAGE([SOUP], [libsoup-2.4], [2.32.0])
 XDT_CHECK_OPTIONAL_PACKAGE([UPOWER_GLIB], [upower-glib], [0.9.0], [upower],
[upower for adapting update interval to power 
state])
 

-- 
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] 01/02: Add code to handle proxy authentication (bug #10820).

2014-04-25 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit 19458ea08d85aa6c48f3866f3ee2069517d4640d
Author: Issa 
Date:   Sat Apr 26 08:37:19 2014 +0200

Add code to handle proxy authentication (bug #10820).

Apply patch by Issa, with some additional cleanup.

User and password are read from HTTP proxy URI set via HTTP_PROXY or
http_proxy environment variable, e.g.:

http://user:password@host:port
---
 panel-plugin/weather.c |   37 -
 1 file changed, 36 insertions(+), 1 deletion(-)

diff --git a/panel-plugin/weather.c b/panel-plugin/weather.c
index 59b8dde..efa8559 100644
--- a/panel-plugin/weather.c
+++ b/panel-plugin/weather.c
@@ -1524,6 +1524,32 @@ mi_click(GtkWidget *widget,
 update_weatherdata_with_reset(data);
 }
 
+static void
+proxy_auth(SoupSession *session,
+   SoupMessage *msg,
+   SoupAuth *auth,
+   gboolean retrying,
+   gpointer user_data)
+{
+SoupURI *soup_proxy_uri;
+const gchar *proxy_uri;
+
+if (!retrying) {
+if (msg->status_code == SOUP_STATUS_PROXY_AUTHENTICATION_REQUIRED) {
+proxy_uri = g_getenv("HTTP_PROXY");
+if (!proxy_uri)
+proxy_uri = g_getenv("http_proxy");
+if (proxy_uri) {
+soup_proxy_uri = soup_uri_new(proxy_uri);
+soup_auth_authenticate(auth,
+   soup_uri_get_user(soup_proxy_uri),
+   soup_uri_get_password(soup_proxy_uri));
+soup_uri_free(soup_proxy_uri);
+}
+}
+}
+}
+
 
 #ifdef HAVE_UPOWER_GLIB
 static void
@@ -1781,6 +1807,7 @@ xfceweather_create_control(XfcePanelPlugin *plugin)
 plugin_data *data = g_slice_new0(plugin_data);
 SoupURI *soup_proxy_uri;
 const gchar *proxy_uri;
+const gchar *proxy_user;
 GtkWidget *refresh, *refresh_icon;
 GdkPixbuf *icon = NULL;
 data_types lbl;
@@ -1819,9 +1846,17 @@ xfceweather_create_control(XfcePanelPlugin *plugin)
 if (!proxy_uri)
 proxy_uri = g_getenv("http_proxy");
 if (proxy_uri) {
-soup_proxy_uri = soup_uri_new (proxy_uri);
+soup_proxy_uri = soup_uri_new(proxy_uri);
 g_object_set(data->session, SOUP_SESSION_PROXY_URI,
  soup_proxy_uri, NULL);
+
+/* check if uri contains authentication info */
+proxy_user = soup_uri_get_user(soup_proxy_uri);
+if (proxy_user && strlen(proxy_user) > 0) {
+g_signal_connect(G_OBJECT(data->session), "authenticate",
+ G_CALLBACK(proxy_auth), NULL);
+}
+
 soup_uri_free(soup_proxy_uri);
 }
 

-- 
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 (ff45b85 -> 986df17)

2014-04-25 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  ff45b85   I18n: Update translation ast (52%).
   new  19458ea   Add code to handle proxy authentication (bug #10820).
   new  986df17   Build system: Bump libsoup requirements to 2.32.

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:
 configure.ac.in|2 +-
 panel-plugin/weather.c |   37 -
 2 files changed, 37 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/libxfce4ui] branch master updated (f80f32a -> ec6476d)

2014-04-25 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  f80f32a   I18n: Update translation ast (100%).
   new  ec6476d   I18n: Update translation nb (65%).

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/nb.po |   67 +++---
 1 file changed, 34 insertions(+), 33 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/libxfce4ui] 01/01: I18n: Update translation nb (65%).

2014-04-25 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit ec6476d4452c2e1a0594124617db5e161cd8bd49
Author: haarek 
Date:   Sat Apr 26 00:30:14 2014 +0200

I18n: Update translation nb (65%).

108 translated messages, 56 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/nb.po |   67 +++---
 1 file changed, 34 insertions(+), 33 deletions(-)

diff --git a/po/nb.po b/po/nb.po
index 9de50ad..73ab187 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -3,15 +3,16 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# haarek , 2014
 # Terje Uriansrud , 2010
 msgid ""
 msgstr ""
 "Project-Id-Version: Libxfce4ui\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-02 22:33+0200\n"
-"PO-Revision-Date: 2013-11-19 11:04+\n"
-"Last-Translator: Nick \n"
-"Language-Team: Norwegian Bokmål 
(http://www.transifex.com/projects/p/xfce/language/nb/)\n"
+"PO-Revision-Date: 2014-04-25 20:13+\n"
+"Last-Translator: haarek \n"
+"Language-Team: Norwegian Bokmål 
(http://www.transifex.com/projects/p/libxfce4ui/language/nb/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -20,38 +21,38 @@ msgstr ""
 
 #: ../libxfce4ui/xfce-dialogs.c:98
 msgid "Failed to open web browser for online documentation"
-msgstr ""
+msgstr "Klarte ikke å åpne nettleseren for dokumentasjon på Internett"
 
 #: ../libxfce4ui/xfce-dialogs.c:213
 #, c-format
 msgid "Do you want to read the %s manual online?"
-msgstr ""
+msgstr "Ønsker du å lese bruksanvisningen %s på nettet?"
 
 #: ../libxfce4ui/xfce-dialogs.c:215
 msgid "Do you want to read the manual online?"
-msgstr ""
+msgstr "Ønsker du å lese bruksanvisningen på nettet?"
 
 #: ../libxfce4ui/xfce-dialogs.c:218
 msgid "Online Documentation"
-msgstr ""
+msgstr "Dokumentasjon på Internett"
 
 #: ../libxfce4ui/xfce-dialogs.c:221
 msgid ""
 "You will be redirected to the documentation website where the help pages are"
 " maintained and translated."
-msgstr ""
+msgstr "Du vil bli omdirigert til dokumentasjonsnettstedet der hjelpesidene 
blir vedlikeholdt og oversatt."
 
 #: ../libxfce4ui/xfce-dialogs.c:225
 msgid "_Read Online"
-msgstr ""
+msgstr "_Les på Internett"
 
 #: ../libxfce4ui/xfce-dialogs.c:237
 msgid "_Always go directly to the online documentation"
-msgstr ""
+msgstr "_Gå alltid direkte til dokumentasjonen på Internett."
 
 #: ../libxfce4ui/xfce-dialogs.c:281
 msgid "Information"
-msgstr ""
+msgstr "Informasjon"
 
 #: ../libxfce4ui/xfce-dialogs.c:314
 msgid "Warning"
@@ -67,33 +68,33 @@ msgstr "Spørsmål"
 
 #: ../libxfce4ui/xfce-sm-client.c:1424
 msgid "Session management client ID"
-msgstr ""
+msgstr "Øktbehandling klient-ID"
 
 #: ../libxfce4ui/xfce-sm-client.c:1424
 msgid "ID"
-msgstr "Id"
+msgstr "ID"
 
 #: ../libxfce4ui/xfce-sm-client.c:1425
 msgid "Disable session management"
-msgstr ""
+msgstr "Deaktiver øktbehandling"
 
 #: ../libxfce4ui/xfce-sm-client.c:1435
 msgid "Session management options"
-msgstr ""
+msgstr "Alternativer for øktbehandling"
 
 #: ../libxfce4ui/xfce-sm-client.c:1436
 msgid "Show session management options"
-msgstr ""
+msgstr "Vis alternativer for øktbehandling"
 
 #: ../libxfce4ui/xfce-sm-client.c:1611
 #, c-format
 msgid "Failed to connect to the session manager: %s"
-msgstr "Klarte ikke koble til øktbehandling: %s"
+msgstr "Klarte ikke koble til øktbehandleren: %s"
 
 #: ../libxfce4ui/xfce-sm-client.c:1617
 #, c-format
 msgid "Session manager did not return a valid client id"
-msgstr "Øktbehandling returnerte ikke en gyldig klient id"
+msgstr "Øktbehandler returnerte ikke en gyldig klient-ID"
 
 #. print warning for user
 #: ../libxfce4ui/xfce-spawn.c:413
@@ -101,14 +102,14 @@ msgstr "Øktbehandling returnerte ikke en gyldig klient id"
 msgid ""
 "Working directory \"%s\" does not exist. It won't be used when spawning "
 "\"%s\"."
-msgstr "Arbeindsmappen \"%s\" finnes ikke. Den vil ikke bli brukt ved 
klargjøring av \"%s\"."
+msgstr "Arbeidsmappen \"%s\" finnes ikke. Den vil ikke bli brukt ved 
klargjøring av \"%s\"."
 
 #: ../libxfce4kbd-private/xfce-shortcuts.c:53
 #, c-format
 msgid ""
 "This shortcut is already being used for the action '%s'. Which action do you"
 " want to use?"
-msgstr ""
+msgstr "Denne snarveien benyttes allerede for handlingen '%s'. Hvilken 
handling ønsker du å bruke?"
 
 #: ../libxfce4kbd-private/xfce-shortcuts.c:54
 #: ../libxfce4kbd-private/xfce-shortcuts.c:57
@@ -132,30 +133,30 @@ msgstr "Behold '%s'"
 msgid ""
 "This shortcut is already being used for the command '%s'. Which action do "
 "you want to use?"
-msgstr "Denne svarveien benyttes allerede for kommandoen '%s'. Hvilken aksjon 
ønsker du å bruke?"
+msgstr "Denne snarveien benyttes allerede for kommandoen '%s'. Hvilken 
handling ønsker du å bruke?"
 
 #: ../libxfce4kbd-private/x

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

2014-04-25 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/garcon.

commit 57a43b31f09a3315cb5dc718abd561c794f79932
Author: haarek 
Date:   Sat Apr 26 00:30:11 2014 +0200

I18n: Update translation nb (100%).

31 translated messages.

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

diff --git a/po/nb.po b/po/nb.po
index 560f0fe..eef9f76 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -3,15 +3,16 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# haarek , 2014
 # Terje Uriansrud , 2010
 msgid ""
 msgstr ""
 "Project-Id-Version: Garcon\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-02 22:58+0200\n"
-"PO-Revision-Date: 2013-11-19 15:01+\n"
-"Last-Translator: Nick \n"
-"Language-Team: Norwegian Bokmål 
(http://www.transifex.com/projects/p/xfce/language/nb/)\n"
+"PO-Revision-Date: 2014-04-25 17:33+\n"
+"Last-Translator: haarek \n"
+"Language-Team: Norwegian Bokmål 
(http://www.transifex.com/projects/p/garcon/language/nb/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -60,11 +61,11 @@ msgstr "Applikasjoner for grafisk behandling"
 
 #: ../data/xfce/xfce-hardware.directory.in.h:1
 msgid "Hardware"
-msgstr ""
+msgstr "Maskinvare"
 
 #: ../data/xfce/xfce-hardware.directory.in.h:2
 msgid "Settings for several hardware devices"
-msgstr ""
+msgstr "Innstillinger for flere maskinvareenheter"
 
 #: ../data/xfce/xfce-multimedia.directory.in.h:1
 msgid "Multimedia"
@@ -76,11 +77,11 @@ msgstr "Applikasjoner for lyd of bilde"
 
 #: ../data/xfce/xfce-network.directory.in.h:1
 msgid "Internet"
-msgstr ""
+msgstr "Internett"
 
 #: ../data/xfce/xfce-network.directory.in.h:2
 msgid "Applications for Internet access"
-msgstr ""
+msgstr "Programvare for Internett-tilgang"
 
 #: ../data/xfce/xfce-office.directory.in.h:1
 msgid "Office"
@@ -100,11 +101,11 @@ msgstr "Applikasjoner som ikke passer i andre kategorier"
 
 #: ../data/xfce/xfce-personal.directory.in.h:1
 msgid "Personal"
-msgstr ""
+msgstr "Personlig"
 
 #: ../data/xfce/xfce-personal.directory.in.h:2
 msgid "Personal settings"
-msgstr ""
+msgstr "Personlige innstillinger"
 
 #: ../data/xfce/xfce-screensavers.directory.in.h:1
 msgid "Screensavers"

-- 
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/garcon] branch master updated (9606abf -> 796f8db)

2014-04-25 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

  from  9606abf   I18n: Update translation fr (100%).
   new  796f8db   I18n: Update translation nb (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/nb.po |   25 +
 1 file changed, 13 insertions(+), 12 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/garcon] branch xfce-4.10 updated (6428fd2 -> 57a43b3)

2014-04-25 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/garcon.

  from  6428fd2   I18n: Update translation en_AU (100%).
   new  57a43b3   I18n: Update translation nb (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/nb.po |   19 ++-
 1 file changed, 10 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/garcon] 01/01: I18n: Update translation nb (100%).

2014-04-25 Thread noreply
This is an automated email from the git hooks/post-receive script.

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

commit 796f8db2e75fa912300c1012942723032ece3f66
Author: haarek 
Date:   Sat Apr 26 00:30:08 2014 +0200

I18n: Update translation nb (100%).

34 translated messages.

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

diff --git a/po/nb.po b/po/nb.po
index b0cdfcf..c3bf22e 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -3,15 +3,16 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# haarek , 2014
 # Terje Uriansrud , 2010
 msgid ""
 msgstr ""
 "Project-Id-Version: Garcon\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-08-03 00:30+0200\n"
-"PO-Revision-Date: 2013-11-19 13:10+\n"
-"Last-Translator: Xfce \n"
-"Language-Team: Norwegian Bokmål 
(http://www.transifex.com/projects/p/xfce/language/nb/)\n"
+"PO-Revision-Date: 2014-04-25 17:32+\n"
+"Last-Translator: haarek \n"
+"Language-Team: Norwegian Bokmål 
(http://www.transifex.com/projects/p/garcon/language/nb/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -60,11 +61,11 @@ msgstr "Applikasjoner for grafisk behandling"
 
 #: ../data/xfce/xfce-hardware.directory.in.h:1
 msgid "Hardware"
-msgstr ""
+msgstr "Maskinvare"
 
 #: ../data/xfce/xfce-hardware.directory.in.h:2
 msgid "Settings for several hardware devices"
-msgstr ""
+msgstr "Innstillinger for flere maskinvareenheter"
 
 #: ../data/xfce/xfce-multimedia.directory.in.h:1
 msgid "Multimedia"
@@ -76,11 +77,11 @@ msgstr "Applikasjoner for lyd of bilde"
 
 #: ../data/xfce/xfce-network.directory.in.h:1
 msgid "Internet"
-msgstr ""
+msgstr "Internett"
 
 #: ../data/xfce/xfce-network.directory.in.h:2
 msgid "Applications for Internet access"
-msgstr ""
+msgstr "Programmer for Internett-tilgang"
 
 #: ../data/xfce/xfce-office.directory.in.h:1
 msgid "Office"
@@ -100,11 +101,11 @@ msgstr "Applikasjoner som ikke passer i andre kategorier"
 
 #: ../data/xfce/xfce-personal.directory.in.h:1
 msgid "Personal"
-msgstr ""
+msgstr "Personlig"
 
 #: ../data/xfce/xfce-personal.directory.in.h:2
 msgid "Personal settings"
-msgstr ""
+msgstr "Personlige innstillinger"
 
 #: ../data/xfce/xfce-screensavers.directory.in.h:1
 msgid "Screensavers"
@@ -148,12 +149,12 @@ msgstr "Klarte ikke laste menyfildata fra %s"
 #: ../garcon-gtk/garcon-gtk-menu.c:389
 #, c-format
 msgid "Failed to execute command \"%s\"."
-msgstr ""
+msgstr "Klarte å kjøre kommandoen \"%s\"."
 
 #: ../garcon-gtk/garcon-gtk-menu.c:652
 msgid "No applications found"
-msgstr ""
+msgstr "Fant ingen programmer"
 
 #: ../garcon-gtk/garcon-gtk-menu.c:664
 msgid "Failed to load the applications menu"
-msgstr ""
+msgstr "Klarte ikke å laste programmenyen"

-- 
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-mount-plugin] branch master updated (7329179 -> 213d92a)

2014-04-25 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-mount-plugin.

  from  7329179   cared for feature request 9400
   new  213d92a   I18n: Update translation es (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/es.po |  154 +++---
 1 file changed, 67 insertions(+), 87 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-radio-plugin] branch master updated (8a17785 -> 8a7a23e)

2014-04-25 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-radio-plugin.

  from  8a17785   I18n: Update translation en_AU (100%).
   new  8a7a23e   I18n: Update translation ast (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/ast.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] [panel-plugins/xfce4-radio-plugin] 01/01: I18n: Update translation ast (97%).

2014-04-25 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-radio-plugin.

commit 8a7a23e9b6e5d53c7321a793f47986daf894f9a0
Author: Tornes Llume 
Date:   Fri Apr 25 18:31:35 2014 +0200

I18n: Update translation ast (97%).

33 translated messages, 1 untranslated message.

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

diff --git a/po/ast.po b/po/ast.po
index 7e194a2..994bea1 100644
--- a/po/ast.po
+++ b/po/ast.po
@@ -10,9 +10,9 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2011-05-21 03:11+0200\n"
-"PO-Revision-Date: 2014-04-14 20:30+\n"
+"PO-Revision-Date: 2014-04-25 15:01+\n"
 "Last-Translator: Tornes Llume \n"
-"Language-Team: Asturian 
(http://www.transifex.com/projects/p/xfce/language/ast/)\n"
+"Language-Team: Asturian 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/ast/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -114,15 +114,15 @@ msgstr "Usar gráficos en cuantes d'etiquetes de testu y 
barres de progresu"
 #. - Current station
 #: ../panel-plugin/xfce4-radio.c:1212
 msgid "Current station"
-msgstr ""
+msgstr "Emisora d'anguaño"
 
 #: ../panel-plugin/xfce4-radio.c:1228
 msgid "Show the current station"
-msgstr ""
+msgstr "Amosar la emisora d'anguaño"
 
 #: ../panel-plugin/xfce4-radio.c:1234
 msgid "Show preset names instead of frequencies"
-msgstr ""
+msgstr "Amosar nomes preafitaos en cuantes de frecuencies"
 
 #. - Mouse
 #: ../panel-plugin/xfce4-radio.c:1239
@@ -139,7 +139,7 @@ msgstr "frecuencia"
 
 #: ../panel-plugin/xfce4-radio.c:1277
 msgid "station preset"
-msgstr ""
+msgstr "emisora preafitada"
 
 #: ../panel-plugin/xfce4-radio.c:1298
 msgid "Radio device:"
@@ -154,7 +154,7 @@ msgid ""
 "This watches your radio card for changes done by other\n"
 "applications. Note that this may cause issues with some\n"
 "tuner cards."
-msgstr ""
+msgstr "Esto mira la to tarxeta de radio poles camudancies feches\npor otres 
aplicaciones. Decátate qu'esto pue causar\ndellos problemes con dalgunes 
tarxetes sintonizadores."
 
 #: ../panel-plugin/xfce4-radio.c:1351
 msgid "Command to run after startup"

-- 
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-mount-plugin] 01/01: I18n: Update translation es (100%).

2014-04-25 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-mount-plugin.

commit 213d92a0b65be2be83c03aac8ce7cd15b619bfb0
Author: gabrieltandil 
Date:   Fri Apr 25 18:31:28 2014 +0200

I18n: Update translation es (100%).

54 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/es.po |  154 +++---
 1 file changed, 67 insertions(+), 87 deletions(-)

diff --git a/po/es.po b/po/es.po
index b30fd90..1882a0b 100644
--- a/po/es.po
+++ b/po/es.po
@@ -1,23 +1,23 @@
 # SOME DESCRIPTIVE TITLE.
 # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-#
+# 
 # Translators:
 #  , 2009
 # Adolfo Jayme Barrientos , 2014
+# gabrieltandil , 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-04-24 22:41+0200\n"
-"PO-Revision-Date: 2014-03-22 13:00+\n"
-"Last-Translator: Adolfo Jayme Barrientos \n"
-"Language-Team: Spanish (http://www.transifex.com/projects/p/xfce/language/";
-"es/)\n"
-"Language: es\n"
+"POT-Creation-Date: 2014-04-25 06:31+0200\n"
+"PO-Revision-Date: 2014-04-25 11:42+\n"
+"Last-Translator: gabrieltandil \n"
+"Language-Team: Spanish 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/es/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: es\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 #: ../panel-plugin/devices.c:71
@@ -86,212 +86,194 @@ msgid "not mounted\n"
 msgstr "sin montar\n"
 
 #. show error message if smth failed
-#. xfce_dialog_show_error (NULL, error, "%s %s %d, %s %s", _("Mount 
Plugin:\n\nError executing command."),
-#. _("Return value:"), WEXITSTATUS(exit_status), _("\nError was:"), erroutput);
-#: ../panel-plugin/devices.c:288
+#. xfce_dialog_show_error (NULL, error, "%s %s %d, %s %s", _("Mount
+#. Plugin:\n\nError executing command."),
+#. _("Return value:"), WEXITSTATUS(exit_status), _("\nError was:"),
+#. erroutput);
+#: ../panel-plugin/devices.c:291
 #, c-format
 msgid "Failed to mount device \"%s\"."
 msgstr "No se pudo montar el dispositivo «%s»."
 
-#: ../panel-plugin/devices.c:303
+#: ../panel-plugin/devices.c:306
 #, c-format
 msgid "Error executing on-mount command \"%s\"."
 msgstr "Error al ejecutar la orden de montaje «%s»."
 
-#. xfce_dialog_show_error (NULL, error, "%s %s %d, %s %s", _("Mount Plugin: 
Error executing command."),
+#. xfce_dialog_show_error (NULL, error, "%s %s %d, %s %s", _("Mount Plugin:
+#. Error executing command."),
 #. _("Returned"), WEXITSTATUS(exit_status), _("error was"), erroutput);
-#: ../panel-plugin/devices.c:357
+#: ../panel-plugin/devices.c:360
 #, c-format
 msgid "Failed to umount device \"%s\"."
 msgstr "No se pudo desmontar el dispositivo «%s»."
 
-#: ../panel-plugin/devices.c:360
+#: ../panel-plugin/devices.c:363
 #, c-format
 msgid "The device \"%s\" should be removable safely now."
 msgstr "Puede retirar el dispositivo «%s» con seguridad."
 
-#: ../panel-plugin/devices.c:362
+#: ../panel-plugin/devices.c:365
 #, c-format
 msgid "An error occurred. The device \"%s\" should not be removed!"
 msgstr "Ocurrió un error. ¡No se debe retirar el dispositivo \"%s\"!"
 
 #: ../panel-plugin/mount-plugin.c:171
 msgid " -> "
-msgstr ""
+msgstr "->"
 
 #: ../panel-plugin/mount-plugin.c:223
 #, c-format
 msgid "[%s/%s] %s free"
-msgstr ""
+msgstr "[%s/%s] %s libres"
 
 #: ../panel-plugin/mount-plugin.c:242
 msgid "not mounted"
 msgstr "no montado"
 
-#: ../panel-plugin/mount-plugin.c:513
+#: ../panel-plugin/mount-plugin.c:514
 msgid "devices"
 msgstr "dispositivos"
 
-#: ../panel-plugin/mount-plugin.c:706
+#: ../panel-plugin/mount-plugin.c:707
 msgid "Mount Plugin"
 msgstr "Complemento de montaje"
 
-#: ../panel-plugin/mount-plugin.c:711
+#: ../panel-plugin/mount-plugin.c:712
 msgid "Properties"
 msgstr "Propiedades"
 
-#: ../panel-plugin/mount-plugin.c:745
+#: ../panel-plugin/mount-plugin.c:746
 msgid ""
 "This is only useful and recommended if you specify \"sync\" as part of the "
 "\"unmount\" command string."
-msgstr ""
-"Esto solo se recomienda si especifica «sync» como parte de la cadena de la "
-"orden «unmount»."
+msgstr "Esto solo se recomienda si especifica «sync» como parte de la cadena 
de la orden «unmount»."
 
-#: ../panel-plugin/mount-plugin.c:750
+#: ../panel-plugin/mount-plugin.c:751
 msgid "Show _message after unmount"
 msgstr "Mostrar _mensaje después de desmontar"
 
-#: ../panel-plugin/mount-plugin.c:762
+#: ../panel-plugin/mount-plugin.c:763
 msgid "You can specify a distinct icon to be displayed in the panel."
 msgstr "Puede especificar un icono distinto para mostrarse en el panel."
 
-#: ../panel-plugin/mount-plugin.c:769
+#: ../panel-plugin/mount-plugin.c:770
 msgid "Icon:"
 msgstr "Icono:"
 
-#: ../panel

[Xfce4-commits] [xfce/xfce4-session] branch master updated (33a67c5 -> d14a3d1)

2014-04-25 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-session.

  from  33a67c5   I18n: Update translation fr (100%).
   new  d14a3d1   I18n: Update translation vi (63%).

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/vi.po | 1014 ++
 1 file changed, 363 insertions(+), 651 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-appfinder] branch xfce-4.10 updated (797dd03 -> 722eea0)

2014-04-25 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-appfinder.

  from  797dd03   I18n: Update translation hr (100%).
   new  722eea0   I18n: Update translation ast (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/ast.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] [xfce/thunar] 01/01: I18n: Update translation ast (100%).

2014-04-25 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 d555a47d051a331d726b1b54abcce8acf273e664
Author: Tornes Llume 
Date:   Fri Apr 25 18:30:31 2014 +0200

I18n: Update translation ast (100%).

681 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/ast.po |   56 
 1 file changed, 28 insertions(+), 28 deletions(-)

diff --git a/po/ast.po b/po/ast.po
index 5267908..f7e6fff 100644
--- a/po/ast.po
+++ b/po/ast.po
@@ -10,9 +10,9 @@ msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-02 23:03+0200\n"
-"PO-Revision-Date: 2014-04-13 01:10+\n"
+"PO-Revision-Date: 2014-04-25 14:17+\n"
 "Last-Translator: Tornes Llume \n"
-"Language-Team: Asturian 
(http://www.transifex.com/projects/p/xfce/language/ast/)\n"
+"Language-Team: Asturian 
(http://www.transifex.com/projects/p/thunar/language/ast/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -166,7 +166,7 @@ msgstr "Carpeta nueva"
 #: ../thunar/thunar-location-buttons.c:1286
 #: ../thunar/thunar-standard-view.c:1884 ../thunar/thunar-tree-view.c:1570
 msgid "Create New Folder"
-msgstr "Criar carpeta nueva"
+msgstr "Crear carpeta nueva"
 
 #: ../thunar/thunar-application.c:1402
 msgid "New File"
@@ -174,13 +174,13 @@ msgstr "Ficheru nuevu"
 
 #: ../thunar/thunar-application.c:1403
 msgid "Create New File"
-msgstr "Criar ficheru nuevu"
+msgstr "Crear ficheru nuevu"
 
 #. generate a title for the create dialog
 #: ../thunar/thunar-application.c:1461 ../thunar/thunar-standard-view.c:1929
 #, c-format
 msgid "Create Document from template \"%s\""
-msgstr "Criar documentu al partir de la plantía \"%s\""
+msgstr "Crear documentu al partir de la plantía \"%s\""
 
 #: ../thunar/thunar-application.c:1528
 msgid "Copying files..."
@@ -367,7 +367,7 @@ msgid ""
 "This will remove the application launcher that appears in the file context 
menu, but will not uninstall the application itself.\n"
 "\n"
 "You can only remove application launchers that were created using the custom 
command box in the \"Open With\" dialog of the file manager."
-msgstr "Esto desaniciará'l llanzador d'aplicaciones qu'apaez nel menú de 
contestu, pero nun se desintalará l'aplicación.\n\nNamái pues desaniciar el 
llanzador d'aplicaciones que fo criáu usando la caxa de comandu personalizáu 
nel diálogu \"Abrir con\" del alministrador de ficheros."
+msgstr "Esto desaniciará'l llanzador d'aplicaciones qu'apaez nel menú de 
contestu, pero nun se desintalará l'aplicación.\n\nNamái pues desaniciar el 
llanzador d'aplicaciones que fo creáu usando la caxa de comandu personalizáu 
nel diálogu \"Abrir con\" del alministrador de ficheros."
 
 #. display an error to the user
 #: ../thunar/thunar-chooser-dialog.c:728
@@ -831,12 +831,12 @@ msgstr "El ficheru \"%s\" yá esiste"
 #: ../thunar/thunar-io-jobs.c:188
 #, c-format
 msgid "Failed to create empty file \"%s\": %s"
-msgstr "Fallu al criar el ficheru baleru \"%s\": %s"
+msgstr "Fallu al crear el ficheru baleru \"%s\": %s"
 
 #: ../thunar/thunar-io-jobs.c:325
 #, c-format
 msgid "Failed to create directory \"%s\": %s"
-msgstr "Fallu al criar el direutoriu \"%s\": %s"
+msgstr "Fallu al crear el direutoriu \"%s\": %s"
 
 #. tell the user that we're preparing to unlink the files
 #: ../thunar/thunar-io-jobs.c:391
@@ -851,7 +851,7 @@ msgstr "Nun pudo desaniciase'l ficheru \"%s\": %s"
 #: ../thunar/thunar-io-jobs.c:565
 #, c-format
 msgid "Could not create symbolic link to \"%s\" because it is not a local file"
-msgstr "Nun pudo criase l'enllaz simbólicu a \"%s\" porque nun ye un ficheru 
llocal"
+msgstr "Nun pudo crease l'enllaz simbólicu a \"%s\" porque nun ye un ficheru 
llocal"
 
 #. generate a useful error message
 #: ../thunar/thunar-io-jobs.c:924
@@ -927,7 +927,7 @@ msgstr "¿Quies sobrescribilu?"
 
 #: ../thunar/thunar-job.c:388
 msgid "Do you want to create it?"
-msgstr "¿Quies crialu?"
+msgstr "¿Quies crealu?"
 
 #: ../thunar/thunar-job.c:490
 msgid "Do you want to skip it?"
@@ -1067,14 +1067,14 @@ msgstr "Fallu al montar \"%s\""
 #: ../thunar/thunar-launcher.c:1493
 msgid "Desktop (Create Link)"
 msgid_plural "Desktop (Create Links)"
-msgstr[0] "Escritoriu (criar enllaz)"
-msgstr[1] "Escritoriu (criar enllaces)"
+msgstr[0] "Escritoriu (crear enllaz)"
+msgstr[1] "Escritoriu (crear enllaces)"
 
 #: ../thunar/thunar-launcher.c:1494
 msgid "Create a link to the selected file on the desktop"
 msgid_plural "Create links to the selected files on the desktop"
-msgstr[0] "Criar un enllaz al ficheru esbilláu nel escritoriu"
-msgstr[1] "Criar enllaces a los ficheros esbillaos nel escritoriu"
+msgstr[0] "Crear un enllaz al ficheru esbilláu nel escritoriu"
+msgstr[1] "Crear enllaces a los ficheros esbillaos nel escritoriu"
 
 #: ../thunar/thunar-launcher.c:1531

[Xfce4-commits] [xfce/xfce4-appfinder] branch master updated (9e3c227 -> 113e009)

2014-04-25 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-appfinder.

  from  9e3c227   I18n: Update translation hr (100%).
   new  113e009   I18n: Update translation ast (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/ast.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] [xfce/thunar] branch master updated (02b787b -> 9327905)

2014-04-25 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  02b787b   I18n: Update translation fr (100%).
   new  9327905   I18n: Update translation ast (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/ast.po |   60 ++--
 1 file changed, 30 insertions(+), 30 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-appfinder] 01/01: I18n: Update translation ast (100%).

2014-04-25 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-appfinder.

commit 113e0099525d47c3f7e31224e74ed12d9b9a200a
Author: Tornes Llume 
Date:   Fri Apr 25 18:30:35 2014 +0200

I18n: Update translation ast (100%).

70 translated messages.

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

diff --git a/po/ast.po b/po/ast.po
index c9bf9ae..a223175 100644
--- a/po/ast.po
+++ b/po/ast.po
@@ -9,9 +9,9 @@ msgstr ""
 "Project-Id-Version: Xfce4-appfinder\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2014-02-23 00:30+0100\n"
-"PO-Revision-Date: 2014-04-12 14:04+\n"
+"PO-Revision-Date: 2014-04-25 14:26+\n"
 "Last-Translator: Tornes Llume \n"
-"Language-Team: Asturian 
(http://www.transifex.com/projects/p/xfce/language/ast/)\n"
+"Language-Team: Asturian 
(http://www.transifex.com/projects/p/xfce4-appfinder/language/ast/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -140,7 +140,7 @@ msgstr "Amestar a marcadores"
 
 #: ../src/main.c:64
 msgid "Start in collapsed mode"
-msgstr ""
+msgstr "Aniciar en mou contrayíu"
 
 #: ../src/main.c:65
 msgid "Print version information and exit"

-- 
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 (410cd25 -> d555a47)

2014-04-25 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  410cd25   I18n: Update translation ast (100%).
   new  d555a47   I18n: Update translation ast (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/ast.po |   56 
 1 file changed, 28 insertions(+), 28 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-appfinder] 01/01: I18n: Update translation ast (100%).

2014-04-25 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-appfinder.

commit 722eea08fef123cb01e418fb518ee7d7970d265c
Author: Tornes Llume 
Date:   Fri Apr 25 18:30:38 2014 +0200

I18n: Update translation ast (100%).

68 translated messages.

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

diff --git a/po/ast.po b/po/ast.po
index fc3c503..d26104d 100644
--- a/po/ast.po
+++ b/po/ast.po
@@ -10,9 +10,9 @@ msgstr ""
 "Project-Id-Version: Xfce4-appfinder\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-02 23:08+0200\n"
-"PO-Revision-Date: 2014-04-21 09:08+\n"
+"PO-Revision-Date: 2014-04-25 14:26+\n"
 "Last-Translator: Tornes Llume \n"
-"Language-Team: Asturian 
(http://www.transifex.com/projects/p/xfce/language/ast/)\n"
+"Language-Team: Asturian 
(http://www.transifex.com/projects/p/xfce4-appfinder/language/ast/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -125,7 +125,7 @@ msgstr "¿De xuru quies anubrir \"%s\"?"
 
 #: ../src/main.c:75
 msgid "Start in collapsed mode"
-msgstr ""
+msgstr "Aniciar en mou contrayíu"
 
 #: ../src/main.c:76
 msgid "Print version information and exit"

-- 
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 ast (100%).

2014-04-25 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 9327905c42c492f66eb04be643c57f0fa660cf81
Author: Tornes Llume 
Date:   Fri Apr 25 18:30:19 2014 +0200

I18n: Update translation ast (100%).

734 translated messages.

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

diff --git a/po/ast.po b/po/ast.po
index 4979909..38cb0db 100644
--- a/po/ast.po
+++ b/po/ast.po
@@ -9,9 +9,9 @@ msgstr ""
 "Project-Id-Version: Thunar\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-30 00:30+0200\n"
-"PO-Revision-Date: 2014-04-11 23:43+\n"
+"PO-Revision-Date: 2014-04-25 14:18+\n"
 "Last-Translator: Tornes Llume \n"
-"Language-Team: Asturian 
(http://www.transifex.com/projects/p/xfce/language/ast/)\n"
+"Language-Team: Asturian 
(http://www.transifex.com/projects/p/thunar/language/ast/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -166,7 +166,7 @@ msgstr "Carpeta nueva"
 #: ../thunar/thunar-location-buttons.c:1309
 #: ../thunar/thunar-standard-view.c:2297 ../thunar/thunar-tree-view.c:1623
 msgid "Create New Folder"
-msgstr "Criar carpeta nueva"
+msgstr "Crear carpeta nueva"
 
 #: ../thunar/thunar-application.c:1469
 msgid "New File"
@@ -174,13 +174,13 @@ msgstr "Ficheru nuevu"
 
 #: ../thunar/thunar-application.c:1470
 msgid "Create New File"
-msgstr "Criar ficheru nuevu"
+msgstr "Crear ficheru nuevu"
 
 #. generate a title for the create dialog
 #: ../thunar/thunar-application.c:1527 ../thunar/thunar-standard-view.c:2341
 #, c-format
 msgid "Create Document from template \"%s\""
-msgstr "Criar documentu al partir de la plantía \"%s\""
+msgstr "Crear documentu al partir de la plantía \"%s\""
 
 #: ../thunar/thunar-application.c:1591
 msgid "Copying files..."
@@ -367,7 +367,7 @@ msgid ""
 "This will remove the application launcher that appears in the file context 
menu, but will not uninstall the application itself.\n"
 "\n"
 "You can only remove application launchers that were created using the custom 
command box in the \"Open With\" dialog of the file manager."
-msgstr "Esto desaniciará'l llanzador d'aplicaciones qu'apaez nel menú de 
contestu, pero nun se desintalará l'aplicación.\n\nNamái pues desaniciar el 
llanzador d'aplicaciones que fo criáu usando la caxa de comandu personalizáu 
nel diálogu \"Abrir con\" del alministrador de ficheros."
+msgstr "Esto desaniciará'l llanzador d'aplicaciones qu'apaez nel menú de 
contestu, pero nun se desintalará l'aplicación.\n\nNamái pues desaniciar el 
llanzador d'aplicaciones que fo creáu usando la caxa de comandu personalizáu 
nel diálogu \"Abrir con\" del alministrador de ficheros."
 
 #. display an error to the user
 #: ../thunar/thunar-chooser-dialog.c:729
@@ -885,12 +885,12 @@ msgstr "El ficheru \"%s\" yá esiste"
 #: ../thunar/thunar-io-jobs.c:203
 #, c-format
 msgid "Failed to create empty file \"%s\": %s"
-msgstr "Fallu al criar el ficheru baleru \"%s\": %s"
+msgstr "Fallu al crear el ficheru baleru \"%s\": %s"
 
 #: ../thunar/thunar-io-jobs.c:357
 #, c-format
 msgid "Failed to create directory \"%s\": %s"
-msgstr "Fallu al criar el direutoriu \"%s\": %s"
+msgstr "Fallu al crear el direutoriu \"%s\": %s"
 
 #. tell the user that we're preparing to unlink the files
 #: ../thunar/thunar-io-jobs.c:423
@@ -905,7 +905,7 @@ msgstr "Nun pudo desaniciase'l ficheru \"%s\": %s"
 #: ../thunar/thunar-io-jobs.c:597
 #, c-format
 msgid "Could not create symbolic link to \"%s\" because it is not a local file"
-msgstr "Nun pudo criase l'enllaz simbólicu a \"%s\" porque nun ye un ficheru 
llocal"
+msgstr "Nun pudo crease l'enllaz simbólicu a \"%s\" porque nun ye un ficheru 
llocal"
 
 #. generate a useful error message
 #: ../thunar/thunar-io-jobs.c:956
@@ -963,7 +963,7 @@ msgstr "¿Quies sobrescribilu?"
 
 #: ../thunar/thunar-job.c:388
 msgid "Do you want to create it?"
-msgstr "¿Quies crialu?"
+msgstr "¿Quies crealu?"
 
 #: ../thunar/thunar-job.c:490
 msgid "Do you want to skip it?"
@@ -1139,14 +1139,14 @@ msgstr "Fallu al montar \"%s\""
 #: ../thunar/thunar-launcher.c:1697
 msgid "Desktop (Create Link)"
 msgid_plural "Desktop (Create Links)"
-msgstr[0] "Escritoriu (criar enllaz)"
-msgstr[1] "Escritoriu (criar enllaces)"
+msgstr[0] "Escritoriu (crear enllaz)"
+msgstr[1] "Escritoriu (crear enllaces)"
 
 #: ../thunar/thunar-launcher.c:1698
 msgid "Create a link to the selected file on the desktop"
 msgid_plural "Create links to the selected files on the desktop"
-msgstr[0] "Criar un enllaz al ficheru esbilláu nel escritoriu"
-msgstr[1] "Criar enllaces a los ficheros esbillaos nel escritoriu"
+msgstr[0] "Crear un enllaz al ficheru esbilláu nel escritoriu"
+msgstr[1] "Crear enllaces a los ficheros esbillaos nel escritoriu"
 
 #: ../thunar/thunar-launcher.c:1732 

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

2014-04-25 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/exo.

commit beaaeaaab65cdb03644d65a62a384085163e4e2e
Author: Tornes Llume 
Date:   Fri Apr 25 18:30:06 2014 +0200

I18n: Update translation ast (100%).

275 translated messages.

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

diff --git a/po/ast.po b/po/ast.po
index 23f5c61..3002abd 100644
--- a/po/ast.po
+++ b/po/ast.po
@@ -9,9 +9,9 @@ msgstr ""
 "Project-Id-Version: Exo\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-02 22:55+0200\n"
-"PO-Revision-Date: 2014-02-24 15:04+\n"
+"PO-Revision-Date: 2014-04-25 14:33+\n"
 "Last-Translator: Tornes Llume \n"
-"Language-Team: Asturian 
(http://www.transifex.com/projects/p/xfce/language/ast/)\n"
+"Language-Team: Asturian 
(http://www.transifex.com/projects/p/exo/language/ast/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -623,7 +623,7 @@ msgstr "_URL:"
 #. conflicts
 #: ../exo-desktop-item-edit/exo-die-editor.c:360
 msgid "Working _Directory:"
-msgstr ""
+msgstr "_Direutoriu de trabayu_"
 
 #. TRANSLATORS: Label in "Create Launcher"/"Create Link" dialog, make sure to
 #. avoid mnemonic conflicts
@@ -678,11 +678,11 @@ msgstr "Seleiciona un iconu"
 #. allocate the file chooser dialog
 #: ../exo-desktop-item-edit/exo-die-editor.c:637
 msgid "Select a working directory"
-msgstr ""
+msgstr "Esbillar un direutoriu de trabayu"
 
 #: ../exo-desktop-item-edit/exo-die-utils.c:169
 msgid "File location is not a regular file or directory"
-msgstr ""
+msgstr "Nun ye un ficheru o direutoriu regular l'allugamientu'l ficheru"
 
 #. --- constants ---
 #: ../exo-desktop-item-edit/main.c:52
@@ -1273,7 +1273,7 @@ msgstr "Si nun especifica la opción --launch, exo-open 
abrirá toles URLs\nespe
 msgid ""
 "Launching desktop files is not supported when %s is compiled without GIO-"
 "Unix features."
-msgstr ""
+msgstr "Nun ta sofitáu'l llanzamientu de ficheros d'escritoriu cuando %s se 
compila ensin les carauterístiques GIO-Unix."
 
 #: ../exo-open/main.c:260
 #, c-format
@@ -1292,16 +1292,16 @@ msgstr "Fallu al abrir la URI \"%s\"."
 
 #: ../exo-open/exo-file-manager.desktop.in.h:2
 msgid "Browse the file system"
-msgstr ""
+msgstr "Restolar el sistema de ficheros"
 
 #: ../exo-open/exo-mail-reader.desktop.in.h:2
 msgid "Read your email"
-msgstr ""
+msgstr "Lleei'l to corréu"
 
 #: ../exo-open/exo-terminal-emulator.desktop.in.h:2
 msgid "Use the command line"
-msgstr ""
+msgstr "Usar la llinia de comandos"
 
 #: ../exo-open/exo-web-browser.desktop.in.h:2
 msgid "Browse the web"
-msgstr ""
+msgstr "Restolar la rede"

-- 
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 xfce-4.10 updated (7a96fb1 -> beaaeaa)

2014-04-25 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/exo.

  from  7a96fb1   I18n: Update translation pl (100%).
   new  beaaeaa   I18n: Update translation ast (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/ast.po |   20 ++--
 1 file changed, 10 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 (1fba76a -> ff45b85)

2014-04-25 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  1fba76a   I18n: Update translation zh_TW (76%).
   new  ff45b85   I18n: Update translation ast (52%).

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/ast.po | 2037 -
 1 file changed, 665 insertions(+), 1372 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-trigger-launcher] 01/01: I18n: Update translation en_AU (100%).

2014-04-25 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-trigger-launcher.

commit b1d72719767c0bed97e6776e0e97384bee695f85
Author: k3lt01 
Date:   Fri Apr 25 12:32:06 2014 +0200

I18n: Update translation en_AU (100%).

23 translated messages.

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

diff --git a/po/en_AU.po b/po/en_AU.po
index 2621c70..ab13b2e 100644
--- a/po/en_AU.po
+++ b/po/en_AU.po
@@ -9,9 +9,9 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2006-05-18 00:44+0900\n"
-"PO-Revision-Date: 2013-07-29 09:39+\n"
+"PO-Revision-Date: 2014-04-25 08:26+\n"
 "Last-Translator: k3lt01 \n"
-"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce/language/en_AU/)\n"
+"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/en_AU/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\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] [panel-plugins/xfce4-trigger-launcher] branch master updated (310751d -> b1d7271)

2014-04-25 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-trigger-launcher.

  from  310751d   I18n: Update translation ast (100%).
   new  b1d7271   I18n: Update translation en_AU (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/en_AU.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] [panel-plugins/xfce4-radio-plugin] branch master updated (516c608 -> 8a17785)

2014-04-25 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-radio-plugin.

  from  516c608   I18n: Update translation ast (82%).
   new  8a17785   I18n: Update translation en_AU (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/en_AU.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] [panel-plugins/xfce4-timer-plugin] 01/01: I18n: Update translation en_AU (100%).

2014-04-25 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-timer-plugin.

commit 09ddad76bf1cff2c370bcfe91923200781fa0277
Author: k3lt01 
Date:   Fri Apr 25 12:32:04 2014 +0200

I18n: Update translation en_AU (100%).

41 translated messages.

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

diff --git a/po/en_AU.po b/po/en_AU.po
index f86d7d6..4d09451 100644
--- a/po/en_AU.po
+++ b/po/en_AU.po
@@ -3,15 +3,15 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# k3lt01 , 2013
+# k3lt01 , 2013-2014
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-13 22:15+0200\n"
-"PO-Revision-Date: 2013-07-29 09:38+\n"
+"PO-Revision-Date: 2014-04-25 08:30+\n"
 "Last-Translator: k3lt01 \n"
-"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce/language/en_AU/)\n"
+"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/en_AU/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -151,7 +151,7 @@ msgstr "Alarm command"
 
 #: ../src/xfcetimer.c:1572
 msgid "Don't display a warning  if an alarm command is set"
-msgstr "Don't display a warning  if an alarm command is set"
+msgstr "Don't display a warning if an alarm command is set"
 
 #: ../src/xfcetimer.c:1577
 msgid "Selecting a timer starts it"

-- 
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-netload-plugin] 01/01: I18n: Update translation en_AU (100%).

2014-04-25 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-netload-plugin.

commit a691ccd4ccaaf154c3be45797a2842bb8eff1ccb
Author: k3lt01 
Date:   Fri Apr 25 12:31:31 2014 +0200

I18n: Update translation en_AU (100%).

30 translated messages.

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

diff --git a/po/en_AU.po b/po/en_AU.po
index 451f9d5..d2fdc0e 100644
--- a/po/en_AU.po
+++ b/po/en_AU.po
@@ -9,9 +9,9 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-03 21:08+0200\n"
-"PO-Revision-Date: 2013-07-29 09:23+\n"
+"PO-Revision-Date: 2014-04-25 09:05+\n"
 "Last-Translator: k3lt01 \n"
-"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce/language/en_AU/)\n"
+"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/en_AU/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\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] [panel-plugins/xfce4-systemload-plugin] branch master updated (309d33a -> d9ea6b7)

2014-04-25 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-systemload-plugin.

  from  309d33a   I18n: Update translation ast (100%).
   new  d9ea6b7   I18n: Update translation en_AU (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/en_AU.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] [panel-plugins/xfce4-radio-plugin] 01/01: I18n: Update translation en_AU (100%).

2014-04-25 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-radio-plugin.

commit 8a17785907eba9a8d55f6a64c8341b4fa5a009af
Author: k3lt01 
Date:   Fri Apr 25 12:31:38 2014 +0200

I18n: Update translation en_AU (100%).

34 translated messages.

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

diff --git a/po/en_AU.po b/po/en_AU.po
index 3832e06..c12a4fb 100644
--- a/po/en_AU.po
+++ b/po/en_AU.po
@@ -9,9 +9,9 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2011-05-21 03:11+0200\n"
-"PO-Revision-Date: 2013-07-29 09:28+\n"
+"PO-Revision-Date: 2014-04-25 08:55+\n"
 "Last-Translator: k3lt01 \n"
-"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce/language/en_AU/)\n"
+"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/en_AU/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\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] [panel-plugins/xfce4-teatime-plugin] 01/01: I18n: Update translation en_AU (100%).

2014-04-25 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-teatime-plugin.

commit 12bafe30315e7a1a2072ceac72567bc7e29c380d
Author: k3lt01 
Date:   Fri Apr 25 12:31:50 2014 +0200

I18n: Update translation en_AU (100%).

21 translated messages.

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

diff --git a/po/en_AU.po b/po/en_AU.po
index 36a0bbd..5e41121 100644
--- a/po/en_AU.po
+++ b/po/en_AU.po
@@ -9,9 +9,9 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2006-09-10 21:29+0200\n"
-"PO-Revision-Date: 2013-07-29 09:36+\n"
+"PO-Revision-Date: 2014-04-25 08:39+\n"
 "Last-Translator: k3lt01 \n"
-"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce/language/en_AU/)\n"
+"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/en_AU/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\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] [panel-plugins/xfce4-quicklauncher-plugin] 01/01: I18n: Update translation en_AU (100%).

2014-04-25 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-quicklauncher-plugin.

commit 0c825c3c1843be15238678d5e5cd503f38447c87
Author: k3lt01 
Date:   Fri Apr 25 12:31:36 2014 +0200

I18n: Update translation en_AU (100%).

17 translated messages.

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

diff --git a/po/en_AU.po b/po/en_AU.po
index c063e6f..02dcb0b 100644
--- a/po/en_AU.po
+++ b/po/en_AU.po
@@ -3,15 +3,15 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# k3lt01 , 2013
+# k3lt01 , 2013-2014
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2007-05-17 21:37+0200\n"
-"PO-Revision-Date: 2013-07-29 09:26+\n"
+"PO-Revision-Date: 2014-04-25 09:01+\n"
 "Last-Translator: k3lt01 \n"
-"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce/language/en_AU/)\n"
+"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/en_AU/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -28,27 +28,27 @@ msgstr "Lines: "
 
 #: ../panel-plugin/callbacks.c:123
 msgid "Espace entre les lanceurs :"
-msgstr "Espace entre les lanceurs :"
+msgstr "Space between launchers :"
 
 #: ../panel-plugin/callbacks.c:131
 msgid "afficher les tooltips"
-msgstr "afficher les tooltips"
+msgstr "display tooltips"
 
 #: ../panel-plugin/callbacks.c:135
 msgid "afficher les labels"
-msgstr "afficher les labels"
+msgstr "display labels"
 
 #: ../panel-plugin/callbacks.c:216
 msgid "icone"
-msgstr "icone"
+msgstr "Icon:"
 
 #: ../panel-plugin/callbacks.c:222
 msgid "commande"
-msgstr "commande"
+msgstr "Command"
 
 #: ../panel-plugin/callbacks.c:228
 msgid "nom"
-msgstr "nom"
+msgstr "name"
 
 #: ../panel-plugin/callbacks.c:327
 msgid "Open icon"

-- 
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-fsguard-plugin] 01/01: I18n: Update translation en_AU (100%).

2014-04-25 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-fsguard-plugin.

commit 19e949ceb8eb38583e9cea312665afe72841efc3
Author: k3lt01 
Date:   Fri Apr 25 12:31:18 2014 +0200

I18n: Update translation en_AU (100%).

19 translated messages.

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

diff --git a/po/en_AU.po b/po/en_AU.po
index ce68836..e1f2396 100644
--- a/po/en_AU.po
+++ b/po/en_AU.po
@@ -9,9 +9,9 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-03 21:00+0200\n"
-"PO-Revision-Date: 2013-07-29 09:10+\n"
+"PO-Revision-Date: 2014-04-25 09:18+\n"
 "Last-Translator: k3lt01 \n"
-"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce/language/en_AU/)\n"
+"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/en_AU/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\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] [panel-plugins/xfce4-time-out-plugin] 01/01: I18n: Update translation en_AU (100%).

2014-04-25 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-time-out-plugin.

commit df091663ed3b329a91b385ee9327d7a658a444a8
Author: k3lt01 
Date:   Fri Apr 25 12:31:53 2014 +0200

I18n: Update translation en_AU (100%).

32 translated messages.

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

diff --git a/po/en_AU.po b/po/en_AU.po
index 7958230..18f64e1 100644
--- a/po/en_AU.po
+++ b/po/en_AU.po
@@ -9,9 +9,9 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-03 21:22+0200\n"
-"PO-Revision-Date: 2013-07-29 09:37+\n"
+"PO-Revision-Date: 2014-04-25 08:35+\n"
 "Last-Translator: k3lt01 \n"
-"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce/language/en_AU/)\n"
+"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/en_AU/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\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] [panel-plugins/xfce4-modemlights-plugin] 01/01: I18n: Update translation en_AU (100%).

2014-04-25 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-modemlights-plugin.

commit 209cc626c58209c8b56ee66ed3f050cba2e64b07
Author: k3lt01 
Date:   Fri Apr 25 12:31:25 2014 +0200

I18n: Update translation en_AU (100%).

16 translated messages.

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

diff --git a/po/en_AU.po b/po/en_AU.po
index 59fa05f..1ea4aef 100644
--- a/po/en_AU.po
+++ b/po/en_AU.po
@@ -3,15 +3,15 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# k3lt01 , 2013
+# k3lt01 , 2013-2014
 msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2007-11-08 09:45+0100\n"
-"PO-Revision-Date: 2013-07-29 09:19+\n"
+"PO-Revision-Date: 2014-04-25 09:13+\n"
 "Last-Translator: k3lt01 \n"
-"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce/language/en_AU/)\n"
+"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/en_AU/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\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] [panel-plugins/xfce4-teatime-plugin] branch master updated (37c9229 -> 12bafe3)

2014-04-25 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-teatime-plugin.

  from  37c9229   I18n: Update translation ast (100%).
   new  12bafe3   I18n: Update translation en_AU (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/en_AU.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] [panel-plugins/xfce4-time-out-plugin] branch master updated (b4931f1 -> df09166)

2014-04-25 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-time-out-plugin.

  from  b4931f1   I18n: Update translation ast (71%).
   new  df09166   I18n: Update translation en_AU (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/en_AU.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] [panel-plugins/xfce4-genmon-plugin] branch master updated (e656efd -> 511b32e)

2014-04-25 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-genmon-plugin.

  from  e656efd   I18n: Update translation ast (100%).
   new  511b32e   I18n: Update translation en_AU (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/en_AU.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] [panel-plugins/xfce4-systemload-plugin] 01/01: I18n: Update translation en_AU (100%).

2014-04-25 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-systemload-plugin.

commit d9ea6b7c0a0b26a6e4d396294d89726f0b75934f
Author: k3lt01 
Date:   Fri Apr 25 12:31:48 2014 +0200

I18n: Update translation en_AU (100%).

22 translated messages.

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

diff --git a/po/en_AU.po b/po/en_AU.po
index c4b0e2d..310d43d 100644
--- a/po/en_AU.po
+++ b/po/en_AU.po
@@ -9,9 +9,9 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-03 21:20+0200\n"
-"PO-Revision-Date: 2013-07-29 09:34+\n"
+"PO-Revision-Date: 2014-04-25 08:43+\n"
 "Last-Translator: k3lt01 \n"
-"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce/language/en_AU/)\n"
+"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/en_AU/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\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] [panel-plugins/xfce4-fsguard-plugin] branch master updated (53dc23d -> 19e949c)

2014-04-25 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-fsguard-plugin.

  from  53dc23d   I18n: Update translation ast (100%).
   new  19e949c   I18n: Update translation en_AU (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/en_AU.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] [panel-plugins/xfce4-quicklauncher-plugin] branch master updated (cda4246 -> 0c825c3)

2014-04-25 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-quicklauncher-plugin.

  from  cda4246   I18n: Update translation ast (100%).
   new  0c825c3   I18n: Update translation en_AU (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/en_AU.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] [panel-plugins/xfce4-timer-plugin] branch master updated (b7751a4 -> 09ddad7)

2014-04-25 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-timer-plugin.

  from  b7751a4   I18n: Update translation ast (87%).
   new  09ddad7   I18n: Update translation en_AU (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/en_AU.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] [panel-plugins/xfce4-netload-plugin] branch master updated (db10644 -> a691ccd)

2014-04-25 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-netload-plugin.

  from  db10644   I18n: Update translation ast (80%).
   new  a691ccd   I18n: Update translation en_AU (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/en_AU.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] [panel-plugins/xfce4-mpc-plugin] 01/01: I18n: Update translation en_AU (100%).

2014-04-25 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-mpc-plugin.

commit 5775f75e283dcd3c03f3b04cdcf9a7809556e6ea
Author: k3lt01 
Date:   Fri Apr 25 12:31:29 2014 +0200

I18n: Update translation en_AU (100%).

24 translated messages.

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

diff --git a/po/en_AU.po b/po/en_AU.po
index acb02a1..09a070c 100644
--- a/po/en_AU.po
+++ b/po/en_AU.po
@@ -9,9 +9,9 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-03 21:07+0200\n"
-"PO-Revision-Date: 2013-07-29 09:22+\n"
+"PO-Revision-Date: 2014-04-25 09:10+\n"
 "Last-Translator: k3lt01 \n"
-"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce/language/en_AU/)\n"
+"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/en_AU/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\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] [panel-plugins/xfce4-smartpm-plugin] branch master updated (3cb7180 -> 052712b)

2014-04-25 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-smartpm-plugin.

  from  3cb7180   I18n: Update translation ast (100%).
   new  052712b   I18n: Update translation en_AU (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/en_AU.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] [panel-plugins/xfce4-mpc-plugin] branch master updated (ea561a6 -> 5775f75)

2014-04-25 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-mpc-plugin.

  from  ea561a6   I18n: Update translation ast (95%).
   new  5775f75   I18n: Update translation en_AU (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/en_AU.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] [panel-plugins/xfce4-smartpm-plugin] 01/01: I18n: Update translation en_AU (100%).

2014-04-25 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-smartpm-plugin.

commit 052712b41756012596e2aa14229bdd48babb0dc1
Author: k3lt01 
Date:   Fri Apr 25 12:31:44 2014 +0200

I18n: Update translation en_AU (100%).

44 translated messages.

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

diff --git a/po/en_AU.po b/po/en_AU.po
index 1d67dd7..f746cef 100644
--- a/po/en_AU.po
+++ b/po/en_AU.po
@@ -9,9 +9,9 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-13 22:15+0200\n"
-"PO-Revision-Date: 2013-07-29 09:32+\n"
+"PO-Revision-Date: 2014-04-25 08:48+\n"
 "Last-Translator: k3lt01 \n"
-"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce/language/en_AU/)\n"
+"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/en_AU/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\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] [panel-plugins/xfce4-modemlights-plugin] branch master updated (d046d7d -> 209cc62)

2014-04-25 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-modemlights-plugin.

  from  d046d7d   I18n: Update translation ast (100%).
   new  209cc62   I18n: Update translation en_AU (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/en_AU.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] [panel-plugins/xfce4-genmon-plugin] 01/01: I18n: Update translation en_AU (100%).

2014-04-25 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-genmon-plugin.

commit 511b32e9cceebfbc2114ff89f476930bf356411d
Author: k3lt01 
Date:   Fri Apr 25 12:31:21 2014 +0200

I18n: Update translation en_AU (100%).

19 translated messages.

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

diff --git a/po/en_AU.po b/po/en_AU.po
index 07facdd..febf25b 100644
--- a/po/en_AU.po
+++ b/po/en_AU.po
@@ -9,9 +9,9 @@ msgstr ""
 "Project-Id-Version: Xfce Panel Plugins\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-03 21:01+0200\n"
-"PO-Revision-Date: 2013-07-29 09:11+\n"
+"PO-Revision-Date: 2014-04-25 09:16+\n"
 "Last-Translator: k3lt01 \n"
-"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce/language/en_AU/)\n"
+"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce-panel-plugins/language/en_AU/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\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-mixer] branch master updated (ba17352 -> b3963db)

2014-04-25 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-mixer.

  from  ba17352   I18n: Update translation ast (75%).
   new  b3963db   I18n: Update translation en_AU (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/en_AU.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/garcon] 01/01: I18n: Update translation en_AU (100%).

2014-04-25 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/garcon.

commit 6428fd2dfe827fe13556212785d20384a35d6eec
Author: k3lt01 
Date:   Fri Apr 25 12:30:10 2014 +0200

I18n: Update translation en_AU (100%).

31 translated messages.

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

diff --git a/po/en_AU.po b/po/en_AU.po
index ba0ba96..f8cfc7f 100644
--- a/po/en_AU.po
+++ b/po/en_AU.po
@@ -9,9 +9,9 @@ msgstr ""
 "Project-Id-Version: Garcon\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2013-07-02 22:58+0200\n"
-"PO-Revision-Date: 2013-07-25 06:56+\n"
+"PO-Revision-Date: 2014-04-25 08:12+\n"
 "Last-Translator: k3lt01 \n"
-"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce/language/en_AU/)\n"
+"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/garcon/language/en_AU/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\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/xfburn] 01/01: I18n: Update translation bg (100%).

2014-04-25 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 0d2f418af51b156dd9beb6e40316d196802bd0a2
Author: cybercop 
Date:   Fri Apr 25 12:30:56 2014 +0200

I18n: Update translation bg (100%).

303 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).
---
 po/bg.po |  144 --
 1 file changed, 74 insertions(+), 70 deletions(-)

diff --git a/po/bg.po b/po/bg.po
index 69ea752..a6703e5 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -9,10 +9,10 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2014-03-23 00:31+0100\n"
-"PO-Revision-Date: 2014-03-23 07:48+\n"
+"POT-Creation-Date: 2014-04-05 12:31+0200\n"
+"PO-Revision-Date: 2014-04-25 06:54+\n"
 "Last-Translator: cybercop \n"
-"Language-Team: Bulgarian 
(http://www.transifex.com/projects/p/xfce/language/bg/)\n"
+"Language-Team: Bulgarian 
(http://www.transifex.com/projects/p/xfce-apps/language/bg/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -53,12 +53,16 @@ msgstr "Копирането на CD приключи успешно."
 
 #: ../xfburn/xfburn-global.h:43
 msgid "Data composition"
-msgstr "Проект с данными"
+msgstr "Проект с данни"
 
-#: ../xfburn/xfburn-adding-progress.c:111
+#: ../xfburn/xfburn-adding-progress.c:112
 msgid "Adding files to the composition"
 msgstr "Добавяне на файлове към проекта"
 
+#: ../xfburn/xfburn-adding-progress.c:125
+msgid "Cancel"
+msgstr "Отмяна"
+
 #: ../xfburn/xfburn-blank-dialog.c:71
 msgid "Quick Blank"
 msgstr "Бързо изчистване"
@@ -155,20 +159,20 @@ msgstr "Изчистване..."
 
 #: ../xfburn/xfburn-blank-dialog.c:441
 #: ../xfburn/xfburn-burn-data-composition-base-dialog.c:519
-#: ../xfburn/xfburn-perform-burn.c:467
+#: ../xfburn/xfburn-perform-burn.c:485
 #, c-format
 msgid "Done"
 msgstr "Готово"
 
-#: ../xfburn/xfburn-blank-dialog.c:444 ../xfburn/xfburn-perform-burn.c:473
-#: ../xfburn/xfburn-progress-dialog.c:653
+#: ../xfburn/xfburn-blank-dialog.c:444 ../xfburn/xfburn-perform-burn.c:492
+#: ../xfburn/xfburn-progress-dialog.c:654
 msgid "Failure"
 msgstr "Неуспех"
 
 #: ../xfburn/xfburn-blank-dialog.c:461
-#: ../xfburn/xfburn-burn-data-composition-base-dialog.c:619
-#: ../xfburn/xfburn-burn-image-dialog.c:402
-#: ../xfburn/xfburn-burn-image-dialog.c:578
+#: ../xfburn/xfburn-burn-data-composition-base-dialog.c:624
+#: ../xfburn/xfburn-burn-image-dialog.c:400
+#: ../xfburn/xfburn-burn-image-dialog.c:576
 #: ../xfburn/xfburn-burn-audio-cd-composition-dialog.c:397
 msgid "Unable to grab the drive."
 msgstr "Устройството не може да се прихване"
@@ -247,13 +251,13 @@ msgstr "Възникна грешка при записа на ISO: %s"
 msgid "An error occurred in the burn backend."
 msgstr "Възникна грешка в устройството за записване"
 
-#: ../xfburn/xfburn-burn-data-composition-base-dialog.c:580
+#: ../xfburn/xfburn-burn-data-composition-base-dialog.c:585
 #: ../xfburn/xfburn-burn-audio-cd-composition-dialog.c:328
 msgid "The write mode is not supported currently."
 msgstr "Режимът на запис не се поддържа"
 
 #. could not create source
-#: ../xfburn/xfburn-burn-data-composition-base-dialog.c:662
+#: ../xfburn/xfburn-burn-data-composition-base-dialog.c:667
 msgid "Could not create ISO source structure."
 msgstr "Невъзможно е създаването на изходна ISO структура"
 
@@ -283,59 +287,59 @@ msgstr "Затваряне след успешно приключване"
 msgid "_Burn image"
 msgstr "Запис на образ"
 
-#: ../xfburn/xfburn-burn-image-dialog.c:285
+#: ../xfburn/xfburn-burn-image-dialog.c:283
 msgid "Burn mode is not currently implemented."
 msgstr "Режимът на запис не може да се приложи"
 
-#: ../xfburn/xfburn-burn-image-dialog.c:336
-#: ../xfburn/xfburn-burn-image-dialog.c:365
+#: ../xfburn/xfburn-burn-image-dialog.c:334
+#: ../xfburn/xfburn-burn-image-dialog.c:363
 msgid "An error occurred in the burn backend"
 msgstr "Грешка в програмата за записване на диск"
 
-#: ../xfburn/xfburn-burn-image-dialog.c:349
+#: ../xfburn/xfburn-burn-image-dialog.c:347
 msgid "Unable to determine image size."
 msgstr "Невъзможно е да се определи размера на образа"
 
-#: ../xfburn/xfburn-burn-image-dialog.c:356
+#: ../xfburn/xfburn-burn-image-dialog.c:354
 msgid "Cannot open image."
 msgstr "Образът не може да се отвори"
 
-#: ../xfburn/xfburn-burn-image-dialog.c:393
+#: ../xfburn/xfburn-burn-image-dialog.c:391
 msgid "Burning image..."
 msgstr "Запис на образ..."
 
-#: ../xfburn/xfburn-burn-image-dialog.c:465
+#: ../xfburn/xfburn-burn-image-dialog.c:463
 msgid ""
 "Please"
 " select an image to burn"
 msgstr "Моля, изберете образ за записване"
 
-#: ../xfburn/xfburn-burn-image-dialog.c:505
+#: ../xfburn/xfburn-burn-image-dialog.c:503
 msgid ""
 "Cannot append data to multisession disc in this write mode (use TAO instead)"
 msgstr "Невъзможно е да добавите данни в този диск за многократно използване в 
този р

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

2014-04-25 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 0014c15411abc4e967ac5305d3136a3a0f247f8a
Author: Tornes Llume 
Date:   Fri Apr 25 12:30:47 2014 +0200

I18n: Update translation ast (100%).

142 translated messages.

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

diff --git a/po/ast.po b/po/ast.po
index 92d0c91..fa2111c 100644
--- a/po/ast.po
+++ b/po/ast.po
@@ -9,9 +9,9 @@ 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: 2014-04-14 01:26+\n"
+"PO-Revision-Date: 2014-04-25 08:13+\n"
 "Last-Translator: Tornes Llume \n"
-"Language-Team: Asturian 
(http://www.transifex.com/projects/p/xfce/language/ast/)\n"
+"Language-Team: Asturian 
(http://www.transifex.com/projects/p/xfce-apps/language/ast/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
@@ -140,7 +140,7 @@ msgstr "Editar _marcador"
 #: ../src/window.c:707 ../src/window.c:1289 ../src/browsenetworkpanel.c:453
 #: ../src/browsenetworkpanel.c:497
 msgid "Create _Bookmark"
-msgstr "Criar _marcadores"
+msgstr "Crear _marcadores"
 
 #: ../src/window.c:1281
 msgid "_File"
@@ -256,7 +256,7 @@ msgstr "¿Movelu agora?"
 
 #: ../src/settings.c:695
 msgid "Gigolo needs to move your old configuration directory before starting."
-msgstr "Gigolo necesita que muevas el to antiguu direutoriu de configuración 
enantes d'entamar."
+msgstr "Gigolo necesita muevete'l to antiguu direutoriu de configuración 
enantes d'entamar."
 
 #: ../src/settings.c:703
 #, c-format
@@ -324,7 +324,7 @@ msgstr "Tienes d'introducir un nome pal marcador."
 #: ../src/bookmarkeditdialog.c:253
 msgid ""
 "The entered bookmark name is already in use. Please choose another one."
-msgstr "El nome de marcador introducíu yá ta n'usu. Por favor, escueyi otru."
+msgstr "El nome'l marcador introducíu yá ta n'usu. Por favor, escueyi otru."
 
 #: ../src/bookmarkeditdialog.c:266
 msgid "You must enter a server address or name."

-- 
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 (208927b -> 0d2f418)

2014-04-25 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  208927b   I18n: Update translation ru (100%).
   new  0d2f418   I18n: Update translation bg (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/bg.po |  144 --
 1 file changed, 74 insertions(+), 70 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/gigolo] branch master updated (6f38e7f -> 0014c15)

2014-04-25 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  6f38e7f   I18n: Update translation ast (100%).
   new  0014c15   I18n: Update translation ast (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/ast.po |   10 +-
 1 file changed, 5 insertions(+), 5 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-mixer] 01/01: I18n: Update translation en_AU (100%).

2014-04-25 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-mixer.

commit b3963dbcaa7cc336e912a1ec32116e5c0bcdd237
Author: k3lt01 
Date:   Fri Apr 25 12:31:00 2014 +0200

I18n: Update translation en_AU (100%).

36 translated messages.

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

diff --git a/po/en_AU.po b/po/en_AU.po
index f2c6ae9..b012746 100644
--- a/po/en_AU.po
+++ b/po/en_AU.po
@@ -9,9 +9,9 @@ msgstr ""
 "Project-Id-Version: Xfce Apps\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2012-09-29 13:30+\n"
-"PO-Revision-Date: 2013-07-29 09:06+\n"
+"PO-Revision-Date: 2014-04-25 09:22+\n"
 "Last-Translator: k3lt01 \n"
-"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce/language/en_AU/)\n"
+"Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce-apps/language/en_AU/)\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\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/garcon] branch xfce-4.10 updated (0e2c5dc -> 6428fd2)

2014-04-25 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/garcon.

  from  0e2c5dc   I18n: Add new translation ast (100%).
   new  6428fd2   I18n: Update translation en_AU (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/en_AU.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