[Xfce4-commits] xfce4-terminal:master Fix up the encoding menu creation.

2013-12-07 Thread Nick Schermer
Updating branch refs/heads/master
 to 71bd87a532f250d6bc98d52a5d546d43056bbd99 (commit)
   from b2676d47a539cc32be68efa28cbc484d0bb7984f (commit)

commit 71bd87a532f250d6bc98d52a5d546d43056bbd99
Author: Alistair Buxton a.j.bux...@gmail.com
Date:   Mon Oct 14 00:41:45 2013 +0100

Fix up the encoding menu creation.

Don't add non-radio items to the radio item group.
Don't leak list nodes by prepending twice to the same list.
Fixes BUG #10395.

 terminal/terminal-encoding-action.c |7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/terminal/terminal-encoding-action.c 
b/terminal/terminal-encoding-action.c
index 83242e9..77c916c 100644
--- a/terminal/terminal-encoding-action.c
+++ b/terminal/terminal-encoding-action.c
@@ -253,7 +253,7 @@ terminal_encoding_action_menu_shown (GtkWidget  
*menu,
   /* action to reset to the default */
   default_label = g_strdup_printf (_(Default (%s)), default_charset);
   item = gtk_radio_menu_item_new_with_label (groups, default_label);
-  groups = g_slist_prepend (groups, item);
+  groups = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (item));
   gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
   gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (item), found);
   g_signal_connect (G_OBJECT (item), activate,
@@ -267,7 +267,6 @@ terminal_encoding_action_menu_shown (GtkWidget  
*menu,
   /* category item */
   item = gtk_menu_item_new_with_label (_(terminal_encodings_names[n]));
   gtk_menu_shell_append (GTK_MENU_SHELL (menu), item);
-  groups = g_slist_prepend (groups, item);
   gtk_widget_show (item);
 
   submenu = gtk_menu_new ();
@@ -281,7 +280,7 @@ terminal_encoding_action_menu_shown (GtkWidget  
*menu,
 break;
 
   item2 = gtk_radio_menu_item_new_with_label (groups, charset);
-  groups = g_slist_prepend (groups, item2);
+  groups = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (item2));
   gtk_menu_shell_append (GTK_MENU_SHELL (submenu), item2);
   g_object_set_qdata (G_OBJECT (item2), encoding_action_quark, (gchar 
*) charset);
   gtk_widget_show (item2);
@@ -304,7 +303,7 @@ terminal_encoding_action_menu_shown (GtkWidget  
*menu,
 {
   /* add an action with the unknown charset */
   item2 = gtk_radio_menu_item_new_with_label (groups, action-current);
-  groups = g_slist_prepend (groups, item2);
+  groups = gtk_radio_menu_item_get_group (GTK_RADIO_MENU_ITEM (item2));
   g_object_set_qdata_full (G_OBJECT (item2), encoding_action_quark,
g_strdup (action-current), g_free);
   gtk_menu_shell_append (GTK_MENU_SHELL (submenu), item2);
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] garcon:master Bail out of creating a directory menu if it doesn't have a name.

2013-12-07 Thread Nick Schermer
Updating branch refs/heads/master
 to 48cc0b0e37d61d68c4889e236add390843fa01d6 (commit)
   from 166dbf25587a257c163fb7e55038266cbb5c8343 (commit)

commit 48cc0b0e37d61d68c4889e236add390843fa01d6
Author: Alistair Buxton a.j.bux...@gmail.com
Date:   Mon Sep 30 23:35:40 2013 +0100

Bail out of creating a directory menu if it doesn't have a name.

Attempting to create a directory menu with no name will cause a
segfault later when the name is validated.

 garcon/garcon-menu-directory.c |5 +
 1 file changed, 5 insertions(+)

diff --git a/garcon/garcon-menu-directory.c b/garcon/garcon-menu-directory.c
index 4b35863..deb62ba 100644
--- a/garcon/garcon-menu-directory.c
+++ b/garcon/garcon-menu-directory.c
@@ -361,6 +361,11 @@ garcon_menu_directory_new (GFile *file)
 
   /* Parse name, exec command and icon name */
   name = xfce_rc_read_entry (rc, G_KEY_FILE_DESKTOP_KEY_NAME, NULL);
+
+  /* If there is no name we must bail out now or segfault later */
+  if (G_UNLIKELY (name == NULL))
+return NULL;
+
   comment = xfce_rc_read_entry (rc, G_KEY_FILE_DESKTOP_KEY_COMMENT, NULL);
   icon_name = xfce_rc_read_entry_untranslated (rc, 
G_KEY_FILE_DESKTOP_KEY_ICON, NULL);
   no_display = xfce_rc_read_bool_entry (rc, G_KEY_FILE_DESKTOP_KEY_NO_DISPLAY, 
FALSE);
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfwm4:master Ignore when root atoms are unset.

2013-12-07 Thread Alistair Buxton
Updating branch refs/heads/master
 to f7fcb87de1f90210258026592dab472b14e189c1 (commit)
   from 683608318c154098d12ca0d10f4af66dfb35db53 (commit)

commit f7fcb87de1f90210258026592dab472b14e189c1
Author: Alistair Buxton a.j.bux...@gmail.com
Date:   Wed Nov 27 19:55:12 2013 +

Ignore when root atoms are unset.

If the background root atom is unset, ignore it. The XRender picture
we have should still be valid.

 src/compositor.c |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/compositor.c b/src/compositor.c
index 8a503b5..62196bf 100644
--- a/src/compositor.c
+++ b/src/compositor.c
@@ -2450,7 +2450,7 @@ compositorHandlePropertyNotify (DisplayInfo 
*display_info, XPropertyEvent *ev)
 
 for (p = 0; p  2; p++)
 {
-if (ev-atom == backgroundProps[p])
+if (ev-atom == backgroundProps[p]  ev-state == PropertyNewValue)
 {
 ScreenInfo *screen_info = myDisplayGetScreenFromRoot 
(display_info, ev-window);
 if ((screen_info)  (screen_info-rootTile))
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfwm4:master If making a solid fill, use XRenderCreateSolidFill

2013-12-07 Thread Alistair Buxton
Updating branch refs/heads/master
 to 4c9dd03362b974f4e2bfd0de77d00cce91ad29eb (commit)
   from 6f0327f21bb6a9f000e59ab8c70a111a02da5269 (commit)

commit 4c9dd03362b974f4e2bfd0de77d00cce91ad29eb
Author: Alistair Buxton a.j.bux...@gmail.com
Date:   Sun Dec 1 01:23:26 2013 +

If making a solid fill, use XRenderCreateSolidFill

This avoids the need for an intermediate pixmap, which simplifies the code.
Note the removal of XFreePixmap. This shouldn't have ben done on a pixmap
taken from atoms, which is now the only type of pixmap we deal with in this
function.

 src/compositor.c |   26 +++---
 1 file changed, 7 insertions(+), 19 deletions(-)

diff --git a/src/compositor.c b/src/compositor.c
index 40212d6..94e8045 100644
--- a/src/compositor.c
+++ b/src/compositor.c
@@ -809,11 +809,10 @@ root_tile (ScreenInfo *screen_info)
 DisplayInfo *display_info;
 Display *dpy;
 Picture picture;
+#ifdef MONITOR_ROOT_PIXMAP
 Pixmap pixmap;
-gboolean fill = FALSE;
 XRenderPictureAttributes pa;
 XRenderPictFormat *format;
-#ifdef MONITOR_ROOT_PIXMAP
 gint p;
 Atom backgroundProps[2];
 #endif
@@ -823,7 +822,6 @@ root_tile (ScreenInfo *screen_info)
 
 display_info = screen_info-display_info;
 dpy = display_info-dpy;
-pixmap = None;
 #ifdef MONITOR_ROOT_PIXMAP
 backgroundProps[0] = display_info-atoms[XROOTPMAP];
 backgroundProps[1] = display_info-atoms[XSETROOT];
@@ -848,24 +846,15 @@ root_tile (ScreenInfo *screen_info)
 {
 memcpy (pixmap, prop, 4);
 XFree (prop);
-fill = FALSE;
+pa.repeat = TRUE;
+format = XRenderFindVisualFormat (dpy, DefaultVisual (dpy, 
screen_info-screen));
+g_return_val_if_fail (format != NULL, None);
+picture = XRenderCreatePicture (dpy, pixmap, format, CPRepeat, 
pa);
 break;
 }
 }
 #endif
-if (!pixmap)
-{
-pixmap = XCreatePixmap (dpy, screen_info-output, 1, 1,
-DefaultDepth (dpy, screen_info-screen));
-g_return_val_if_fail (pixmap != None, None);
-fill = TRUE;
-}
-pa.repeat = TRUE;
-format = XRenderFindVisualFormat (dpy, DefaultVisual (dpy, 
screen_info-screen));
-g_return_val_if_fail (format != NULL, None);
-
-picture = XRenderCreatePicture (dpy, pixmap, format, CPRepeat, pa);
-if ((picture != None)  (fill))
+if (picture == None)
 {
 XRenderColor c;
 
@@ -874,9 +863,8 @@ root_tile (ScreenInfo *screen_info)
 c.green = 0x7f00;
 c.blue  = 0x7f00;
 c.alpha = 0x;
-XRenderFillRectangle (dpy, PictOpSrc, picture, c, 0, 0, 1, 1);
+picture = XRenderCreateSolidFill (dpy, c);
 }
-XFreePixmap (dpy, pixmap);
 return picture;
 }
 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfwm4:master Remove unnecessary clipping of the rootPicture

2013-12-07 Thread Alistair Buxton
Updating branch refs/heads/master
 to 6f0327f21bb6a9f000e59ab8c70a111a02da5269 (commit)
   from 2d63713f2c6cd259ef151b6ffb8114a02bb9b63b (commit)

commit 6f0327f21bb6a9f000e59ab8c70a111a02da5269
Author: Alistair Buxton a.j.bux...@gmail.com
Date:   Sat Nov 16 16:17:51 2013 +

Remove unnecessary clipping of the rootPicture

rootPicture is not used until much later when the rootBuffer is copied
back in to it. At this point rootBuffer contains the same clipping
region so it is unnecessary to specify it on rootPicture as well.

 src/compositor.c |3 ---
 1 file changed, 3 deletions(-)

diff --git a/src/compositor.c b/src/compositor.c
index b834dc1..40212d6 100644
--- a/src/compositor.c
+++ b/src/compositor.c
@@ -1403,9 +1403,6 @@ paint_all (ScreenInfo *screen_info, XserverRegion region)
 paint_region = XFixesCreateRegion (dpy, NULL, 0);
 XFixesCopyRegion (dpy, paint_region, region);
 
-/* Set clipping to the given region */
-XFixesSetPictureClipRegion (dpy, screen_info-rootPicture, 0, 0, 
paint_region);
-
 /*
  * Painting from top to bottom, reducing the clipping area at each 
iteration.
  * Only the opaque windows are painted 1st.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfwm4:master Repaint the screen when background changes.

2013-12-07 Thread Alistair Buxton
Updating branch refs/heads/master
 to 683608318c154098d12ca0d10f4af66dfb35db53 (commit)
   from 4c9dd03362b974f4e2bfd0de77d00cce91ad29eb (commit)

commit 683608318c154098d12ca0d10f4af66dfb35db53
Author: Alistair Buxton a.j.bux...@gmail.com
Date:   Wed Nov 27 19:52:18 2013 +

Repaint the screen when background changes.

add_repair() here looks like a mistake. We want to damage_screen()
so that the new background gets painted.

 src/compositor.c |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/compositor.c b/src/compositor.c
index 94e8045..8a503b5 100644
--- a/src/compositor.c
+++ b/src/compositor.c
@@ -2458,7 +2458,7 @@ compositorHandlePropertyNotify (DisplayInfo 
*display_info, XPropertyEvent *ev)
 XClearArea (display_info-dpy, screen_info-output, 0, 0, 0, 
0, TRUE);
 XRenderFreePicture (display_info-dpy, screen_info-rootTile);
 screen_info-rootTile = None;
-add_repair (screen_info);
+damage_screen (screen_info);
 
 return;
 }
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfwm4:master Implement zooming.

2013-12-07 Thread Alistair Buxton
Updating branch refs/heads/master
 to e7da725aab39018f54383dc6e8a64eccd8793035 (commit)
   from ab3de90429ae015e7f657f44f10f281120bbbe7a (commit)

commit e7da725aab39018f54383dc6e8a64eccd8793035
Author: Alistair Buxton a.j.bux...@gmail.com
Date:   Sat Nov 16 16:25:35 2013 +

Implement zooming.

This implements zooming when the compositor is enabled. To zoom in,
hold the key used to grab and move windows (usually alt) and scroll
up with the mouse wheel. Scroll down to zoom out.

This works by transforming the offscreen buffer where windows are
composited when rendering it back to the screen.

 src/compositor.c |  128 --
 src/compositor.h |4 ++
 src/events.c |8 ++--
 src/screen.h |4 ++
 4 files changed, 137 insertions(+), 7 deletions(-)

diff --git a/src/compositor.c b/src/compositor.c
index 5709d38..a8abd80 100644
--- a/src/compositor.c
+++ b/src/compositor.c
@@ -1385,6 +1385,12 @@ paint_all (ScreenInfo *screen_info, XserverRegion region)
 {
 screen_info-rootBuffer = create_root_buffer (screen_info);
 g_return_if_fail (screen_info-rootBuffer != None);
+
+memset(screen_info-transform.matrix, 0, 9);
+screen_info-transform.matrix[0][0] = 116;
+screen_info-transform.matrix[1][1] = 116;
+screen_info-transform.matrix[2][2] = 116;
+screen_info-zoomed = 0;
 }
 
 /* Copy the original given region */
@@ -1515,9 +1521,17 @@ paint_all (ScreenInfo *screen_info, XserverRegion region)
 }
 
 TRACE (Copying data back to screen);
-/* Set clipping back to the given region */
-XFixesSetPictureClipRegion (dpy, screen_info-rootBuffer, 0, 0, region);
-
+if(screen_info-zoomed)
+{
+/* Fixme: copy back whole screen if zoomed 
+   It would be better to scale the clipping region if possible. */
+XFixesSetPictureClipRegion (dpy, screen_info-rootBuffer, 0, 0, None);
+}
+else
+{
+/* Set clipping back to the given region */
+XFixesSetPictureClipRegion (dpy, screen_info-rootBuffer, 0, 0, 
region);
+}
 #ifdef HAVE_LIBDRM
 #if TIMEOUT_REPAINT
 use_dri = dri_enabled (screen_info);
@@ -2406,6 +2420,61 @@ destroy_win (DisplayInfo *display_info, Window id)
 }
 }
 
+void
+recenter_zoomed_area (ScreenInfo *screen_info, int x_root, int y_root)
+{
+int zf = screen_info-transform.matrix[0][0];
+double zoom = XFixedToDouble(zf);
+Display *dpy = screen_info-display_info-dpy;
+
+if(screen_info-zoomed)
+{
+int xp = x_root * (1-zoom);
+int yp = y_root * (1-zoom);
+screen_info-transform.matrix[0][2] = (xp16);
+screen_info-transform.matrix[1][2] = (yp16);
+}
+
+if(zf  (114)  zf  (116))
+XRenderSetPictureFilter(dpy, screen_info-rootBuffer, bilinear, 
NULL, 0);
+else
+XRenderSetPictureFilter(dpy, screen_info-rootBuffer, nearest, NULL, 
0);
+
+XRenderSetPictureTransform(dpy, screen_info-rootBuffer, 
screen_info-transform);
+
+damage_screen(screen_info);
+}
+
+static gboolean
+zoom_timeout_cb (gpointer data)
+{
+ScreenInfo   *screen_info;
+Window   root_return;
+Window   child_return;
+int  x_root, y_root;
+int  x_win, y_win;
+unsigned int mask;
+static int   x_old=-1, y_old=-1;
+
+screen_info = (ScreenInfo *) data;
+
+if(!screen_info-zoomed)
+{
+screen_info-zoom_timeout_id = 0;
+return FALSE; /* stop calling this callback */
+}
+
+XQueryPointer (screen_info-display_info-dpy, screen_info-xroot,
+   root_return, child_return,
+   x_root, y_root, x_win, y_win, mask);
+if(x_old != x_root || y_old != y_root)
+{
+x_old = x_root; y_old = y_root;
+recenter_zoomed_area(screen_info, x_root, y_root);
+}
+return TRUE;
+}
+
 static void
 compositorHandleDamage (DisplayInfo *display_info, XDamageNotifyEvent *ev)
 {
@@ -2967,6 +3036,57 @@ compositorHandleEvent (DisplayInfo *display_info, XEvent 
*ev)
 }
 
 void
+compositorZoomIn (ScreenInfo *screen_info, XButtonEvent *ev)
+{
+#ifdef HAVE_COMPOSITOR
+screen_info-transform.matrix[0][0] -= 4096;
+screen_info-transform.matrix[1][1] -= 4096;
+
+if(screen_info-transform.matrix[0][0]  (110))
+{
+screen_info-transform.matrix[0][0] = (110);
+screen_info-transform.matrix[1][1] = (110);
+}
+
+screen_info-zoomed = 1;
+if(!screen_info-zoom_timeout_id)
+{
+int timeout_rate = 30; /* per second */
+#ifdef HAVE_RANDR
+if (screen_info-display_info-have_xrandr)
+{
+timeout_rate = screen_info-refresh_rate/2;
+}
+#endif /* HAVE_RANDR */
+screen_info-zoom_timeout_id = g_timeout_add ((1000/timeout_rate), 
zoom_timeout_cb, screen_info);
+}
+recenter_zoomed_area(screen_info, ev-x_root, ev-y_root);
+#endif /* 

[Xfce4-commits] xfwm4:master Bring refresh_rate stuff outside of LIBDRM checks.

2013-12-07 Thread Alistair Buxton
Updating branch refs/heads/master
 to ab3de90429ae015e7f657f44f10f281120bbbe7a (commit)
   from f7fcb87de1f90210258026592dab472b14e189c1 (commit)

commit ab3de90429ae015e7f657f44f10f281120bbbe7a
Author: Alistair Buxton a.j.bux...@gmail.com
Date:   Mon Nov 25 17:33:26 2013 +

Bring refresh_rate stuff outside of LIBDRM checks.

We want to know the refresh rate even if libdrm is not used.

 src/compositor.c |   12 
 src/screen.h |2 +-
 2 files changed, 5 insertions(+), 9 deletions(-)

diff --git a/src/compositor.c b/src/compositor.c
index 62196bf..5709d38 100644
--- a/src/compositor.c
+++ b/src/compositor.c
@@ -1332,6 +1332,10 @@ wait_vblank (ScreenInfo *screen_info)
 }
 }
 
+#endif /* TIMEOUT_REPAINT */
+
+#endif /* HAVE_LIBDRM */
+
 #ifdef HAVE_RANDR
 static void
 get_refresh_rate (ScreenInfo* screen_info)
@@ -1351,10 +1355,6 @@ get_refresh_rate (ScreenInfo* screen_info)
 }
 #endif /* HAVE_RANDR */
 
-#endif /* TIMEOUT_REPAINT */
-
-#endif /* HAVE_LIBDRM */
-
 static void
 paint_all (ScreenInfo *screen_info, XserverRegion region)
 {
@@ -2724,7 +2724,6 @@ compositorHandleShapeNotify (DisplayInfo *display_info, 
XShapeEvent *ev)
 }
 }
 
-#ifdef HAVE_LIBDRM
 #ifdef HAVE_RANDR
 static void
 compositorHandleRandrNotify (DisplayInfo *display_info, 
XRRScreenChangeNotifyEvent *ev)
@@ -2742,7 +2741,6 @@ compositorHandleRandrNotify (DisplayInfo *display_info, 
XRRScreenChangeNotifyEve
 XRRUpdateConfiguration ((XEvent *) ev);
 }
 #endif /* HAVE_RANDR */
-#endif /* HAVE_LIBDRM */
 
 static void
 compositorSetCMSelection (ScreenInfo *screen_info, Window w)
@@ -2954,14 +2952,12 @@ compositorHandleEvent (DisplayInfo *display_info, 
XEvent *ev)
 {
 compositorHandleShapeNotify (display_info, (XShapeEvent *) ev);
 }
-#ifdef HAVE_LIBDRM
 #ifdef HAVE_RANDR
 else if (ev-type == (display_info-xrandr_event_base + 
RRScreenChangeNotify))
 {
 compositorHandleRandrNotify (display_info, (XRRScreenChangeNotifyEvent 
*) ev);
 }
 #endif /* HAVE_RANDR */
-#endif /* HAVE_LIBDRM */
 
 #if TIMEOUT_REPAINT == 0
 repair_display (display_info);
diff --git a/src/screen.h b/src/screen.h
index a2b25c0..8589374 100644
--- a/src/screen.h
+++ b/src/screen.h
@@ -188,11 +188,11 @@ struct _ScreenInfo
 gboolean dri_success;
 gint64 dri_time;
 gint64 vblank_time;
+#endif /* HAVE_LIBDRM */
 
 #ifdef HAVE_RANDR
 gint refresh_rate;
 #endif /* HAVE_RANDR */
-#endif /* HAVE_LIBDRM */
 
 #endif /* HAVE_COMPOSITOR */
 };
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-sensors-plugin:master I18n: Add new translation oc (100%).

2013-12-07 Thread Transifex
Updating branch refs/heads/master
 to 617464090001a7a8a4f8ea901988b7ae30ed1d69 (commit)
   from 0d09bedde1a9714a0fa2d22ac3f9e5940f4340d5 (commit)

commit 617464090001a7a8a4f8ea901988b7ae30ed1d69
Author: Cedric31 cvalm...@yahoo.fr
Date:   Sat Dec 7 12:31:27 2013 +0100

I18n: Add new translation oc (100%).

73 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{es.po = oc.po} |  137 +--
 1 file changed, 68 insertions(+), 69 deletions(-)

diff --git a/po/es.po b/po/oc.po
similarity index 67%
copy from po/es.po
copy to po/oc.po
index 1a9c131..ad00ae4 100644
--- a/po/es.po
+++ b/po/oc.po
@@ -3,31 +3,30 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-#  abel.martin.r...@gmail.com, 2009
-# Pablo Lezaeta prfl...@gmail.com, 2013
+# Cedric31 cvalm...@yahoo.fr, 2013
 msgid 
 msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-03 21:16+0200\n
-PO-Revision-Date: 2013-11-20 02:41+\n
-Last-Translator: Pablo Lezaeta prfl...@gmail.com\n
-Language-Team: Spanish 
(http://www.transifex.com/projects/p/xfce/language/es/)\n
+PO-Revision-Date: 2013-12-07 09:04+\n
+Last-Translator: Cedric31 cvalm...@yahoo.fr\n
+Language-Team: Occitan (post 1500) 
(http://www.transifex.com/projects/p/xfce/language/oc/)\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
+Language: oc\n
+Plural-Forms: nplurals=2; plural=(n  1);\n
 
 #: ../panel-plugin/sensors-plugin.c:287 ../panel-plugin/sensors-plugin.c:384
 #: ../panel-plugin/sensors-plugin.c:977
 msgid span foreground=\#00\bSensors/b/span
-msgstr span foreground=\#00\bSensores/b/span
+msgstr span foreground=\#00\bCaptadors/b/span
 
 #. widget = sensors-eventbox;
 #: ../panel-plugin/sensors-plugin.c:783
 msgid No sensors selected!
-msgstr ¡Ningún sensor seleccionado!
+msgstr Cap de captador pas seleccionat !
 
 #. FIXME: either print nothing, or undertake appropriate action,
 #. * or pop up a message box.
@@ -37,98 +36,98 @@ msgid 
 Sensors Plugin:\n
 Seems like there was a problem reading a sensor feature value.\n
 Proper proceeding cannot be guaranteed.\n
-msgstr Complemento de sensores:\nParece que hubo un problema leyendo el valor 
de una característica de un sensor.\nNo se puede garantizar un funcionamiento 
adecuado.\n
+msgstr Empeuton Captadors :\nSemblariá qu'i aja un problèma de lectura d'una 
valor caracteristica del captador.\nL'execucion normala pòt pas èsser 
garantida.\n\n\n\n
 
 #: ../panel-plugin/sensors-plugin.c:1684
 msgid UI style:
-msgstr Estilo de UI:
+msgstr Estil de l'interfàcia :
 
 #: ../panel-plugin/sensors-plugin.c:1685
 msgid _text
-msgstr _texto
+msgstr _tèxte
 
 #: ../panel-plugin/sensors-plugin.c:1687
 msgid _progress bars
-msgstr barra de _progreso
+msgstr _barras de progression
 
 #: ../panel-plugin/sensors-plugin.c:1689
 msgid _tachos
-msgstr con_tadores
+msgstr _taquis
 
 #: ../panel-plugin/sensors-plugin.c:1734
 msgid Show _labels
-msgstr Mostrar _etiquetas
+msgstr Afi_char las etiquetas
 
 #: ../panel-plugin/sensors-plugin.c:1764
 msgid Show colored _bars
-msgstr Mostrar _barras con colores
+msgstr Afichar las _barras en color
 
 #: ../panel-plugin/sensors-plugin.c:1792
 msgid _Show title
-msgstr Mostrar _título
+msgstr Afi_char lo títol
 
 #: ../panel-plugin/sensors-plugin.c:1816
 msgid _Number of text lines:
-msgstr _Número de líneas de texto:
+msgstr _Nombre de linhas de tèxte :
 
 #: ../panel-plugin/sensors-plugin.c:1851
 msgid F_ont size:
-msgstr Tamaño de _letra:
+msgstr Talha de la _poliça :
 
 #. gtk_widget_set_sensitive(myFontBox,
 #. !sd-sensors-display_values_graphically);
 #: ../panel-plugin/sensors-plugin.c:1858
 msgid x-small
-msgstr muy pequeña
+msgstr fòrça pichona
 
 #: ../panel-plugin/sensors-plugin.c:1859
 msgid small
-msgstr pequeña
+msgstr pichona
 
 #: ../panel-plugin/sensors-plugin.c:1860
 msgid medium
-msgstr medio
+msgstr normala
 
 #: ../panel-plugin/sensors-plugin.c:1861
 msgid large
-msgstr grande
+msgstr granda
 
 #: ../panel-plugin/sensors-plugin.c:1862
 msgid x-large
-msgstr muy grande
+msgstr fòrça granda
 
 #: ../panel-plugin/sensors-plugin.c:1893
 msgid F_ont:
-msgstr Ti_po de letra:
+msgstr Talha de la _poliça :
 
 #: ../panel-plugin/sensors-plugin.c:1927
 msgid Show _Units
-msgstr Mostrar _unidades
+msgstr Afichar las _unitats
 
 #: ../panel-plugin/sensors-plugin.c:1948
 msgid Small horizontal s_pacing
-msgstr Es_paciado horizontal pequeño
+msgstr Pichon e_spaci orizontal
 
 #: ../panel-plugin/sensors-plugin.c:1970
 msgid Suppress messages
-msgstr Suprimir mensajes
+msgstr Suprimir los messatges
 
 #: ../panel-plugin/sensors-plugin.c:1995
 msgid E_xecute on double click:
-msgstr E_jecutar al hacer doble clic:
+msgstr E_xecuta aprèp un clic doble :
 
 #: 

[Xfce4-commits] xfce4-wavelan-plugin:master I18n: Add new translation oc (100%).

2013-12-07 Thread Transifex
Updating branch refs/heads/master
 to 97017b82c94af48c6b2378815e18d12c587fa1a4 (commit)
   from 2642b75301f39b06d8bd6bc15c801f8007be1429 (commit)

commit 97017b82c94af48c6b2378815e18d12c587fa1a4
Author: Cedric31 cvalm...@yahoo.fr
Date:   Sat Dec 7 12:31:44 2013 +0100

I18n: Add new translation oc (100%).

12 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{tr.po = oc.po} |   32 
 1 file changed, 16 insertions(+), 16 deletions(-)

diff --git a/po/tr.po b/po/oc.po
similarity index 65%
copy from po/tr.po
copy to po/oc.po
index b14f42b..0ce246a 100644
--- a/po/tr.po
+++ b/po/oc.po
@@ -3,66 +3,66 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Necdet Yücel necdetyu...@gmail.com, 2013
+# Cedric31 cvalm...@yahoo.fr, 2013
 msgid 
 msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-03 21:27+0200\n
-PO-Revision-Date: 2013-08-02 13:16+\n
-Last-Translator: Necdet Yücel necdetyu...@gmail.com\n
-Language-Team: Turkish 
(http://www.transifex.com/projects/p/xfce/language/tr/)\n
+PO-Revision-Date: 2013-12-07 10:54+\n
+Last-Translator: Cedric31 cvalm...@yahoo.fr\n
+Language-Team: Occitan (post 1500) 
(http://www.transifex.com/projects/p/xfce/language/oc/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: tr\n
+Language: oc\n
 Plural-Forms: nplurals=2; plural=(n  1);\n
 
 #: ../panel-plugin/wavelan.c:156
 msgid No carrier signal
-msgstr Taşıyıcı sinyal bulunamadı
+msgstr Pas de portadoira
 
 #: ../panel-plugin/wavelan.c:175
 msgid No device configured
-msgstr Ayarlanmış aygıt bulunamadı
+msgstr Cap de periferic pas configurat
 
 #: ../panel-plugin/wavelan.c:508
 msgid Wavelan Plugin Options
-msgstr Wavelan Eklentisi Tercihleri
+msgstr Opcions de l'empeuton Wavelan
 
 #: ../panel-plugin/wavelan.c:523
 msgid Properties
-msgstr Tercihler
+msgstr Proprietats
 
 #: ../panel-plugin/wavelan.c:534
 msgid Interface
-msgstr Arabirim
+msgstr Interfàcia
 
 #: ../panel-plugin/wavelan.c:555
 msgid _Autohide when offline
-msgstr Çevri_mdışı iken gizle
+msgstr Amagar _automaticament fòra connexion
 
 #: ../panel-plugin/wavelan.c:565
 msgid Autohide when no hardware present
-msgstr Kullanılabilir aygıt olmadığında gizle
+msgstr Amagar automaticament en l'abséncia de material
 
 #: ../panel-plugin/wavelan.c:576
 msgid 
 Note: This will make it difficult to remove or configure the plugin if there
  is no device detected.
-msgstr Uyarı: Eğer aygıt yok ise bu eklentiyi panelden kaldırmanız veya 
yapılandırmanız zor olabilir.
+msgstr Nòta : La configuracion o supression d'aqueste empeuton serà dificile 
en l'abséncia de periferic.
 
 #: ../panel-plugin/wavelan.c:584
 msgid Enable signal quality colors
-msgstr Sinyal kalitesi renklerini etkinleştir
+msgstr Activar las colors de qualitat del senhal
 
 #: ../panel-plugin/wavelan.c:595
 msgid Show icon
-msgstr Simgeyi göster
+msgstr Afichar l'icòna
 
 #: ../panel-plugin/wavelan.c:623 ../panel-plugin/wavelan.desktop.in.h:2
 msgid View the status of a wireless network
-msgstr Kablosuz ağ durumunu görüntüler
+msgstr Veire l'estat d'una ret sens fial
 
 #: ../panel-plugin/wavelan.desktop.in.h:1
 msgid Wavelan
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-teatime-plugin:master I18n: Add new translation oc (100%).

2013-12-07 Thread Transifex
Updating branch refs/heads/master
 to a7714f1114f3adc5497f185907a261dcaf0bea52 (commit)
   from 38d7ac533759bbd27d0fddbabd4c85cb87b4a97d (commit)

commit a7714f1114f3adc5497f185907a261dcaf0bea52
Author: Cedric31 cvalm...@yahoo.fr
Date:   Sat Dec 7 12:31:34 2013 +0100

I18n: Add new translation oc (100%).

21 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{en_AU.po = oc.po} |   48 
 1 file changed, 24 insertions(+), 24 deletions(-)

diff --git a/po/en_AU.po b/po/oc.po
similarity index 66%
copy from po/en_AU.po
copy to po/oc.po
index 36a0bbd..0973e17 100644
--- a/po/en_AU.po
+++ b/po/oc.po
@@ -3,24 +3,24 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# k3lt01 keltoi...@gmail.com, 2013
+# Cedric31 cvalm...@yahoo.fr, 2013
 msgid 
 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
-Last-Translator: k3lt01 keltoi...@gmail.com\n
-Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce/language/en_AU/)\n
+PO-Revision-Date: 2013-12-07 09:04+\n
+Last-Translator: Cedric31 cvalm...@yahoo.fr\n
+Language-Team: Occitan (post 1500) 
(http://www.transifex.com/projects/p/xfce/language/oc/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: en_AU\n
-Plural-Forms: nplurals=2; plural=(n != 1);\n
+Language: oc\n
+Plural-Forms: nplurals=2; plural=(n  1);\n
 
 #: ../src/interface.c:69
 msgid Edit properties
-msgstr Edit properties
+msgstr Editar las proprietats
 
 #: ../src/interface.c:75
 msgid bXfteatime/b
@@ -28,15 +28,15 @@ msgstr bXfteatime/b
 
 #: ../src/interface.c:103
 msgid Tea can
-msgstr Tea can
+msgstr Pòt de tè
 
 #: ../src/interface.c:109
 msgid Coffee can
-msgstr Coffee can
+msgstr Pòt de cafè
 
 #: ../src/interface.c:115
 msgid Stove
-msgstr Stove
+msgstr Padena
 
 #: ../src/interface.c:128
 msgid /usr/share/icons/image.png
@@ -44,39 +44,39 @@ msgstr /usr/share/icons/image.png
 
 #: ../src/interface.c:142
 msgid bIcon image/b
-msgstr bIcon image/b
+msgstr bImatge d'icòna/b
 
 #: ../src/interface.c:168
 msgid Just a minute, please (1 minute)
-msgstr Just a minute, please (1 minute)
+msgstr Just una minuta, se vos plai (1 minuta)
 
 #: ../src/interface.c:169
 msgid Assam tea (2 minutes)
-msgstr Assam tea (2 minutes)
+msgstr Tè Assam (2 minutas)
 
 #: ../src/interface.c:170
 msgid Coffee (5 minutes)
-msgstr Coffee (5 minutes)
+msgstr Cafè (5 minutas)
 
 #: ../src/interface.c:171
 msgid Italian noodles (10 minutes)
-msgstr Italian noodles (10 minutes)
+msgstr Pastas italianas (10 minutas)
 
 #: ../src/interface.c:172
 msgid Pizza (12 minutes)
-msgstr Pizza (12 minutes)
+msgstr Pizza (12 minutas)
 
 #: ../src/interface.c:173
 msgid Turkey (2 hours)
-msgstr Turkey (2 hours)
+msgstr Piòta (2 oras)
 
 #: ../src/interface.c:175
 msgid after
-msgstr after
+msgstr aprèp
 
 #: ../src/interface.c:184
 msgid seconds
-msgstr seconds
+msgstr segondas
 
 #: ../src/interface.c:192
 msgid per
@@ -84,21 +84,21 @@ msgstr per
 
 #: ../src/interface.c:196
 msgid System bell
-msgstr System bell
+msgstr Sonariá del sistèma
 
 #: ../src/interface.c:200
 msgid Popup window
-msgstr Popup window
+msgstr Fenèstra contextuala
 
 #: ../src/interface.c:204
 msgid Blinking image
-msgstr Blinking image
+msgstr Imatge clucatejant
 
 #: ../src/interface.c:208
 msgid bNotification/b
-msgstr bNotification/b
+msgstr bNotificacion/b
 
 #: ../src/support.c:90 ../src/support.c:114
 #, c-format
 msgid Couldn't find pixmap file: %s
-msgstr Couldn't find pixmap file: %s
+msgstr Impossible de trobar lo fichièr pixmap : %s
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-timer-plugin:master I18n: Add new translation oc (97%).

2013-12-07 Thread Transifex
Updating branch refs/heads/master
 to 01bc17a5fb76c8431050e3eead95e2522b92dab6 (commit)
   from 8abb53d97f6a24ce1b5a9db0c4bdd0d37c69d8dc (commit)

commit 01bc17a5fb76c8431050e3eead95e2522b92dab6
Author: Cedric31 cvalm...@yahoo.fr
Date:   Sat Dec 7 12:31:38 2013 +0100

I18n: Add new translation oc (97%).

40 translated messages, 1 untranslated message.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{en_GB.po = oc.po} |   81 
 1 file changed, 40 insertions(+), 41 deletions(-)

diff --git a/po/en_GB.po b/po/oc.po
similarity index 68%
copy from po/en_GB.po
copy to po/oc.po
index 2fdc6b9..cbd9481 100644
--- a/po/en_GB.po
+++ b/po/oc.po
@@ -3,40 +3,39 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Noskcaj nosk...@ubuntu.com, 2013
-# Jeff Bailes thepizzak...@gmail.com, 2007
+# Cedric31 cvalm...@yahoo.fr, 2013
 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-26 21:36+\n
-Last-Translator: Noskcaj nosk...@ubuntu.com\n
-Language-Team: English (United Kingdom) 
(http://www.transifex.com/projects/p/xfce/language/en_GB/)\n
+PO-Revision-Date: 2013-12-07 09:05+\n
+Last-Translator: Cedric31 cvalm...@yahoo.fr\n
+Language-Team: Occitan (post 1500) 
(http://www.transifex.com/projects/p/xfce/language/oc/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: en_GB\n
-Plural-Forms: nplurals=2; plural=(n != 1);\n
+Language: oc\n
+Plural-Forms: nplurals=2; plural=(n  1);\n
 
 #: ../src/xfcetimer.c:141
 #, c-format
 msgid %dh %dm %ds left
-msgstr %dh %dm %ds left
+msgstr %dh %dm %ds restanta(s)
 
 #: ../src/xfcetimer.c:144
 #, c-format
 msgid %dm %ds left
-msgstr %dm %ds left
+msgstr %dm %ds restanta(s)
 
 #: ../src/xfcetimer.c:146
 #, c-format
 msgid %ds left
-msgstr %ds left
+msgstr %ds restanta(s)
 
 #: ../src/xfcetimer.c:149
 msgid  (Paused)
-msgstr  (Paused)
+msgstr  (En espèra)
 
 #. Display the name of the alarm when the countdown ends
 #: ../src/xfcetimer.c:170
@@ -44,27 +43,27 @@ msgstr  (Paused)
 msgid 
 Beeep! :) \n
 Time is up for the alarm %s.
-msgstr Beeep! :) \nTime is up for the alarm %s.
+msgstr Bip ! :) \nLo temps es passat per l'alarma %s.
 
 #: ../src/xfcetimer.c:462
 msgid Resume timer
-msgstr Resume timer
+msgstr Reprene lo cronomètre
 
 #: ../src/xfcetimer.c:469 ../src/xfcetimer.c:525
 msgid Stop timer
-msgstr Stop timer
+msgstr Arrestar lo cronomètre
 
 #: ../src/xfcetimer.c:513
 msgid Pause timer
-msgstr Pause timer
+msgstr Metre en pausa lo cronomètre
 
 #: ../src/xfcetimer.c:527
 msgid Start timer
-msgstr Start timer
+msgstr Aviar lo cronomètre
 
 #: ../src/xfcetimer.c:536
 msgid Stop the alarm
-msgstr Stop the alarm
+msgstr Arrestar l'alarme
 
 #: ../src/xfcetimer.c:591 ../src/xfcetimer.c:662
 #, c-format
@@ -84,20 +83,20 @@ msgstr %ds
 #: ../src/xfcetimer.c:604 ../src/xfcetimer.c:675
 #, c-format
 msgid At %02d:%02d
-msgstr At %02d:%02d
+msgstr A %02d:%02d
 
 #: ../src/xfcetimer.c:774
 msgid Name:
-msgstr Name:
+msgstr Nom :
 
 #. 
 #: ../src/xfcetimer.c:782
 msgid Enter the countdown time
-msgstr Enter the countdown time
+msgstr Entrar la durada del compte a rebors
 
 #: ../src/xfcetimer.c:785
 msgid Enter the time of alarm (24h format)
-msgstr Enter the time of alarm (24h format)
+msgstr Entrar l'ora de l'alarma (format 24h)
 
 #: ../src/xfcetimer.c:797
 msgid h  
@@ -113,80 +112,80 @@ msgstr s  
 
 #: ../src/xfcetimer.c:810
 msgid or
-msgstr or
+msgstr o
 
 #. **
 #: ../src/xfcetimer.c:830
 msgid Command to run:
-msgstr Command to run:
+msgstr Comanda d'executar :
 
 #: ../src/xfcetimer.c:860
 msgid Add new alarm
-msgstr Add new alarm
+msgstr Apondre una alarma
 
 #: ../src/xfcetimer.c:897
 msgid Edit alarm
-msgstr Edit alarm
+msgstr Editar l'alarma
 
 #: ../src/xfcetimer.c:1450 ../src/xfcetimer.c:1459
 msgid Xfce4 Timer Options
-msgstr Xfce4 Timer Options
+msgstr Opcions del cronomètre Xfce4
 
 #: ../src/xfcetimer.c:1461
 msgid Xfce 4 Timer Plugin
-msgstr Xfce 4 Timer Plugin
+msgstr Empeuton cronomètre Xfce 4
 
 #: ../src/xfcetimer.c:1507
 msgid Timer name
-msgstr Timer name
+msgstr Nom del cronomètre
 
 #: ../src/xfcetimer.c:1512
 msgid 
 Countdown period /\n
 Alarm time
-msgstr Countdown period /\nAlarm time
+msgstr Periòde de compte a rebors /\nOra d'alarma
 
 #: ../src/xfcetimer.c:1516
 msgid Alarm command
-msgstr Alarm command
+msgstr Comanda d'alarma
 
 #: ../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 
 
 #: ../src/xfcetimer.c:1577
 msgid Selecting a timer starts it
-msgstr Selecting a timer starts it
+msgstr Seleccion d'un retardator d'aviada, 
 
 #. Default alarm command config
 #: ../src/xfcetimer.c:1585
 msgid Use a default alarm command
-msgstr Use 

[Xfce4-commits] ristretto:master I18n: Update translation it (100%).

2013-12-07 Thread Transifex
Updating branch refs/heads/master
 to 619d50ff8947a316ae0fe0de3957beea8bc8705d (commit)
   from 1401e829e72da4089c392cef9b136cdc5ff67c17 (commit)

commit 619d50ff8947a316ae0fe0de3957beea8bc8705d
Author: cri cri.pe...@gmail.com
Date:   Sat Dec 7 12:30:50 2013 +0100

I18n: Update translation it (100%).

183 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/it.po |  473 ++
 1 file changed, 139 insertions(+), 334 deletions(-)

diff --git a/po/it.po b/po/it.po
index b6fe53d..4982eb5 100644
--- a/po/it.po
+++ b/po/it.po
@@ -1,22 +1,23 @@
-# Italian translations for ristretto package.
-# Copyright (C) 2007 THE ristretto'S COPYRIGHT HOLDER
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
 # This file is distributed under the same license as the PACKAGE package.
-# Fabio Vergnani monghi...@aruba.it, 2007.
-# Cristian Marchi cri.pe...@gmail.com, 2009.
 # 
+# Translators:
+# cri cri.pe...@gmail.com, 2009,2013
+# Fabio Vergnani monghi...@aruba.it, 2007
 msgid 
 msgstr 
-Project-Id-Version: ristretto\n
+Project-Id-Version: Xfce Apps\n
 Report-Msgid-Bugs-To: xfce-i...@xfce.org\n
-POT-Creation-Date: 2012-05-01 12:51+\n
-PO-Revision-Date: 2011-12-24 10:08+0100\n
-Last-Translator: Cristian Marchi cri.pe...@gmail.com\n
-Language-Team: Italian Translation Team 
xfce-it-translat...@googlegroups.com\n
+POT-Creation-Date: 2013-07-03 20:30+0200\n
+PO-Revision-Date: 2013-12-07 08:16+\n
+Last-Translator: cri cri.pe...@gmail.com\n
+Language-Team: Italian 
(http://www.transifex.com/projects/p/xfce/language/it/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: \n
-X-Poedit-Bookmarks: -1,-1,-1,-1,-1,-1,11,-1,-1,-1\n
+Language: it\n
+Plural-Forms: nplurals=2; plural=(n != 1);\n
 
 #: ../src/main.c:62
 msgid Version information
@@ -24,7 +25,7 @@ msgstr Informazioni sulla versione
 
 #: ../src/main.c:66
 msgid Start in fullscreen mode
-msgstr Avvia in modalità schermo intero
+msgstr Avvia in modalità a schermo intero
 
 #: ../src/main.c:70
 msgid Start a slideshow
@@ -41,531 +42,514 @@ msgid 
 \n
 Try %s --help to see a full list of\n
 available command line options.\n
-msgstr 
-%s: %s\n
-\n
-Utilizzare il comando %s --help per visualizzare la lista\n
- completa delle opzioni da linea di comando.\n
+msgstr %s: %s\n\nUtilizzare il comando %s --help per visualizzare la 
lista\ncompleta delle opzioni da linea di comando.\n
 
-#: ../src/main_window.c:56 ../ristretto.desktop.in.h:1
+#: ../src/main_window.c:57 ../ristretto.desktop.in.h:3
 msgid Image Viewer
 msgstr Visualizzatore di immagini
 
-#: ../src/main_window.c:358
+#: ../src/main_window.c:365
 msgid _File
 msgstr _File
 
 #. Icon-name
-#: ../src/main_window.c:362
+#: ../src/main_window.c:369
 msgid _Open...
 msgstr _Apri...
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:364
+#: ../src/main_window.c:371
 msgid Open an image
 msgstr Apre una immagine
 
 #. Icon-name
-#: ../src/main_window.c:368
+#: ../src/main_window.c:375
 msgid _Save copy...
 msgstr _Salva copia...
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:370
+#: ../src/main_window.c:377
 msgid Save a copy of the image
 msgstr Salva una copia dell'immagine
 
 #. Icon-name
-#: ../src/main_window.c:374
+#: ../src/main_window.c:381
 msgid _Properties...
 msgstr _Proprietà...
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:376
+#: ../src/main_window.c:383
 msgid Show file properties
 msgstr Mostra le proprietà del file
 
 #. Icon-name
-#: ../src/main_window.c:380 ../src/main_window.c:399
+#: ../src/main_window.c:387 ../src/main_window.c:406
 msgid _Edit
 msgstr _Modifica
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:382
+#: ../src/main_window.c:389
 msgid Edit this image
 msgstr Modifica l'immagine
 
 #. Icon-name
-#: ../src/main_window.c:386
+#: ../src/main_window.c:393
 msgid _Close
 msgstr _Chiudi
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:388
+#: ../src/main_window.c:395
 msgid Close this image
 msgstr Chiude questa immagine
 
 #. Icon-name
-#: ../src/main_window.c:392
+#: ../src/main_window.c:399
 msgid _Quit
 msgstr _Esci
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:394
+#: ../src/main_window.c:401
 msgid Quit Ristretto
 msgstr Esce da Ristretto
 
-#: ../src/main_window.c:403
+#: ../src/main_window.c:410
 msgid _Open with
 msgstr _Apri con
 
-#: ../src/main_window.c:407
+#: ../src/main_window.c:414
 msgid _Sorting
 msgstr _Ordinamento
 
 #. Icon-name
-#: ../src/main_window.c:411
+#: ../src/main_window.c:418
 msgid _Delete
 msgstr _Cancella
 
 #. Label-text
 #. Keyboard shortcut
-#: ../src/main_window.c:413
+#: ../src/main_window.c:420
 msgid Delete this image from disk
 msgstr Elimina questa immagine dal disco
 
 #. Icon-name
-#: ../src/main_window.c:417
+#: ../src/main_window.c:424
 msgid _Clear 

[Xfce4-commits] xfce4-xfapplet-plugin:master I18n: Add new translation oc (100%).

2013-12-07 Thread Transifex
Updating branch refs/heads/master
 to 1a77e31f92db5a920df4d6d90d89fe9656373c33 (commit)
   from 4db3b69f5ce341b0a656d5eb0cb62630eaa8ec73 (commit)

commit 1a77e31f92db5a920df4d6d90d89fe9656373c33
Author: Cedric31 cvalm...@yahoo.fr
Date:   Sat Dec 7 12:31:52 2013 +0100

I18n: Add new translation oc (100%).

14 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{en_AU.po = oc.po} |   38 +++---
 1 file changed, 19 insertions(+), 19 deletions(-)

diff --git a/po/en_AU.po b/po/oc.po
similarity index 64%
copy from po/en_AU.po
copy to po/oc.po
index 738947b..db66aae 100644
--- a/po/en_AU.po
+++ b/po/oc.po
@@ -3,20 +3,20 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# k3lt01 keltoi...@gmail.com, 2013
+# Cedric31 cvalm...@yahoo.fr, 2013
 msgid 
 msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2006-09-10 21:12+0200\n
-PO-Revision-Date: 2013-07-29 09:46+\n
-Last-Translator: k3lt01 keltoi...@gmail.com\n
-Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce/language/en_AU/)\n
+PO-Revision-Date: 2013-12-07 10:55+\n
+Last-Translator: Cedric31 cvalm...@yahoo.fr\n
+Language-Team: Occitan (post 1500) 
(http://www.transifex.com/projects/p/xfce/language/oc/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: en_AU\n
-Plural-Forms: nplurals=2; plural=(n != 1);\n
+Language: oc\n
+Plural-Forms: nplurals=2; plural=(n  1);\n
 
 #. creation of the dialog
 #: ../panel-plugin/chooser.c:444 ../panel-plugin/xfapplet.desktop.in.in.h:2
@@ -25,59 +25,59 @@ msgstr XfApplet
 
 #: ../panel-plugin/chooser.c:465
 msgid Choose an applet
-msgstr Choose an applet
+msgstr Causissètz una applet
 
 #: ../panel-plugin/chooser.c:474
 msgid 
 Choose an applet from the list. If you have already chosen an applet 
 previously, it will be substituted by the one you choose.
-msgstr Choose an applet from the list. If you have already chosen an applet 
previously, it will be substituted by the one you choose.
+msgstr Causissètz una applet dins la lista. Se avètz ja causit una applet 
precedentament, serà remplaçada per la que causissètz.
 
 #: ../panel-plugin/chooser.c:486
 msgid Available applets
-msgstr Available applets
+msgstr Applets disponiblas
 
 #: ../panel-plugin/xfapplet.c:148
 #, c-format
 msgid '%s' has quit unexpectedly.
-msgstr '%s' has quit unexpectedly.
+msgstr %s s'es arrestat d'un biais imprevist.
 
 #: ../panel-plugin/xfapplet.c:151
 msgid 
 If you don't reload the applet, XfApplet plugin will go back to its initial 
 empty state.
-msgstr If you don't reload the applet, XfApplet plugin will go back to its 
initial empty state.
+msgstr Se recargatz pas l'applet, l'empeuton Xfapplet va tornar a son estat 
void inicial.
 
 #: ../panel-plugin/xfapplet.c:153
 msgid Don't Reload
-msgstr Don't Reload
+msgstr Recargar pas
 
 #: ../panel-plugin/xfapplet.c:154
 msgid Reload
-msgstr Reload
+msgstr Recargar
 
 #: ../panel-plugin/xfapplet.c:477
 msgid Display Gnome applets on the Xfce4 Panel
-msgstr Display Gnome applets on the Xfce4 Panel
+msgstr Afichar d'applets Gnome sul Panèl Xfce4
 
 #: ../panel-plugin/xfapplet.c:480
 msgid Author/Maintainer
-msgstr Author/Maintainer
+msgstr Autor/Manteneire
 
 #: ../panel-plugin/xfapplet.c:484
 #, c-format
 msgid Translator (%s)
-msgstr Translator (%s)
+msgstr Traductor (%s)
 
 #: ../panel-plugin/xfapplet.c:574
 #, c-format
 msgid '%s' could not be loaded.
-msgstr '%s' could not be loaded.
+msgstr %s pòt pas èsser cargat.
 
 #: ../panel-plugin/xfapplet.c:577
 msgid An internal error occurred and the applet could not be loaded.
-msgstr An internal error occurred and the applet could not be loaded.
+msgstr Una error intèrna s'es produsida e l'applet pòt pas èsser cargada.
 
 #: ../panel-plugin/xfapplet.desktop.in.in.h:1
 msgid Display Gnome applets in the panel
-msgstr Display Gnome applets in the panel
+msgstr Afichar d'applets Gnome sul panèl
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-xkb-plugin:master I18n: Add new translation oc (100%).

2013-12-07 Thread Transifex
Updating branch refs/heads/master
 to 895855fd033b6e98b0b1fd37c20508da1aacfb9b (commit)
   from 061912e43e356ab8598116fe52a81a34a921f6d8 (commit)

commit 895855fd033b6e98b0b1fd37c20508da1aacfb9b
Author: Cedric31 cvalm...@yahoo.fr
Date:   Sat Dec 7 12:31:54 2013 +0100

I18n: Add new translation oc (100%).

17 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{fr.po = oc.po} |   42 +-
 1 file changed, 21 insertions(+), 21 deletions(-)

diff --git a/po/fr.po b/po/oc.po
similarity index 69%
copy from po/fr.po
copy to po/oc.po
index 4fad767..cef24c3 100644
--- a/po/fr.po
+++ b/po/oc.po
@@ -3,51 +3,51 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# jc1 jc1.quebe...@gmail.com, 2013
+# Cedric31 cvalm...@yahoo.fr, 2013
 msgid 
 msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-03 21:34+0200\n
-PO-Revision-Date: 2013-08-03 13:03+\n
-Last-Translator: jc1 jc1.quebe...@gmail.com\n
-Language-Team: French 
(http://www.transifex.com/projects/p/xfce/language/fr/)\n
+PO-Revision-Date: 2013-12-07 10:54+\n
+Last-Translator: Cedric31 cvalm...@yahoo.fr\n
+Language-Team: Occitan (post 1500) 
(http://www.transifex.com/projects/p/xfce/language/oc/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: fr\n
+Language: oc\n
 Plural-Forms: nplurals=2; plural=(n  1);\n
 
 #: ../panel-plugin/xkb-settings-dialog.c:112
 #: ../panel-plugin/xkb-plugin.desktop.in.in.h:1
 msgid Keyboard Layouts
-msgstr Dispositions du clavier
+msgstr Disposicions del clavièr
 
 #. ***
 #: ../panel-plugin/xkb-settings-dialog.c:122
 msgid Show layout as:
-msgstr Afficher la disposition en tant que :
+msgstr Afichar la disposicion en tant que :
 
 #: ../panel-plugin/xkb-settings-dialog.c:127
 msgid image
-msgstr image
+msgstr imatge
 
 #: ../panel-plugin/xkb-settings-dialog.c:128
 msgid text
-msgstr texte
+msgstr tèxte
 
 #. text size option
 #: ../panel-plugin/xkb-settings-dialog.c:133
 msgid Text size:
-msgstr Taille du texte :
+msgstr Talha del tèxte :
 
 #: ../panel-plugin/xkb-settings-dialog.c:138
 msgid small
-msgstr petit
+msgstr pichon
 
 #: ../panel-plugin/xkb-settings-dialog.c:139
 msgid medium
-msgstr moyen
+msgstr mejan
 
 #: ../panel-plugin/xkb-settings-dialog.c:140
 msgid large
@@ -55,36 +55,36 @@ msgstr grand
 
 #: ../panel-plugin/xkb-settings-dialog.c:144
 msgid Manage layout:
-msgstr Gérer la disposition :
+msgstr Gerir la disposicion :
 
 #: ../panel-plugin/xkb-settings-dialog.c:149
 msgid globally
-msgstr globalement
+msgstr globalament
 
 #: ../panel-plugin/xkb-settings-dialog.c:150
 msgid per window
-msgstr par fenêtre
+msgstr per fenèstra
 
 #: ../panel-plugin/xkb-settings-dialog.c:151
 msgid per application
-msgstr par application
+msgstr per aplicacion
 
 #: ../panel-plugin/xkb-settings-dialog.c:185
 msgid Keyboard Layouts Plugin
-msgstr Greffon de disposition du clavier
+msgstr Empeuton de disposicion del clavièr
 
 #: ../panel-plugin/xkb-settings-dialog.c:195
 msgid Allows you to configure and use multiple keyboard layouts.
-msgstr Permet l'utilisation de plusieurs dispositions du clavier.
+msgstr Permet l'utilizacion de mantuna disposicions del clavièr.
 
 #: ../panel-plugin/xkb-settings-dialog.c:199
 msgid Other plugins available here
-msgstr Autres greffons disponibles ici
+msgstr Autres empeutons disponibles aicí
 
 #: ../panel-plugin/xfce4-xkb-plugin.c:128
 msgid Keyboard settings
-msgstr Paramètres clavier
+msgstr Paramètres del clavièr
 
 #: ../panel-plugin/xkb-plugin.desktop.in.in.h:2
 msgid Keyboard layouts setup and switch plugin
-msgstr Greffon de disposition du clavier et de changement
+msgstr Empeuton de disposicion del clavièr e de son cambiament
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-trigger-launcher:master I18n: Add new translation oc (100%).

2013-12-07 Thread Transifex
Updating branch refs/heads/master
 to bdbf9b0ba95008a444594f92ba15be775b9b05b7 (commit)
   from 6ae2ff39e3489a9a039886abf6b0b00c39cbf8e2 (commit)

commit bdbf9b0ba95008a444594f92ba15be775b9b05b7
Author: Cedric31 cvalm...@yahoo.fr
Date:   Sat Dec 7 12:31:40 2013 +0100

I18n: Add new translation oc (100%).

23 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{en_AU.po = oc.po} |   58 
 1 file changed, 29 insertions(+), 29 deletions(-)

diff --git a/po/en_AU.po b/po/oc.po
similarity index 71%
copy from po/en_AU.po
copy to po/oc.po
index 2621c70..374dab5 100644
--- a/po/en_AU.po
+++ b/po/oc.po
@@ -3,114 +3,114 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# k3lt01 keltoi...@gmail.com, 2013
+# Cedric31 cvalm...@yahoo.fr, 2013
 msgid 
 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
-Last-Translator: k3lt01 keltoi...@gmail.com\n
-Language-Team: English (Australia) 
(http://www.transifex.com/projects/p/xfce/language/en_AU/)\n
+PO-Revision-Date: 2013-12-07 09:05+\n
+Last-Translator: Cedric31 cvalm...@yahoo.fr\n
+Language-Team: Occitan (post 1500) 
(http://www.transifex.com/projects/p/xfce/language/oc/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: en_AU\n
-Plural-Forms: nplurals=2; plural=(n != 1);\n
+Language: oc\n
+Plural-Forms: nplurals=2; plural=(n  1);\n
 
 #: ../panel-plugin/triggerlauncher-old2.c:287
 msgid Check status every
-msgstr Check status every
+msgstr Verificar l'estat cada
 
 #: ../panel-plugin/triggerlauncher-old2.c:296
 #: ../panel-plugin/xfce-trigger-launcher-options.c:132
 msgid seconds
-msgstr seconds
+msgstr segondas
 
 #: ../panel-plugin/triggerlauncher-old2.c:1005
 msgid Icon (off)
-msgstr Icon (off)
+msgstr Icòna (arrèst)
 
 #: ../panel-plugin/triggerlauncher-old2.c:1006
 msgid Icon (on)
-msgstr Icon (on)
+msgstr Icòna (marcha)
 
 #: ../panel-plugin/triggerlauncher-old2.c:1143
 msgid Two-state Launcher
-msgstr Two-state Launcher
+msgstr Aviador de dos estats
 
 #: ../panel-plugin/xfce-file-chooser-button.c:141
 msgid Select Icon
-msgstr Select Icon
+msgstr Seleccionar l'icòna
 
 #: ../panel-plugin/xfce-file-chooser-button.c:146
 msgid _Select
-msgstr _Select
+msgstr _Seleccionar
 
 #: ../panel-plugin/xfce-file-chooser-button.c:157
 msgid (None Selected)
-msgstr (None Selected)
+msgstr (Pas cap de seleccionat)
 
 #: ../panel-plugin/xfce-launcher-command-entry.c:118
 #, c-format
 msgid Could not run \%s\
-msgstr Could not run \%s\
+msgstr Impossible d'executar « %s »
 
 #: ../panel-plugin/xfce-launcher-command-entry.c:120
 msgid Xfce Panel
-msgstr Xfce Panel
+msgstr Panèl Xfce
 
 #: ../panel-plugin/xfce-trigger-launcher-options.c:127
 msgid Command To Check Status:
-msgstr Command To Check Status:
+msgstr Comanda per verificar l'estat :
 
 #: ../panel-plugin/xfce-trigger-launcher-options.c:128
 msgid Command To Enable:
-msgstr Command To Enable:
+msgstr Comanda per activar :
 
 #: ../panel-plugin/xfce-trigger-launcher-options.c:129
 msgid Command To Disable:
-msgstr Command To Disable:
+msgstr Comanda per desactivar :
 
 #: ../panel-plugin/xfce-trigger-launcher-options.c:130
 msgid Command to Poke:
-msgstr Command to Poke:
+msgstr Comanda per butar :
 
 #: ../panel-plugin/xfce-trigger-launcher-options.c:131
 msgid Check Interval:
-msgstr Check Interval:
+msgstr Verificar l'interval :
 
 #: ../panel-plugin/xfce-trigger-launcher-options.c:134
 #: ../panel-plugin/xfce-trigger-launcher-options.c:135
 #: ../panel-plugin/xfce-trigger-launcher-options.c:136
 #: ../panel-plugin/xfce-trigger-launcher-options.c:137
 msgid Icon:
-msgstr Icon:
+msgstr Icòna :
 
 #: ../panel-plugin/xfce-trigger-launcher-options.c:236
 msgid To Check Status
-msgstr To Check Status
+msgstr Per verificar l'estat
 
 #: ../panel-plugin/xfce-trigger-launcher-options.c:237
 msgid When Disabled
-msgstr When Disabled
+msgstr Quand desactivat
 
 #: ../panel-plugin/xfce-trigger-launcher-options.c:238
 msgid When Enabled
-msgstr When Enabled
+msgstr Quand activat
 
 #: ../panel-plugin/xfce-trigger-launcher-options.c:239
 msgid When Undefined
-msgstr When Undefined
+msgstr Quand pas definit
 
 #: ../panel-plugin/xfce-trigger-launcher-options.c:240
 msgid When Dodgy
-msgstr When Dodgy
+msgstr Quand dobtós
 
 #: ../panel-plugin/xfce4-trigger-launcher.desktop.in.in.h:1
 msgid Keeps track of the state of something and can control it
-msgstr Keeps track of the state of something and can control it
+msgstr Assegura lo seguiment de l'estat de quicòm e lo pòt contrarotlar
 
 #: ../panel-plugin/xfce4-trigger-launcher.desktop.in.in.h:2
 msgid Trigger Launcher Plugin
-msgstr Trigger Launcher Plugin
+msgstr Empeuton aviador-desenclavador
___
Xfce4-commits 

[Xfce4-commits] xfce4-websearch-plugin:master I18n: Add new translation oc (100%).

2013-12-07 Thread Transifex
Updating branch refs/heads/master
 to 135f8060794469351bcf6d8ed9608a1e6aacdbb0 (commit)
   from 85c44eeebd43f813bd81f67abe6fcf271c05b1d7 (commit)

commit 135f8060794469351bcf6d8ed9608a1e6aacdbb0
Author: Cedric31 cvalm...@yahoo.fr
Date:   Sat Dec 7 12:31:48 2013 +0100

I18n: Add new translation oc (100%).

5 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{fi.po = oc.po} |   22 +++---
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/po/fi.po b/po/oc.po
similarity index 61%
copy from po/fi.po
copy to po/oc.po
index 0dd0884..f995838 100644
--- a/po/fi.po
+++ b/po/oc.po
@@ -3,37 +3,37 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# Jiri Grönroos jiri.gronr...@iki.fi, 2013
+# Cedric31 cvalm...@yahoo.fr, 2013
 msgid 
 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-11-11 20:01+\n
-Last-Translator: Jiri Grönroos jiri.gronr...@iki.fi\n
-Language-Team: Finnish 
(http://www.transifex.com/projects/p/xfce/language/fi/)\n
+PO-Revision-Date: 2013-12-07 10:54+\n
+Last-Translator: Cedric31 cvalm...@yahoo.fr\n
+Language-Team: Occitan (post 1500) 
(http://www.transifex.com/projects/p/xfce/language/oc/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: fi\n
-Plural-Forms: nplurals=2; plural=(n != 1);\n
+Language: oc\n
+Plural-Forms: nplurals=2; plural=(n  1);\n
 
 #: ../src/websearch.c:312
 msgid Properties
-msgstr Ominaisuudet
+msgstr Proprietats
 
 #: ../src/websearch.c:321
 msgid Browser command: 
-msgstr Selaimen komento:
+msgstr Comanda del navigador :
 
 #: ../src/websearch.c:328
 msgid Search engine: 
-msgstr Hakukone:
+msgstr Motor de recèrca :
 
 #: ../src/websearch.c:345 ../src/websearch.desktop.in.in.h:2
 msgid WebSearch
-msgstr Verkkohaku
+msgstr Recèrca Web
 
 #: ../src/websearch.desktop.in.in.h:1
 msgid Search the Web directly from the Panel
-msgstr Etsi verkosta suoraan paneelista
+msgstr Recercar sul Web dirèctament a partir del panèl
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-wmdock-plugin:master I18n: Add new translation oc (100%).

2013-12-07 Thread Transifex
Updating branch refs/heads/master
 to 0f20ff8d06d74477e2b8f7d9240ee9a85c583c12 (commit)
   from d545fedc8182456bea97679f6d18dd6b9ef83c44 (commit)

commit 0f20ff8d06d74477e2b8f7d9240ee9a85c583c12
Author: Cedric31 cvalm...@yahoo.fr
Date:   Sat Dec 7 12:31:50 2013 +0100

I18n: Add new translation oc (100%).

28 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{tr.po = oc.po} |   65 +--
 1 file changed, 32 insertions(+), 33 deletions(-)

diff --git a/po/tr.po b/po/oc.po
similarity index 58%
copy from po/tr.po
copy to po/oc.po
index 84409d5..c065643 100644
--- a/po/tr.po
+++ b/po/oc.po
@@ -3,47 +3,46 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# atekinalp alper.tekin...@gmail.com, 2011
-# Necdet Yücel necdetyu...@gmail.com, 2013
+# Cedric31 cvalm...@yahoo.fr, 2013
 msgid 
 msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-11-05 12:31+0100\n
-PO-Revision-Date: 2013-11-15 10:08+\n
-Last-Translator: Necdet Yücel necdetyu...@gmail.com\n
-Language-Team: Turkish 
(http://www.transifex.com/projects/p/xfce/language/tr/)\n
+PO-Revision-Date: 2013-12-07 10:54+\n
+Last-Translator: Cedric31 cvalm...@yahoo.fr\n
+Language-Team: Occitan (post 1500) 
(http://www.transifex.com/projects/p/xfce/language/oc/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: tr\n
+Language: oc\n
 Plural-Forms: nplurals=2; plural=(n  1);\n
 
 #: ../panel-plugin/wmdock.c:190
 #, c-format
 msgid Only a single instance of `%s' can run.
-msgstr `%s' için sadece tek bir süreç çalışabilir.
+msgstr Una sola instància de « %s » se pòt executar.
 
 #: ../panel-plugin/wmdock.c:193
 msgid Only a single instance of `xfce4-wmdock-plugin' can run.
-msgstr Sadece tek bir `xfce4-wmdock-plugin' çalışabilir.
+msgstr Una sola instància de « xfce4-wmdock-plugin » se pòt executar.
 
 #: ../panel-plugin/dnd.c:73
 #, c-format
 msgid Do you want remove the dockapp \%s\?
-msgstr \%s\ dok uygulamasını kaldırmak istiyor musunuz?
+msgstr Volètz levar l'aplicacion ancorabla « %s » ?
 
 #: ../panel-plugin/props.c:93
 msgid Changes maybe not work properly until you restart XFCE!
-msgstr Değişiklikler XFCE yeniden başlatılana kadar düzgün çalışmayabilir!
+msgstr Es possible que los cambiaments foncionen pas corrèctament quand 
reaviaretz XFCE !
 
 #: ../panel-plugin/props.c:170
 msgid Changes will take effect when you restart XFCE!
-msgstr Değişiklikler XFCE'yi yeniden başlattığınızda geçerli olacaktır!
+msgstr Los cambiaments prendràn efièch quand reaviaretz XFCE !
 
 #: ../panel-plugin/props.c:386
 msgid No dockapp is running!
-msgstr Çalışan dok uygulaması yok!
+msgstr Pas d'aplicacion ancorabla en foncionament !
 
 #. Create the configure dialog.
 #: ../panel-plugin/props.c:415 ../panel-plugin/wmdock.desktop.in.in.h:1
@@ -52,87 +51,87 @@ msgstr WMdock
 
 #: ../panel-plugin/props.c:418
 msgid Remove dockapp
-msgstr Dok uygulamasını kaldır
+msgstr Levar l'aplicacion ancorabla !
 
 #: ../panel-plugin/props.c:434
 msgid General settings
-msgstr Genel ayarlar
+msgstr Paramètres generals
 
 #: ../panel-plugin/props.c:435
 msgid Dockapp detection
-msgstr Dok uygulaması tespiti
+msgstr Deteccion d'aplicacions ancorablas !
 
 #: ../panel-plugin/props.c:436
 msgid Mode settings
-msgstr Mod ayarları
+msgstr Paramètres mòde
 
 #: ../panel-plugin/props.c:483
 msgid Select dockapp to configure:
-msgstr Yapılandırmak için dok uygulaması seçin:
+msgstr Seleccionar l'aplicacion ancorabla de configurar :
 
 #: ../panel-plugin/props.c:492
 msgid Shell command:
-msgstr Kabuk komutu:
+msgstr Comanda de l'interpretador de comanda :
 
 #: ../panel-plugin/props.c:503
 msgid Display tile in the background.
-msgstr Arka planı görüntüle.
+msgstr Afichar los carrèus en rèire plan.
 
 #: ../panel-plugin/props.c:504
 msgid Display a separate WMdock properties button in the panel.
-msgstr Panelde ayrı bir WMdock özellikleri düğmesi göster.
+msgstr Afichar un boton proprietats WMdock separat dins lo panèl.
 
 #: ../panel-plugin/props.c:505
 msgid Add only dockapps which start with pattern in list. (e.g.: ^wm;^as)
-msgstr Sadece listede bulunan desenlerle başlayan dok uygulamaları. (örneğin: 
^wm;^as)
+msgstr Apondre solament las aplicacions ancorablas que començan amb lo modèl 
dins la lista. (per ex. : ^ wm; ^ as)
 
 #: ../panel-plugin/props.c:506
 msgid Display dockapps in separate windows and not in the panel.
-msgstr Dok uygulamalarını panelde değil ayrı pencerelerde görüntüle.
+msgstr Afichar las aplicacions ancorablas dins de fenèstras separadas e non 
pas dins lo panèl.
 
 #: ../panel-plugin/props.c:507
 msgid Don't use panel size as offset for the first dockapp.
-msgstr İlk dok uygulaması için kısıtlayıcı olarak panel boyutunu kullanmayın.
+msgstr Utilizar pas la talha del panèl coma compensacion per la primièra 

[Xfce4-commits] xfce4-systemload-plugin:master I18n: Add new translation oc (100%).

2013-12-07 Thread Transifex
Updating branch refs/heads/master
 to 18a77e6f99cbc9bf1b82870c3dc6f508ed2adace (commit)
   from 9b150c2f5117b007170ce047c368a5e204dbf5a2 (commit)

commit 18a77e6f99cbc9bf1b82870c3dc6f508ed2adace
Author: Cedric31 cvalm...@yahoo.fr
Date:   Sat Dec 7 12:31:32 2013 +0100

I18n: Add new translation oc (100%).

22 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{fr.po = oc.po} |   53 ++-
 1 file changed, 27 insertions(+), 26 deletions(-)

diff --git a/po/fr.po b/po/oc.po
similarity index 65%
copy from po/fr.po
copy to po/oc.po
index 099344d..702c7f2 100644
--- a/po/fr.po
+++ b/po/oc.po
@@ -3,90 +3,91 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Cedric31 cvalm...@yahoo.fr, 2013
 msgid 
 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-04 16:00+\n
-Last-Translator: jc1 jc1.quebe...@gmail.com\n
-Language-Team: French 
(http://www.transifex.com/projects/p/xfce/language/fr/)\n
+PO-Revision-Date: 2013-12-07 09:04+\n
+Last-Translator: Cedric31 cvalm...@yahoo.fr\n
+Language-Team: Occitan (post 1500) 
(http://www.transifex.com/projects/p/xfce/language/oc/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: fr\n
+Language: oc\n
 Plural-Forms: nplurals=2; plural=(n  1);\n
 
 #: ../panel-plugin/cpu.c:63
 msgid File /proc/stat not found!
-msgstr Fichier /proc/stat pas trouvé !
+msgstr Fichièr /proc/stat pas trobat !
 
 #: ../panel-plugin/systemload.c:159
 #, c-format
 msgid System Load: %ld%%
-msgstr Charge du système : %ld%%
+msgstr Carga del sistèma : %ld%%
 
 #: ../panel-plugin/systemload.c:166
 #, c-format
 msgid Memory: %ldMB of %ldMB used
-msgstr Mémoire : %ldMB de %ldMB utilisé
+msgstr Memòria : %ldMio de %ldMio utilizat
 
 #: ../panel-plugin/systemload.c:174
 #, c-format
 msgid Swap: %ldMB of %ldMB used
-msgstr Fichier d'échange : %ldMB de %ldMB utilisé
+msgstr Fichièr d'escambi : %ldMio de %ldMio utilizat
 
 #: ../panel-plugin/systemload.c:177
 #, c-format
 msgid No swap
-msgstr Aucun fichier d'échange
+msgstr Pas cap de fichièr d'escambi
 
 #: ../panel-plugin/systemload.c:188
 #, c-format
 msgid %d day
 msgid_plural %d days
-msgstr[0] %d Jour
-msgstr[1] %d Jours
+msgstr[0] %d Jorn
+msgstr[1] %d Jorns
 
 #: ../panel-plugin/systemload.c:192
 #, c-format
 msgid Uptime: %d day %d:%02d
 msgid_plural Uptime: %d days %d:%02d
-msgstr[0] Temps de fonctionnement : %d jour %d:%02d
-msgstr[1] Temps de fonctionnement : %d jours %d:%02d
+msgstr[0] Temps de foncionament : %d jorn %d:%02d
+msgstr[1] Temps de foncionament : %d jorns %d:%02d
 
 #: ../panel-plugin/systemload.c:200
 #, c-format
 msgid Uptime: %d:%02d
-msgstr Temps de fonctionnement : %d:%02d
+msgstr Temps de foncionament : %d:%02d
 
 #: ../panel-plugin/systemload.c:816
 msgid CPU monitor
-msgstr Moniteur CPU
+msgstr Monitor del CPU
 
 #: ../panel-plugin/systemload.c:817
 msgid Memory monitor
-msgstr Moniteur de mémoire
+msgstr Monitor de la memòria
 
 #: ../panel-plugin/systemload.c:818
 msgid Swap monitor
-msgstr Moniteur du fichier d'échange
+msgstr Monitor del fichièr d'escambi
 
 #: ../panel-plugin/systemload.c:819
 msgid Uptime monitor
-msgstr Moniteur de temps de fonctionnement
+msgstr Monitor del temps de foncionament
 
 #: ../panel-plugin/systemload.c:824 ../panel-plugin/systemload.desktop.in.h:1
 msgid System Load Monitor
-msgstr Moniteur de charge du système
+msgstr Monitor de la carga del sistèma
 
 #: ../panel-plugin/systemload.c:839
 msgid General
-msgstr Général
+msgstr General
 
 #: ../panel-plugin/systemload.c:841
 msgid Update interval:
-msgstr Intervalle de mise à jour :
+msgstr Interval de mesa a jorn :
 
 #: ../panel-plugin/systemload.c:841 ../panel-plugin/systemload.c:846
 msgid s
@@ -94,19 +95,19 @@ msgstr s
 
 #: ../panel-plugin/systemload.c:846
 msgid Power-saving interval:
-msgstr Intervalle d'économie d'énergie :
+msgstr Interval d'estalvi d'energia :
 
 #: ../panel-plugin/systemload.c:860
 msgid Text to display:
-msgstr Texte à afficher :
+msgstr Tèxte d'afichar :
 
 #: ../panel-plugin/systemload.c:864
 msgid Bar color:
-msgstr Couleur de barre :
+msgstr Color de barra :
 
 #: ../panel-plugin/systemload.c:889 ../panel-plugin/systemload.desktop.in.h:2
 msgid Monitor CPU load, swap usage and memory footprint
-msgstr Moniteur charge CPU, utilisation du fichier d'échange et de 
l'empreinte mémoire
+msgstr Monitor de la carga del CPU, utilizacion del fichièr d'escambi e de 
l'emprencha memòria
 
 #: ../panel-plugin/systemload.c:891
 msgid Copyright (c) 2003-2012\n
@@ -114,4 +115,4 @@ msgstr Copyright (c) 2003-2012\n
 
 #: ../panel-plugin/uptime.c:53
 msgid File /proc/uptime not found!
-msgstr Fichier /proc/uptime pas trouvé!
+msgstr Fichièr /proc/uptime pas trobat !
___

[Xfce4-commits] xfce4-verve-plugin:master I18n: Add new translation oc (100%).

2013-12-07 Thread Transifex
Updating branch refs/heads/master
 to 7db2fe4fa8f53abc68e8daa203a294d89451ebbd (commit)
   from c6e5dfcc31399614eb6efeecb62c690abb87c0ea (commit)

commit 7db2fe4fa8f53abc68e8daa203a294d89451ebbd
Author: Cedric31 cvalm...@yahoo.fr
Date:   Sat Dec 7 12:31:42 2013 +0100

I18n: Add new translation oc (100%).

10 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{fr.po = oc.po} |   29 ++---
 1 file changed, 14 insertions(+), 15 deletions(-)

diff --git a/po/fr.po b/po/oc.po
similarity index 66%
copy from po/fr.po
copy to po/oc.po
index 5aafbd3..f51c93c 100644
--- a/po/fr.po
+++ b/po/oc.po
@@ -3,26 +3,25 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
-# jc1 jc1.quebe...@gmail.com, 2013
-# Maximilian Schleiss maximil...@xfce.org, 2006
+# Cedric31 cvalm...@yahoo.fr, 2013
 msgid 
 msgstr 
 Project-Id-Version: Xfce Panel Plugins\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-03 21:26+0200\n
-PO-Revision-Date: 2013-08-03 13:26+\n
-Last-Translator: jc1 jc1.quebe...@gmail.com\n
-Language-Team: French 
(http://www.transifex.com/projects/p/xfce/language/fr/)\n
+PO-Revision-Date: 2013-12-07 10:54+\n
+Last-Translator: Cedric31 cvalm...@yahoo.fr\n
+Language-Team: Occitan (post 1500) 
(http://www.transifex.com/projects/p/xfce/language/oc/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: fr\n
+Language: oc\n
 Plural-Forms: nplurals=2; plural=(n  1);\n
 
 #. Generate error message
 #: ../panel-plugin/verve-plugin.c:407
 msgid Could not execute command:
-msgstr Échec à l'exécution de la commande :
+msgstr Fracàs a l'execucion de la comanda :
 
 #. Create properties dialog
 #: ../panel-plugin/verve-plugin.c:787
@@ -32,40 +31,40 @@ msgstr Verve
 #. Frame for appearance settings
 #: ../panel-plugin/verve-plugin.c:805
 msgid Appearance
-msgstr Apparence
+msgstr Aparéncia
 
 #. Plugin size label
 #: ../panel-plugin/verve-plugin.c:816
 msgid Width (in chars):
-msgstr Largeur (en caractères) :
+msgstr Largor (en caractèrs) :
 
 #. Frame for behaviour settings
 #: ../panel-plugin/verve-plugin.c:836
 msgid Behaviour
-msgstr Comportement
+msgstr Comportament
 
 #. History length label
 #: ../panel-plugin/verve-plugin.c:847
 msgid Number of saved history items:
-msgstr Nombre d'éléments sauvegardés dans l'historique :
+msgstr Nombre d'elements salvats dins l'istoric :
 
 #. vim:set expandtab sts=2 ts=2 sw=2:
 #: ../panel-plugin/xfce4-verve-plugin.desktop.in.h:1
 msgid Verve Command Line
-msgstr Ligne de commande Verve
+msgstr Linha de comanda Verve
 
 #: ../panel-plugin/xfce4-verve-plugin.desktop.in.h:2
 msgid Command line interface with auto-completion and command history
-msgstr Interface de ligne de commande avec l'auto-complétion et l'historique 
des commandes
+msgstr Interfàcia de linha de comanda amb l'autocomplecion e l'istoric de las 
comandas
 
 #. Print error message
 #: ../scripts/verve-focus.c:60
 msgid Failed to connect to the D-BUS session bus.
-msgstr Impossible de se connecter au bus de session D-BUS.
+msgstr Impossible de se connectar al bus de sesilha D-BUS.
 
 #. Print error message
 #: ../scripts/verve-focus.c:83
 msgid 
 There seems to be no Verve D-BUS provider (e.g. the Verve panel plugin) 
 running.
-msgstr Il semble n'y avoir aucun fournisseur D-BUS Verve (par exemple, le 
plugin panneau de Verve) en fonctionnement.
+msgstr Sembla qu'i a pas cap de provesidor D-BUS Verve (per exemple, lo 
plugin panèl de Verve) en foncionament.
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-time-out-plugin:master I18n: Add new translation oc (100%).

2013-12-07 Thread Transifex
Updating branch refs/heads/master
 to c1fc3cd94980eaeffdffc4dc5bb35bb876c59ffa (commit)
   from db94a64f180cef0dbc93a840aac238ad4feadc39 (commit)

commit c1fc3cd94980eaeffdffc4dc5bb35bb876c59ffa
Author: Cedric31 cvalm...@yahoo.fr
Date:   Sat Dec 7 12:31:36 2013 +0100

I18n: Add new translation oc (100%).

32 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/{fr.po = oc.po} |   69 ++-
 1 file changed, 35 insertions(+), 34 deletions(-)

diff --git a/po/fr.po b/po/oc.po
similarity index 80%
copy from po/fr.po
copy to po/oc.po
index 23c760b..9f138d1 100644
--- a/po/fr.po
+++ b/po/oc.po
@@ -3,132 +3,133 @@
 # This file is distributed under the same license as the PACKAGE package.
 # 
 # Translators:
+# Cedric31 cvalm...@yahoo.fr, 2013
 msgid 
 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-04 16:40+\n
-Last-Translator: jc1 jc1.quebe...@gmail.com\n
-Language-Team: French 
(http://www.transifex.com/projects/p/xfce/language/fr/)\n
+PO-Revision-Date: 2013-12-07 09:05+\n
+Last-Translator: Cedric31 cvalm...@yahoo.fr\n
+Language-Team: Occitan (post 1500) 
(http://www.transifex.com/projects/p/xfce/language/oc/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
 Content-Transfer-Encoding: 8bit\n
-Language: fr\n
+Language: oc\n
 Plural-Forms: nplurals=2; plural=(n  1);\n
 
 #. Create menu item for taking an instant break
 #: ../panel-plugin/time-out.c:260
 msgid Take a break
-msgstr Prenez une pause
+msgstr Prenètz una pausa
 
 #. Create menu item for resetting the timer
 #: ../panel-plugin/time-out.c:268
 msgid Reset timer
-msgstr Réinitialiser le compteur
+msgstr Reïnicializar lo comptador
 
 #. Create menu item for enabling/disabling the countdown
 #: ../panel-plugin/time-out.c:276
 msgid Enabled
-msgstr Activé
+msgstr Activat
 
 #. Update tooltips
 #: ../panel-plugin/time-out.c:340
 msgid Paused
-msgstr En attente
+msgstr En espèra
 
 #: ../panel-plugin/time-out.c:419
 msgid 
 Xfce Panel plugin for taking a break from computer work every now and then.
-msgstr Le Greffon du panneau Xfce pour prendre une pause de l'ordinateur 
fonctionne de temps en temps.
+msgstr Empeuton del panèl Xfce per prene una pausa de l'ordenador de temps en 
temps.
 
 #: ../panel-plugin/time-out.c:428
 msgid translator-credits
-msgstr Crédits - traducteur
+msgstr Cédric Valmary (totenoc.org)
 
 #. Create properties dialog
 #: ../panel-plugin/time-out.c:460
 #: ../panel-plugin/xfce4-time-out-plugin.desktop.in.h:1
 msgid Time Out
-msgstr Fin du délai
+msgstr Tempses mòrts
 
 #. Create time settings section
 #: ../panel-plugin/time-out.c:477
 msgid Time settings
-msgstr Paramètres de l'heure
+msgstr Paramètres de l'ora
 
 #. Create the labels for the minutes and seconds spins
 #: ../panel-plugin/time-out.c:490
 msgid Minutes
-msgstr Minutes
+msgstr Minutas
 
 #: ../panel-plugin/time-out.c:495
 msgid Seconds
-msgstr Secondes
+msgstr Segondas
 
 #. Create break countdown time label
 #: ../panel-plugin/time-out.c:501
 msgid Time between breaks:
-msgstr Temps entre les pauses :
+msgstr Temps entre las pausas :
 
 #. Create lock countdown time label
 #: ../panel-plugin/time-out.c:525
 msgid Break length:
-msgstr Longueur brisée :
+msgstr Longor de la pausa :
 
 #. Create postpone countdown time label
 #: ../panel-plugin/time-out.c:543
 msgid Postpone length:
-msgstr Longueur du report :
+msgstr Longor del repòrt :
 
 #. Create behaviour section
 #: ../panel-plugin/time-out.c:561
 msgid Behaviour
-msgstr Comportement
+msgstr Comportament
 
 #. Create postpone check button
 #: ../panel-plugin/time-out.c:572
 msgid Allow postpone
-msgstr Permettre le report
+msgstr Permetre lo repòrt
 
 #. Create resume check button
 #: ../panel-plugin/time-out.c:579
 msgid Resume automatically
-msgstr Reprendre automatiquement
+msgstr Reprene automaticament
 
 #. Create appearance section
 #: ../panel-plugin/time-out.c:586
 msgid Appearance
-msgstr Aspect
+msgstr Aparéncia
 
 #. Create display time check button
 #: ../panel-plugin/time-out.c:597
 msgid Display remaining time in the panel
-msgstr Affichage du temps restant dans le panneau
+msgstr Afichatge del temps restant dins lo panèl
 
 #. Create display hours check button
 #: ../panel-plugin/time-out.c:604
 msgid Display hours
-msgstr Afficher heures
+msgstr Afichar las oras
 
 #. Create display seconds check button
 #: ../panel-plugin/time-out.c:611
 msgid Display seconds
-msgstr Afficher les secondes
+msgstr Afichar las segondas
 
 #. Create postpone button
 #: ../panel-plugin/time-out-lock-screen.c:219
 msgid _Postpone
-msgstr Report
+msgstr Re_pòrt
 
 #. Create resume button
 #: ../panel-plugin/time-out-lock-screen.c:225
 msgid _Resume
-msgstr _Reprendre
+msgstr _Reprene
 
 #: ../panel-plugin/time-out-countdown.c:377
 msgid The break is over.
-msgstr La pause est terminée.

[Xfce4-commits] xfwm4:master Fix compiler warnings.

2013-12-07 Thread Nick Schermer
Updating branch refs/heads/master
 to 51a982b74c9b48b9ae20d712127187119dad7a05 (commit)
   from e7da725aab39018f54383dc6e8a64eccd8793035 (commit)

commit 51a982b74c9b48b9ae20d712127187119dad7a05
Author: Nick Schermer n...@xfce.org
Date:   Sat Dec 7 12:33:03 2013 +0100

Fix compiler warnings.

 src/compositor.c |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/compositor.c b/src/compositor.c
index a8abd80..01ff05f 100644
--- a/src/compositor.c
+++ b/src/compositor.c
@@ -808,7 +808,7 @@ root_tile (ScreenInfo *screen_info)
 {
 DisplayInfo *display_info;
 Display *dpy;
-Picture picture;
+Picture picture = None;
 #ifdef MONITOR_ROOT_PIXMAP
 Pixmap pixmap;
 XRenderPictureAttributes pa;
@@ -2420,7 +2420,7 @@ destroy_win (DisplayInfo *display_info, Window id)
 }
 }
 
-void
+static void
 recenter_zoomed_area (ScreenInfo *screen_info, int x_root, int y_root)
 {
 int zf = screen_info-transform.matrix[0][0];
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] xfce4-session:xfce-4.10 I18n: Update translation oc (100%).

2013-12-07 Thread Transifex
Updating branch refs/heads/xfce-4.10
 to 019f0746a6e77bc50b3c29a06e801e60bf03b594 (commit)
   from af021b50122f59518d99dcd018c3361fdaa53415 (commit)

commit 019f0746a6e77bc50b3c29a06e801e60bf03b594
Author: Cedric31 cvalm...@yahoo.fr
Date:   Sat Dec 7 18:30:39 2013 +0100

I18n: Update translation oc (100%).

208 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/oc.po |   17 +
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/po/oc.po b/po/oc.po
index 6d55d61..dc99154 100644
--- a/po/oc.po
+++ b/po/oc.po
@@ -4,12 +4,13 @@
 # 
 # Translators:
 # Cedric31 cvalm...@yahoo.fr, 2013
+# Cedric31 cvalm...@yahoo.fr, 2013
 msgid 
 msgstr 
 Project-Id-Version: Xfce4-session\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-02 23:14+0200\n
-PO-Revision-Date: 2013-11-26 19:05+\n
+PO-Revision-Date: 2013-12-07 16:38+\n
 Last-Translator: Cedric31 cvalm...@yahoo.fr\n
 Language-Team: Occitan (post 1500) 
(http://www.transifex.com/projects/p/xfce/language/oc/)\n
 MIME-Version: 1.0\n
@@ -186,7 +187,7 @@ msgstr Impossible de crear l'interfàcia d'utilizaire a 
partir de las donadas d
 
 #: ../settings/main.c:128
 msgid _Application Autostart
-msgstr 
+msgstr _Aviada automatica
 
 #: ../settings/session-editor.c:61
 msgid If running
@@ -783,7 +784,7 @@ msgstr bSeleccion de sesilha/b
 
 #: ../settings/xfce4-session-settings.glade.h:6
 msgid Automatically save session on _logout
-msgstr 
+msgstr _Enregistrar automaticament la sesilha al moment de la desconnexion
 
 #: ../settings/xfce4-session-settings.glade.h:7
 msgid Always save the session when logging out
@@ -791,7 +792,7 @@ msgstr Totjorn enregistrar la sesilha quand vos 
desconnectatz
 
 #: ../settings/xfce4-session-settings.glade.h:8
 msgid _Prompt on logout
-msgstr 
+msgstr Convida a la desconnexion
 
 #: ../settings/xfce4-session-settings.glade.h:9
 msgid Prompt for confirmation when logging out
@@ -858,7 +859,7 @@ msgstr Aquestas aplicacions fan partida de la sesilha en 
cors e pòdon èsser s
 
 #: ../settings/xfce4-session-settings.glade.h:24
 msgid Save Sessio_n
-msgstr 
+msgstr Enregistrar la sesil_ha
 
 #: ../settings/xfce4-session-settings.glade.h:25
 msgid Empty the session cache
@@ -866,7 +867,7 @@ msgstr Voidar l'escondedor de las sesilhas
 
 #: ../settings/xfce4-session-settings.glade.h:26
 msgid _Clear saved sessions
-msgstr 
+msgstr _Escafar las sesilhas enregistradas
 
 #: ../settings/xfce4-session-settings.glade.h:27
 msgid Quit the program, and remove it from the session
@@ -874,7 +875,7 @@ msgstr Quitar lo programa e lo levar de la sesilha
 
 #: ../settings/xfce4-session-settings.glade.h:29
 msgid _Session
-msgstr 
+msgstr _Sesilha
 
 #: ../settings/xfce4-session-settings.glade.h:30
 msgid Launch GN_OME services on startup
@@ -911,7 +912,7 @@ msgstr bSeguretat/b
 
 #: ../settings/xfce4-session-settings.glade.h:38
 msgid _Lock screen before sleep
-msgstr 
+msgstr _Varrolhar l'ecran abans la mesa en velha
 
 #: ../settings/xfce4-session-settings.glade.h:39
 msgid Run xflock4 before suspending or hibernating the system
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] www:master I18n: Update translation uk (92%).

2013-12-07 Thread Transifex
Updating branch refs/heads/master
 to 667dcc21e430c75373bc98a04e6d571d6b4cc080 (commit)
   from 80003af7992b4a877607f8126b6fae1219e552e6 (commit)

commit 667dcc21e430c75373bc98a04e6d571d6b4cc080
Author: Yarema aka Knedlyk yupad...@gmail.com
Date:   Sat Dec 7 18:31:50 2013 +0100

I18n: Update translation uk (92%).

549 translated messages, 42 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 lib/po/uk.po |   66 +-
 1 file changed, 33 insertions(+), 33 deletions(-)

diff --git a/lib/po/uk.po b/lib/po/uk.po
index d5cdba8..6baa4d7 100644
--- a/lib/po/uk.po
+++ b/lib/po/uk.po
@@ -10,7 +10,7 @@ msgstr 
 Project-Id-Version: Xfce Websites\n
 Report-Msgid-Bugs-To: https://bugzilla.xfce.org\n;
 POT-Creation-Date: 2013-07-03 22:08+0200\n
-PO-Revision-Date: 2013-12-06 21:07+\n
+PO-Revision-Date: 2013-12-07 15:25+\n
 Last-Translator: Yarema aka Knedlyk yupad...@gmail.com\n
 Language-Team: Ukrainian 
(http://www.transifex.com/projects/p/xfce/language/uk/)\n
 MIME-Version: 1.0\n
@@ -1455,7 +1455,7 @@ msgid 
 will expect, and also several advanced features. For example, a so-called 
 iBulk Renamer/i is included which allows users to rename multiple files 
 at once using a certain criterion.
-msgstr 
+msgstr bThunar/b підтримує всі види дій над файлами, які тільки потрібні 
користувачу, а також має деякі додаткові можливості. Наприклад, так зване 
iПерейменування за раз/i, яке дозволяє користувачам перейменувати багато 
файлів за раз, використовуючи певні критерії.
 
 #: about/tour44.php:44
 msgid Thunar Bulk Rename
@@ -1471,7 +1471,7 @@ msgid 
 insert the media into the drive or plug the new drive in to the computer and
  an icon representing the removable volume will appear on the desktop and in
  bThunar/b's side pane.
-msgstr 
+msgstr Xfce 4.4.0 забезпечує простий доступ до даних на знімних пристроях і 
медіа. Стане тільки вставити медіа або під'єднати новий диск до комп'ютера, як 
на стільниці і бічній панелі bThunar/b появиться іконка, яка показує 
знімний пристрій.
 
 #: about/tour44.php:52
 msgid Removable Volumes
@@ -1486,7 +1486,7 @@ msgid 
  only available for Linux 2.6.x and FreeBSD 6.x and above at the time of 
 this writing (there is limited removable media support for FreeBSD 4.x and 
 5.x which does not require HAL).
-msgstr 
+msgstr Клацання на іконці автоматично змонтує диск. Клацання правою кнопкою 
миші відмонтує диск або висуне медіа. Зауважте, що для цього потрібно мати a 
href=\http://freedesktop.org/wiki/Software_2fhal\;HAL/a, і тому доступна 
тільки для Linux 2.6.x і FreeBSD 6.x і вище на момент написання цього (існує 
теж обмежена підтримка медіа в FreeBSD 4.x і 5.x, яка не вимагає HAL).
 
 #: about/tour44.php:59
 msgid Text Editor
@@ -1572,7 +1572,7 @@ msgid 
 had to be run in the same process as the panel, and hence every plugin was 
 able to crash the whole panel. To address this issue, support for external 
 plugins was added to the panel.
-msgstr 
+msgstr Однією з найбільших проблем попередніх версій Xfce було те, що кожен 
додаток повинен запускатися з тим самим процесом, що й панель, і тому кожен 
додаток міг викликати крах всієї панелі. Щоб уникнути цього, додано підтримку 
зовнішніх додатків до панелі.
 
 #: about/tour44.php:114
 msgid Panel Add Item Dialog
@@ -1595,7 +1595,7 @@ msgid 
 bXftaskbar4/b and bXfce4-iconbox/b utilities are no longer required.
  Instead, both the taskbar and the iconbox are available as panel plugins 
 now.
-msgstr 
+msgstr З цього моменту маємо підтримку багатьох панелей, окремих утиліт 
bXftaskbar4/b і bXfce4-iconbox/b вже не потрібно. Замість них тепер є 
додатки панелі.
 
 #: about/tour44.php:127
 msgid 
@@ -1604,7 +1604,7 @@ msgid 
 updated for the new panel, and several new plugins were added. For example, 
 the brand new bxfce4-xfapplet-plugin/b allows users to add GNOME panel 
 applets to the Xfce panel.
-msgstr 
+msgstr Більшість додаткових додатків панелі, доступних на сторінці a 
href=\http://goodies.xfce.org/\;Xfce Goodies Project/a, оновлено для нової 
панелі, і додано декілька нових додатків. Наприклад, новий 
додатокbxfce4-xfapplet-plugin/b дозволяє користувачам додавати аплети GNOME 
до панелі Xfce.
 
 #: about/tour44.php:131
 msgid Time Management
@@ -1645,7 +1645,7 @@ msgid 
 the application via ihidden options/i. As can be seen in the screenshot 
 above, this release also supports real transparency using bXfwm4/b's 
 integrated composition manager.
-msgstr 
+msgstr Крім основних функцій, які Ви могли б очікувати від емулятора 
терміналу, він включає в себе деякі цікаві додаткові функції, такі як декілька 
вкладок в одному вікні, панелі інструментів, що настроюються , а також 
можливість налаштувати практично кожен аспект програми через iприховані 
параметри/i. Як видно на знімку екрану вище, цей випуск також підтримує 
справжню прозорість, використовуючи інтегрований композитний менеджер 
bxfwm4/b.
 
 #: 

[Xfce4-commits] xfce4-settings:xfce-4.10 I18n: Update translation oc (100%).

2013-12-07 Thread Transifex
Updating branch refs/heads/xfce-4.10
 to d171b6e1007cd2247502a363a1491c19bb2ea5da (commit)
   from cbe889e8fe0757a77b7b9f2f1eefe5681c7b29bf (commit)

commit d171b6e1007cd2247502a363a1491c19bb2ea5da
Author: Cedric31 cvalm...@yahoo.fr
Date:   Sat Dec 7 18:30:44 2013 +0100

I18n: Update translation oc (100%).

330 translated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/oc.po |   75 +++---
 1 file changed, 38 insertions(+), 37 deletions(-)

diff --git a/po/oc.po b/po/oc.po
index 1b8a933..50fa6e4 100644
--- a/po/oc.po
+++ b/po/oc.po
@@ -4,12 +4,13 @@
 # 
 # Translators:
 # Cedric31 cvalm...@yahoo.fr, 2013
+# Cedric31 cvalm...@yahoo.fr, 2013
 msgid 
 msgstr 
 Project-Id-Version: Xfce4-settings\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-07-02 23:16+0200\n
-PO-Revision-Date: 2013-11-26 17:29+\n
+PO-Revision-Date: 2013-12-07 16:33+\n
 Last-Translator: Cedric31 cvalm...@yahoo.fr\n
 Language-Team: Occitan (post 1500) 
(http://www.transifex.com/projects/p/xfce/language/oc/)\n
 MIME-Version: 1.0\n
@@ -49,11 +50,11 @@ msgstr Cap de servici AT-SPI es pas estat trobat sus 
vòstre sistèma
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:8
 msgid _Assistive Technologies
-msgstr 
+msgstr _Tecnologias d'assisténcia
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:9
 msgid Use _sticky keys
-msgstr 
+msgstr _Utilizar las tòcas pegantas
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:10
 msgid 
@@ -74,7 +75,7 @@ msgstr Se activat, las tòcas modificatrises (coma 
Contraròtle, Alt o Maj) dem
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:13
 msgid Disable sticky keys if _two keys are pressed
-msgstr 
+msgstr Desactivar las _tòcas pegantas se doas tòcas son quichadas
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:14
 msgid 
@@ -156,11 +157,11 @@ msgstr _Relambi d'acceleracion :
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:31
 msgid Acceleration _time:
-msgstr 
+msgstr _Temps d'acceleracion :
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:32
 msgid Maximum _speed:
-msgstr 
+msgstr Velocitat _maximala :
 
 #: ../dialogs/accessibility-settings/accessibility-dialog.glade.h:33
 msgid Acceleration _profile:
@@ -289,11 +290,11 @@ msgstr Tèxte
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:7
 #: ../dialogs/display-settings/main.c:82
 msgid Both
-msgstr 
+msgstr Los dos
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:8
 msgid Both Horizontal
-msgstr 
+msgstr Los dos orizontalament
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:9
 #: ../dialogs/appearance-settings/xfce-ui-settings.desktop.in.h:1
@@ -345,11 +346,11 @@ msgstr Òrdre de sos_pixellizacion :
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:19
 msgid _Hinting:
-msgstr 
+msgstr _Hinting :
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:20
 msgid Enable _anti-aliasing
-msgstr 
+msgstr Activar l'_anticrenelatge
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:21
 msgid 
@@ -427,7 +428,7 @@ msgstr Activar o desactivar los sons dels eveniments 
globalament (requerís «
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:38
 msgid Enable i_nput feedback sounds
-msgstr 
+msgstr Activar los sons de las i_ntervencions de l'utilizaire
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:39
 msgid 
@@ -441,7 +442,7 @@ msgstr Sons dels eveniments
 
 #: ../dialogs/appearance-settings/appearance-dialog.glade.h:41
 msgid _Settings
-msgstr 
+msgstr _Paramètres
 
 #: ../dialogs/appearance-settings/main.c:733
 #, c-format
@@ -539,23 +540,23 @@ msgstr _Resolucion :
 
 #: ../dialogs/display-settings/minimal-display-dialog.glade.h:1
 msgid Display settings
-msgstr 
+msgstr Paramètres d'Afichatge
 
 #: ../dialogs/display-settings/minimal-display-dialog.glade.h:2
 msgid Several displays are available. Use:\n
-msgstr 
+msgstr Mantun ecran son disponibles. Utilizar :\n
 
 #: ../dialogs/display-settings/minimal-display-dialog.glade.h:4
 msgid Both displays cloned
-msgstr 
+msgstr Clonar los dos ecrans
 
 #: ../dialogs/display-settings/minimal-display-dialog.glade.h:5
 msgid Use both displays to show the same contents
-msgstr 
+msgstr Utilizar los dos ecrans per afichar lo meteis contengut
 
 #: ../dialogs/display-settings/main.c:68
 msgid Normal
-msgstr 
+msgstr Normal
 
 #: ../dialogs/display-settings/main.c:69
 msgid Left
@@ -756,7 +757,7 @@ msgstr Lo temps, en millisegondas, abans qu'una tòca 
quichada desenclave la re
 
 #: ../dialogs/keyboard-settings/keyboard-dialog.glade.h:11
 msgid Repeat _speed:
-msgstr 
+msgstr Velocitat de _repeticion :
 
 #: ../dialogs/keyboard-settings/keyboard-dialog.glade.h:12
 msgid The rate at which keystrokes are generated while a key is pressed
@@ -792,11 +793,11 @@ msgstr Zòna de _tèst 

[Xfce4-commits] orage:master I18n: Update translation ru (80%).

2013-12-07 Thread Transifex
Updating branch refs/heads/master
 to 6ac2b1d5bf2e67a4cd95de96c0dab3b680f2464e (commit)
   from bef96a8036e95f4d9c98404d048718c5a0c4fd11 (commit)

commit 6ac2b1d5bf2e67a4cd95de96c0dab3b680f2464e
Author: Aleksandr P davian...@gmail.com
Date:   Sun Dec 8 00:30:48 2013 +0100

I18n: Update translation ru (80%).

824 translated messages, 197 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/ru.po |   12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/po/ru.po b/po/ru.po
index 5d549c2..43284ab 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -15,8 +15,8 @@ msgstr 
 Project-Id-Version: Xfce Apps\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-12-02 18:30+0100\n
-PO-Revision-Date: 2013-12-04 17:56+\n
-Last-Translator: asvl alyoshi...@gmail.com\n
+PO-Revision-Date: 2013-12-07 23:30+\n
+Last-Translator: Aleksandr P davian...@gmail.com\n
 Language-Team: Russian 
(http://www.transifex.com/projects/p/xfce/language/ru/)\n
 MIME-Version: 1.0\n
 Content-Type: text/plain; charset=UTF-8\n
@@ -573,7 +573,7 @@ msgstr Не установлено
 
 #: ../src/appointment.c:1138
 msgid Add new appointment to this file.
-msgstr 
+msgstr Добавить новую встречу в данный файл.
 
 #: ../src/appointment.c:1139 ../src/appointment.c:1188
 msgid Orage default file
@@ -581,16 +581,16 @@ msgstr Файл Orage по умолчанию
 
 #: ../src/appointment.c:1225
 msgid Appointment addition failed.
-msgstr 
+msgstr Не удалось добавить встречу.
 
 #: ../src/appointment.c:1226
 msgid 
 Error happened when adding appointment. Look more details from the log file.
-msgstr 
+msgstr В ходе добавления встречи возникли ошибки. Дополнительные сведения 
содержатся в файле журнала.
 
 #: ../src/appointment.c:1236
 msgid Appointment update failed.
-msgstr 
+msgstr Не удалось обновить встречу.
 
 #: ../src/appointment.c:1237
 msgid 
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits


[Xfce4-commits] orage:master I18n: Update translation ru (80%).

2013-12-07 Thread Transifex
Updating branch refs/heads/master
 to 2298340330aee91dfe8ca860b55d4f00fa7ec317 (commit)
   from 6ac2b1d5bf2e67a4cd95de96c0dab3b680f2464e (commit)

commit 2298340330aee91dfe8ca860b55d4f00fa7ec317
Author: Aleksandr P davian...@gmail.com
Date:   Sun Dec 8 06:30:53 2013 +0100

I18n: Update translation ru (80%).

827 translated messages, 194 untranslated messages.

Transifex (https://www.transifex.com/projects/p/xfce/).

 po/ru.po |8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/po/ru.po b/po/ru.po
index 43284ab..a979bb0 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -15,7 +15,7 @@ msgstr 
 Project-Id-Version: Xfce Apps\n
 Report-Msgid-Bugs-To: \n
 POT-Creation-Date: 2013-12-02 18:30+0100\n
-PO-Revision-Date: 2013-12-07 23:30+\n
+PO-Revision-Date: 2013-12-07 23:39+\n
 Last-Translator: Aleksandr P davian...@gmail.com\n
 Language-Team: Russian 
(http://www.transifex.com/projects/p/xfce/language/ru/)\n
 MIME-Version: 1.0\n
@@ -1388,7 +1388,7 @@ msgstr 
 #: ../src/ical-code.c:3183
 #, c-format
 msgid \tAdded %d alarms. Processed %d events.
-msgstr 
+msgstr \tДобавлено будильников: %d. Обработано событий: %d.
 
 #: ../src/ical-code.c:3185
 #, c-format
@@ -1447,7 +1447,7 @@ msgstr 
 
 #: ../src/interface.c:689
 msgid Orage can only handle 10 foreign files. Limit reached.
-msgstr 
+msgstr Orage не поддерживает более 10 внешних файлов.
 
 #: ../src/interface.c:697
 msgid Filename is empty.
@@ -1736,7 +1736,7 @@ msgstr --toggle (-t) \t\tпоказать/спрятать orage\n
 #: ../src/main.c:319
 #, c-format
 msgid --add-foreign (-a) file [RW] [name] \tadd a foreign file\n
-msgstr 
+msgstr --add-foreign (-a) ФАЙЛ [RW] [ИМЯ] \tдобавить внешний файл\n
 
 #: ../src/main.c:320
 #, c-format
___
Xfce4-commits mailing list
Xfce4-commits@xfce.org
https://mail.xfce.org/mailman/listinfo/xfce4-commits